/* ============================================================
   MASSEY LANDSCAPING — Charlotte, NC
   Cream · Deep Green · Black — glassmorphism / liquid glass
   ============================================================ */

:root {
  --cream: #f4efe4;
  --cream-soft: #faf7ee;
  --green-deep: #16301f;
  --green-forest: #1e3d28;
  --green-leaf: #8fc45e;
  --green-leaf-soft: #c6e2a4;
  --ink: #101410;
  --ink-60: rgba(16, 20, 16, 0.64);
  --white: #ffffff;
  --gold: #e8b64c;

  --serif: "Fraunces", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --shadow-soft: 0 18px 50px -18px rgba(16, 32, 20, 0.35);
  --shadow-card: 0 10px 34px -12px rgba(16, 32, 20, 0.22);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }

h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 em, h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-leaf);
}
.story h2 em, .services h2 em, .process h2 em { color: #4c7a3d; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4c7a3d;
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--green-leaf); }

.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }
.stars--lg { font-size: 1.25rem; }

/* ---------- glass ---------- */
.glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.34));
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.75);
}

.glass-dark {
  background: linear-gradient(135deg, rgba(24,44,30,0.72), rgba(16,30,20,0.55));
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 40px -14px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.16);
  color: var(--cream-soft);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

/* liquid glass primary CTA */
.btn--liquid {
  position: relative;
  overflow: hidden;
  color: var(--green-deep);
  background: linear-gradient(160deg, #dff0c2, var(--green-leaf) 55%, #6ea842);
  box-shadow:
    0 14px 34px -10px rgba(110, 168, 66, 0.55),
    inset 0 1.5px 0 rgba(255,255,255,0.8),
    inset 0 -2px 6px rgba(22, 48, 31, 0.25);
}
.btn--liquid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.65) 48%, rgba(255,255,255,0.15) 55%, transparent 70%);
  transform: translateX(-120%);
  animation: sheen 4.2s var(--ease-out) infinite;
}
@keyframes sheen {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}
.btn--liquid:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    0 20px 44px -10px rgba(110, 168, 66, 0.65),
    inset 0 1.5px 0 rgba(255,255,255,0.8),
    inset 0 -2px 6px rgba(22, 48, 31, 0.25);
}

.btn--glass {
  color: var(--white);
  background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn--glass:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

.btn--glass-dark {
  color: var(--cream-soft);
  background: rgba(22, 48, 31, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 12px 22px;
  font-size: 0.92rem;
}
.btn--glass-dark:hover { background: var(--green-deep); transform: translateY(-1px); }

.btn--dark {
  color: var(--cream-soft);
  background: var(--green-deep);
  box-shadow: var(--shadow-card);
}
.btn--dark:hover { background: var(--green-forest); transform: translateY(-2px); }

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

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: padding 0.4s var(--ease-out), background 0.4s;
}
.nav__inner {
  width: min(1240px, 100% - 32px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px 10px 12px;
  border-radius: 999px;
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled .nav__inner {
  background: linear-gradient(135deg, rgba(20,38,26,0.82), rgba(14,26,18,0.72));
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.14);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--white);
}
.nav__logo-chip {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: radial-gradient(120% 120% at 30% 20%, #2c3038, #0c0e12);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 6px 16px -6px rgba(0,0,0,0.6);
  overflow: hidden;
}
.nav__logo-chip img { width: 34px; height: 34px; border-radius: 8px; }
.nav__wordmark {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav__wordmark em { font-style: italic; font-weight: 400; color: var(--green-leaf-soft); }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--green-leaf-soft); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--white);
}
.hero__bg { position: absolute; inset: -6% 0; z-index: -2; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 18s var(--ease-out) both;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,20,13,0.55) 0%, rgba(10,20,13,0.18) 34%, rgba(10,20,13,0.32) 62%, rgba(12,24,15,0.82) 100%),
    radial-gradient(90% 60% at 50% 42%, transparent 40%, rgba(8,16,10,0.42) 100%);
}
.hero__content {
  width: min(880px, 100% - 40px);
  padding: 120px 0 90px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green-leaf-soft);
  margin-bottom: 22px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(10, 22, 13, 0.38);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.16);
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-leaf);
  box-shadow: 0 0 12px var(--green-leaf);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero__title {
  font-size: clamp(2.4rem, 6.2vw, 4.6rem);
  font-weight: 500;
  text-shadow:
    0 2px 8px rgba(6, 14, 8, 0.65),
    0 10px 44px rgba(6, 14, 8, 0.6),
    0 0 90px rgba(143, 196, 94, 0.22);
  margin-bottom: 22px;
}
.hero__title em { text-shadow: 0 2px 8px rgba(6,14,8,0.7), 0 0 34px rgba(143,196,94,0.55); }
.hero__title-lead {
  display: block;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.022em;
  text-wrap: balance;
  margin-bottom: 0.12em;
}
.hero__sub {
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  color: rgba(255,255,255,0.95);
  max-width: 640px;
  margin: 0 auto 34px;
  text-shadow: 0 2px 10px rgba(6,14,8,0.7), 0 6px 26px rgba(6,14,8,0.5);
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
  margin-bottom: 38px;
}
.hero__trust {
  display: inline-flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 18px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.28);
}
.trust__item { display: inline-flex; align-items: center; gap: 8px; }
.trust__sep { width: 1px; height: 18px; background: rgba(255,255,255,0.3); }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute; top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: rgba(255,255,255,0.85);
  animation: scrollhint 2s ease-in-out infinite;
}
@keyframes scrollhint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
}

