/* ==========================================================
   Home Hunters Group — v2
   Brand palette: teal #5dbeb1 + near-black #231f20
   Type: Inter / Inter Tight
   ========================================================== */

:root {
  /* brand */
  --teal:        #5dbeb1;
  --teal-deep:   #3fa195;
  --teal-soft:   #8fd2c8;
  --teal-tint:   #e9f6f3;
  --ink:         #231f20;
  --ink-soft:    #2e2a2b;
  --ink-2:       #4a4646;

  /* neutrals */
  --bg:          #ffffff;
  --bg-soft:     #faf8f4;   /* warm sand (used sparingly) */
  --bg-cream:    #f1ebe0;   /* HHG brand cream from PDF */
  --line:        #e8e3d8;
  --mute:        #7a7570;

  /* type */
  --sans:    "Inter", "Helvetica Neue", Arial, sans-serif;
  --display: "Montserrat", "Inter", "Helvetica Neue", Arial, sans-serif;

  /* rhythm */
  --pad-x:    clamp(16px, 5vw, 96px);
  --maxw:    100%;
  --radius:  18px;
}

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

html {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html, body { overflow-x: hidden; max-width: 100%; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--teal); color: var(--ink); }

/* ============ TYPOGRAPHY UTILITIES ============ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
@media (max-width: 560px) {
  .section-eyebrow { font-size: 10.5px; letter-spacing: 0.14em; }
}
.section-eyebrow--inverse { color: rgba(255,255,255,0.6); }
.section-eyebrow .dot,
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}

em {
  font-style: normal;
  color: var(--teal-deep);
}

/* ============ BUTTONS / LINKS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 22px;
  border-radius: 100px;
  border: 1px solid currentColor;
  transition: background .25s ease, color .25s ease, border-color .25s ease, gap .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 17px 28px; font-size: 13.5px; }
.btn:hover { gap: 16px; }
.btn--ghost-light { color: var(--ink); border-color: rgba(35,31,32,.18); background: transparent; }
.btn--ghost-light:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ghost { color: var(--ink); border-color: rgba(35,31,32,.18); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--solid { color: #fff; background: var(--ink); border-color: var(--ink); }
.btn--solid:hover { background: var(--teal-deep); border-color: var(--teal-deep); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: gap .2s ease, color .2s ease, border-color .2s ease;
}
.link-arrow:hover { gap: 16px; color: var(--teal-deep); border-color: var(--teal-deep); }
.link-arrow--inverse { color: #fff; border-color: rgba(255,255,255,.4); }
.link-arrow--inverse:hover { color: var(--teal); border-color: var(--teal); }

/* ============ UTILITY BAR ============ */
.util-bar {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.util-bar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 11px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.util-bar__divider {
  width: 1px; height: 11px;
  background: rgba(255,255,255,.18);
}
.util-bar__link { color: var(--teal); transition: color .2s ease; }
.util-bar__link:hover { color: #fff; }
@media (max-width: 980px) {
  .util-bar__inner { gap: 12px; padding: 10px 16px; font-size: 9.5px; letter-spacing: 0.14em; }
  .util-bar__item:nth-child(3) { display: none; }
  .util-bar__divider:nth-child(2),
  .util-bar__divider:nth-child(4) { display: none; }
}
@media (max-width: 640px) {
  .util-bar__item:not(.util-bar__link):not(:first-child) { display: none; }
  .util-bar__divider { display: none !important; }
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links {
  margin-left: auto;
}

/* Primary teal nav CTA */
.nav .btn--ghost-light {
  background: var(--teal);
  color: var(--ink);
  border-color: var(--teal);
}
.nav .btn--ghost-light:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { height: 100px; width: auto; }
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav__links a { position: relative; padding: 6px 0; transition: color .2s ease; }
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--teal);
  transition: right .25s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }
.nav .btn { justify-self: end; }
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__inner { gap: 16px; }
  .nav__logo img { height: 60px; }
  .nav .btn { margin-left: auto; padding: 12px 18px; font-size: 11.5px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--bg);
  padding: 0 0 min(clamp(40px, 6vw, 80px), 6svh);
  overflow: hidden;
  min-height: calc(100vh - 88px);
  min-height: calc(100svh - 88px);
  display: flex;
  align-items: center;
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: 100%;
}
.hero__copy {
  max-width: 720px;
  container-type: inline-size;
  container-name: herocopy;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  width: fit-content;
  background: var(--bg);
}
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, min(9vw, 17cqi, 14svh), 168px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: min(clamp(20px, 3vw, 36px), 3svh) 0 min(clamp(20px, 2.5vw, 32px), 3svh);
  color: var(--ink);
  text-wrap: pretty;
}
.hero__title .line { display: block; }
.hero__title-dot { color: var(--teal); }
.hero__lede {
  font-size: clamp(15.5px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 min(clamp(28px, 3.5vw, 40px), 4svh);
  max-width: 48ch;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: min(clamp(36px, 5vw, 56px), 6svh);
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(28px, 4vw, 56px);
  padding-top: min(32px, 4svh);
  border-top: 1px solid var(--line);
  margin: 0;
}
.hero__meta dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  margin-bottom: 6px;
}
.hero__meta dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-height: calc(100vh - 180px);
  max-width: 100%;
}
.hero__card {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-cream);
  isolation: isolate;
}
.hero__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.hero__card-badge {
  position: absolute;
  left: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  background: rgba(35,31,32,.78);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.1);
}
.hero__card-badge-l {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--teal);
}
.hero__card-badge-r {
  font-size: 11.5px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero__card-badge-r br + * { font-weight: 400; opacity: .75; }

.hero__chip {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 30px 60px -28px rgba(35,31,32,.25);
  color: var(--ink);
  max-width: 250px;
}
.hero__chip svg {
  color: var(--teal-deep);
  flex: none;
}
.hero__chip--1 {
  top: 8%;
  right: -8%;
  transform: rotate(2deg);
}
.hero__chip--2 {
  bottom: 12%;
  left: -10%;
  transform: rotate(-3deg);
}
.hero__chip-h { font-size: 13.5px; font-weight: 600; line-height: 1.2; }
.hero__chip-s { font-size: 11.5px; color: var(--mute); margin-top: 4px; line-height: 1.3; }

.hero__scrollcue {
  position: absolute;
  left: var(--pad-x);
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  pointer-events: none;
}
.hero__scrollcue-line {
  width: 60px; height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.hero__scrollcue-line::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 30%;
  background: var(--teal);
  animation: scrollcue 2.4s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(330%); }
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { aspect-ratio: 4 / 4; max-height: none; margin-top: 20px; }
  .hero__chip--1 { right: 4%; top: 4%; }
  .hero__chip--2 { left: 4%; bottom: 6%; }
  .hero__scrollcue { display: none; }
}
@media (max-width: 640px) {
  .hero { padding-top: 32px; padding-bottom: 32px; }
  .hero__title { font-size: clamp(36px, 11vw, 72px); margin-top: 22px; word-break: break-word; overflow-wrap: anywhere; }
  .hero__lede { font-size: 15px; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn--lg { padding: 14px 20px; font-size: 12.5px; flex: 1; justify-content: center; }
  .hero__visual { aspect-ratio: 5 / 5; }
  .hero__chip { padding: 9px 12px; max-width: 60vw; }
  .hero__chip--1 { right: 4%; top: 4%; }
  .hero__chip--2 { left: 4%; bottom: 6%; }
  .hero__chip-h { font-size: 11.5px; }
  .hero__chip-s { font-size: 10.5px; }
  .hero__card-badge { padding: 14px 16px; gap: 12px; }
  .hero__card-badge-l { font-size: 34px; }
  .hero__card-badge-r { font-size: 10px; }
}
@media (max-width: 640px) {
  .marquee { display: none; }
  .hero__inner { gap: 0; }
  .hero__copy { display: contents; }
  .hero__title { margin: 14px 0 12px; }
  .hero__lede { margin: 0 0 0; }
  .hero__actions { order: 3; margin: 24px 0 0; }
  .hero__visual { order: 1; margin-top: 14px; }
  .hero__meta {
    order: 2;
    margin-top: 20px;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 18px;
  }
  .hero__meta > div {
    min-width: 0;
  }
  .hero__meta dt {
    font-size: 9.5px;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
  }
  .hero__meta dd {
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }
}
@media (max-width: 380px) {
  .hero__meta { gap: 10px; }
  .hero__meta dd { font-size: 14px; }
}
@media (max-width: 420px) {
  .hero__title { font-size: clamp(32px, 10vw, 56px); }
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee--light { background: var(--bg-cream); color: var(--ink); }
.marquee__track {
  display: flex; align-items: center; gap: 56px;
  white-space: nowrap;
  padding: clamp(20px, 3vw, 34px) 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 56px);
  letter-spacing: -0.025em;
  animation: marquee 36s linear infinite;
}
.marquee__sep { color: var(--teal); font-size: 0.5em; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ STORY ============ */
.story {
  padding: clamp(80px, 11vw, 160px) var(--pad-x) clamp(60px, 7vw, 100px);
  background: var(--bg);
}
.story__inner { max-width: var(--maxw); margin: 0 auto; }
.story__head { margin-bottom: 40px; }
.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(60px, 8vw, 110px);
}
.story__statement {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}
.story__aside p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 22px;
}
.story__aside .link-arrow { margin-top: 8px; }

