/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-x { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y { syntax: "<percentage>"; inherits: false; initial-value: 20%; }

:root {
  --white:      #ffffff;
  --paper:      #f5f7f4;
  --paper-2:    #eef1ea;
  --black:      #0b0f0c;
  --ink:        #10140f;
  --ink-soft:   #333a31;
  --graphite:   #4b524a;
  --graphite-2: #767e73;
  --line:       rgba(16, 20, 15, 0.12);
  --line-2:     rgba(16, 20, 15, 0.08);

  --green-dark: #133a1f;
  --green:      #2f6b3c;
  --green-2:    #3f8a4d;
  --green-soft: #e6efe4;

  --cream:      #f4ead5; /* used only on dark surfaces text, never pure white */

  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --display: "Big Shoulders", "Inter", sans-serif;
  --mono:    "JetBrains Mono", "IBM Plex Mono", monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1240px;
  --nav-h: 76px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--display); font-weight: 700; }
ul { list-style: none; padding: 0; }
::selection { background: var(--green); color: var(--white); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 3px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px) { .container { padding-inline: 2rem; } }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1.1rem; background: var(--ink); color: var(--white);
  border-radius: 8px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); font-weight: 500;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-top: .6rem; text-transform: uppercase; }
.section-lede { margin-top: 1rem; color: var(--graphite); font-size: 1.05rem; max-width: 52ch; }
.section-head.center .section-lede { margin-inline: auto; }
.section.on-dark { background: var(--ink); color: var(--cream); }
.section.on-dark .section-lede { color: rgba(244,234,213,.75); }
.section.on-paper { background: var(--paper); }

/* =============================================================
   4. Typography components
   ============================================================= */