/* ---------- ticker ---------- */
.ticker {
  background: var(--green-deep);
  color: var(--green-leaf-soft);
  padding: 16px 0;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.08);
}
.ticker__track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.ticker__track i { font-style: normal; color: var(--green-leaf); opacity: 0.8; font-size: 0.8rem; }

/* generic marquee — pure CSS, no JS required.
   Track content is duplicated in the HTML inside .mq-dup (display:contents),
   so the -50% translate loops seamlessly even where scripts don't run. */
[data-marquee] {
  display: flex;
  width: max-content;
  animation: marquee var(--marquee-dur, 60s) linear infinite;
}
.mq-dup { display: contents; }
[data-marquee][data-reverse] { animation-direction: reverse; }
[data-marquee]:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- story ---------- */
.story { padding: clamp(90px, 12vw, 150px) 0; background: var(--cream); }
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.story__text h2 { margin-bottom: 24px; }
.story__text p { color: var(--ink-60); margin-bottom: 18px; max-width: 54ch; }
.story__points {
  list-style: none;
  margin: 26px 0 32px;
  display: grid; gap: 14px;
}
.story__points li {
  padding-left: 30px;
  position: relative;
  color: var(--ink-60);
}
.story__points li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: #4c7a3d;
}
.story__points strong { color: var(--ink); }
.story__media { position: relative; }
.story__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.story__photo--main img { width: 100%; height: 520px; object-fit: cover; }
.story__photo--float {
  position: absolute;
  left: -60px; bottom: -46px;
  width: 55%;
  border: 6px solid var(--cream);
  border-radius: var(--radius-md);
  transform: rotate(-2.5deg);
}
.story__photo--float img { width: 100%; height: 220px; object-fit: cover; }
.story__badge {
  position: absolute;
  top: 26px; right: -18px;
  display: grid; gap: 2px;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  text-align: left;
}
.story__badge strong { font-family: var(--serif); font-size: 1.35rem; }
.story__badge small { opacity: 0.75; font-size: 0.78rem; }

/* ---------- services ---------- */
.services {
  padding: clamp(90px, 12vw, 150px) 0;
  background:
    radial-gradient(70% 50% at 85% 0%, rgba(143, 196, 94, 0.16), transparent 60%),
    linear-gradient(180deg, var(--cream-soft), var(--cream));
}
.services h2 { max-width: 640px; margin-bottom: 50px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service {
  display: block;
  padding: 32px 28px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -16px rgba(16, 32, 20, 0.3), inset 0 1px 0 rgba(255,255,255,0.75);
}
.service__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 16px;
  margin-bottom: 20px;
  color: var(--cream-soft);
  background: linear-gradient(150deg, var(--green-forest), var(--green-deep));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 8px 18px -8px rgba(22,48,31,0.6);
}
.service__icon svg { width: 26px; height: 26px; }
.service h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service p { color: var(--ink-60); font-size: 0.95rem; margin-bottom: 18px; }
.service__cta {
  font-weight: 600;
  font-size: 0.9rem;
  color: #4c7a3d;
  transition: color 0.25s;
}
.service:hover .service__cta { color: var(--green-deep); }