.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  padding-top: clamp(50px, 6vw, 70px);
  border-top: 1px solid var(--line);
}
.bigstat { padding-right: clamp(16px, 2vw, 30px); border-right: 1px solid var(--line); }
.bigstat:last-child { border-right: none; }
.bigstat__value {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(46px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.bigstat__unit {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--teal-deep);
  letter-spacing: 0;
}
.bigstat__prefix {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.bigstat__label {
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--mute);
}

@media (max-width: 980px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__stats { grid-template-columns: 1fr 1fr; }
  .bigstat:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
  .story__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 28px;
  }
  .bigstat {
    padding-right: 8px;
    border-right: 1px solid var(--line);
    border-bottom: none;
    padding-bottom: 0;
    min-width: 0;
  }
  .bigstat:nth-child(2) { border-right: 1px solid var(--line); }
  .bigstat:last-child { border-right: none; padding-right: 0; }
  .bigstat__value { font-size: 30px; gap: 2px; }
  .bigstat__unit { font-size: 0.4em; }
  .bigstat__label {
    margin-top: 8px;
    font-size: 10.5px;
    line-height: 1.35;
    letter-spacing: 0.02em;
  }
}/* ============ HOW WE HELP ============ */
.how {
  background: var(--bg-soft);
  padding: clamp(80px, 11vw, 160px) var(--pad-x) clamp(70px, 9vw, 130px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.how__inner { max-width: var(--maxw); margin: 0 auto; }
.how__head { max-width: 880px; margin: 0 auto clamp(50px, 6vw, 80px); text-align: center; }
.how__head .section-eyebrow { justify-content: center; }
.how__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 20px 0;
  text-wrap: pretty;
}
.how__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 auto;
  max-width: 56ch;
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2vw, 28px);
}
.path-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(35,31,32,.18);
  border-color: var(--teal);
}
.path-card__num {
  position: absolute;
  top: clamp(24px, 3vw, 36px);
  right: clamp(28px, 3vw, 44px);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--mute);
}
.path-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-deep);
  display: grid; place-items: center;
  margin-bottom: 28px;
}
.path-card__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  text-wrap: pretty;
}
.path-card__copy {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 24px;
}
.path-card__toggle {
  appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.path-card__toggle:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.path-card__toggle-icon {
  position: relative;
  width: 12px;
  height: 12px;
  flex: none;
}
.path-card__toggle-icon::before,
.path-card__toggle-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform .25s ease;
}
.path-card__toggle-icon::before {
  left: 0; right: 0; top: 50%;
  height: 1.5px; margin-top: -0.75px;
}
.path-card__toggle-icon::after {
  top: 0; bottom: 0; left: 50%;
  width: 1.5px; margin-left: -0.75px;
}
.path-card.is-open .path-card__toggle-icon::after {
  transform: scaleY(0);
}
.path-card__list {
  list-style: none;
  margin: 16px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  display: none;
}
.path-card.is-open .path-card__list {
  display: block;
}
.path-card__list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
}
.path-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12.5px;
  width: 12px; height: 1px;
  background: var(--teal);
}
@media (max-width: 760px) {
  .how__grid { grid-template-columns: 1fr; }
}


