@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── VARIABLES ── */
:root {
  --bg:         #f8f9f6;
  --surface:    #ffffff;
  --surface2:   #f0f5f0;
  --surface3:   #e4ede4;
  --green-deep: #1e4d2b;
  --green-mid:  #2e7d32;
  --green-cta:  #3a8a3a;
  --gold:       #c4a26a;
  --gold-light: #d4b580;
  --gold-dark:  #9a7a46;
  --cream:      #f8f5ee;
  --warm-1:     #1a1a1a;
  --warm-2:     #555555;
  --warm-3:     #888888;
  --muted:      #888888;
  --border:     rgba(0,0,0,0.07);
  --border-dim: rgba(0,0,0,0.045);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--warm-1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold-dark);
  opacity: 0.7;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--warm-1);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--gold-dark); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green-cta);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  box-shadow: 0 4px 18px rgba(58,138,58,0.32);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(58,138,58,0.42);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--green-cta);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.9rem;
  border: 2px solid var(--green-cta);
  border-radius: 50px;
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover {
  background: rgba(58,138,58,0.07);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-3);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost svg { transition: transform 0.22s; }
.btn-ghost:hover { color: var(--warm-1); }
.btn-ghost:hover svg { transform: translateX(5px); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
              transform 0.9s cubic-bezier(0.22,1,0.36,1);
  will-change: transform, opacity;
}
.reveal.visible { opacity: 1; transform: none; }
/* Pictures fade in from alternating sides on mobile */
@media (max-width: 768px) {
  .gallery-item.reveal,
  .portfolio-item.reveal {
    transition: opacity 1.1s ease-out,
                transform 1.1s cubic-bezier(0.22,1,0.36,1);
    will-change: transform, opacity;
  }
  .gallery-item.reveal:not(.visible),
  .portfolio-item.reveal:not(.visible) { transform: translateX(-60px); }
  .gallery-item:nth-child(even).reveal:not(.visible),
  .portfolio-item:nth-child(even).reveal:not(.visible) { transform: translateX(60px); }
}
/* Desktop: photo unveils upward inside its frame with a soft zoom settle.
   The clip lives on the img, never the tile — a clipped tile reads as
   zero-area to IntersectionObserver and the reveal would never fire. */
@media (min-width: 769px) {
  .gallery-item.reveal,
  .portfolio-item.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .gallery-item.reveal img,
  .portfolio-item.reveal img {
    transition: clip-path 1.1s cubic-bezier(0.65, 0, 0.35, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: clip-path;
  }
  .gallery-item.reveal:not(.visible) img,
  .portfolio-item.reveal:not(.visible) img { clip-path: inset(100% 0 0 0); }
  .gallery-item.reveal.visible img,
  .portfolio-item.reveal.visible img {
    clip-path: inset(0 0 0 0);
    animation: pic-settle 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .gallery-item.d1 img, .portfolio-item.d1 img { transition-delay: 0.10s, 0s; }
  .gallery-item.d2 img, .portfolio-item.d2 img { transition-delay: 0.20s, 0s; }
  .gallery-item.d3 img, .portfolio-item.d3 img { transition-delay: 0.30s, 0s; }
  @keyframes pic-settle {
    from { transform: scale(1.06); }
    to   { transform: none; }
  }
}
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }

/* ── WORD REVEAL (headline mask) ── */
.word-mask {
  display: inline-block;
  overflow: hidden;
}
.word-mask > .word {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.95s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
.word-mask.visible > .word { transform: translateY(0); }

/* ════════════════════════════
   NAV
════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.35s ease;
}
#nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
  border-bottom-color: rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--warm-1);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo em { font-style: italic; color: var(--green-cta); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-item { position: relative; }

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #444;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-item > a:hover { color: var(--green-cta); background: rgba(58,138,58,0.05); }

.nav-arrow {
  width: 11px; height: 11px;
  stroke: currentColor; fill: none;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.nav-item:hover > a .nav-arrow,
.nav-item:focus-within > a .nav-arrow { transform: rotate(180deg); }

.nav-contact > a {
  color: var(--green-cta) !important;
  border: 1.5px solid rgba(58,138,58,0.35);
  margin-left: 0.4rem;
}
.nav-contact > a:hover {
  background: rgba(58,138,58,0.07) !important;
  border-color: var(--green-cta);
}

/* ── DROPDOWN ── */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 0.5rem 0;
  min-width: 250px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  box-shadow: 0 16px 50px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}
.dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%; left: 0; right: 0;
  height: 12px;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: #444;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.18s, background 0.18s, padding-left 0.2s;
  white-space: nowrap;
}
.dropdown a:hover {
  color: var(--green-cta);
  background: rgba(58,138,58,0.05);
  padding-left: 1.55rem;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--warm-1);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ── MOBILE NAV ── */