/* ---------- work / gallery ---------- */
.work {
  padding: clamp(90px, 12vw, 150px) 0 clamp(70px, 9vw, 110px);
  background:
    radial-gradient(60% 40% at 15% 10%, rgba(143,196,94,0.12), transparent 60%),
    linear-gradient(175deg, var(--green-deep) 0%, #0f2416 100%);
  color: var(--cream-soft);
  overflow: hidden;
}
.work__head { text-align: center; margin-bottom: 54px; }
.work__head h2 { margin-bottom: 14px; }
.work__sub { color: rgba(244,239,228,0.66); max-width: 46ch; margin-inline: auto; }
.work__rows { display: grid; gap: 22px; }
.work__row { gap: 22px; padding-block: 4px; }
.shot {
  position: relative;
  flex-shrink: 0;
  width: clamp(280px, 32vw, 420px);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px -14px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.shot:hover img { transform: scale(1.06); }
.shot figcaption {
  position: absolute;
  left: 12px; bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}
.work__cta { text-align: center; margin-top: 56px; }

/* ---------- reviews ---------- */
.reviews {
  padding: clamp(90px, 12vw, 150px) 0;
  background: linear-gradient(180deg, #0f2416, var(--green-deep) 30%, #122b1b);
  color: var(--cream-soft);
  overflow: hidden;
}
.reviews__head { text-align: center; margin-bottom: 54px; }
.reviews__head h2 { margin-bottom: 26px; }
.reviews__score {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
}
.reviews__score strong { font-family: var(--serif); font-size: 1.2rem; }
.reviews__row { gap: 24px; padding-block: 8px; }
.review {
  flex-shrink: 0;
  width: clamp(300px, 36vw, 420px);
  padding: 30px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review p {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 400;
}
.review mark {
  background: linear-gradient(120deg, rgba(143,196,94,0.28), rgba(143,196,94,0.14));
  color: var(--green-leaf-soft);
  padding: 0 4px;
  border-radius: 4px;
}
.review footer {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 2px;
  font-size: 0.88rem;
}
.review footer span { opacity: 0.6; }

/* compact reviews strip (directly under hero) */
.reviews--compact {
  padding: 46px 0 54px;
  background: linear-gradient(180deg, #0c1e12, var(--green-deep) 55%, #122b1b);
}
.reviews--compact .reviews__head { margin-bottom: 30px; }
.reviews--compact .review {
  width: clamp(270px, 30vw, 350px);
  padding: 22px 24px 20px;
}
.reviews--compact .review p { font-size: 0.96rem; }
.reviews--compact .review .stars { font-size: 0.82rem; }
.reviews--compact .review footer { font-size: 0.82rem; }

/* ---------- process ---------- */
.process { padding: clamp(90px, 12vw, 150px) 0; background: var(--cream); }
.process h2 { margin-bottom: 50px; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step { padding: 34px 30px; position: relative; }
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.2rem;
  line-height: 1;
  color: rgba(76, 122, 61, 0.35);
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.35rem; margin-bottom: 10px; }
.step p { color: var(--ink-60); font-size: 0.96rem; }
.step a { color: #4c7a3d; font-weight: 600; text-decoration: none; }
.step a:hover { text-decoration: underline; }

/* ---------- quote ---------- */
.quote {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0;
  overflow: hidden;
  color: var(--cream-soft);
}
.quote__bg { position: absolute; inset: 0; z-index: -2; }
.quote__bg img { width: 100%; height: 100%; object-fit: cover; }
.quote__bg img { filter: saturate(1.15); }
.quote__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(70% 90% at 82% 30%, transparent 0%, rgba(10,22,13,0.55) 100%),
    linear-gradient(100deg, rgba(10,22,13,0.9) 12%, rgba(10,22,13,0.62) 55%, rgba(10,22,13,0.3) 100%);
}
.quote::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(52% 44% at 78% 76%, rgba(232,182,76,0.2), transparent 70%);
  pointer-events: none;
}
.quote__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.quote__intro h2 { margin-bottom: 20px; }
.quote__intro p { color: rgba(244,239,228,0.78); max-width: 44ch; margin-bottom: 26px; }
.quote__alt { display: flex; gap: 10px; align-items: center; font-size: 0.95rem; }
.quote__alt span { opacity: 0.65; }
.quote__alt a { color: var(--green-leaf-soft); font-weight: 700; text-decoration: none; }
.quote__alt a:hover { text-decoration: underline; }
.quote__form {
  padding: 38px 34px;
  display: grid;
  gap: 20px;
  border-radius: var(--radius-lg);
}
.quote__form .field { display: grid; gap: 8px; }
.quote__form label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.quote__form input,
.quote__form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(22,48,31,0.18);
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  outline: none;
  transition: border 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.quote__form input:focus,
.quote__form textarea:focus {
  border-color: #4c7a3d;
  box-shadow: 0 0 0 4px rgba(143,196,94,0.25);
}
.quote__form input.invalid,
.quote__form textarea.invalid { border-color: #c0522f; box-shadow: 0 0 0 4px rgba(192,82,47,0.18); }
.quote__note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(16,20,16,0.55);
  margin-top: -6px;
}

/* ---------- CTA band ---------- */
.ctaband {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 0;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(143,196,94,0.16), transparent 65%),
    linear-gradient(175deg, var(--green-deep), #0d2013);
  color: var(--cream-soft);
  text-align: center;
  overflow: hidden;
}
.ctaband__inner { max-width: 680px; margin-inline: auto; }
.ctaband h2 { margin-bottom: 18px; }
.ctaband p { color: rgba(244,239,228,0.75); margin-bottom: 34px; }
.ctaband__btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
}

/* ---------- footer ---------- */
.footer {
  background: #0c1b11;
  color: rgba(244,239,228,0.82);
  padding: 70px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.nav__logo-chip--lg { width: 54px; height: 54px; border-radius: 16px; }
.nav__logo-chip--lg img { width: 44px; height: 44px; }
.footer__word {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-top: 16px;
  color: var(--cream-soft);
}
.footer__word em { font-style: italic; color: var(--green-leaf-soft); }
.footer__tag { font-size: 0.9rem; opacity: 0.6; margin-top: 4px; }
.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-leaf-soft);
  margin-bottom: 16px;
}
.footer__col a, .footer__col p {
  display: block;
  color: rgba(244,239,228,0.82);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.footer__col a:hover { color: var(--green-leaf-soft); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: space-between;
  padding-block: 22px 90px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  opacity: 0.55;
}

/* ---------- sticky mobile bar ---------- */
.stickybar {
  position: fixed;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  transform: translateY(140%);
  transition: transform 0.5s var(--ease-out);
}
.stickybar.visible { transform: translateY(0); }
.stickybar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 10px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}
.stickybar__btn--text {
  color: var(--green-deep);
  background: linear-gradient(160deg, #dff0c2, var(--green-leaf) 60%, #6ea842);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.stickybar__btn--call {
  color: var(--cream-soft);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ---------- reveal animation (progressive enhancement) ----------
   Hidden-until-scroll ONLY when JS has tagged <html class="js">.
   Without JS (e.g. iOS Quick Look), all content renders visible. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .story__grid { grid-template-columns: 1fr; }
  .story__media { max-width: 560px; }
  .story__photo--float { left: -12px; }
  .story__badge { right: 8px; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .quote__wrap { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(1160px, 100% - 36px); }
  .services__grid { grid-template-columns: 1fr; }
  .hero__ctas .btn, .ctaband__btns .btn { width: 100%; }
  .hero__trust {
    gap: 6px 14px;
    padding: 12px 18px;
    font-size: 0.8rem;
    border-radius: 22px;
    max-width: 92%;
  }
  .trust__sep { display: none; }
  .hero__content { padding: 104px 0 76px; }
  .hero__eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    padding: 8px 16px;
    gap: 8px;
  }
  .hero__title {
    font-size: clamp(2.05rem, 8.6vw, 2.5rem);
    text-wrap: balance;
    margin-bottom: 18px;
  }
  .hero__sub { font-size: 1rem; margin-bottom: 28px; }
  .hero__ctas { gap: 12px; margin-bottom: 30px; }
  .hero__scroll { display: none; }
  h2 { text-wrap: balance; }
  .story__photo--main img { height: 380px; }
  .story__photo--float img { height: 150px; }
  .story__badge { padding: 12px 16px; top: 14px; }
  .nav { padding: 10px 0; }
  .nav__cta { display: none; }
  .nav__wordmark { font-size: 1.05rem; }
  .nav__logo-chip { width: 40px; height: 40px; }
  .stickybar { display: flex; }
  .shot { width: min(76vw, 330px); aspect-ratio: 4 / 3.1; }
  .work__rows { gap: 16px; }
  .work__row { gap: 14px; }
  .review { width: min(82vw, 360px); padding: 24px 22px 20px; }
  .reviews--compact .review { width: min(80vw, 320px); }
  .reviews__score { font-size: 0.85rem; padding: 10px 18px; gap: 10px; }
  .service { padding: 26px 22px; }
  .step { padding: 26px 22px; }
  .step__num { font-size: 2.6rem; }
  .quote__form { padding: 26px 20px; }
  .quote__alt { flex-direction: column; align-items: flex-start; gap: 4px; }
  .ticker { padding: 12px 0; }
  .ticker__track { font-size: 0.95rem; }
  .footer { padding-top: 54px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { padding-bottom: 110px; flex-direction: column; gap: 4px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__bg img { animation: none; }
  .btn--liquid::after { animation: none; }
  [data-marquee] { animation: none; flex-wrap: wrap; width: 100%; }
  .mq-dup { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span, .hero__eyebrow .dot { animation: none; }
}