/* ============ JOURNEY ============ */
.journey {
  background: var(--bg);
  padding: clamp(80px, 11vw, 160px) var(--pad-x) clamp(70px, 9vw, 130px);
}
.journey__inner { max-width: var(--maxw); margin: 0 auto; }
.journey__head { max-width: 880px; margin: 0 0 clamp(50px, 6vw, 80px); }
.journey__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 16px 0 20px;
  text-wrap: pretty;
}
.journey__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 58ch;
}
.journey__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 28px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.phase {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
}
.phase__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(24px, 3vw, 36px);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.phase__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
}
.phase__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 1.8vw, 28px);
  letter-spacing: -0.02em;
  margin: 0;
  flex: 1;
}
.phase__time {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}
.phase__steps {
  list-style: none;
  margin: 0; padding: 0;
}
.phase__steps li {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-2);
  border-bottom: 1px dashed var(--line);
}
.phase__steps li:last-child { border-bottom: none; }
.phase__steps strong { color: var(--ink); font-weight: 600; }
.phase__step-dot {
  flex: none;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  background: var(--bg);
  margin-top: 4px;
}
.phase__step-dot--final {
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(93,190,177,.2);
}
.journey__more { margin-top: 8px; }
@media (max-width: 880px) {
  .journey__track { grid-template-columns: 1fr; }
}

/* ============ NO HIDDEN COSTS ============ */
.costs {
  background: var(--ink);
  color: #fff;
  padding: clamp(80px, 11vw, 160px) var(--pad-x) clamp(70px, 9vw, 130px);
  position: relative;
  overflow: hidden;
}
.costs::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(93,190,177,.18), transparent 70%);
  pointer-events: none;
}
.costs__inner { max-width: var(--maxw); margin: 0 auto; position: relative; }
.costs__head { max-width: 760px; margin: 0 0 clamp(50px, 6vw, 80px); }
.costs__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 16px 0 20px;
  color: #fff;
  text-wrap: pretty;
}
.costs__title em { color: var(--teal); }
.costs__sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  margin: 0;
  max-width: 56ch;
}

.costs__equation {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: clamp(40px, 5vw, 70px) 0 clamp(40px, 5vw, 70px);
}
.cost-item {
  flex: 1 1 130px;
  min-width: 100px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.cost-item__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(93,190,177,.15);
  color: var(--teal);
  display: grid; place-items: center;
}
.cost-item__label {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}
.cost-item__sub {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.cost-item--final {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--ink);
}
.cost-item--final .cost-item__label { color: var(--ink); font-size: 16px; }
.cost-item--final .cost-item__sub { color: rgba(35,31,32,.7); }
.cost-op {
  align-self: center;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,.4);
  padding: 0 4px;
}
.cost-op--eq { color: var(--teal); font-weight: 600; }
@media (max-width: 480px) {
  .cost-op { font-size: 18px; padding: 0 2px; }
}

.costs__pledge {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
  padding-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid rgba(255,255,255,.12);
}
.pledge {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pledge__icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(93,190,177,.15);
  color: var(--teal);
  display: grid; place-items: center;
}
.pledge__h { font-size: 16px; font-weight: 600; margin-bottom: 6px; color: #fff; }
.pledge__s { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.65); }

@media (max-width: 880px) {
  .costs__pledge { grid-template-columns: 1fr; }
  .costs__equation { flex-direction: column; }
  .cost-op { transform: rotate(90deg); padding: 0; }
}

/* ============ MARKET ============ */
.market {
  background: var(--bg);
  padding: clamp(80px, 11vw, 160px) var(--pad-x) clamp(70px, 9vw, 130px);
}
.market__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.market__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 16px 0 24px;
  text-wrap: pretty;
}
.market__lede {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 50ch;
}
.market__facts {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
}
.market__facts li { display: flex; flex-direction: column; gap: 4px; }
.market__facts strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 2.4vw, 38px);
  letter-spacing: -0.025em;
  color: var(--ink);
}
.market__facts span {
  font-size: 12px;
  color: var(--mute);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* chart */
.chart {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 32px);
  position: relative;
}
.chart__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
}
.chart__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.chart__range {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: clamp(220px, 26vw, 320px);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.chart__bars span {
  flex: 1;
  height: var(--h);
  background: var(--teal-soft);
  border-radius: 3px 3px 0 0;
  transition: background .25s ease;
}
.chart__bars span.hi { background: var(--teal-deep); }
.chart__bars span:hover { background: var(--teal); }
.chart__axis {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 11px;
  color: var(--mute);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.chart__callouts {
  position: absolute;
  left: 0; right: 0; bottom: 70px;
  pointer-events: none;
}
.chart__callout {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  padding: 6px 10px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  transform: translateY(-40px);
}
.chart__callout-val { font-size: 13px; font-weight: 700; }
.chart__callout-y { font-size: 9.5px; letter-spacing: 0.12em; color: rgba(255,255,255,.6); }
.chart__callout::after {
  content: "";
  position: absolute;
  left: 12px; bottom: -4px;
  width: 8px; height: 8px;
  background: var(--ink);
  transform: rotate(45deg);
}
.chart__callout--r::after { left: auto; right: 12px; }
.chart__callout--r { transform: translateY(-180px); }

@media (max-width: 980px) {
  .market__inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .market__facts {
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
  }
  .market__facts strong { font-size: 24px; }
  .market__facts span { font-size: 11px; line-height: 1.35; }
}

/* ============ TEAM ============ */
.team {
  background: var(--bg-cream);
  padding: clamp(80px, 11vw, 160px) var(--pad-x) clamp(70px, 9vw, 130px);
}
.team__inner { max-width: var(--maxw); margin: 0 auto; }
.team__head { max-width: 760px; margin: 0 0 clamp(50px, 6vw, 80px); }
.team__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 16px 0 20px;
  text-wrap: pretty;
}
.team__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 56ch;
}

