/* ============================================================
   William DeVito — Hospitality Technology
   "Deep Hotel Luxe" design system
   Forest green · Cream · Brass | Fraunces + Inter
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Greens */
  --green-950: #0C1611;
  --green-900: #0F1C16;
  --green-800: #16271E;
  --green-700: #1E3A2C;
  --green-600: #28503C;
  --green-500: #356B4F;

  /* Creams */
  --cream-50:  #FBF7EF;
  --cream-100: #F5EEE0;
  --cream-200: #EADFC9;

  /* Brass / gold accent */
  --brass:        #B89160;
  --brass-light:  #D2B284;
  --brass-dark:   #95713F;

  /* Ink / text */
  --ink:        #18241D;
  --ink-soft:   #46524A;
  --muted:      #7B857A;
  --on-dark:        #F0EADD;
  --on-dark-soft:   #B7C0B4;

  /* Lines & surfaces */
  --line:       rgba(24, 36, 29, 0.12);
  --line-dark:  rgba(240, 234, 221, 0.14);
  --card:       #FFFFFF;

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing rhythm */
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --container: 1200px;
  --container-narrow: 880px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(12, 22, 17, 0.06), 0 2px 8px rgba(12, 22, 17, 0.05);
  --shadow-md: 0 10px 30px -10px rgba(12, 22, 17, 0.18);
  --shadow-lg: 0 30px 70px -25px rgba(12, 22, 17, 0.40);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  background: var(--cream-50);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem; /* 17px */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 460;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-optical-sizing: auto;
}

.display {
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  font-weight: 470;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h2.section-title {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 460;
  letter-spacing: -0.018em;
}

h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--brass-light); }
.eyebrow.centered { justify-content: center; }

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  color: var(--ink-soft);
  line-height: 1.62;
}
.on-green .lead { color: var(--on-dark-soft); }

p + p { margin-top: 1rem; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.narrow { max-width: var(--container-narrow); }

section { position: relative; }
.section-pad { padding-block: var(--section-y); }

.on-green {
  background: var(--green-900);
  color: var(--on-dark);
}
.on-green h1, .on-green h2, .on-green h3, .on-green h4 { color: var(--on-dark); }

.center { text-align: center; }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.16s var(--ease-out), background 0.2s var(--ease-out),
              color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--brass);
  color: #1a130a;
  box-shadow: 0 8px 24px -8px rgba(184, 145, 96, 0.7);
}
.btn-primary:hover { background: var(--brass-light); box-shadow: 0 12px 30px -8px rgba(184, 145, 96, 0.8); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-dark); }
.on-green .btn-ghost, .btn-ghost.on-dark { color: var(--on-dark); border-color: var(--line-dark); }
.on-green .btn-ghost:hover, .btn-ghost.on-dark:hover { border-color: var(--brass-light); color: var(--brass-light); }

.btn-lg { padding: 1.1rem 2.1rem; font-size: 1.02rem; }
.btn .arrow { transition: transform 0.18s var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.1rem;
  transition: background 0.3s var(--ease-out), padding 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out), border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(12, 22, 17, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-block: 0.7rem;
  border-bottom-color: var(--line-dark);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.65rem; line-height: 1.05; }
.brand-mark { display: flex; flex: none; }
.brand-mark svg { display: block; width: 38px; height: 38px; }
.brand-text { display: flex; flex-direction: column; }
.brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 500;
  color: var(--on-dark);
  letter-spacing: -0.01em;
}
.brand .brand-name .accent { color: var(--brass-light); }
.brand .brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 600;
  margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; padding: 0; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--on-dark-soft);
  position: relative;
  padding-block: 4px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--brass-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}