.mob-nav {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(15,30,17,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  padding: 5rem 2rem 3rem;
  overflow-y: auto;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 0.32s cubic-bezier(0.22,1,0.36,1), transform 0.32s cubic-bezier(0.22,1,0.36,1), visibility 0.32s;
}
.mob-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.mob-section { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 1.1rem 0; }

.mob-section-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.mob-links { display: flex; flex-direction: column; gap: 0.05rem; }
.mob-links a {
  color: rgba(248,245,238,0.8);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.35rem 0;
  transition: color 0.18s;
}
.mob-links a:hover { color: #fff; }

.mob-footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.mob-footer a {
  color: rgba(248,245,238,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.18s;
}
.mob-footer a:hover { color: var(--cream); }

/* ════════════════════════════
   HERO (Homepage)
════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center 37%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,22,10,0.40) 0%,
    rgba(8,18,10,0.62) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 820px;
  padding: 0 2rem;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: riseIn 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 34px; height: 1px;
  background: var(--gold-light);
  opacity: 0.5;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: riseIn 1s cubic-bezier(0.22,1,0.36,1) 0.5s forwards;
}
.hero-h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 300;
  color: rgba(248,245,238,0.80);
  line-height: 1.85;
  letter-spacing: 0.02em;
  max-width: 560px;
  margin: 0 auto 2.8rem;
  opacity: 0;
  animation: riseIn 1s cubic-bezier(0.22,1,0.36,1) 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: riseIn 1s cubic-bezier(0.22,1,0.36,1) 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,245,238,0.4);
}
.scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, rgba(248,245,238,0.35), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 0.7; }
}

/* ════════════════════════════
   SERVICES OVERVIEW
════════════════════════════ */
#services-overview {
  background: var(--surface);
  padding: 6.5rem 0;
  border-top: 1px solid var(--border);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--green-cta), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  border-radius: 12px 12px 0 0;
}
.svc-card:hover {
  background: #f4faf4;
  border-color: rgba(58,138,58,0.18);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.10);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 44px; height: 44px;
  color: var(--green-cta);
  margin-bottom: 1.4rem;
}
.svc-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--warm-1);
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}

.svc-desc {
  color: var(--warm-2);
  font-size: 0.88rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 1.4rem;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.svc-tag {
  font-size: 0.68rem;
  color: var(--warm-3);
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.02);
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
  transition: color 0.2s, border-color 0.2s;
}
.svc-card:hover .svc-tag { color: var(--warm-2); border-color: rgba(58,138,58,0.15); }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--green-cta);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.25s;
}
.svc-card:hover .svc-link { gap: 0.7rem; }

/* ════════════════════════════
   PORTFOLIO (Homepage)
════════════════════════════ */
#portfolio {
  background: var(--surface2);
  padding: 6.5rem 0;
  border-top: 1px solid var(--border);
}

.portfolio-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.portfolio-item {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
  background: var(--surface3);
  cursor: pointer;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
  display: block;
}
.portfolio-item:hover img { transform: scale(1.07); }

.portfolio-cta { text-align: center; }

/* ════════════════════════════
   ABOUT
════════════════════════════ */
#about {
  background: var(--bg);
  padding: 6.5rem 0;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "text card"
    "text creds";
  gap: 3rem 5rem;
  align-items: start;
}
.about-text { grid-area: text; align-self: center; }
.about-card-wrap { grid-area: card; }

.about-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  color: var(--warm-1);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}
.about-headline em { font-style: italic; color: var(--gold-dark); }

.about-body {
  color: var(--warm-2);
  font-size: 0.97rem;
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.about-rule { width: 44px; height: 2px; background: var(--green-cta); margin: 2rem 0; border-radius: 2px; }

.about-creds { grid-area: creds; display: flex; gap: 2.5rem; flex-wrap: wrap; align-self: start; }
.cred strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--warm-1);
  letter-spacing: -0.03em;
}
.cred span { font-size: 0.7rem; color: var(--warm-3); letter-spacing: 0.08em; text-transform: uppercase; }