/* ---- whole-team hero photo ---- */
.team-hero {
  position: relative;
  margin: 0 0 clamp(60px, 7vw, 90px);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg);
}
.team-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 1.4s ease;
}
.team-hero:hover img { transform: scale(1.02); }
.team-hero__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(40px, 4vw, 64px) clamp(24px, 3vw, 44px) clamp(20px, 2.4vw, 32px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(35,31,32,.55) 100%);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  flex-wrap: wrap;
}
.team-hero__caption-r { color: var(--teal-soft); }

@media (max-width: 760px) {
  .team-hero { aspect-ratio: 4 / 3; }
  .team-hero img { object-position: center 30%; }
  .team-hero__caption { padding: 28px 18px 16px; font-size: 10.5px; }
}

/* ---- founder feature card ---- */
.founder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(35,31,32,.08);
  margin-bottom: clamp(60px, 7vw, 90px);
}
.founder__media {
  background: var(--bg-soft);
  position: relative;
  min-height: 460px;
  overflow: hidden;
}
.founder__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(.1);
  transition: filter .5s ease, transform 1.2s ease;
}
.founder:hover .founder__media img { filter: grayscale(0); transform: scale(1.03); }
.founder__body {
  padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 56px) clamp(32px, 4vw, 56px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 18px;
}
.founder__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--ink);
}
.founder__role {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 24px;
}
.founder__bio {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 56ch;
}
.founder__facts {
  list-style: none;
  margin: 0; padding: 24px 0 0;
  border-top: 1px solid rgba(35,31,32,.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.founder__facts li { display: flex; flex-direction: column; gap: 4px; }
.founder__facts span {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.founder__facts em {
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--mute);
  font-weight: 500;
}

@media (max-width: 880px) {
  .founder { grid-template-columns: 1fr; }
  .founder__media { min-height: 380px; aspect-ratio: 4 / 3; }
  .founder__body { padding: clamp(28px, 4vw, 40px); }
}
@media (max-width: 480px) {
  .founder__facts { grid-template-columns: 1fr; gap: 14px; }
}

/* ---- team grid heading ---- */
.team__grid-h { margin-bottom: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; gap: 12px; }
.team__grid-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  max-width: 28ch;
}

/* ---- team grid cards ---- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.6vw, 24px) clamp(16px, 1.6vw, 24px);
}
.tcard {
  display: flex;
  flex-direction: column;
}
.tcard__media {
  aspect-ratio: 4 / 5;
  background: var(--bg);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
  border: 1px solid rgba(35,31,32,.06);
}
.tcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(.12);
  transition: filter .5s ease, transform 1s ease;
}
.tcard:hover .tcard__media img { filter: grayscale(0); transform: scale(1.04); }

.tcard__placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(93,190,177,.16), transparent 60%),
    linear-gradient(180deg, #efe9dc 0%, #e3dccb 100%);
  display: grid; place-items: center;
  overflow: hidden;
}
.tcard__placeholder::before {
  /* abstract silhouette */
  content: "";
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  aspect-ratio: 1;
  background: var(--bg-cream);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  opacity: .7;
}
.tcard__placeholder::after {
  /* silhouette head */
  content: "";
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  aspect-ratio: 1;
  background: var(--bg-cream);
  border-radius: 50%;
  opacity: .7;
}
.tcard__initial {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 40px);
  letter-spacing: -0.02em;
  color: var(--teal-deep);
  background: rgba(255,255,255,.88);
  width: clamp(56px, 5vw, 76px);
  height: clamp(56px, 5vw, 76px);
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(93,190,177,.4);
  margin-top: 30%;
  box-shadow: 0 12px 28px -16px rgba(35,31,32,.3);
}
.tcard__role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 6px;
}
.tcard__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(17px, 1.3vw, 20px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}

@media (max-width: 980px) {
  .team__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .tcard__role { font-size: 9.5px; letter-spacing: 0.14em; }
}

/* ============ RESULTS / TESTIMONIALS ============ */
.results {
  background: var(--ink);
  color: #fff;
  padding: clamp(80px, 11vw, 160px) var(--pad-x) clamp(60px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.results__inner { max-width: var(--maxw); margin: 0 auto; position: relative; }
.results__head { margin-bottom: clamp(50px, 6vw, 80px); }
.results__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 16px 0 0;
  color: #fff;
  text-wrap: pretty;
}
.results__title em { color: var(--teal); }
.results__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(20px, 2.4vw, 32px);
  margin-bottom: clamp(50px, 6vw, 80px);
}
.quote {
  margin: 0;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  display: flex; flex-direction: column;
}
.quote--lg { grid-row: span 1; }
.quote__stars {
  display: flex; gap: 4px;
  color: var(--teal);
  margin-bottom: 20px;
}
.quote blockquote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(15.5px, 1.3vw, 18px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.92);
  margin: 0 0 24px;
  flex: 1;
  text-wrap: pretty;
}
.quote--lg blockquote { font-size: clamp(17px, 1.5vw, 22px); line-height: 1.45; }
.quote figcaption {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quote__name {
  font-weight: 600;
  font-size: 14.5px;
  color: #fff;
}
.quote__role {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.55);
}

.results__cta {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
}

@media (max-width: 980px) {
  .results__grid { grid-template-columns: 1fr; }
}

