/* ════════════════════════════════════════════
   JD's Cartage, Garden Services
   ════════════════════════════════════════════ */

:root {
  --green-950: #08150a;
  --green-900: #0c1f0e;
  --green-800: #143318;
  --green-700: #1d4a20;
  --green-600: #2d6b22;
  --green-500: #3d8b2f;
  --green-400: #5fae4a;
  --green-300: #8bcb74;
  --green-200: #c2e4b3;
  --green-100: #e4f2dc;
  --green-50:  #f4f9f0;

  --ink:       #131712;
  --ink-soft:  #475044;
  --ink-muted: #798274;
  --line:      #e5eae2;
  --white:     #ffffff;
  --paper:     #fbfcfa;

  --font:      'Inter', system-ui, sans-serif;
  --display:   'Space Grotesk', system-ui, sans-serif;

  --wrap:      1120px;
  --header-h:  72px;
  --r-md:      14px;
  --r-lg:      22px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.02em; }

.wrap {
  width: min(var(--wrap), 100% - 3rem);
  margin-inline: auto;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}

.eyebrow--light { color: var(--green-300); }
.eyebrow--light::before { background: var(--green-300); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn svg { transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--green-600);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(45, 107, 34, 0.35);
}

.btn--light {
  background: var(--white);
  color: var(--green-800);
}

.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.btn--block { width: 100%; }

/* ════════════════════════════════════════════
   Header
   ════════════════════════════════════════════ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header.is-scrolled {
  background: rgba(12, 31, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.past-hero .header.is-scrolled {
  background: rgba(251, 252, 250, 0.85);
  box-shadow: 0 1px 0 var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.brand__leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--green-500);
  color: var(--white);
  border-radius: 11px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__text strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color 0.4s var(--ease);
}

.brand__text small {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.4s var(--ease);
}

body.past-hero .brand__text strong { color: var(--green-700); }
body.past-hero .brand__text small { color: var(--ink-muted); }

.nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s ease;
}

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

body.past-hero .nav a { color: var(--ink-soft); }
body.past-hero .nav a:hover { color: var(--green-600); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.4s var(--ease);
  white-space: nowrap;
}

.header__phone:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

body.past-hero .header__phone {
  color: var(--green-700);
  border-color: var(--green-200);
}

body.past-hero .header__phone:hover {
  background: var(--green-50);
  border-color: var(--green-400);
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), background 0.4s var(--ease);
}

body.past-hero .menu-btn span { background: var(--ink); }

/* ════════════════════════════════════════════
   Hero
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--green-950);
  overflow: hidden;
  padding: calc(var(--header-h) + 3rem) 0 6rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero__glow--1 {
  width: 720px;
  height: 720px;
  top: -240px;
  right: -160px;
  background: radial-gradient(circle, rgba(61, 139, 47, 0.5) 0%, rgba(61, 139, 47, 0) 70%);
  animation: drift 14s ease-in-out infinite alternate;
}

.hero__glow--2 {
  width: 540px;
  height: 540px;
  bottom: -220px;
  left: -140px;
  background: radial-gradient(circle, rgba(29, 74, 32, 0.75) 0%, rgba(29, 74, 32, 0) 70%);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-50px, 40px) scale(1.12); }
}

.hero__lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-200);
  margin-bottom: 2rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__eyebrow-brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--green-300);
}

.hero__eyebrow-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.25);
}

.hero__title {
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--green-300) 0%, var(--green-400) 55%, var(--green-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--green-200);
  margin-bottom: 0.85rem;
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 460px;
  margin: 0 0 2.5rem;
  line-height: 1.75;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 3rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.6rem 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.hero__trust-item svg {
  color: var(--green-300);
  flex-shrink: 0;
}

.hero__fade {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--green-950));
}

/* Hero media */
.hero__media {
  position: relative;
}

.hero__frame {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.6),
    0 0 0 10px rgba(255, 255, 255, 0.04);
  transform: rotate(1.5deg);
}

.hero__frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero__chip {
  position: absolute;
  bottom: -1.1rem;
  left: -1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.35rem;
  background: var(--white);
  color: var(--green-800);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  box-shadow: 0 14px 36px -8px rgba(0, 0, 0, 0.45);
}

.hero__chip svg {
  color: var(--green-500);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   Marquee
   ════════════════════════════════════════════ */
.marquee {
  background: var(--green-950);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.1rem 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: scroll 32s linear infinite;
}

.marquee__track span {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.marquee__track i {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--green-500);
}

@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════
   Sections
   ════════════════════════════════════════════ */
.section {
  padding: 7rem 0;
}

.section__head {
  max-width: 640px;
  margin-bottom: 4rem;
}

.section__head h2,
.why h2,
.quote__info h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}

.section__head h2 span {
  color: var(--green-500);
}

/* ════════════════════════════════════════════
   Services
   ════════════════════════════════════════════ */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.service {
  position: relative;
  padding: 1.9rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

.service:hover {
  transform: translateY(-6px);
  border-color: var(--green-200);
  box-shadow: 0 24px 48px -16px rgba(20, 51, 24, 0.16);
}

.service__num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-200);
  transition: color 0.45s var(--ease);
}

.service:hover .service__num { color: var(--green-400); }

.service__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: 16px;
  margin-bottom: 1.4rem;
  transition: background 0.45s var(--ease), color 0.45s var(--ease);
}

.service:hover .service__icon {
  background: var(--green-600);
  color: var(--white);
}

.service__icon svg { width: 26px; height: 26px; }