.about-card {
  background: var(--green-deep);
  border: 1px solid rgba(196,162,106,0.12);
  border-radius: 12px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: -90px; right: -90px;
  width: 260px; height: 260px;
  background: radial-gradient(ellipse, rgba(196,162,106,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-quote::before {
  content: '\201C';
  color: var(--gold);
}
.about-quote::after {
  content: '\201D';
  color: var(--gold);
}
.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.65;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.about-attr {
  font-size: 0.74rem;
  color: rgba(248,245,238,0.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative; z-index: 1;
}

/* ════════════════════════════
   PROCESS
════════════════════════════ */
#process {
  background: var(--surface);
  padding: 6.5rem 0;
  border-top: 1px solid var(--border);
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  gap: 2rem;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.1rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(58,138,58,0.22), transparent);
  z-index: 0;
}

.process-step { text-align: center; padding: 0 1.5rem; display: flex; flex-direction: column; align-items: center; }

.process-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(58,138,58,0.25);
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  position: relative; z-index: 1;
  margin-bottom: 1.8rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.process-step:hover .process-circle {
  border-color: var(--green-cta);
  background: rgba(58,138,58,0.05);
  box-shadow: 0 0 22px rgba(58,138,58,0.14);
}
.process-circle span {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-cta);
}

.process-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--warm-1);
  margin-bottom: 0.75rem;
}
.process-step-desc {
  color: var(--warm-2);
  font-size: 0.87rem;
  line-height: 1.82;
  font-weight: 400;
}

/* ════════════════════════════
   STATS BAR
════════════════════════════ */
#stats {
  background: #eaf5ea;
  padding: 3.8rem 0;
  border-top: 1px solid rgba(58,138,58,0.12);
  border-bottom: 1px solid rgba(58,138,58,0.12);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(58,138,58,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--warm-1);
  line-height: 1.1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.stat-value em { font-style: normal; color: var(--green-cta); }
.stat-label {
  font-size: 0.68rem;
  color: var(--warm-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
#testimonials {
  background: var(--surface2);
  padding: 6.5rem 0;
  border-top: 1px solid var(--border);
}
.testi-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex; flex-direction: column; align-items: center;
}
.testi-sub { color: var(--warm-3); font-size: 0.95rem; margin-top: 0.7rem; }
.testi-widget-wrap { max-width: 1080px; margin: 0 auto; }
.testi-widget-wrap iframe.lc_reviews_widget { width: 100%; min-width: 100%; border: 0; display: block; }
.testi-slider-wrap { position: relative; display: flex; align-items: center; gap: 0.9rem; }
.testi-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.4rem 0.1rem 0.6rem;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-track .testi-card {
  flex: 0 0 clamp(270px, 32vw, 350px);
  scroll-snap-align: start;
}
.testi-arrow {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--green-cta);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s, opacity 0.25s;
}
.testi-arrow svg { width: 19px; height: 19px; }
.testi-arrow:hover { background: var(--green-cta); color: #fff; border-color: var(--green-cta); transform: translateY(-2px); }
.testi-arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; transform: none; }
.testi-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.75rem; }
.testi-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); border: none; padding: 0; cursor: pointer; transition: background 0.25s, transform 0.25s; }
.testi-dot.active { background: var(--green-cta); transform: scale(1.35); }
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  border-color: rgba(58,138,58,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(0,0,0,0.10);
}
.testi-card.has-photo { padding-top: 0; overflow: hidden; }
.testi-photo {
  margin: 0 -2.5rem 1.6rem;
  aspect-ratio: 1 / 1;
}
.testi-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-qmark {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  line-height: 0.8;
  color: var(--green-cta);
  opacity: 0.2;
  margin-bottom: 1.2rem;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 1.1rem; }
.star { color: var(--gold); font-size: 0.82rem; }
.testi-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.15rem;
}
.testi-badge svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--green-cta); }
.testi-text {
  color: var(--warm-2);
  font-size: 0.92rem;
  line-height: 1.85;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.8rem;
}
.testi-client { display: flex; align-items: center; gap: 0.9rem; }
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(58,138,58,0.10);
  border: 1.5px solid rgba(58,138,58,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem; font-weight: 700;
  color: var(--green-cta);
  flex-shrink: 0;
}
.client-name  { font-size: 0.86rem; font-weight: 600; color: var(--warm-1); }
.client-place { font-size: 0.73rem; color: var(--warm-3); margin-top: 0.12rem; }