/* ============ FAQ ============ */
.faq {
  background: var(--bg);
  padding: clamp(80px, 11vw, 160px) var(--pad-x) clamp(70px, 9vw, 130px);
}
.faq__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.faq__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 20px 0 22px;
  text-wrap: pretty;
}
.faq__sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 38ch;
}
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color .25s ease, padding .35s ease;
  position: relative;
}
.faq__item summary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--teal);
  transition: width .55s cubic-bezier(.2,.8,.2,1);
}
.faq__item[open] summary::after { width: 40px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--teal-deep); }
.faq__plus {
  position: relative;
  width: 22px; height: 22px;
  flex: none;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: currentColor;
  transition: opacity .25s ease, transform .45s cubic-bezier(.2,.8,.2,1);
}
.faq__plus::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__plus::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__plus { transform: rotate(180deg); }
.faq__item[open] .faq__plus::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] summary { color: var(--teal-deep); }
.faq__answer {
  padding: 0 0 26px;
  max-width: 64ch;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
}
.faq__answer p { margin: 0; }
@media (max-width: 820px) {
  .faq__inner { grid-template-columns: 1fr; }
}

/* ============ CTA ============ */
.cta {
  position: relative;
  color: #fff;
  padding: clamp(80px, 11vw, 140px) var(--pad-x) clamp(80px, 11vw, 140px);
  overflow: hidden;
}
.cta__media { position: absolute; inset: 0; z-index: 0; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55) saturate(.85); }
.cta__media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(35,31,32,.7) 0%, rgba(35,31,32,.55) 45%, rgba(35,31,32,.85) 100%);
}
.cta__inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; text-align: center; }
.cta__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 20px 0 24px;
  color: #fff;
  text-wrap: pretty;
}
.cta__title em { color: var(--teal); }
.cta__copy {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  margin: 0 auto 44px;
  max-width: 58ch;
}
.cta .section-eyebrow { justify-content: center; }

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta__btn-primary {
  background: var(--teal);
  color: var(--ink);
  border-color: var(--teal);
}
.cta__btn-primary:hover {
  background: #fff;
  border-color: #fff;
}
.cta__btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.32);
}
.cta__btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: #fff;
}
.cta__btn-ghost svg { color: var(--teal); }
.cta__fineprint {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0;
  font-weight: 600;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: clamp(60px, 7vw, 100px) var(--pad-x) 32px;
  font-size: 13.5px;
  line-height: 1.65;
}
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(50px, 6vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer__logo {
  width: clamp(170px, 18vw, 240px);
  height: auto;
  display: block;
}
.footer__wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #fff;
}
.footer__wordmark span {
  display: inline-block;
  font-weight: 500;
  font-size: 0.4em;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 14px;
  vertical-align: middle;
}
.footer__tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0;
  font-weight: 600;
}
.footer__col-h {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: #fff; transition: color .2s ease; }
.footer__col a:hover { color: var(--teal); }
.footer__col--contact p { margin: 0 0 18px; color: #fff; }
.footer__col--contact a { color: #fff; }
.footer__col--contact a:hover { color: var(--teal); }
.footer__col--contact p:last-child { color: rgba(255,255,255,.55); }
.footer__base {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  font-weight: 600;
}

.footer__base a {
  color: rgba(255,255,255,.65);
  transition: color .2s ease;
}
.footer__base a:hover { color: var(--teal); }

/* Social icon row */
.footer__social { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer__social li { margin: 0; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.footer__social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--ink);
}
.footer__social-label {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (max-width: 980px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer { padding: 40px var(--pad-x) 24px; font-size: 13px; text-align: center; }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 26px;
    justify-items: center;
  }
  .footer__brand { gap: 0; align-items: center; }
  .footer__logo { width: 150px; }
  .footer__col { display: flex; flex-direction: column; align-items: center; }
  .footer__col.footer__col--hide-mobile { display: none; }
  .footer__col-h { margin-bottom: 12px; }
  .footer__col--contact address { font-style: normal; }
  .footer__col--contact p { margin: 0 0 8px; }
  .footer__social { justify-content: center; }
  .footer__base {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding-top: 18px;
    font-size: 10px;
  }
}

/* ============ LEGAL PAGES ============ */
.legal {
  background: var(--bg);
  padding: clamp(60px, 9vw, 120px) var(--pad-x) clamp(70px, 10vw, 140px);
}
.legal__inner {
  max-width: 820px;
  margin: 0 auto;
}
.legal__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 18px 0 16px;
  text-wrap: pretty;
}
.legal__updated {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 clamp(36px, 5vw, 56px);
  padding-bottom: clamp(28px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}
.legal__section {
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
.legal__section h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 14px;
}
.legal__section p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.legal__section p:last-child { margin-bottom: 0; }
.legal__section ul {
  margin: 0 0 14px;
  padding: 0 0 0 22px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal__section li {
  margin-bottom: 8px;
  padding-left: 4px;
}
.legal__section li::marker { color: var(--teal-deep); }
.legal__section a {
  color: var(--teal-deep);
  border-bottom: 1px solid rgba(63,161,149,.35);
  transition: color .2s ease, border-color .2s ease;
}
.legal__section a:hover {
  color: var(--ink);
  border-color: var(--ink);
}
@media (max-width: 560px) {
  .legal__section p,
  .legal__section ul { font-size: 15px; }
}



/* ============ GALLERY (asymmetric, ken-burns) ============ */
.gallery {
  background: var(--bg);
  padding: clamp(80px, 11vw, 160px) var(--pad-x) clamp(70px, 9vw, 130px);
  overflow: hidden;
}
.gallery__head {
  max-width: var(--maxw);
  margin: 0 auto clamp(50px, 6vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px clamp(40px, 6vw, 110px);
  align-items: end;
}
.gallery__head .section-eyebrow { grid-column: 1; }
.gallery__title {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
}
.gallery__title em { color: var(--teal-deep); }
.gallery__sub {
  grid-column: 2;
  grid-row: 2;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 42ch;
  justify-self: end;
}
.gallery__sub strong {
  color: var(--ink);
  font-weight: 600;
}

.gallery__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(180px, 18vw, 240px);
  gap: clamp(14px, 1.6vw, 22px);
}
.gallery__cell {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-soft);
  isolation: isolate;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.gallery__cell.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.gallery__cell:nth-child(1).is-visible { transition-delay: 0s; }
.gallery__cell:nth-child(2).is-visible { transition-delay: .07s; }
.gallery__cell:nth-child(3).is-visible { transition-delay: .14s; }
.gallery__cell:nth-child(4).is-visible { transition-delay: .21s; }
.gallery__cell:nth-child(5).is-visible { transition-delay: .28s; }
.gallery__cell:nth-child(6).is-visible { transition-delay: .35s; }
.gallery__cell:nth-child(7).is-visible { transition-delay: .42s; }
.gallery__cell:nth-child(8).is-visible { transition-delay: .49s; }

.gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kb 22s ease-in-out infinite alternate;
  transition: filter .6s ease;
}
.gallery__cell:hover img { filter: brightness(1.05); }
.gallery__cell:nth-child(2) img { animation-duration: 26s; animation-delay: -4s; }
.gallery__cell:nth-child(3) img { animation-duration: 24s; animation-delay: -8s; transform-origin: 70% 50%; }
.gallery__cell:nth-child(4) img { animation-duration: 28s; animation-delay: -12s; transform-origin: 30% 60%; }
.gallery__cell:nth-child(5) img { animation-duration: 25s; animation-delay: -16s; transform-origin: 50% 30%; }
.gallery__cell:nth-child(6) img { animation-duration: 27s; animation-delay: -6s; transform-origin: 60% 40%; }
.gallery__cell:nth-child(7) img { animation-duration: 23s; animation-delay: -10s; transform-origin: 40% 50%; }

@keyframes kb {
  0%   { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.18) translate(-1.5%, -1%); }
}

.gallery__cell figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(40px, 4vw, 72px) clamp(18px, 1.8vw, 26px) clamp(18px, 1.8vw, 26px);
  background: linear-gradient(180deg, transparent 0%, rgba(35,31,32,.7) 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  pointer-events: none;
}
.gallery__cell--hero figcaption { padding-bottom: clamp(22px, 2.4vw, 32px); }
.gallery__cap-t {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--teal-soft);
}
.gallery__cap-b {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Layout: 8 cells (1 hero spans 2 rows + 6 photos + 1 "more" tile) */
.gallery__cell--hero { grid-column: 1 / span 7; grid-row: span 2; }
.gallery__cell--a    { grid-column: 8 / span 5; }
.gallery__cell--b    { grid-column: 8 / span 5; }
.gallery__cell--c    { grid-column: 1 / span 4; }
.gallery__cell--d    { grid-column: 5 / span 4; }
.gallery__cell--e    { grid-column: 9 / span 4; }
.gallery__cell--f    { grid-column: 1 / span 7; }
.gallery__cell--more { grid-column: 8 / span 5; }

/* "Hundreds more" tile */
.gallery__cell--more {
  background: var(--ink);
  color: #fff;
  display: block;
  cursor: pointer;
  text-decoration: none;
  transition: background .3s ease, transform .3s ease;
}
.gallery__cell--more:hover {
  background: var(--teal-deep);
}
.gallery__cell--more .gallery__more-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 2.6vw, 36px);
}
.gallery__cell--more::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(93,190,177,.15), transparent 50%);
}
.gallery__more-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(54px, 7vw, 110px);
  letter-spacing: -0.045em;
  line-height: 0.9;
  color: var(--teal);
}
.gallery__more-num span {
  font-size: 0.5em;
  vertical-align: top;
  color: rgba(93,190,177,.7);
}
.gallery__more-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  max-width: 22ch;
  margin-top: -8px;
}
.gallery__more-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 600;
  padding: 12px 18px;
  background: var(--teal);
  color: var(--ink);
  border-radius: 100px;
  align-self: flex-end;
  transition: gap .25s ease, background .25s ease;
}
.gallery__cell--more:hover .gallery__more-cta {
  gap: 16px;
  background: #fff;
}