.nav-links a:hover { color: var(--on-dark); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  color: var(--on-dark);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--green-950);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-in-out);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--on-dark);
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu .btn { margin-top: 1.5rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: var(--green-950);
  background-image:
    linear-gradient(180deg, rgba(12,22,17,0.70) 0%, rgba(12,22,17,0.42) 42%, rgba(12,22,17,0.93) 100%),
    url("assets/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--on-dark);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px; height: 140px;
  background: linear-gradient(180deg, transparent, var(--cream-50));
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 860px; }
.hero h1 { color: #ffffff; margin-top: 1.4rem; }
.hero .lead { color: rgba(240, 234, 221, 0.9); margin-top: 1.5rem; max-width: 620px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}
.hero-trust .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--brass-light);
  font-weight: 500;
  line-height: 1;
}
.hero-trust .stat-label {
  font-size: 0.8rem;
  color: var(--on-dark-soft);
  margin-top: 0.45rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   MARQUEE / WHO IT'S FOR
   ============================================================ */
.audience {
  background: var(--green-900);
  color: var(--on-dark);
  padding-block: 2.4rem;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.audience-label {
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-bottom: 1.4rem;
}
.audience-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 0.9rem;
}
.chip {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-size: 0.9rem;
  color: var(--on-dark);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.chip:hover { border-color: var(--brass); color: var(--brass-light); }

/* ============================================================
   THE LEAKS (problem)
   ============================================================ */
.leaks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1rem;
}
.leak {
  background: var(--cream-50);
  padding: 1.6rem 1.4rem;
  transition: background 0.25s;
}
.leak:hover { background: #fff; }
.leak .leak-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--brass-dark);
  font-weight: 600;
}
.leak h4 { font-size: 1.18rem; margin-top: 0.5rem; }
.leak p { font-size: 0.95rem; color: var(--ink-soft); margin-top: 0.4rem; }

/* ============================================================
   POSITIONING / "I am your teacher"
   ============================================================ */
.philosophy { background: var(--cream-100); }
.philosophy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.not-list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 0.9rem; }
.not-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 1.05rem;
  color: var(--ink);
}
.not-list .mark {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-top: 2px;
}
.not-list .mark svg { width: 15px; height: 15px; }
.mark.no { background: rgba(149, 113, 63, 0.12); color: var(--brass-dark); }
.mark.yes { background: var(--green-700); color: var(--on-dark); }
.not-list li.is-yes { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.3; }

.pull-card {
  background: var(--green-900);
  color: var(--on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pull-card::before {
  content: "“";
  position: absolute;
  top: -1.5rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 9rem;
  color: var(--brass);
  opacity: 0.25;
}
.pull-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.4;
  position: relative;
}
.pull-card cite {
  display: block;
  margin-top: 1.4rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--brass-light);
  letter-spacing: 0.04em;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--green-700);
  color: var(--brass-light);
  display: grid; place-items: center;
  margin-bottom: 1.3rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.3rem; }
.service-card p { font-size: 0.97rem; color: var(--ink-soft); margin-top: 0.6rem; }
.service-tag {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass-dark);
}

/* ============================================================
   SPOTLIGHTS (alternating feature rows)
   ============================================================ */
.spotlight { padding-block: clamp(3rem, 6vw, 5rem); }
.spotlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.spotlight-row.reverse .spotlight-media { order: 2; }
.spotlight-copy h2 { margin-top: 1.1rem; }
.spotlight-copy .lead { margin-top: 1.1rem; }
.feature-list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1rem; }
.feature-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.feature-list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 7px;
  background: var(--green-700); color: var(--brass-light);
  display: grid; place-items: center; margin-top: 2px;
}
.feature-list .tick svg { width: 14px; height: 14px; }
.feature-list strong { font-weight: 600; }
.feature-list span { color: var(--ink-soft); font-size: 0.97rem; }
.spotlight-copy .btn { margin-top: 2rem; }

.spotlight-media { position: relative; }
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.2;
  background:
    linear-gradient(135deg, var(--green-700), var(--green-950));
  position: relative;
}
/* Designed fallback texture — shows only if a photo fails to load,
   so a missing image looks like an intentional panel, never broken. */
