/* ════════════════════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════════════════════ */
:root {
  --bg:            #faf7f2;
  --surface:       #ffffff;
  --ink:           #1c2b29;
  --ink-soft:      #556560;
  --line:          rgba(28, 43, 41, 0.1);
  --terracotta:    #b83d33;
  --terracotta-dk: #8c2d24;
  --teal:          #1d6e69;
  --teal-deep:     #134e51;
  --teal-dark:     #0d3134;
  --gold:          #d4ac70;
  --white:         #ffffff;

  --content-max:   1240px;

  --shadow-xl:  0 32px 80px rgba(13, 49, 52, 0.22);
  --shadow-lg:  0 18px 48px rgba(13, 49, 52, 0.16);
  --shadow-md:  0 8px 28px  rgba(13, 49, 52, 0.10);

  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 13px;
  --radius-sm:  9px;
}

/* ════════════════════════════════════════════════════════════
   RESET / BASE
════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { margin: 0; padding: 0; list-style: none; }
.page-shell { min-height: 100vh; }

/* ════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: 0.85rem clamp(1.5rem, 4vw, 4.5rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(28, 43, 41, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.brand-copy { display: grid; gap: 0.12rem; }

.brand-copy strong {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--ink);
}

.brand-copy span:last-child {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.1rem, 0.8vw, 0.4rem);
}

.site-nav a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 140ms ease, background 140ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--terracotta); background: rgba(184, 61, 51, 0.07); }

.site-nav a[aria-current="page"] {
  background: rgba(184, 61, 51, 0.09);
  color: var(--terracotta);
}

.header-actions { display: flex; justify-content: flex-end; }

/* ════════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════════ */
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, opacity 180ms ease;
}

.header-cta {
  padding: 0.7rem 1.3rem;
  font-size: 0.88rem;
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(184, 61, 51, 0.3);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(184, 61, 51, 0.4);
}

.button { padding: 1rem 1.8rem; font-size: 0.97rem; }

.button-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(184, 61, 51, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(184, 61, 51, 0.38);
  background: var(--terracotta-dk);
}

/* ghost = white-bordered, for use on dark backgrounds */
.button-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
}

/* outline teal = for use on light backgrounds */
.button-outline-teal {
  border: 1.5px solid var(--teal);
  background: transparent;
  color: var(--teal);
}

.button-outline-teal:hover,
.button-outline-teal:focus-visible {
  transform: translateY(-2px);
  background: rgba(29, 110, 105, 0.08);
}

/* secondary = for use inside dark CTA panels */
.button-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

/* ════════════════════════════════════════════════════════════
   PILLS / LABELS
════════════════════════════════════════════════════════════ */
.eyebrow,
.pill,
.pill-terracotta,
.service-topline,
.contact-link span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.32rem 0.78rem;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 1rem;
  background: rgba(29, 110, 105, 0.11);
  color: var(--teal-deep);
}

.pill {
  margin-bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

.pill-terracotta {
  margin-bottom: 1.2rem;
  background: rgba(184, 61, 51, 0.1);
  color: var(--terracotta);
}

/* ════════════════════════════════════════════════════════════
   HERO — FULL VIEWPORT
════════════════════════════════════════════════════════════ */
.hero-home-full {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(3.5rem, 8vh, 6rem);
  background:
    linear-gradient(
      105deg,
      rgba(10, 26, 28, 0.94) 0%,
      rgba(10, 26, 28, 0.80) 30%,
      rgba(10, 26, 28, 0.40) 58%,
      rgba(10, 26, 28, 0.10) 100%
    ),
    url("../images/hero-background-mobile.jpg") center center / cover no-repeat;
}

.hero-inner {
  padding: 0 clamp(1.5rem, 4vw, 4.5rem);
  max-width: 58rem;
}

.hero-home-full h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 18ch;
}

.hero-intro-lead {
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.68;
  max-width: 46ch;
}

.hero-intro {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.97rem;
  line-height: 1.8;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

/* subtle vertical line decoration bottom-right */
.hero-line {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 4vw, 4.5rem);
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 100%);
}

/* ════════════════════════════════════════════════════════════
   METRICS STRIP
════════════════════════════════════════════════════════════ */
.hero-metrics {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--teal-dark);
}

.hero-metrics article {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3.5vw, 3.5rem);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-metrics article:last-child { border-right: none; }

.hero-metrics span {
  display: block;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-metrics strong {
  display: block;
  margin-top: 0.6rem;
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.3;
}

.hero-metrics p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   STATEMENT BAND
════════════════════════════════════════════════════════════ */
.statement-band {
  width: 100%;
  background: var(--teal);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 4.5rem);
}

.statement-band p {
  max-width: var(--content-max);
  margin: 0 auto;
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--white);
  text-align: center;
}