/* Footnote */
.gallery__footnote {
  max-width: var(--maxw);
  margin: clamp(28px, 3.5vw, 50px) auto 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--mute);
  font-style: italic;
  text-align: center;
  max-width: 64ch;
  padding: 0 20px;
}

@media (max-width: 1100px) {
  .gallery__grid { grid-auto-rows: clamp(220px, 24vw, 280px); }
  .gallery__cell--hero { grid-column: 1 / span 12; grid-row: span 1; aspect-ratio: 16/9; }
  .gallery__cell--a    { grid-column: 1 / span 6; }
  .gallery__cell--b    { grid-column: 7 / span 6; }
  .gallery__cell--c    { grid-column: 1 / span 6; }
  .gallery__cell--d    { grid-column: 7 / span 6; }
  .gallery__cell--e    { grid-column: 1 / span 6; }
  .gallery__cell--f    { grid-column: 7 / span 6; }
  .gallery__cell--more { grid-column: 1 / span 12; }
}
@media (max-width: 760px) {
  .gallery__head { grid-template-columns: 1fr; }
  .gallery__sub { grid-column: 1; grid-row: 3; justify-self: start; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: clamp(220px, 50vw, 320px); }
  .gallery__cell, .gallery__cell--more, .gallery__cell--hero { grid-column: 1; grid-row: auto; }
  .gallery__cell--hero { aspect-ratio: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery__cell img { animation: none; transform: none; }
  .gallery__cell { transition: none; opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hiw-step {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ============ HOW IT WORKS (3-step) ============ */
.hiw {
  background: var(--bg);
  padding: clamp(70px, 9vw, 130px) var(--pad-x);
  border-top: 1px solid var(--line);
}
.hiw__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.hiw__head {
  max-width: 880px;
  margin: 0 0 clamp(40px, 5vw, 70px);
}
.hiw__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 16px 0 18px;
  color: var(--ink);
}
.hiw__title em {
  color: var(--teal-deep);
  font-style: normal;
}
.hiw__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 56ch;
}
.hiw__grid {
  list-style: none;
  margin: 0 0 clamp(36px, 4vw, 56px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.2vw, 32px);
  counter-reset: hiw;
}
.hiw-step {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.hiw-step:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: 0 24px 50px -32px rgba(35,31,32,.18);
}
.hiw-step__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  display: block;
  margin-bottom: 24px;
}
.hiw-step__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.hiw-step__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 1.8vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--ink);
}
.hiw-step__copy {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 36ch;
}
.hiw__more {
  margin-top: 8px;
}