.service h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.service p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   Why us
   ════════════════════════════════════════════ */
.why {
  background: var(--green-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  width: 640px;
  height: 640px;
  top: -280px;
  right: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 139, 47, 0.35) 0%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.why__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why__lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  margin: 1.25rem 0 2.25rem;
  max-width: 440px;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why__list li {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-md);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.why__list li:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.why__badge {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-500);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 9px;
}

.why__list strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.why__list li > div > span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ════════════════════════════════════════════
   Quote
   ════════════════════════════════════════════ */
.quote__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.quote__lead {
  color: var(--ink-muted);
  font-size: 1.02rem;
  margin: 1.25rem 0 2.25rem;
  max-width: 420px;
}

.quote__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.contact-card:hover {
  border-color: var(--green-300);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(20, 51, 24, 0.14);
}

.contact-card__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-card__text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-card__text small {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ── Form ── */
.form {
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px -24px rgba(20, 51, 24, 0.12);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__field { margin-bottom: 1.15rem; }

.form__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}

.form__field label span {
  font-weight: 400;
  color: var(--ink-muted);
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 11px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form__field input::placeholder,
.form__field textarea::placeholder { color: #adb5a9; }

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(61, 139, 47, 0.12);
}

.form__field textarea { resize: vertical; min-height: 104px; }

.form__status {
  margin-top: 0.8rem;
  font-size: 0.875rem;
  text-align: center;
  min-height: 1.3rem;
}

.form__status.is-ok  { color: var(--green-600); }
.form__status.is-err { color: #c0392b; }

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════ */
.faq {
  background: var(--green-50);
}

.faq .section__head {
  margin-bottom: 2.5rem;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.faq__item[open] {
  border-color: var(--green-300);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green-600);
  background: var(--green-50);
  border-radius: 8px;
  transition: transform 0.3s var(--ease);
}

.faq__item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq__item p {
  padding: 0 1.4rem 1.25rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   CTA band
   ════════════════════════════════════════════ */
.band {
  background: linear-gradient(120deg, var(--green-700) 0%, var(--green-600) 60%, var(--green-500) 100%);
  padding: 4.5rem 0;
}

.band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.band h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
}

.band h2 em {
  font-style: normal;
  color: var(--green-200);
}

/* ════════════════════════════════════════════
   Footer
   ════════════════════════════════════════════ */
.footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.65);
  padding: 4.5rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--green-300);
  letter-spacing: -0.02em;
}

.footer__brand p {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0.25rem 0 1rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__brand em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer__area {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  max-width: 260px;
}

.footer__col h4 {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.1rem;
}

.footer__col a,
.footer__col span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
  transition: color 0.25s ease;
}

.footer__col a:hover { color: var(--green-300); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.6rem 0;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ════════════════════════════════════════════
   WhatsApp FAB
   ════════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.wa-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

/* ════════════════════════════════════════════
   Responsive
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-bottom: 5rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero__content { max-width: 620px; }

  .hero__media {
    max-width: 560px;
    width: 100%;
  }

  .hero__frame { transform: none; }

  .services { grid-template-columns: repeat(2, 1fr); }

  .why__grid,
  .quote__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .wrap { width: min(var(--wrap), 100% - 2.25rem); }

  .section { padding: 4.5rem 0; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--green-950);
    padding: 0.5rem 0 1rem;
    transform: translateY(-115%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
    margin-left: 0;
    z-index: -1;
  }

  body.past-hero .nav { background: var(--white); }
  body.past-hero .nav a { color: var(--ink-soft); }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.95rem 1.6rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .menu-btn { display: flex; }
  .header__phone { display: none; }

  .menu-btn[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-btn[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero {
    padding-top: calc(var(--header-h) + 2.25rem);
    padding-bottom: 4.5rem;
  }

  .hero__inner { gap: 2.75rem; }

  .hero__eyebrow {
    letter-spacing: 0.1em;
    font-size: 0.65rem;
    gap: 0.55rem;
    padding: 0.55rem 1.1rem;
    max-width: 100%;
  }

  .hero__eyebrow-brand { font-size: 0.85rem; }

  .hero__title {
    font-size: clamp(2.6rem, 13vw, 3.5rem);
  }

  .hero__lead { font-size: 1rem; }

  .hero__cta { margin-bottom: 2.5rem; }
  .hero__cta .btn { width: 100%; }

  .hero__trust {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__trust-item { justify-content: center; }

  .hero__chip {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 0.7rem 1.15rem;
    bottom: -0.9rem;
  }

  .hero__frame {
    border-radius: 18px;
    box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.55);
  }

  .marquee__track span { font-size: 0.78rem; }

  .section__head { margin-bottom: 2.75rem; }

  .service { padding: 1.6rem 1.4rem; }

  .why__grid, .quote__grid { gap: 2.5rem; }

  .why__lead, .quote__lead { font-size: 0.98rem; }

  .why__list li { padding: 1.15rem 1.2rem; }

  .contact-card { padding: 1rem 1.1rem; }

  .band { padding: 3.5rem 0; }

  .band .btn { width: 100%; max-width: 320px; }

  .wa-fab {
    width: 50px;
    height: 50px;
    bottom: 1.1rem;
    right: 1.1rem;
  }

  .services { grid-template-columns: 1fr; }

  .form__row { grid-template-columns: 1fr; }

  .form { padding: 1.6rem; }

  /* 16px prevents iOS Safari from zooming in on focused fields */
  .form__field input,
  .form__field select,
  .form__field textarea {
    font-size: 16px;
  }

  .band__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer__bottom { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
}