/* ════════════════════════════════════════════════════════════
   HOW WE HELP
════════════════════════════════════════════════════════════ */
.how-we-help {
  width: 100%;
  background: var(--bg);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 4.5rem);
}

.hwh-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hwh-main h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 18ch;
}

.hwh-main p {
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.78;
  max-width: 42ch;
}

.how-help-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.5rem;
}

.how-help-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.75;
}

.how-help-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--gold) 100%);
}

.hwh-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.hwh-image-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  min-height: 100%;
}

.hwh-image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

@media (min-width: 681px) {
  .hero-home-full {
    background-image:
      linear-gradient(
        105deg,
        rgba(10, 26, 28, 0.94) 0%,
        rgba(10, 26, 28, 0.80) 30%,
        rgba(10, 26, 28, 0.40) 58%,
        rgba(10, 26, 28, 0.10) 100%
      ),
      url("../images/hero-background.jpg");
  }
}

/* ════════════════════════════════════════════════════════════
   GENERAL SECTION
════════════════════════════════════════════════════════════ */
.section {
  position: relative;
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1.5rem, 4vw, 4.5rem);
}

.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.section-heading {
  max-width: 54rem;
  margin: 0 auto;
}

.section-heading h2,
.page-hero h1,
.cta-panel h2,
.contact-card h3,
.story-card h3,
.consult-card h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  max-width: 22ch;
}

.section-heading-tight { max-width: 40rem; }

.section-heading + .detail-grid,
.section-heading + .contact-layout { margin-top: 2.5rem; }

.section-copy {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════
   WHAT WE DO — DETAIL CARDS
════════════════════════════════════════════════════════════ */
.home-detail-section { background: var(--white); }

.detail-grid {
  max-width: var(--content-max);
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
}

.detail-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-xl);
  background: var(--bg);
  border: 1px solid rgba(28, 43, 41, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.detail-card h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.detail-card p {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 0.93rem;
}

/* ════════════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════════════ */
.home-cta-section {
  width: 100%;
  background: linear-gradient(130deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1.5rem, 4vw, 4.5rem);
}

.cta-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.cta-text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  max-width: 22ch;
}

.cta-text .section-copy { color: rgba(255, 255, 255, 0.72); max-width: 44ch; }

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  flex-shrink: 0;
}

/* kept for backward-compat with other pages using .cta-panel */
.cta-panel {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.cta-panel h2 { color: var(--white); font-size: clamp(2rem, 3.8vw, 3rem); max-width: 22ch; }
.cta-panel .section-copy { color: rgba(255, 255, 255, 0.72); }
.cta-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer {
  width: 100%;
  background: #091a1c;
  padding: 2.5rem clamp(1.5rem, 4vw, 4.5rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer p { margin: 0; }

.footer-brand { display: grid; gap: 0.3rem; }

.footer-brand p:first-child {
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1.1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 140ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible { color: var(--white); }

.footer-credit {
  width: 100%;
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-credit a:hover { color: rgba(255, 255, 255, 0.8); }

/* ════════════════════════════════════════════════════════════
   PAGE HERO  (about / services / approach / contact)
════════════════════════════════════════════════════════════ */
.page-hero {
  width: 100%;
  padding: 0 clamp(1.5rem, 4vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 1.25rem;
  align-items: start;
}

.page-hero-copy { max-width: 50rem; padding-top: 0.35rem; }

.page-hero h1 { font-size: clamp(3rem, 5vw, 5rem); }

.page-intro {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.78;
}

.page-hero-aside {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* ════════════════════════════════════════════════════════════
   CARD ATOMS  (info-card, mini-card, service-card, step-card…)
════════════════════════════════════════════════════════════ */
.mini-card,
.info-card,
.service-card,
.step-card,
.story-card,
.contact-card,
.contact-form { border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }

.mini-card { padding: 1.4rem; }

.mini-card h3,
.info-card h3,
.service-card h3,
.step-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
}

.mini-card p,
.info-card p,
.service-card p,
.step-card p,
.story-card p,
.contact-note {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  line-height: 1.72;
  font-size: 0.92rem;
}

.mini-card-light {
  background: var(--white);
  border: 1px solid rgba(28, 43, 41, 0.07);
}

.mini-card-accent {
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--white);
}

.mini-card-accent p,
.mini-card-deep p,
.info-card-accent p,
.info-card-deep p,
.service-card-featured p,
.service-card-featured li,
.step-card p,
.approach-panel .section-copy { color: rgba(255, 255, 255, 0.8); }

.mini-card-deep {
  grid-column: span 2;
  background: linear-gradient(140deg, var(--teal-dark) 0%, var(--teal-deep) 100%);
  color: var(--white);
}

.info-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(28, 43, 41, 0.07);
}

.info-card-accent {
  background: linear-gradient(145deg, var(--terracotta) 0%, var(--terracotta-dk) 100%);
  color: var(--white);
}

.info-card-deep,
.approach-panel {
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--white);
}

/* hero grid (mini-cards 2×2) */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

/* consult card */
.consult-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--terracotta) 0%, var(--terracotta-dk) 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.consult-card h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

.consult-card p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.consult-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.consult-links a {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  font-weight: 700;
  font-size: 0.93rem;
  transition: transform 160ms ease, background 160ms ease;
}

.consult-links a:hover,
.consult-links a:focus-visible { transform: translateY(-1px); background: rgba(255, 255, 255, 0.22); }

/* ════════════════════════════════════════════════════════════
   SERVICE GRID
════════════════════════════════════════════════════════════ */
.service-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid rgba(28, 43, 41, 0.07);
}

.service-card-featured {
  grid-column: span 2;
  background: linear-gradient(145deg, var(--terracotta) 0%, var(--terracotta-dk) 100%);
  color: var(--white);
}

.service-topline {
  margin-bottom: 1rem;
  background: rgba(29, 110, 105, 0.11);
  color: var(--teal-deep);
}

.service-card-featured .service-topline {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
}

.service-card ul,
.check-list { display: grid; gap: 0.72rem; margin-top: 1.1rem; }

.service-card li,
.check-list li { position: relative; padding-left: 1.3rem; line-height: 1.68; }

.service-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

.check-list li::before {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--gold) 100%);
  opacity: 1;
}