@media (max-width: 880px) {
  .hiw__grid { grid-template-columns: 1fr; }
}



/* ============ GALLERY HOVER (view-full hint) ============ */
.gallery__cell:not(.gallery__cell--more) {
  cursor: zoom-in;
}
.gallery__cell:not(.gallery__cell--more)::after {
  content: "";
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='11' cy='11' r='7' stroke='%23231f20' stroke-width='1.6'/%3E%3Cpath d='M11 8v6M8 11h6' stroke='%23231f20' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='m20 20-4.3-4.3' stroke='%23231f20' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: translateY(-6px) scale(.9);
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  box-shadow: 0 6px 20px -6px rgba(0,0,0,.35);
  z-index: 2;
}
.gallery__cell:hover::after,
.gallery__cell:focus-within::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.gallery__cell:not(.gallery__cell--more):hover img {
  filter: brightness(.95) saturate(1.05);
  animation-play-state: paused;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,17,17,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: zoom-out;
}
.lightbox__stage {
  position: relative;
  z-index: 2;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  pointer-events: none;
  transform: scale(.96);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.lightbox.is-open .lightbox__stage { transform: scale(1); }
.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  background: var(--ink);
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
  user-select: none;
  pointer-events: auto;
}
.lightbox__caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  width: 100%;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  pointer-events: auto;
}
.lightbox__caption-l { color: #fff; }
.lightbox__caption-r {
  color: var(--teal);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--ink);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(3px); }

@media (max-width: 760px) {
  .lightbox__close { top: 16px; right: 16px; width: 42px; height: 42px; }
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
  .lightbox__caption { font-size: 10.5px; gap: 14px; flex-wrap: wrap; }
}

body.lightbox-open { overflow: hidden; }



/* ============ REVIEWS widget container ============ */
.results__sub {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
  margin: 18px 0 0;
  max-width: 52ch;
}
.results__widget {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: clamp(20px, 2.4vw, 36px);
  margin: clamp(40px, 5vw, 70px) 0;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}
.results__widget::before {
  content: "Loading live reviews...";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.4);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  pointer-events: none;
  opacity: 1;
  transition: opacity .6s ease 1s;
}
.results__widget:has(> div),
.results__widget:has(> iframe),
.results__widget:has(> a) {
  /* once TrustIndex injects content, fade the placeholder out */
}
.results__widget > div::before,
.results__widget > iframe::before { opacity: 0; }

/* TrustIndex internal styling overrides (light-on-dark) */
.results__widget .ti-container,
.results__widget [class*="trustindex"] {
  color: #fff !important;
}

/* ============ FORCE-LEFT HEADINGS ============ */
.market__title,
.costs__title,
.journey__title,
.story__statement,
.team__title,
.faq__title,
.approach__statement,
.gallery__title,
.designs__title,
.insights__title,
.gallery__sub,
.faq__sub,
.team__sub,
.market__lede,
.journey__sub {
  text-align: left !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
}
.market__title,
.costs__title,
.journey__title,
.story__statement,
.team__title,
.faq__title,
.approach__statement,
.gallery__title {
  max-width: none !important;
}


/* ============ Remove rounded corners from image containers ============ */
.hero__card,
.gallery__cell,
.tcard__media,
.team-hero,
.founder__media,
.gstyle__media,
.design-card__media,
.insight-card__media,
.about__figure,
.cta__media,
.member__media,
.gshowcase__hero,
.lightbox__img,
.approach-step__media,
.path-card,
.hiw-step,
.phase {
  border-radius: 0 !important;
}


