/* =========================================================
   Lyn Dry Cleaners — single stylesheet
   Mobile-first. Vanilla CSS. No frameworks.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --navy: #1a2845;
  --navy-2: #0f1729;
  --ink: #1a1f2e;
  --muted: #6b7280;
  --cream: #faf7f2;
  --paper: #ffffff;
  --gold: #b8935a;
  --gold-2: #9c7a48;
  --mist: #e8e3d8;
  --line: #ece8df;

  --serif: "Playfair Display", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 41, 0.05);
  --shadow: 0 8px 28px rgba(15, 23, 41, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 41, 0.16);

  --container: 1180px;
  --nav-h: 76px;

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

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5.2vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
p { margin: 0 0 1em; color: var(--ink); }

::selection { background: var(--gold); color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: clamp(60px, 9vw, 120px) 0;
}
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #d8def0; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover { background: var(--gold-2); box-shadow: 0 8px 18px rgba(184, 147, 90, 0.35); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }
.btn--ink {
  background: var(--navy);
  color: #fff;
}
.btn--ink:hover { background: var(--navy-2); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: #fff; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1200;     /* above mobile-menu (1000) so the burger stays tappable when menu is open */
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.header.is-scrolled,
.header.is-solid {
  background: var(--navy);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 24px rgba(0,0,0,0.18);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}
.logo .logo__mark {
  color: var(--gold);
  font-style: italic;
}
.logo small {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.nav__links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
}
.nav__links a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  position: relative;
}
.nav__links a:hover { color: #fff; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: #fff; }

.nav__cta {
  display: none;
}

/* ---------- Hamburger ---------- */
.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1100;
}
.burger__bars,
.burger__bars::before,
.burger__bars::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease), opacity 0.2s var(--ease);
}
.burger__bars {
  position: relative;
}
.burger__bars::before,
.burger__bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.burger__bars::before { top: -8px; }
.burger__bars::after  { top:  8px; }
.burger.is-open .burger__bars { background: transparent; }
.burger.is-open .burger__bars::before { top: 0; transform: rotate(45deg); }
.burger.is-open .burger__bars::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Mobile menu (full overlay, opaque) ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);          /* fully opaque */
  background-image:
    radial-gradient(900px 500px at 80% 0%, rgba(184,147,90,0.18), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(184,147,90,0.08), transparent 60%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  visibility: hidden;
  overflow-y: auto;
}
.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  width: 100%;
  max-width: 360px;
}
.mobile-menu__list li { margin: 4px 0; }
.mobile-menu__list a {
  display: block;
  padding: 18px 12px;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.01em;
  min-height: 56px;
}
.mobile-menu__list a:hover,
.mobile-menu__list a.is-active {
  color: var(--gold);
}
.mobile-menu__cta {
  margin-top: 12px;
  width: 100%;
  max-width: 360px;
}
.mobile-menu__cta .btn {
  width: 100%;
  justify-content: center;
}
.mobile-menu__phone {
  margin-top: 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.mobile-menu__phone a { color: #fff; font-weight: 600; }

body.no-scroll { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.85);
  transform: scale(1.04);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,23,41,0.7) 0%, rgba(15,23,41,0.45) 40%, rgba(15,23,41,0.85) 100%);
}
.hero__inner {
  position: relative;
  width: 100%;
  padding: 60px 0 80px;
}
.hero__content {
  max-width: 720px;
}
.hero h1 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 0.4em;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__rating {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
}
.hero__rating .stars { color: var(--gold); letter-spacing: 2px; }