/* ════════════════════════════════════════════════════════════
   APPROACH PANEL
════════════════════════════════════════════════════════════ */
.approach-panel {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.approach-panel .section-heading { max-width: none; margin: 0; }

.approach-panel .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.step-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
}

.step-number {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.single-step-row { grid-template-columns: minmax(0, 280px); justify-content: center; }

/* ════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
.contact-layout {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 1rem;
}

.contact-form,
.story-card { padding: 1.8rem; background: var(--white); border: 1px solid rgba(28, 43, 41, 0.07); }

.contact-card {
  padding: 1.8rem;
  background: linear-gradient(145deg, var(--terracotta) 0%, var(--terracotta-dk) 100%);
  color: var(--white);
}

.contact-card h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

.contact-brand { margin: 0 0 1rem; font-weight: 800; font-size: 0.95rem; }

.contact-link {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  transition: transform 150ms ease, background 150ms ease;
}

.contact-link + .contact-link { margin-top: 0.8rem; }

.contact-link:hover,
.contact-link:focus-visible { transform: translateY(-1px); background: rgba(255, 255, 255, 0.18); }

.contact-link span {
  background: none;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
}

.contact-link strong { display: block; margin-top: 0.35rem; font-size: 1.2rem; line-height: 1.3; }

.contact-note { color: rgba(255, 255, 255, 0.8); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field { display: grid; gap: 0.4rem; }

.field span { font-weight: 700; font-size: 0.88rem; color: var(--ink-soft); }

.field input,
.field textarea {
  width: 100%;
  padding: 0.88rem 1rem;
  border: 1.5px solid rgba(28, 43, 41, 0.12);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: 0.93rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29, 110, 105, 0.12);
}

.field textarea { resize: vertical; }

.field-full { grid-column: 1 / -1; }

.contact-form .button { margin-top: 1.2rem; border: 0; cursor: pointer; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card-featured { grid-column: span 1; }
  .page-hero-aside { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0.9rem 1.5rem;
    gap: 0.7rem;
  }

  .site-nav { flex-wrap: wrap; justify-content: center; }
  .header-actions { width: 100%; justify-content: center; }

  .hwh-inner { grid-template-columns: 1fr; }
  .hwh-main h2 { max-width: none; }

  .page-hero,
  .contact-layout,
  .cta-panel,
  .cta-inner { grid-template-columns: 1fr; }

  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metrics article { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .hero-metrics article:last-child { border-bottom: none; }

  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .detail-grid,
  .service-grid,
  .hwh-media,
  .hero-grid,
  .page-hero-aside,
  .steps-grid,
  .form-grid { grid-template-columns: 1fr; }

  .mini-card-deep,
  .hwh-image-card img { min-height: 320px; }

  .hero-home-full h1 { font-size: clamp(2.6rem, 11vw, 4rem); max-width: none; }

  .hero-actions,
  .cta-actions,
  .consult-links { flex-direction: column; align-items: stretch; }

  .button,
  .consult-links a { width: 100%; justify-content: center; }

  .single-step-row { grid-template-columns: 1fr; }

  .site-footer { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .site-header { padding: 0.75rem 1rem; }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav::-webkit-scrollbar { display: none; }

  .brand-copy span:last-child { display: none; }

  .hero-inner { padding: 0 1.1rem; }

  .statement-band p { font-size: clamp(1.25rem, 7vw, 1.8rem); }

  .page-banner-inner { grid-template-columns: 1fr; }
  .page-banner h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
}

/* ════════════════════════════════════════════════════════════
   FOUNDERS GRID (2-up biography cards)
════════════════════════════════════════════════════════════ */
.founders-grid {
  max-width: var(--content-max);
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

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

/* ════════════════════════════════════════════════════════════
   PAGE BANNER — inner page header (about / services / approach / contact)
════════════════════════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-deep) 100%);
  padding: clamp(4.5rem, 9vh, 7.5rem) clamp(1.5rem, 4vw, 4.5rem) clamp(3rem, 5vh, 5rem);
}

.page-banner-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 370px);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.page-banner h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
}

.page-banner .page-intro {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.78;
}

/* Cards that sit inside the dark banner need to adapt */
.page-banner .info-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  box-shadow: none;
}

.page-banner .info-card h3 { color: var(--white); }
.page-banner .info-card p  { color: rgba(255, 255, 255, 0.72); }

.page-banner .info-card-accent {
  background: linear-gradient(145deg, var(--terracotta) 0%, var(--terracotta-dk) 100%);
  border-color: transparent;
}

.page-banner .info-card-deep {
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.1);
}