/* ════════════════════════════
   CONTACT
════════════════════════════ */
#contact {
  background: linear-gradient(150deg, #0c2012 0%, #1e4d2b 50%, #0e2215 100%);
  padding: 5rem 0 5rem;
  border-top: 1px solid rgba(196,162,106,0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(196,162,106,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.contact-eyebrow::before,
.contact-eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

.contact-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  position: relative; z-index: 1;
}
.contact-headline em { font-style: italic; color: var(--gold-light); }

.contact-info-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative; z-index: 1;
  margin-bottom: 3rem;
}
.contact-item { display: flex; align-items: center; gap: 0.9rem; }
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(196,162,106,0.10);
  border: 1px solid rgba(196,162,106,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; }
.contact-item-text { text-align: left; }
.contact-item-text strong {
  display: block;
  font-size: 0.68rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.1rem;
}
.contact-item-text a,
.contact-item-text span { color: var(--cream); font-size: 0.95rem; text-decoration: none; transition: color 0.2s; }
.contact-item-text a:hover { color: var(--gold-light); }

.contact-iframe-card {
  background: transparent;
  border-radius: 12px;
  padding: 1.5rem 0;
  max-width: 860px;
  min-height: 900px;
  margin: 0 auto;
  width: 100%;
  position: relative; z-index: 1;
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
footer {
  background: var(--green-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.75rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  display: block;
  margin-bottom: 0.7rem;
}
.footer-logo em { font-style: italic; color: var(--gold); }

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(248,245,238,0.5);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}

.footer-brief { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-brief a {
  color: rgba(248,245,238,0.55);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.18s;
}
.footer-brief a:hover { color: var(--gold); }
.footer-brief span { color: rgba(248,245,238,0.35); font-size: 0.76rem; }

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.footer-col h4 + h4 { margin-top: 1.5rem; }
.footer-col-links { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col-links a {
  color: rgba(248,245,238,0.55);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.18s;
}
.footer-col-links a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { color: rgba(248,245,238,0.35); font-size: 0.72rem; }
.footer-credit { color: rgba(248,245,238,0.22); font-size: 0.68rem; white-space: nowrap; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  color: rgba(248,245,238,0.35);
  text-decoration: none;
  font-size: 0.72rem;
  transition: color 0.18s;
}
.footer-bottom-links a:hover { color: rgba(248,245,238,0.65); }

/* ════════════════════════════
   SUB-PAGE HERO
════════════════════════════ */
.subpage-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  padding-top: 68px;
}
.subpage-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--green-deep);
}
.subpage-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,22,10,0.48) 0%,
    rgba(8,18,10,0.72) 100%
  );
}
.subpage-hero-content {
  position: relative; z-index: 1;
  max-width: 740px;
  padding: 5rem 2rem 4rem;
  margin: 0 auto;
  text-align: center;
  animation: riseIn 0.85s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}