.text-huge { font-size: clamp(2.6rem, 7vw, 5.2rem); text-transform: uppercase; line-height: .98; }

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; font-weight: 600; font-size: .95rem; border-radius: 3px;
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft), background-color .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--green-dark); color: var(--white); box-shadow: 0 1px 0 rgba(0,0,0,.05); }
.btn-primary:hover { background: var(--green); transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(19,58,31,.45); }
.btn-primary:active { transform: translateY(-1px); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.5); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn-outline { border: 1.5px solid var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-3px); }
.btn-text { padding: .5rem 0; color: var(--white); position: relative; font-weight: 600; }
.btn-text::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor;
  transform: scaleX(.3); transform-origin: left; transition: transform .4s var(--ease-out);
}
.btn-text:hover::after { transform: scaleX(1); }
.btn-sm { padding: .7rem 1.2rem; font-size: .85rem; }
.hero-ctas .btn-text { color: var(--white); }

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), color .4s var(--ease-out);
  color: var(--white);
}
.nav.is-scrolled { background: rgba(255,255,255,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); color: var(--ink); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: .01em; text-transform: uppercase; }
.nav-logo svg { width: 30px; height: 30px; flex-shrink: 0; }
.nav-links { display: none; align-items: center; gap: 2.1rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { font-size: .88rem; font-weight: 600; position: relative; padding: .3rem 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-actions .btn { display: none; }
@media (min-width: 720px) { .nav-actions .btn { display: inline-flex; } }
.nav.is-scrolled .btn-ghost { border-color: var(--line); color: var(--ink); }
.nav.is-scrolled .btn-ghost:hover { background: var(--paper); }
.nav-burger {
  display: grid; gap: 5px; padding: .6rem; margin: -.6rem; border-radius: 8px;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span { width: 22px; height: 2px; background: currentColor; transition: transform .35s var(--ease-out), opacity .35s var(--ease-out); }
.nav-mobile {
  position: fixed; inset: 0; z-index: 190; background: var(--ink); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile a { font-family: var(--display); font-size: 1.6rem; text-transform: uppercase; }
.nav-mobile .btn { margin-top: 1rem; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--white); overflow: hidden; isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,15,12,.55) 0%, rgba(11,15,12,.35) 38%, rgba(11,15,12,.78) 100%),
    linear-gradient(90deg, rgba(11,15,12,.55) 0%, transparent 55%);
}
.hero-flightpath { position: absolute; inset: 0; z-index: -2; pointer-events: none; opacity: .55; }
.hero-flightpath svg { width: 100%; height: 100%; }
.hero-flightpath .fp-line {
  fill: none; stroke: var(--cream); stroke-width: 1.5; stroke-linecap: round;
  stroke-dasharray: 14 10; stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2.6s var(--ease-out);
}
.hero-flightpath.is-drawn .fp-line { stroke-dashoffset: 0; }
.hero-flightpath .fp-marker { opacity: 0; transition: opacity .5s var(--ease-out) 1.4s; }
.hero-flightpath.is-drawn .fp-marker { opacity: .9; }
@supports (offset-path: path("M0 0")) {
  .hero-flightpath .fp-marker.has-motion {
    offset-path: var(--fp-path);
    animation: fpTravel 16s linear infinite;
    animation-play-state: paused;
  }
  .hero-flightpath.is-drawn .fp-marker.has-motion { animation-play-state: running; }
}
@keyframes fpTravel { to { offset-distance: 100%; } }
.hero-inner { position: relative; z-index: 1; padding: calc(var(--nav-h) + 3rem) 0 clamp(2.5rem, 6vw, 4rem); }
.hero-kicker { color: var(--cream); }
.hero-title { margin-top: 1.1rem; max-width: 16ch; font-size: clamp(2.4rem, 6.4vw, 5.4rem); }
.hero-title em { font-style: normal; color: var(--green-2); }
.hero-sub { margin-top: 1.4rem; max-width: 46ch; font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: rgba(255,255,255,.86); }
.hero-ctas { margin-top: 2.2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; }

.stats-bar { position: relative; z-index: 2; background: var(--white); border-top: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .stats-grid { grid-template-columns: repeat(6, 1fr); } }
.stat {
  padding: 1.6rem 1.1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .35rem;
}
.stats-grid .stat:nth-child(2n) { border-right: 1px solid var(--line); }
@media (min-width: 640px) { .stats-grid .stat:nth-child(3n) { border-right: none; } }
@media (min-width: 960px) { .stats-grid .stat:nth-child(n) { border-right: 1px solid var(--line); } .stats-grid .stat:last-child { border-right: none; } }
.stat-value { font-family: var(--mono); font-size: 1.55rem; font-weight: 600; color: var(--green-dark); letter-spacing: -.02em; }
.stat-label { font-size: .82rem; font-weight: 600; color: var(--ink); }
.stat-detail { font-size: .78rem; color: var(--graphite-2); line-height: 1.4; }

/* =============================================================
   8. Services
   ============================================================= */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.card-service {
  position: relative; padding: 2rem 1.7rem; background: var(--white); border: 1px solid var(--line);
  border-radius: 4px; transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s var(--ease-soft);
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}
.card-service:hover { transition-duration: .18s; border-color: var(--green); box-shadow: 0 40px 70px -30px rgba(19,58,31,.28), 0 0 0 1px rgba(47,107,60,.12); }
.card-icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 3px;
  background: var(--green-soft); color: var(--green-dark); margin-bottom: 1.3rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card-service h3 { font-size: 1.3rem; text-transform: uppercase; }
.card-service p { margin-top: .7rem; color: var(--graphite); font-size: .95rem; }
.card-service ul { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.card-service li {
  font-family: var(--mono); font-size: .74rem; padding: .35rem .65rem; border: 1px solid var(--line);
  border-radius: 20px; color: var(--ink-soft);
}

/* =============================================================
   9. Comparison table
   ============================================================= */
.compare-wrap { display: grid; gap: 2.4rem; align-items: center; }
@media (min-width: 960px) { .compare-wrap { grid-template-columns: .85fr 1.15fr; } }
.compare-media { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; }
.compare-media img { width: 100%; height: 100%; object-fit: cover; }
.compare-media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.2rem 1.4rem;
  background: linear-gradient(180deg, transparent, rgba(11,15,12,.82));
  color: var(--white); font-size: .85rem; font-family: var(--mono);
}
.compare-table-scroll { overflow-x: auto; overflow-y: visible; border: 1px solid var(--line); border-radius: 4px; }
table.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare-table th, .compare-table td { padding: .95rem 1.1rem; text-align: left; font-size: .92rem; border-bottom: 1px solid var(--line); }
.compare-table thead th { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--graphite-2); background: var(--paper); }
.compare-table th:first-child, .compare-table td:first-child { font-weight: 600; color: var(--ink); width: 30%; }
.compare-table td.trad { color: var(--graphite); }
.compare-table td.agras { color: var(--green-dark); font-weight: 600; position: relative; }
.compare-table td.agras::before { content: "✓"; margin-right: .5em; color: var(--green); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table thead th.col-agras { color: var(--green-dark); background: var(--green-soft); }

/* =============================================================
   10. Benefits
   ============================================================= */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 720px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit {
  background: var(--white); padding: 1.9rem 1.4rem; position: relative; isolation: isolate;
  transition: background-color .4s var(--ease-out);
}
.benefit::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .4s var(--ease-out);
  background: radial-gradient(160px circle at var(--mx,50%) var(--my,50%), var(--green-soft), transparent 70%);
}
.benefit:hover::before { opacity: 1; }
.benefit-icon { width: 40px; height: 40px; display: grid; place-items: center; color: var(--green-dark); margin-bottom: 1rem; }
.benefit-icon svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 1.02rem; text-transform: uppercase; letter-spacing: .01em; }
.benefit p { margin-top: .5rem; font-size: .86rem; color: var(--graphite); }