.page-banner .contact-card { box-shadow: var(--shadow-lg); }

/* ════════════════════════════════════════════════════════════
   SECTION — alternating backgrounds for inner pages
════════════════════════════════════════════════════════════ */
/* Generic .section is cream by default (var(--bg)) */
/* Specific overrides: */
.section-white { background: var(--white); }

.approach-section { background: var(--white); }

/* ════════════════════════════════════════════════════════════
   SECTION CTA — inner page bottom CTA (teal background)
════════════════════════════════════════════════════════════ */
.section-cta {
  background: linear-gradient(130deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1.5rem, 4vw, 4.5rem);
}

.section-cta .cta-panel {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.section-cta .cta-panel h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3rem);
  max-width: 22ch;
}

.section-cta .cta-panel .section-copy { color: rgba(255, 255, 255, 0.72); }

.section-cta .cta-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — inner page additions
════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .page-banner-inner { grid-template-columns: 1fr; }
  .section-cta .cta-panel { grid-template-columns: 1fr; }
  .section-cta .cta-actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .page-banner-inner .page-hero-aside { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   PACKAGES SECTION
════════════════════════════════════════════════════════════ */
.packages-section {
  background: var(--bg);
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}

.packages-section .section-heading {
  max-width: var(--content-max);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.subsection-heading {
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.section-subhead {
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  margin: 0 0 1.5rem;
}

.package-table-wrap {
  max-width: var(--content-max);
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.package-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: clamp(0.82rem, 1.1vw, 0.93rem);
}

.package-table thead tr {
  background: var(--teal-dark);
  color: var(--white);
}

.package-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
}

.package-table thead th:first-child {
  width: 17%;
  color: rgba(255, 255, 255, 0.55);
}

.package-table tbody tr:nth-child(even) {
  background: rgba(29, 110, 105, 0.04);
}

.package-table tbody td {
  padding: 0.875rem 1.25rem;
  color: var(--ink);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: top;
  line-height: 1.5;
}

.package-table tbody td:first-child {
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}

.packages-note {
  max-width: var(--content-max);
  margin: 0 auto 1.5rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-style: italic;
}

.packages-actions {
  max-width: var(--content-max);
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.packages-divider {
  max-width: var(--content-max);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.addons-header {
  max-width: var(--content-max);
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
}

.addons-grid {
  max-width: var(--content-max);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.addon-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(13, 49, 52, 0.07);
  border-top: 3px solid var(--teal);
}

.addon-card h4 {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.addon-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.ongoing-card {
  max-width: var(--content-max);
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.ongoing-card h4 {
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.ongoing-card .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ongoing-card .check-list li {
  padding: 0.35rem 0 0.35rem 1.6rem;
  color: var(--ink);
  font-size: 0.95rem;
  position: relative;
}

.ongoing-card .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.ongoing-outcome {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius-md);
  padding: 1.75rem;
  color: var(--white);
}

.ongoing-outcome h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.ongoing-outcome p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.ongoing-actions {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   WHY DIFFERENT — approach page
════════════════════════════════════════════════════════════ */
.why-different-section {
  background: var(--surface);
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}

.why-different-section .section-heading {
  max-width: var(--content-max);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.why-different-grid {
  max-width: var(--content-max);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.why-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border-left: 4px solid var(--teal);
}

.why-card h4 {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.why-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.why-different-closing {
  max-width: var(--content-max);
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--ink);
  font-style: italic;
  text-align: center;
}

.services-note-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.services-bottom-note {
  max-width: var(--content-max);
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — packages + why-different
════════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .ongoing-card { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .package-table thead th:first-child { width: auto; }
}