.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(184,145,96,0.10) 0 1px, transparent 1px 22px),
    radial-gradient(60% 60% at 50% 40%, rgba(184,145,96,0.18), transparent 70%);
}
.media-frame::after {
  content: "W";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(210, 178, 132, 0.35);
}
.media-frame img {
  width: 100%; height: 100%; object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.7s var(--ease-out);
}
.spotlight-media:hover .media-frame img { transform: scale(1.04); }
.media-badge {
  position: absolute;
  left: 1.2rem; bottom: 1.2rem;
  background: rgba(12,22,17,0.78);
  backdrop-filter: blur(8px);
  color: var(--on-dark);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.6rem;
  z-index: 2;
}
.media-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #58d68d; box-shadow: 0 0 0 4px rgba(88,214,141,0.2); }

/* itinerary mock card */
.itin-mock {
  position: absolute;
  left: -6%;
  right: auto;
  bottom: 7%;
  width: 56%;
  max-width: 255px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.2rem;
  z-index: 3;
}
.itin-mock .itin-head { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-dark); font-weight: 700; }
.itin-mock .itin-title { font-family: var(--font-display); font-size: 1.05rem; margin-top: 0.2rem; color: var(--ink); }
.itin-mock .itin-item { display: flex; gap: 0.6rem; align-items: center; margin-top: 0.7rem; font-size: 0.82rem; color: var(--ink-soft); }
.itin-mock .itin-item .ico { width: 28px; height: 28px; border-radius: 8px; background: var(--cream-100); display: grid; place-items: center; color: var(--green-600); flex: none; }
.itin-mock .itin-item .ico svg { width: 15px; height: 15px; }

/* ============================================================
   RESULTS / STATS BAND
   ============================================================ */
.results { background: var(--green-950); color: var(--on-dark); }
.results .eyebrow { color: var(--brass-light); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1rem;
}
.stat-block {
  background: var(--green-900);
  padding: 2.2rem 1.9rem;
  transition: background 0.3s;
}
.stat-block:hover { background: var(--green-800); }
.stat-block .big {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 500;
  color: var(--brass-light);
  line-height: 1.04;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}
.stat-block .desc { margin-top: 0.8rem; color: var(--on-dark); font-size: 1.02rem; font-weight: 500; }
.stat-block .src { margin-top: 0.5rem; color: var(--on-dark-soft); font-size: 0.8rem; }
.results-note { margin-top: 1.5rem; font-size: 0.82rem; color: var(--on-dark-soft); max-width: 760px; }

/* ============================================================
   COMPARISON / WHY ME
   ============================================================ */
.compare { background: var(--cream-100); }
.compare-table {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
}
.compare-row + .compare-row { border-top: 1px solid var(--line); }
.compare-row > div { padding: 1.15rem 1.3rem; }
.compare-row.head { background: var(--green-900); color: var(--on-dark); }
.compare-row.head > div { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.compare-row.head .me { color: var(--brass-light); }
.compare-row .label { font-weight: 600; color: var(--ink); }
.compare-row .alt { color: var(--ink-soft); font-size: 0.95rem; }
.compare-row .me { background: rgba(184,145,96,0.07); color: var(--ink); font-weight: 600; font-size: 0.95rem; position: relative; }
.compare-row.head .me { background: var(--green-800); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--green-900); color: var(--on-dark); overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--green-600), var(--green-950));
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-portrait .ribbon {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.4rem 1.4rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(12,22,17,0.9));
  font-size: 0.85rem; color: var(--on-dark-soft);
}
.about-portrait .ribbon strong { color: var(--brass-light); display:block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; }
.about h2 { margin-top: 1.1rem; }
.about p { color: var(--on-dark-soft); margin-top: 1.1rem; font-size: 1.06rem; }
.about p strong { color: var(--on-dark); font-weight: 600; }
.creds { list-style: none; padding: 0; margin: 1.8rem 0 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.creds li {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  color: var(--on-dark);
  display: flex; align-items: center; gap: 0.45rem;
}
.creds li svg { width: 14px; height: 14px; color: var(--brass-light); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  position: relative;
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--brass);
  line-height: 1;
  font-weight: 500;
}
.step h3 { margin-top: 0.6rem; font-size: 1.25rem; }
.step p { margin-top: 0.5rem; color: var(--ink-soft); font-size: 0.97rem; }
.step .connector { display: none; }