.hero__scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll-hint::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 1.8s var(--ease) infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Scroll-video animation ---------- */
.scroll-video {
  position: relative;
  background: var(--navy-2);
  /* Three frames * 100vh each = 300vh total scroll */
  height: 300vh;
}
.scroll-video__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-2);
}
.scroll-video__frames {
  position: absolute;
  inset: 0;
}
.scroll-video__frame {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
  transform: scale(1.06);
  filter: brightness(0.55) saturate(0.95);
}
.scroll-video__frame.is-visible {
  opacity: 1;
  transform: scale(1);
}
.scroll-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,41,0.45), rgba(15,23,41,0.65));
  pointer-events: none;
}
.scroll-video__content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 720px;
}
.scroll-video__content .eyebrow {
  color: var(--gold);
}
.scroll-video__captions {
  position: relative;
  height: 5em;
  margin-bottom: 24px;
}
.scroll-video__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
  color: #fff;
}
.scroll-video__caption em {
  color: var(--gold);
  font-style: italic;
  margin-left: 0.25em;
}
.scroll-video__caption.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-video__sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  max-width: 44ch;
  margin: 0 auto;
}
.scroll-video__progress {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: min(280px, 60vw);
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 1px;
  overflow: hidden;
}
.scroll-video__progress-bar {
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 0.1s linear;
}
.scroll-video__steps {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 28px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-video__steps span {
  transition: color 0.3s var(--ease);
}
.scroll-video__steps span.is-active { color: var(--gold); }

/* ---------- Cards / Service teaser ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .lede { margin: 0 auto; }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card__img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--mist);
}
.card__body {
  padding: 28px 26px 30px;
}
.card__body h3 { margin-bottom: 8px; }
.card__body p { color: var(--muted); margin-bottom: 0; font-size: 0.95rem; }
.card__link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.card__link::after {
  content: " →";
  transition: margin-left 0.2s var(--ease);
}
.card__link:hover::after { margin-left: 4px; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-top: 32px;
}
.stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
}
.section--navy .stat {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.stat__num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.section--navy .stat__label { color: rgba(255,255,255,0.7); }

/* ---------- Quote / reviews ---------- */
.quote {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
}
.quote__stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.quote p {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 18px;
}
.quote__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.quote__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--serif);
}
.quote__name { font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.quote__time { font-size: 0.8rem; color: var(--muted); }

/* ---------- Service rows (services.html) ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 0; }
.service-row__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--mist);
  position: relative;
}
.service-row__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,23,41,0.18));
}
.service-row__body h2 { margin-bottom: 16px; }
.service-row__body ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.service-row__body li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
  color: var(--muted);
}
.service-row__body li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 100% 0%, rgba(184,147,90,0.18), transparent 60%);
  pointer-events: none;
}
.page-hero h1 { color: #fff; font-weight: 400; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 56ch; }
.page-hero .eyebrow { color: var(--gold); }

.crumbs {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.crumbs a { color: rgba(255,255,255,0.8); }
.crumbs span { margin: 0 10px; opacity: 0.5; }

/* ---------- About sections ---------- */
.about-split {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
.about-split__media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  background-color: var(--mist);
}
.about-split__media .badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--gold);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.values {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}
.value {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.value__icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.value h3 { margin-bottom: 8px; }
.value p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ---------- Reviews grid ---------- */
.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}
.rating-summary__num {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 10vw, 5rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.rating-summary__stars {
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 4px;
  margin: 12px 0 6px;
}
.rating-summary__count {
  color: var(--muted);
  font-size: 0.95rem;
}

.reviews-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
.info-block {
  margin-bottom: 28px;
}
.info-block h3 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 600;
  margin-bottom: 10px;
}
.info-block p { margin: 0; font-size: 1.02rem; }
.info-block a { color: var(--navy); font-weight: 500; }
.info-block a:hover { color: var(--gold); }

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--ink); font-weight: 500; }
.hours-list .time { color: var(--muted); }
.hours-list .closed { color: #b94a4a; }

.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.98rem;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }

.form__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form__msg {
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
}
.form__msg.is-success { color: #2f6b3a; }
.form__msg.is-error { color: #b94a4a; }

.map {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: var(--mist);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  background-image:
    radial-gradient(900px 500px at 100% 0%, rgba(184,147,90,0.18), transparent 60%),
    radial-gradient(700px 600px at 0% 100%, rgba(184,147,90,0.06), transparent 60%);
  color: #fff;
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 0;
}
.cta-band h2 { color: #fff; font-weight: 400; }
.cta-band h2 em { color: var(--gold); font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 56ch; margin: 0 auto 28px; }
.cta-band .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-2);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  font-size: 0.92rem;
}
.footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 5px 0; }
.footer a { color: rgba(255,255,255,0.75); }
.footer a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ---------- Responsive: tablet ---------- */
@media (min-width: 600px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr 1fr; }
  .form__row.full { grid-template-columns: 1fr; }
  .values { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Responsive: desktop ---------- */
@media (min-width: 861px) {
  .nav__links {
    display: flex;
  }
  .nav__cta {
    display: inline-flex;
  }
  .burger { display: none; }
  .mobile-menu { display: none; }

  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

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

  .service-row {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 90px 0;
  }
  .service-row--reverse .service-row__media { order: 2; }

  .about-split {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .about-split--reverse .about-split__media { order: 2; }

  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 60px; }
}

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

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .scroll-video { height: 100vh; }
  .scroll-video__sticky { position: relative; }
  .scroll-video__frame:last-child { opacity: 1; }
  .scroll-video__caption { opacity: 1; transform: none; position: static; }
  .scroll-video__captions { height: auto; }
  .hero__scroll-hint { display: none; }
}
