/* =============================================================================
   HARDSCAPES DEVELOPMENT — Main Stylesheet
   =============================================================================
   COLOR GUIDE (change these custom properties to rebrand the whole site):
   --color-bg:          Dark page background
   --color-surface:     Card / section backgrounds
   --color-surface-alt: Alternate section backgrounds (stats bar, etc.)
   --color-stone:       Primary accent (warm tan/gold) — logo, headings, accents
   --color-earth:       CTA buttons and action color (warm orange)
   --color-earth-hover: Darker CTA hover state
   --color-text:        Main body text (off-white)
   --color-text-muted:  Secondary / caption text
   --color-border:      Subtle borders and dividers
   ============================================================================= */

:root {
  /* === BRAND COLORS — edit here to change the whole site === */
  --color-bg: #111315;
  --color-surface: #1A1E22;
  --color-surface-alt: #242830;
  --color-stone: #B8AA96;
  --color-earth: #C06A2B;
  --color-earth-hover: #A55A22;
  --color-text: #E8E5E0;
  --color-text-muted: #908A82;
  --color-border: #2D3138;

  /* === TYPOGRAPHY === */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* === SPACING SCALE — used for consistent padding/margin === */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 1rem;      /* 16px */
  --space-md: 1.5rem;    /* 24px */
  --space-lg: 2.5rem;    /* 40px */
  --space-xl: 4rem;      /* 64px */
  --space-2xl: 6rem;     /* 96px */

  /* === LAYOUT === */
  --max-width: 1200px;
  --nav-height: 72px;
  --radius: 8px;
  --radius-lg: 12px;

  /* === TRANSITIONS === */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}


/* =============================================================================
   RESET & BASE
   ============================================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

ul {
  list-style: none;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reusable container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
}

/* Honeypot field — hidden from humans, traps bots */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}


/* =============================================================================
   BUTTONS — Reusable button styles
   Usage: .btn .btn-primary  |  .btn .btn-outline  |  add .btn-lg for large
   ============================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-stone);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--color-earth);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--color-earth-hover);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid var(--color-stone);
  color: var(--color-stone);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--color-stone);
  color: var(--color-bg);
}

.btn-lg {
  font-size: 1rem;
  padding: 0.85rem 2rem;
}

.btn-full {
  width: 100%;
}


/* =============================================================================
   SECTION TITLES — Consistent heading style across all sections
   ============================================================================= */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-stone);
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}


/* =============================================================================
   NAVIGATION
   ============================================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(17, 19, 21, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
  height: 100%;
}

/* Logo — SVG with built-in colors, no filter needed */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 36px;
  width: auto;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  margin-bottom: var(--space-xs);
}

/* Desktop nav links — hidden by default, shown by media query or mobile .open */
.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-md);
}

/* On mobile: always use flex for the overlay, but control visibility with opacity */
@media (max-width: 899px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-stone);
}

/* Active section underline indicator */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-stone);
  border-radius: 1px;
}

/* Phone pill in nav */
.nav-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-stone);
  border: 1px solid var(--color-stone);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav-phone-pill:hover {
  background-color: var(--color-stone);
  color: var(--color-bg);
}

.nav-phone-pill svg {
  flex-shrink: 0;
}

/* Nav CTA button */
.nav-cta {
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
}

/* === HAMBURGER (mobile) === */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  z-index: 1100;
}

/* Show desktop nav at 900px+ */
@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .hamburger {
    display: none;
  }
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

/* Animate to X when open */
.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === MOBILE MENU OVERLAY === */
@media (max-width: 899px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(17, 19, 21);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links .nav-link {
    font-size: 1.4rem;
    color: var(--color-text);
  }

  .nav-links .nav-phone-pill {
    font-size: 1rem;
    padding: 0.6rem 1.4rem;
  }

  .nav-links .nav-cta {
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }
}


/* =============================================================================
   HERO SECTION
   ============================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  /* PHOTO SWAP: Replace the linear-gradient below with your hero photo.
     Recommended: wide landscape shot of a completed patio or retaining wall.
     Place file at images/hero.jpg (min 1920x1080px)
     Then change to:
       background-image: url('images/hero.jpg');
       background-size: cover;
       background-position: center;
  */
  /* PHOTO SWAP: Replace with a different hero image if desired */
  background-image: url('images/gallery-07.jpeg');
  background-color: #16181c; /* fallback while image loads */
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-sm);
  max-width: 800px;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-md);
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-earth);
  font-weight: 600;
  font-size: 1.1rem;
  transition: color var(--transition-fast);
}