/* ============================================================
   CONTACT / SCHEDULE A CALL
   ============================================================ */
.contact { background: var(--green-950); color: var(--on-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact-info h2 { margin-top: 1.1rem; }
.contact-info .lead { margin-top: 1.1rem; color: var(--on-dark-soft); }
.contact-points { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.2rem; }
.contact-points li { display: flex; gap: 1rem; align-items: center; }
.contact-points .cp-ico {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: var(--green-700); color: var(--brass-light);
  display: grid; place-items: center;
}
.contact-points .cp-ico svg { width: 22px; height: 22px; }
.contact-points .cp-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-soft); }
.contact-points .cp-value { font-size: 1.05rem; color: var(--on-dark); font-weight: 500; }
.contact-points a.cp-value:hover { color: var(--brass-light); }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.contact-form h3 { font-size: 1.5rem; }
.contact-form .form-sub { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.4rem; margin-bottom: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.field label .req { color: var(--brass-dark); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184,145,96,0.18);
}
.contact-form .btn { width: 100%; margin-top: 0.4rem; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.9rem; text-align: center; }
.form-success {
  display: none;
  background: rgba(53,107,79,0.1);
  border: 1px solid var(--green-500);
  color: var(--green-600);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ============================================================
   LEGIBILITY ON DARK-GREEN SECTIONS
   Section titles -> cream/white, supporting text -> soft cream
   ============================================================ */
.results .section-title,
.about .section-title,
.contact .section-title,
.on-green .section-title { color: var(--on-dark); }

.results .section-head .lead,
.contact .section-head .lead { color: var(--on-dark-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-950); color: var(--on-dark-soft); padding-block: 3rem 2rem; border-top: 1px solid var(--line-dark); }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: flex-start; }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--on-dark); }
.footer-brand .brand-name .accent { color: var(--brass-light); }
.footer-by { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-light); font-weight: 600; margin-top: 3px; }
.footer-brand p { max-width: 320px; margin-top: 0.8rem; font-size: 0.92rem; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col h5 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 0.9rem; }
.footer-col a { display: block; font-size: 0.92rem; padding-block: 0.3rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--on-dark); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.82rem;
}

/* ============================================================
   MOBILE STICKY CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 22, 17, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-dark);
  transform: translateY(120%);
  transition: transform 0.35s var(--ease-out);
}
.mobile-cta-bar.show { transform: translateY(0); }
.mcta-call {
  flex: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  width: 64px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  color: var(--on-dark);
  font-size: 0.7rem;
  font-weight: 600;
}
.mcta-call svg { width: 19px; height: 19px; color: var(--brass-light); }
.mcta-schedule { flex: 1; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-cta-bar { display: flex; align-items: center; }
  .philosophy-grid,
  .spotlight-row,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .spotlight-row.reverse .spotlight-media { order: 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .leaks-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-row { grid-template-columns: 1.2fr 1fr 1fr; }
  .itin-mock { left: 4%; right: auto; }
  .about-portrait { max-width: 420px; }
}
@media (max-width: 560px) {
  body { font-size: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row > div { padding: 0.7rem 1rem; }
  .compare-row.head { display: none; }
  .compare-row .alt::before { content: "Typical option: "; color: var(--muted); font-size: 0.8rem; }
  .compare-row .me::before { content: "With William: "; color: var(--brass-dark); font-size: 0.8rem; }
  .hero { min-height: auto; padding-top: 6.5rem; }
  .itin-mock { display: none; }
  .leaks-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