/* ============ HOW IT WORKS — one-shot reveal ============ */
.hiw-step {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease-out, transform .4s ease-out, border-color .3s ease, box-shadow .3s ease;
}
.hiw-step:nth-child(2) { transition-delay: .08s; }
.hiw-step:nth-child(3) { transition-delay: .16s; }
.hiw-step.is-visible {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}
.hiw-step.is-visible:hover {
  transform: translateY(-3px);
}
@media (prefers-reduced-motion: reduce) {
  .hiw-step {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
}


/* ============ MOBILE COMPACTION: JOURNEY & COSTS ============ */
@media (max-width: 640px) {
  .journey {
    padding: 48px var(--pad-x) 40px;
  }
  .journey__head {
    margin: 0 0 24px;
  }
  .journey__sub {
    font-size: 14.5px;
    line-height: 1.5;
  }
  .journey__track {
    gap: 14px;
    margin-bottom: 24px;
  }
  .phase {
    padding: 18px 18px 14px;
  }
  .phase__header {
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }
  .phase__num {
    font-size: 18px;
  }
  .phase__title {
    font-size: 19px;
  }
  .phase__time {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .phase__steps li {
    gap: 12px;
    padding: 8px 0;
    font-size: 13.5px;
    line-height: 1.35;
  }
  .phase__step-dot {
    width: 8px; height: 8px;
    margin-top: 5px;
  }
  .journey__more { margin-top: 4px; }

  .costs {
    padding: 48px var(--pad-x) 44px;
  }
  .costs__head {
    margin: 0 0 22px;
  }
  .costs__sub {
    font-size: 14.5px;
    line-height: 1.5;
  }
  .costs__equation {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    margin: 20px 0 0;
  }
  .cost-op { transform: none; padding: 0 2px; font-size: 16px; }
  .cost-op--eq { width: 100%; text-align: center; padding: 4px 0; }
  .cost-item {
    flex: 1 1 88px;
    min-width: 84px;
    padding: 12px 8px;
    gap: 8px;
    border-radius: 10px;
  }
  .cost-item__icon {
    width: 32px; height: 32px;
  }
  .cost-item__icon svg {
    width: 18px; height: 18px;
  }
  .cost-item__label {
    font-size: 12px;
    letter-spacing: 0.02em;
  }
  .cost-item__sub {
    font-size: 11px;
    margin-top: 2px;
  }
  .cost-item--final {
    flex-basis: 100%;
    padding: 14px 12px;
  }
  .cost-item--final .cost-item__label { font-size: 14px; }
}

@media (max-width: 480px) {
  .journey {
    padding: 40px var(--pad-x) 32px;
  }
  .journey__head {
    margin: 0 0 18px;
  }
  .journey__track {
    gap: 12px;
  }
  .phase {
    padding: 16px 14px 12px;
  }
  .phase__header {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .phase__title { font-size: 18px; }
  .phase__steps li {
    padding: 6px 0;
    font-size: 13px;
  }

  .costs {
    padding: 40px var(--pad-x) 36px;
  }
  .costs__equation {
    gap: 5px;
  }
  .cost-item {
    flex: 1 1 76px;
    min-width: 72px;
    padding: 10px 6px;
    gap: 6px;
  }
  .cost-item__icon {
    width: 28px; height: 28px;
  }
  .cost-item__icon svg {
    width: 16px; height: 16px;
  }
  .cost-item__label { font-size: 11.5px; }
}


/* ============ MOBILE COMPACTION: How it works + Who we help ============ */
@media (max-width: 640px) {
  /* How it works */
  .hiw {
    padding: 48px var(--pad-x) 40px;
  }
  .hiw__head {
    margin: 0 0 24px;
  }
  .hiw__grid {
    gap: 14px;
    margin: 0 0 28px;
  }
  .hiw-step {
    padding: 20px 22px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    row-gap: 10px;
    align-items: center;
  }
  .hiw-step__num {
    display: none;
  }
  .hiw-step__icon {
    width: 40px; height: 40px;
    margin: 0;
    grid-column: 1;
    grid-row: 1;
  }
  .hiw-step__title {
    margin: 0;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
  .hiw-step__copy {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .hiw-step__copy {
    line-height: 1.5;
  }

  /* Who we help */
  .how {
    padding: 56px var(--pad-x) 44px;
  }
  .how__head {
    margin: 0 auto 28px;
  }
  .how__grid {
    gap: 14px;
  }
  .path-card {
    padding: 22px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    row-gap: 12px;
    align-items: center;
  }
  .path-card__num {
    display: none;
  }
  .path-card__icon {
    width: 44px; height: 44px;
    margin: 0;
    grid-column: 1;
    grid-row: 1;
  }
  .path-card__icon svg {
    width: 26px; height: 26px;
  }
  .path-card__title {
    margin: 0;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
  .path-card__copy {
    margin: 0;
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .path-card__toggle {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: end;
    margin: 0;
  }
  .path-card__list {
    grid-column: 1 / -1;
    padding-top: 14px;
    margin-top: 2px;
  }
  .path-card__list li {
    padding: 4px 0 4px 18px;
    line-height: 1.45;
  }
  .path-card__list li::before {
    top: 11px;
  }
}

@media (max-width: 420px) {
  /* How it works */
  .hiw {
    padding: 36px var(--pad-x) 28px;
  }
  .hiw__head {
    margin: 0 0 18px;
  }
  .hiw__grid {
    gap: 12px;
    margin: 0 0 22px;
  }
  .hiw-step {
    padding: 18px;
    column-gap: 12px;
    row-gap: 8px;
  }
  .hiw-step__icon {
    width: 38px; height: 38px;
  }

  /* Who we help */
  .how {
    padding: 40px var(--pad-x) 32px;
  }
  .how__head {
    margin: 0 auto 22px;
  }
  .path-card {
    padding: 18px;
    column-gap: 12px;
    row-gap: 10px;
  }
  .path-card__icon {
    width: 40px; height: 40px;
  }
  .path-card__list {
    padding-top: 12px;
  }
}


/* ============ GALLERY THUMBNAIL MODE (mobile only) ============ */
/* Switch the design-options gallery to uniform miniatures on phones.
   Click any thumbnail to open the lightbox and browse all photos.
   Desktop keeps the original asymmetric ken-burns layout. */
@media (max-width: 640px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: clamp(120px, 38vw, 180px) !important;
    gap: 8px !important;
  }
  .gallery__cell,
  .gallery__cell--hero,
  .gallery__cell--a,
  .gallery__cell--b,
  .gallery__cell--c,
  .gallery__cell--d,
  .gallery__cell--e,
  .gallery__cell--f,
  .gallery__cell--more {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: auto !important;
    border-radius: 10px;
  }
  .gallery__cell img {
    animation: none !important;
    transform: none !important;
    transition: transform .4s ease, filter .3s ease;
  }
  .gallery__cell:hover img {
    transform: scale(1.05) !important;
  }
  /* Hide the in-cell caption — the lightbox shows the caption on open. */
  .gallery__cell figcaption {
    display: none;
  }
  /* Compact the "Hundreds more" tile to match thumbnail size */
  .gallery__cell--more .gallery__more-inner {
    padding: 12px;
    justify-content: space-between;
  }
  .gallery__more-num { font-size: 30px; }
  .gallery__more-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    margin-top: 4px;
    max-width: none;
  }
  .gallery__more-cta {
    font-size: 11px;
    padding: 8px 12px;
  }
}