/* =============================================================
   11. Process timeline
   ============================================================= */
.timeline { position: relative; display: grid; grid-template-columns: 1fr; gap: 2.2rem; }
@media (min-width: 960px) { .timeline { grid-template-columns: repeat(5, 1fr); gap: 1rem; } }
.timeline::before { content: none; }
@media (min-width: 960px) {
  .timeline { position: relative; }
  .timeline::before {
    content: ""; position: absolute; top: 22px; left: 4%; right: 4%; height: 1px; background: var(--line-2);
  }
}
.timeline-step { position: relative; }
.timeline-num {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--green);
  color: var(--green-dark); display: grid; place-items: center; font-family: var(--mono); font-weight: 600;
  background: var(--white); position: relative; z-index: 1; font-size: .95rem;
}
.timeline-step h3 { margin-top: 1rem; font-size: 1.1rem; text-transform: uppercase; }
.timeline-step p { margin-top: .5rem; font-size: .88rem; color: rgba(244,234,213,.72); }
.section.on-dark .timeline-num { background: var(--ink); border-color: var(--green-2); color: var(--cream); }
.section.on-dark .timeline::before { background: rgba(244,234,213,.16); }

/* =============================================================
   12. Team
   ============================================================= */
.team-wrap { display: grid; gap: 2.6rem; align-items: center; }
@media (min-width: 960px) { .team-wrap { grid-template-columns: .8fr 1.2fr; } }
.team-media { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 3/4; }
.team-media img { width: 100%; height: 100%; object-fit: cover; }
.team-pillars { margin-top: 1.8rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem 1.6rem; }
@media (min-width: 640px) { .team-pillars { grid-template-columns: repeat(3, 1fr); } }
.team-pillar h4 { font-family: var(--mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--green); }
.team-pillar p { margin-top: .4rem; font-size: .88rem; color: var(--graphite); }

/* =============================================================
   13. Gallery
   ============================================================= */
.gallery-track-wrap { overflow-x: auto; overflow-y: visible; scroll-snap-type: x proximity; padding-bottom: .5rem; }
.gallery-track { display: flex; gap: 1rem; width: max-content; }
.gallery-item {
  position: relative; scroll-snap-align: start; width: min(72vw, 380px); aspect-ratio: 4/5; border-radius: 4px; overflow: hidden;
  flex-shrink: 0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(11,15,12,.85));
  color: var(--white); font-size: .84rem; font-weight: 600;
}
.gallery-nav { display: flex; justify-content: flex-end; gap: .6rem; margin-top: 1rem; }
.gallery-nav button {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center;
  transition: background-color .3s, border-color .3s;
}
.gallery-nav button:hover { border-color: var(--green); background: var(--green-soft); }

/* =============================================================
   14. FAQ
   ============================================================= */
.faq-list { border-top: 1px solid var(--line); max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0; text-align: left; font-weight: 600; font-size: 1.02rem;
}
.faq-q .plus { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--ink); transition: transform .35s var(--ease-out), opacity .35s;
}
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq-item[data-open="true"] .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-soft); }
.faq-a-inner { padding-bottom: 1.4rem; color: var(--graphite); max-width: 62ch; font-size: .95rem; }