.hero-phone:hover {
  color: var(--color-stone);
}

/* Animated scroll-down chevron */
.scroll-chevron {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-text-muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}


/* =============================================================================
   SERVICES SECTION
   ============================================================================= */
.services {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  border-top: 3px solid var(--color-stone);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--color-earth);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
  color: var(--color-stone);
  margin-bottom: var(--space-sm);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* =============================================================================
   GALLERY SECTION
   ============================================================================= */
.gallery {
  padding: var(--space-2xl) 0;
  background-color: var(--color-surface);
}

/* Filter tabs */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  background: transparent;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--color-text);
  border-color: var(--color-stone);
}

.filter-btn:focus-visible {
  outline: 2px solid var(--color-stone);
  outline-offset: 2px;
}

.filter-btn.active {
  background-color: var(--color-stone);
  color: var(--color-bg);
  border-color: var(--color-stone);
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background-color: var(--color-surface-alt);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

/* Fade-out class for filtered items */
.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder appearance when no image is loaded */
.gallery-item img[src=""] {
  visibility: hidden;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}


/* =============================================================================
   LIGHTBOX
   ============================================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color var(--transition-fast);
  z-index: 2010;
}

.lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-close:focus-visible {
  outline: 2px solid var(--color-stone);
  outline-offset: 2px;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color var(--transition-fast);
  z-index: 2010;
}

.lightbox-prev { left: var(--space-sm); }
.lightbox-next { right: var(--space-sm); }

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  outline: 2px solid var(--color-stone);
  outline-offset: 2px;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-caption {
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
  font-size: 0.95rem;
}


/* =============================================================================
   TRUST / STATS BAR
   ============================================================================= */
.stats-bar {
  background-color: var(--color-surface-alt);
  padding: var(--space-xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-stone);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}


/* =============================================================================
   TESTIMONIALS
   ============================================================================= */
.testimonials {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Horizontal scroll on mobile */
@media (max-width: 599px) {
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-sm);
    padding-bottom: var(--space-sm);
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-card {
    min-width: 85vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

.testimonial-card {
  position: relative;
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

/* Large decorative quote mark */
.testimonial-quote-mark {
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: var(--color-stone);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-stars {
  color: #F5B800;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.testimonial-card blockquote p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-stone);
  font-size: 0.95rem;
}


/* =============================================================================
   SERVICE AREA
   ============================================================================= */
.service-area {
  padding: var(--space-xl) 0;
  background-color: var(--color-surface);
  text-align: center;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.area-pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.area-pill:hover {
  border-color: var(--color-stone);
  color: var(--color-stone);
}

.area-tagline {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-style: italic;
}


/* =============================================================================
   CONTACT / QUOTE FORM
   ============================================================================= */
.contact {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

/* Left column: info */
.contact-info p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-earth);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  transition: color var(--transition-fast);
  margin-bottom: var(--space-md);
}

.contact-phone:hover {
  color: var(--color-stone);
}

.contact-email {
  display: inline-block;
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  transition: color var(--transition-fast);
}

.contact-email:hover {
  color: var(--color-stone);
}

.contact-area {
  font-size: 0.95rem;
}

/* Right column: form */
.contact-form-wrap {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.form-group .required {
  color: var(--color-earth);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background-color: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-stone);
  box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.15);
}

/* Custom select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A9590' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Form submit button spacing */
#quote-form .btn {
  margin-top: var(--space-xs);
}

/* Success message after submission */
.form-success {
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--color-stone);
  margin: var(--space-sm) 0 var(--space-xs);
}

.form-success p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

.form-success a {
  color: var(--color-earth);
  font-weight: 600;
}


/* =============================================================================
   FOOTER
   ============================================================================= */
.site-footer {
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    text-align: left;
  }
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-stone);
}

.footer-tagline {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: var(--space-xs) 0;
}

.footer-copyright {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-nav a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--color-stone);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-earth);
  transition: color var(--transition-fast);
}

.footer-phone:hover {
  color: var(--color-stone);
}

.footer-email {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-email:hover {
  color: var(--color-stone);
}

.footer-contact p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