.subpage-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.subpage-eyebrow::before, .subpage-eyebrow::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold-light);
  opacity: 0.5;
}
.subpage-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.subpage-h1 em { font-style: italic; color: var(--gold-light); }
.subpage-sub {
  color: rgba(248,245,238,0.75);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

/* ── PHOTO GALLERY (sub-pages) ── */
.photo-gallery-section {
  background: var(--bg);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  background: var(--surface3);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }

.story-photo-section { border-top: 1px solid var(--border); }
.story-photo-section img { width: 100%; height: 480px; object-fit: cover; display: block; object-position: center 30%; }

/* ── SUB-PAGE BODY ── */
.subpage-body {
  background: var(--surface);
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
}
.subpage-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.subpage-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: var(--warm-1);
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
  line-height: 1.22;
}
.subpage-text p {
  color: var(--warm-2);
  font-size: 0.96rem;
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 1.1rem;
}
.subpage-sidebar {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: sticky;
  top: 90px;
}
.subpage-sidebar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--warm-1);
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(58,138,58,0.15);
}
.sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.sidebar-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--warm-2);
  font-size: 0.86rem;
  line-height: 1.6;
  font-weight: 400;
}
.sidebar-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-cta);
  margin-top: 0.44rem;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--green-deep);
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(196,162,106,0.1);
}
.cta-strip h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.cta-strip p {
  color: rgba(248,245,238,0.55);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

/* ════════════════════════════
   MICRO-INTERACTIONS
   (subtle motion, desktop + mobile)
════════════════════════════ */
.nav-logo, .footer-logo {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.nav-logo:hover, .footer-logo:hover { transform: scale(1.025); }
.nav-logo:active, .footer-logo:active { transform: scale(0.97); }

.svc-icon { transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); }
.svc-card:hover .svc-icon { transform: scale(1.08) rotate(-4deg); }

.stat-item { transition: transform 0.3s ease; }
.stat-item:hover { transform: translateY(-3px); }
.stat-value { transition: color 0.3s ease; }
.stat-item:hover .stat-value { color: var(--green-cta); }

.cred { transition: transform 0.3s ease; }
.cred:hover { transform: translateY(-2px); }
.cred strong { transition: color 0.3s ease; }
.cred:hover strong { color: var(--green-cta); }

/* tap/click feedback -- fires identically on touch and mouse */
.nav-item > a:active,
.dropdown a:active,
.footer-col-links a:active,
.footer-brief a:active,
.mob-links a:active,
.svc-link:active,
.btn-ghost:active { opacity: 0.6; }

.footer-col-links a,
.footer-brief a { transition: color 0.18s, padding-left 0.2s; }
.footer-col-links a:hover, .footer-col-links a:active { padding-left: 0.35rem; }
.footer-brief a:hover, .footer-brief a:active { padding-left: 0.3rem; }

.mob-links a { transition: color 0.18s, padding-left 0.22s; }
.mob-links a:hover, .mob-links a:active { padding-left: 0.4rem; }

.btn-outline { transition: background 0.25s, color 0.25s, transform 0.2s; }
.btn-primary:active, .btn-outline:active { transform: scale(0.96); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .svc-grid           { grid-template-columns: 1fr; }
  .about-grid         { grid-template-columns: 1fr; grid-template-areas: "text" "creds" "card"; gap: 3rem; }
  .process-steps      { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps::before { display: none; }
  .testi-arrow { display: none; }
  .testi-track .testi-card { flex-basis: 80vw; }
  .contact-info-row   { gap: 1.5rem; }
  .subpage-inner      { grid-template-columns: 1fr; }
  .subpage-sidebar    { position: static; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(58,138,58,0.15); border-right: 1px solid rgba(58,138,58,0.15); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(58,138,58,0.15); border-right: none; }
  .photo-gallery      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .contact-info-row { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

  /* Headline word-reveal: slower, smoother on mobile */
  .word-mask > .word {
    transition: transform 1.3s cubic-bezier(0.19,1,0.22,1);
  }
}
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item  { border-right: none !important; border-bottom: 1px solid rgba(58,138,58,0.12); }
  .stat-item:last-child { border-bottom: none; }
  .stat-item:nth-child(3) { border-top: none; }
  .hero-actions { flex-direction: column; gap: 1rem; }
  .about-creds { gap: 1.5rem; }
  .photo-gallery { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testi-track .testi-card { flex-basis: 86vw; padding: 2rem; }
  .testi-photo { margin: 0 -2rem 1.4rem; }
}

/* ════════════════════════════
   BEFORE / AFTER COMPARISON SLIDER
════════════════════════════ */
.ba-section { background: var(--surface); padding: 6rem 0; border-top: 1px solid var(--border); }
.ba-section.alt { background: var(--surface2); }
.ba-header { text-align: center; margin-bottom: 3rem; display: flex; flex-direction: column; align-items: center; }
.ba-header p { color: var(--warm-2); font-size: 0.97rem; line-height: 1.8; max-width: 560px; margin-top: 1rem; font-weight: 400; }

.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; align-items: start; }
.ba-grid .ba-slider { max-width: none; }

.ba-slider { max-width: 880px; margin: 0 auto; user-select: none; }
.ba-slider-inner {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.16);
  background: var(--surface3);
  --pos: 50%;
  cursor: ew-resize;
  touch-action: none;
}
.ba-slider-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-img-after { clip-path: inset(0 0 0 var(--pos)); }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2px;
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 2px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}
.ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
  color: var(--green-cta);
  transition: transform 0.2s ease;
  cursor: ew-resize;
}
.ba-handle-knob svg { width: 19px; height: 19px; }
.ba-slider.dragging .ba-handle-knob { transform: translate(-50%, -50%) scale(1.1); }

.ba-label {
  position: absolute;
  bottom: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(20,35,22,0.55);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

.ba-caption {
  text-align: center;
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--warm-3);
}
.ba-caption .ba-hint { transition: opacity 0.5s ease; }
.ba-caption .ba-hint.hidden { opacity: 0; }

@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; gap: 3.5rem; }
}
@media (max-width: 520px) {
  .ba-handle-knob { width: 38px; height: 38px; }
}

/* ════════════════════════════
   STICKY MOBILE CTA (True2 pattern: glass bar, one green button,
   ends before the chat-widget bubble so they never overlap)
════════════════════════════ */
.gah-sticky-cta {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 900;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(26,26,26,0.10);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 16px 40px rgba(26,26,26,0.18);
}
.gah-sticky-cta a {
  flex: 1;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: var(--green-cta);
  padding: 15px 16px;
  border-radius: 12px;
}
@media (max-width: 760px) {
  .gah-sticky-cta { display: flex; right: 96px; }
  footer { padding-bottom: 96px; }
}