/* =============================================================
   15. Contact
   ============================================================= */
.contact-wrap { display: grid; gap: 3rem; }
@media (min-width: 960px) { .contact-wrap { grid-template-columns: .85fr 1.15fr; } }
.contact-info-list { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 1.1rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: .8rem; font-size: .95rem; }
.contact-info-item svg { width: 20px; height: 20px; margin-top: .1rem; color: var(--green-2); flex-shrink: 0; }
.contact-info-item a { text-decoration: underline; text-decoration-color: rgba(244,234,213,.3); }
.social-row { display: flex; gap: .8rem; margin-top: 1.8rem; }
.social-row a {
  width: 38px; height: 38px; border: 1px solid rgba(244,234,213,.3); border-radius: 50%;
  display: grid; place-items: center; transition: background-color .3s, border-color .3s;
}
.social-row a:hover { background: rgba(244,234,213,.1); border-color: var(--cream); }
.social-row svg { width: 17px; height: 17px; }

.map-embed { margin-top: 1.8rem; border-radius: 4px; overflow: hidden; border: 1px solid rgba(244,234,213,.18); aspect-ratio: 16/10; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.05); }

.form-card { background: var(--white); color: var(--ink); border-radius: 6px; padding: clamp(1.6rem, 3vw, 2.4rem); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.field { position: relative; }
.field label {
  display: block; font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  color: var(--graphite-2); margin-bottom: .45rem;
}
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: 3px;
  background: var(--paper); color: var(--ink); font: inherit; font-size: .95rem;
  transition: border-color .3s, background-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); background: var(--white); }
.field textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 1.6rem; display: flex; align-items: center; gap: 1rem; }
.form-note { font-size: .78rem; color: var(--graphite-2); }

.cta-submit { position: relative; overflow: hidden; }
.cta-submit .cta-label { display: inline-flex; align-items: center; gap: .5rem; transition: opacity .2s; }
.cta-submit.is-sending .cta-label { opacity: 0; }
.cta-submit .cta-spinner {
  position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transition: opacity .2s;
}
.cta-submit.is-sending .cta-spinner { opacity: 1; }
.cta-spinner::after {
  content: ""; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff;
  border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-success {
  display: none; align-items: center; gap: .8rem; padding: 1.1rem 1.3rem; margin-top: 1.2rem;
  background: var(--green-soft); border: 1px solid var(--green); border-radius: 4px; color: var(--green-dark); font-weight: 600; font-size: .92rem;
}
.form-success[data-visible="true"] { display: flex; }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { background: var(--black); color: rgba(244,234,213,.7); padding: 3.5rem 0 2rem; }
.footer-top { display: grid; gap: 2.4rem; }
@media (min-width: 720px) { .footer-top { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: .6rem; color: var(--white); font-family: var(--display); font-size: 1.15rem; text-transform: uppercase; }
.footer-brand svg { width: 26px; height: 26px; }
.footer-col h4 { font-family: var(--mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(244,234,213,.5); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; font-size: .9rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 2.8rem; padding-top: 1.6rem; border-top: 1px solid rgba(244,234,213,.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .78rem;
}
.footer-bottom a { text-decoration: underline; text-decoration-color: rgba(244,234,213,.3); }

/* =============================================================
   17. Floating WhatsApp
   ============================================================= */
.whatsapp-float {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(0,0,0,.4);
  transition: transform .4s var(--ease-soft);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* =============================================================
   18. Reveal on scroll (universal)
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   19. Scroll progress
   ============================================================= */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 250; background: transparent; pointer-events: none; }
.scroll-progress span {
  display: block; height: 100%; background: var(--green-2);
  transform-origin: 0 0; transform: scaleX(0); transition: transform .08s linear;
}

/* =============================================================
   20. Responsive tweaks
   ============================================================= */
@media (max-width: 539px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}

/* =============================================================
   21. Reduced motion — ONLY intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-flightpath .fp-marker.has-motion { animation: none; }
  .hero-flightpath .fp-line { transition-duration: .4s; }
}
