/* =========================================================
   North House Medical Clinic — Brand Proposal
   Design system
   ========================================================= */

:root {
  /* Client palette */
  --espresso: #4a4036;   /* Warm Espresso Brown — logo, headings, key elements */
  --ivory:    #f7f4ef;   /* Soft Ivory/Cream — backgrounds */
  --stone:    #d8d0c5;   /* Warm Stone — secondary backgrounds */
  --taupe:    #b3a79a;   /* Taupe — icons, borders, supporting graphics */
  --green:    #2f3a34;   /* Deep Botanical Green — accent, CTAs, foliage */

  /* Supporting metallic drawn from the interior materials (walnut + brass) */
  --brass:    #a9885e;
  --brass-lt: #c6a878;

  /* Functional */
  --ink:      #2c2620;
  --muted:    #7d7266;
  --line:     rgba(74, 64, 54, 0.16);
  --line-soft:rgba(74, 64, 54, 0.09);
  --white:    #fffdf9;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--espresso);
  margin: 0;
  line-height: 1.1;
}

p { margin: 0 0 1.1em; }
a { color: var(--green); }

/* ---------- Shared layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--stone { background: var(--stone); }
.section--espresso { background: var(--espresso); color: var(--ivory); }
.section--green { background: var(--green); color: var(--ivory); }
.section--espresso h1,.section--espresso h2,.section--espresso h3,.section--espresso h4,
.section--green h1,.section--green h2,.section--green h3,.section--green h4 { color: var(--ivory); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--brass);
  display: inline-block;
}
.section--espresso .eyebrow, .section--green .eyebrow { color: var(--brass-lt); }
.section--espresso .eyebrow::before, .section--green .eyebrow::before { background: var(--brass-lt); }

.section-title {
  font-size: clamp(30px, 4.4vw, 52px);
  letter-spacing: 0.01em;
  max-width: 20ch;
  margin-bottom: 26px;
}
.lead {
  font-size: clamp(18px, 2vw, 21px);
  color: var(--muted);
  max-width: 62ch;
  font-weight: 300;
}
.section--espresso .lead, .section--green .lead { color: rgba(247,244,239,0.78); }

.sec-index {
  position: absolute;
  top: clamp(28px, 5vw, 54px);
  right: var(--gutter);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--taupe);
  letter-spacing: 0.1em;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,239,0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: flex-start; gap: clamp(28px, 4vw, 56px);
  position: relative;
}
.nav__brand {
  font-family: var(--serif); font-size: 20px; letter-spacing: 0.22em;
  color: var(--green); text-transform: uppercase; text-decoration: none; white-space: nowrap;
  flex-shrink: 0; transition: color .2s;
}
.nav__brand:hover { color: var(--espresso); }
.nav__toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}
.nav__toggle:hover { background: rgba(47, 58, 52, 0.06); }
.nav__toggle:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.nav__toggle-bars,
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  display: block;
  width: 18px; height: 1.5px;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle-bars { position: relative; }
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  content: "";
  position: absolute; left: 0;
}
.nav__toggle-bars::before { top: -6px; }
.nav__toggle-bars::after { top: 6px; }
.nav.is-open .nav__toggle-bars { background: transparent; }
.nav.is-open .nav__toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__toggle-bars::after { top: 0; transform: rotate(-45deg); }
.nav__links { display: flex; gap: 22px; flex-wrap: wrap; }
.nav__links a {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .2s; font-weight: 300;
}
.nav__links a:hover { color: var(--green); }
.nav__links a.is-active {
  color: var(--espresso);
  font-weight: 500;
}
.nav__links a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
@media (max-width: 860px) {
  .nav__inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .nav__toggle { display: inline-flex; }
  .nav__links {
    display: none;
    flex-direction: column;
    flex-basis: 100%;
    gap: 0;
    margin: 12px -4px 0;
    padding: 8px 0 4px;
    border-top: 1px solid var(--line-soft);
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__links a {
    display: block;
    padding: 14px 4px;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--green);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav__links a.is-active {
    color: var(--espresso);
    font-weight: 500;
  }
  .nav__links a:hover { color: var(--brass); }
}
@media (max-width: 860px) and (prefers-reduced-motion: reduce) {
  .nav__toggle-bars,
  .nav__toggle-bars::before,
  .nav__toggle-bars::after { transition: none; }
}

/* ---------- Hero / cover ---------- */
.cover {
  min-height: 94vh;
  display: grid;
  align-content: center;
  background:
    radial-gradient(120% 80% at 80% 10%, rgba(169,136,94,0.10), transparent 60%),
    linear-gradient(180deg, var(--ivory), #efe9e0);
  position: relative; overflow: hidden;
}
.cover__arch {
  position: absolute; right: -6%; bottom: -8%;
  width: min(48vw, 560px); opacity: 0.5; pointer-events: none;
}
/* Must share the same full-width track as .nav__inner — not shrink-wrap to content */
.cover > .wrap.cover__inner,
.cover__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  box-sizing: border-box;
  text-align: left;
}
.cover__monogram {
  width: 82px;
  height: auto;
  aspect-ratio: 120 / 168;
  margin: 0 0 36px;
  display: block;
  overflow: visible;
}
.cover h1 {
  font-size: clamp(46px, 9vw, 118px);
  letter-spacing: 0.06em;
  line-height: 0.98;
  margin: 0 0 8px;
  text-transform: uppercase;
  color: var(--green);
}
.cover__sub {
  font-family: var(--sans); font-weight: 300;
  letter-spacing: 0.5em; text-transform: uppercase;
  font-size: clamp(12px, 1.6vw, 16px); color: var(--brass);
  margin: 14px 0 40px; padding-left: 0;
}
.cover__essence {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.6vw, 30px); color: var(--espresso);
  max-width: 24ch; line-height: 1.3;
}
.cover__meta {
  margin-top: 54px; display: flex; gap: 40px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.cover__meta span { display: block; color: var(--espresso); font-size: 14px; letter-spacing: 0.08em; margin-top: 6px; text-transform: none; }

/* ---------- Palette strip ---------- */
.palette-strip { display: flex; height: 10px; }
.palette-strip > span { flex: 1; }

/* ---------- Generic grids ---------- */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.mt-lg { margin-top: clamp(40px, 6vw, 72px); }
.mt-md { margin-top: 34px; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 34px 30px;
  border-radius: 2px;
}
.card h3 { font-size: 24px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15.5px; margin-bottom: 0; }
.card__num {
  font-family: var(--serif); font-style: italic; color: var(--brass);
  font-size: 18px; margin-bottom: 14px;
}

.pillar { border-top: 2px solid var(--green); }

/* ---------- Two column feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.split--rev { grid-template-columns: 0.95fr 1.05fr; }
@media (max-width: 860px) { .split, .split--rev { grid-template-columns: 1fr; } }
.split img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; display: block; }

.figure { position: relative; }
.figure img { width: 100%; display: block; border-radius: 2px; }
.figure figcaption {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-top: 12px;
}

/* ---------- Audience list ---------- */
.deflist { list-style: none; margin: 0; padding: 0; }
.deflist li { padding: 20px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 200px 1fr; gap: 24px; }
.deflist li:first-child { border-top: 1px solid var(--line); }
.deflist dt { font-family: var(--serif); font-size: 21px; color: var(--espresso); }
.deflist dd { margin: 0; color: var(--muted); font-size: 16px; }
@media (max-width: 640px) { .deflist li { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- Moodboard ---------- */
.mood {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
}
.mood figure { margin: 0; overflow: hidden; border-radius: 2px; position: relative; }
.mood img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.mood figure:hover img { transform: scale(1.04); }
.mood .mood-zoom img { transform: scale(1.22); object-position: 55% 40%; }
.mood .mood-zoom:hover img { transform: scale(1.28); }
.mood .tall { grid-row: span 2; }
.mood .wide { grid-column: span 2; }
.mood figcaption {
  position: absolute; left: 14px; bottom: 12px;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
@media (max-width: 900px) { .mood { grid-template-columns: repeat(2, 1fr); } .mood .wide { grid-column: span 2; } }

/* ---------- Logo showcase ---------- */
.logo-stage {
  background: var(--ivory); border: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center;
  padding: 64px 30px; border-radius: 2px; min-height: 230px;
}
.logo-stage--dark { background: var(--espresso); }
.logo-stage--green { background: var(--green); }
.logo-note { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 14px; text-align: center; }

/* ---------- Palette detail ---------- */
.swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .swatches { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .swatches { grid-template-columns: 1fr; } }
.swatch { border: 1px solid var(--line-soft); border-radius: 2px; overflow: hidden; background: var(--white); }
.swatch__chip { height: 118px; }
.swatch__body { padding: 16px 18px 20px; }
.swatch__name { font-family: var(--serif); font-size: 19px; color: var(--espresso); }
.swatch__hex { font-size: 12px; letter-spacing: 0.16em; color: var(--brass); text-transform: uppercase; margin: 4px 0 8px; }
.swatch__use { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ---------- Type specimen ---------- */
.type-spec { border: 1px solid var(--line); border-radius: 2px; overflow: hidden; }
.type-row { padding: 30px clamp(22px, 3vw, 40px); border-bottom: 1px solid var(--line); }
.type-row:last-child { border-bottom: 0; }
.type-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-bottom: 16px; }
.type-display { font-family: var(--serif); font-size: clamp(34px, 6vw, 68px); color: var(--espresso); line-height: 1; }
.type-alpha { font-family: var(--serif); font-size: 26px; letter-spacing: 0.04em; color: var(--muted); }
.type-body-sample { font-family: var(--sans); font-weight: 300; color: var(--ink); max-width: 58ch; }
.type-meta { font-family: var(--sans); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- Application mocks ---------- */
.browser {
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(74,64,54,0.4); background: #fff;
}
.browser__bar { background: #ece6dc; padding: 11px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line-soft); }
.browser__dot { width: 10px; height: 10px; border-radius: 50%; background: #c9bfb1; }
.browser__url { margin-left: 14px; font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }
.hero-mock { position: relative; min-height: 440px; display: flex; align-items: flex-end; color: #fff; }
.hero-mock img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-mock__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(44,38,32,0.15), rgba(44,38,32,0.72)); }
.hero-mock__content { position: relative; z-index: 2; padding: clamp(30px, 5vw, 64px); }
.hero-mock__content .kicker { letter-spacing: 0.4em; text-transform: uppercase; font-size: 12px; color: var(--brass-lt); margin-bottom: 18px; }
.hero-mock__content h3 { color: #fff; font-size: clamp(30px, 5vw, 58px); line-height: 1.02; max-width: 16ch; }
.hero-mock__content p { color: rgba(255,255,255,0.85); max-width: 44ch; margin-top: 16px; }
.btn-ghost {
  display: inline-block; margin-top: 26px; padding: 13px 30px;
  border: 1px solid rgba(255,255,255,0.6); color: #fff; text-decoration: none;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
}

/* Instagram tiles */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 720px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
.ig {
  aspect-ratio: 1/1; border-radius: 2px; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 22px;
}
.ig--espresso { background: var(--espresso); color: var(--ivory); }
.ig--green { background: var(--green); color: var(--ivory); }
.ig--stone { background: var(--stone); color: var(--espresso); }
.ig--photo { padding: 0; }
.ig--photo img { width: 100%; height: 100%; object-fit: cover; }
.ig__kicker { position: absolute; top: 18px; left: 0; right: 0; font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.8; }
.ig__title { font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); line-height: 1.12; }
.ig__foot { position: absolute; bottom: 16px; left: 0; right: 0; font-size: 9px; letter-spacing: 0.34em; text-transform: uppercase; opacity: 0.7; }
.ig svg { display: block; }

/* Highlight covers */
.highlights { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.hl { text-align: center; }
.hl__circle {
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--ivory); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 10px;
}
.hl__circle--green { background: var(--green); }
.hl__circle--espresso { background: var(--espresso); }
.hl__label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* Gift voucher */
.voucher {
  aspect-ratio: 1.6/1; border-radius: 4px; padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, var(--green), #253029);
  color: var(--ivory); position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 30px 60px -34px rgba(47,58,52,0.7);
}
.voucher__arch { position: absolute; right: -40px; top: -30px; opacity: 0.18; width: 260px; }
.voucher__top { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 2; }
.voucher__brand { font-family: var(--serif); letter-spacing: 0.22em; text-transform: uppercase; font-size: 18px; }
.voucher__brand small { display: block; font-size: 9px; letter-spacing: 0.4em; opacity: 0.7; margin-top: 4px; }
.voucher__value { text-align: right; }
.voucher__value b { font-family: var(--serif); font-size: 40px; font-weight: 500; display: block; line-height: 1; }
.voucher__value span { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.75; }
.voucher__mid { position: relative; z-index: 2; }
.voucher__mid h4 { color: var(--ivory); font-size: clamp(24px, 4vw, 36px); font-style: italic; font-weight: 500; }
.voucher__foot { position: relative; z-index: 2; display: flex; justify-content: space-between; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.7; }

/* ---------- Positioning map ---------- */
.map {
  position: relative; border: 1px solid var(--line); border-radius: 2px;
  background: var(--white); aspect-ratio: 1.35/1; margin-top: 20px;
}
.map__axis { position: absolute; background: var(--line); }
.map__axis--x { left: 8%; right: 8%; top: 50%; height: 1px; }
.map__axis--y { top: 8%; bottom: 8%; left: 50%; width: 1px; }
.map__cap { position: absolute; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.map__cap--t { top: 14px; left: 50%; transform: translateX(-50%); }
.map__cap--b { bottom: 14px; left: 50%; transform: translateX(-50%); }
.map__cap--l {
  left: 18px; top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center center;
}
.map__cap--r {
  right: 18px; top: 50%;
  transform: translate(50%, -50%) rotate(90deg);
  transform-origin: center center;
}
.dot { position: absolute; transform: translate(-50%, -50%); text-align: center; }
.dot i {
  width: 12px; height: 12px; border-radius: 50%; background: var(--taupe);
  display: block; margin: 0 auto 7px; font-style: normal;
}
.dot span { font-size: 11.5px; color: var(--muted); letter-spacing: 0.04em; white-space: nowrap; }
.dot--us i { width: 18px; height: 18px; background: var(--green); box-shadow: 0 0 0 6px rgba(47,58,52,0.14); }
.dot--us span { color: var(--espresso); font-family: var(--serif); font-size: 15px; font-style: italic; }

/* ---------- Competitor table ---------- */
.ctable { width: 100%; border-collapse: collapse; margin-top: 8px; }
.ctable th, .ctable td { text-align: left; padding: 18px 18px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 15px; }
.ctable th { font-family: var(--sans); font-weight: 400; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); }
.ctable td:first-child { font-family: var(--serif); font-size: 19px; color: var(--espresso); width: 24%; }
.ctable td { color: var(--muted); }
.ctable tr:last-child td { border-bottom: 0; }
@media (max-width: 760px) {
  .ctable, .ctable tbody, .ctable tr, .ctable td { display: block; width: 100%; }
  .ctable thead { display: none; }
  .ctable tr { border-bottom: 1px solid var(--line); padding: 10px 0; }
  .ctable td { border: 0; padding: 4px 0; }
  .ctable td:first-child { padding-top: 14px; }
}

/* ---------- Pricing ---------- */
.ptable { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: 2px; overflow: hidden; }
.ptable th, .ptable td { padding: 20px 22px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.ptable thead th { font-family: var(--sans); font-weight: 400; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); background: var(--ivory); }
.ptable td:first-child { font-family: var(--serif); font-size: 20px; color: var(--espresso); width: 26%; }
.ptable td p { margin: 0; color: var(--muted); font-size: 14.5px; }
.ptable td.price { font-family: var(--serif); font-size: 20px; color: var(--green); text-align: right; white-space: nowrap; width: 14%; }
.ptable tfoot td { border-bottom: 0; background: var(--ivory); }
.ptable tfoot .total { font-family: var(--serif); font-size: 15px; color: var(--espresso); letter-spacing: 0.02em; }
.ptable tfoot .total b { color: var(--green); font-size: 24px; }
@media (max-width: 760px) {
  .ptable, .ptable thead, .ptable tbody, .ptable tfoot, .ptable tr, .ptable th, .ptable td { display: block; width: 100%; }
  .ptable thead { display: none; }
  .ptable td { border: 0; padding: 3px 22px; }
  .ptable td:first-child { padding-top: 20px; }
  .ptable td.price { text-align: left; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
}

.callout {
  background: var(--white); border: 1px solid var(--line-soft); border-left: 3px solid var(--brass);
  padding: 26px 30px; border-radius: 2px;
}
.callout h4 { font-size: 20px; margin-bottom: 8px; }
.callout p { color: var(--muted); font-size: 15px; margin-bottom: 0; }

/* ---------- Customer journey (horizontal winding road) ---------- */
.section:has(> .journey) { padding-bottom: 0; }
.journey {
  background: var(--green);
  color: var(--ivory);
  margin-top: 0;
  border-top: none;
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}
.journey .eyebrow { color: var(--brass-lt); }
.journey .eyebrow::before { background: var(--brass-lt); }
.journey .lead { color: rgba(247, 244, 239, 0.78); }
.journey__inner { max-width: var(--maxw); }
.journey__intro { max-width: 42rem; }
.journey__title {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.01em;
  max-width: 16ch;
  margin-bottom: 18px;
  color: var(--ivory);
}

.journey__map-scroll {
  margin: clamp(48px, 6.5vw, 80px) 0 0;
}
.journey__map {
  position: relative;
  width: 100%;
  aspect-ratio: 1100 / 480;
}
.journey__road {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.journey__road-line {
  fill: none;
  stroke: rgba(247, 244, 239, 0.3);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.journey.is-drawn .journey__road-line {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 2.4s cubic-bezier(0.45, 0.05, 0.25, 1);
}

.journey__stops {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.journey__stop {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 0;
  height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  --reveal-delay: calc(0.18s + (var(--i, 0) * 0.16s));
}
.journey__marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.55);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ivory);
  box-shadow:
    0 0 0 5px var(--green),
    0 0 0 6px rgba(198, 168, 120, 0.65);
  z-index: 1;
  opacity: 0;
}
.journey.is-drawn .journey__marker {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
}
.journey__stop--end .journey__marker {
  width: 13px;
  height: 13px;
  background: var(--brass-lt);
  box-shadow:
    0 0 0 5px var(--green),
    0 0 0 6px rgba(247, 244, 239, 0.5);
}

.journey__label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 11ch;
  font-family: var(--serif);
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  text-wrap: balance;
  opacity: 0;
}
.journey.is-drawn .journey__label {
  opacity: 1;
  transition: opacity 0.5s ease var(--reveal-delay);
}
.journey__stop--above .journey__label {
  bottom: calc(100% + 16px);
  top: auto;
}
.journey__stop--below .journey__label {
  top: calc(100% + 16px);
  bottom: auto;
}
.journey__stop--wide .journey__label {
  max-width: 16ch;
}

.journey__close {
  text-align: center;
  max-width: 44ch;
  margin: clamp(36px, 5vw, 56px) auto 0;
}
.journey__close-lead {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 30px);
  font-style: italic;
  color: var(--ivory);
  line-height: 1.35;
  margin: 0 0 14px;
}
.journey__close .muted-sm {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(247, 244, 239, 0.72);
}

/* Tablet: tighter labels, same horizontal map */
@media (max-width: 900px) {
  .journey__label {
    font-size: clamp(12px, 1.55vw, 15px);
    max-width: 10ch;
  }
  .journey__stop--above .journey__label { bottom: calc(100% + 12px); }
  .journey__stop--below .journey__label { top: calc(100% + 12px); }
}

/* Mobile: scroll the map sideways — short band, not a tall stack */
@media (max-width: 640px) {
  .journey__map-scroll {
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    padding: 0 var(--gutter) 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(247, 244, 239, 0.35) transparent;
  }
  .journey__map {
    width: 720px;
    max-width: none;
  }
  .journey__label {
    font-size: 12px;
    max-width: 9.5ch;
  }
  .journey__marker {
    width: 9px;
    height: 9px;
    box-shadow:
      0 0 0 4px var(--green),
      0 0 0 5px rgba(198, 168, 120, 0.65);
  }
  .journey__stop--end .journey__marker {
    width: 11px;
    height: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey__road-line {
    stroke-dashoffset: 0;
    transition: none;
  }
  .journey__marker,
  .journey.is-drawn .journey__marker {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: none;
  }
  .journey__label,
  .journey.is-drawn .journey__label {
    opacity: 1;
    transition: none;
  }
}

.chip {
  display: inline-block; padding: 7px 16px; border: 1px solid var(--line); border-radius: 40px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 0 8px 10px 0;
}

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.timeline li { position: relative; padding: 0 0 40px 56px; }
.timeline li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -4px;
  font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--brass);
}
.timeline li::after {
  content: ""; position: absolute; left: 12px; top: 26px; bottom: 6px; width: 1px; background: var(--line);
}
.timeline li:last-child::after { display: none; }
.timeline h4 { font-size: 22px; margin-bottom: 6px; }
.timeline p { color: var(--muted); font-size: 15px; margin: 0; }
.section--espresso .timeline p { color: rgba(247,244,239,0.72); }
.section--espresso .timeline li::after { background: rgba(247,244,239,0.2); }

/* ---------- Footer / closing vision ---------- */
.foot { padding: 90px 0 70px; text-align: center; }
.foot__mono { width: 64px; height: auto; max-width: 64px; margin: 0 auto 22px; display: block; }
.foot__logo {
  width: min(220px, 70vw); height: auto; aspect-ratio: 1;
  object-fit: cover; display: block; margin: 0 auto 22px;
  border-radius: 0; background: #2f3a34;
}
.foot h3 { font-size: 28px; letter-spacing: 0.06em; }
.foot p { color: rgba(247,244,239,0.7); margin-top: 10px; }
.foot small { display: block; margin-top: 48px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,244,239,0.45); }

.close { max-width: 44rem; margin-left: auto; margin-right: auto; }
.close .eyebrow { margin-bottom: 28px; }
.close__lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.3;
  color: var(--ivory);
  margin: 0 0 28px;
}
.close__body {
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.4;
  color: rgba(247,244,239,0.88);
  margin: 0 0 18px;
}
.close__body:last-of-type { margin-bottom: 0; }

/* utilities */
.center { text-align: center; }
.muted-sm { font-size: 13.5px; color: var(--muted); }
.divider-arch { display: block; margin: 0 auto; width: 60px; opacity: 0.6; }

/* ============================================================
   CONCEPT 3 — additional components
   ============================================================ */

.logo-hires { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.logo-hires > div { min-width: 0; }
.logo-hires > div:first-child { background: #2f3a34; }
.logo-hires > div:last-child { background: #f7f4ef; }
.logo-hires img {
  width: 100%; max-width: 100%; aspect-ratio: 1; height: auto;
  object-fit: cover; object-position: center; display: block;
  border: 0; border-radius: 0; background: transparent;
}
.logo-alts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.logo-alts figure { margin: 0; min-width: 0; }
.logo-alts figure:nth-child(1),
.logo-alts figure:nth-child(2) { background: #2f3a34; }
.logo-alts figure:nth-child(3) { background: #f7f4ef; }
.logo-alts img {
  width: 100%; max-width: 100%; aspect-ratio: 1; height: auto;
  object-fit: cover; object-position: center; display: block;
  border: 0; border-radius: 0; background: transparent;
}
.logo-alts figcaption { margin-top: 10px; font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
@media (max-width: 760px) {
  .logo-hires, .logo-alts { grid-template-columns: 1fr; }
}

.concepts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.concept { border: 1px solid var(--line); border-radius: 4px; padding: 30px 26px; background: var(--white); }
.concept__icon { height: 66px; display: flex; align-items: flex-end; margin-bottom: 20px; }
.concept__icon svg { display: block; color: var(--green); }
.concept h4 { font-size: 19px; margin: 0 0 6px; }
.concept p { font-size: 13.5px; color: var(--muted); margin: 0; }
@media (max-width: 820px) { .concepts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .concepts { grid-template-columns: 1fr; } }

.type-weights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.type-w { border: 1px solid var(--line-soft); border-radius: 3px; padding: 22px; background: var(--white); }
.type-w span { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); margin-bottom: 10px; }
.type-w p { margin: 0; font-family: var(--sans); font-size: 22px; color: var(--espresso); }
.type-w--300 p { font-weight: 300; }
.type-w--400 p { font-weight: 400; }
.type-w--500 p { font-weight: 500; }
@media (max-width: 640px) { .type-weights { grid-template-columns: 1fr; } }

.screen-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; }
.screen-grid .browser { margin: 0; }
.screen-side { display: grid; gap: 18px; }
.screen-side .mini { border: 1px solid var(--line); border-radius: 3px; overflow: hidden; background: var(--white); }
.screen-side .mini img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; }
.screen-side .mini span { display: block; padding: 10px 14px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 860px) { .screen-grid { grid-template-columns: 1fr; } }

.ig-phone-wrap { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: center; margin-top: 40px; }
.phone {
  width: 260px; margin: 0 auto; background: #1c1916; border-radius: 36px; padding: 12px;
  box-shadow: 0 30px 50px -28px rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.08);
}
.phone__notch { width: 96px; height: 18px; background: #0e0c0a; border-radius: 0 0 14px 14px; margin: 0 auto 10px; }
.phone__screen { background: var(--ivory); border-radius: 26px; overflow: hidden; padding: 18px 14px 22px; }
.phone__header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.phone__av {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: var(--ivory);
  display: grid; place-items: center; font-family: var(--serif); font-size: 13px;
}
.phone__name { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--espresso); }
.phone__hl { display: flex; gap: 10px; overflow: hidden; }
.phone__hl .hl { flex: 0 0 auto; }
.phone__hl .hl__circle { width: 58px; height: 58px; }
@media (max-width: 800px) { .ig-phone-wrap { grid-template-columns: 1fr; } }

.frontage {
  position: relative; border-radius: 0; overflow: hidden; border: 1px solid var(--line);
  margin: 0; background: #2f3a34;
}
.frontage img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; }
.frontage figcaption {
  padding: 12px 4px 0; font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.frontage--lead { overflow: visible; background: transparent; border: 0; }
.frontage__media {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #2f3a34;
}
.frontage__media > img {
  width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover;
}
.frontage__inset {
  position: absolute; z-index: 2;
  width: 28%; max-width: 200px;
  border: 3px solid var(--white); border-radius: 3px;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,0.5); overflow: hidden;
}
.frontage__inset--evening { left: 16px; bottom: 16px; }
.frontage__inset--today { right: 16px; bottom: 16px; }
.frontage__inset img {
  width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover;
}
.frontage__inset span {
  position: absolute; top: 0; left: 0; z-index: 1;
  background: var(--espresso); color: var(--ivory);
  font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase; padding: 3px 8px;
}
@media (max-width: 640px) {
  .frontage__inset { width: 34%; max-width: 150px; }
  .frontage__inset--evening { left: 10px; bottom: 10px; }
  .frontage__inset--today { right: 10px; bottom: 10px; }
}
.frontage-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 760px) { .frontage-pair { grid-template-columns: 1fr; } }

.homepage-long .browser { margin: 0; }
.homepage-long .browser__bar {
  display: flex; align-items: center; gap: 8px;
}
.homepage-long .browser__url { flex: 1; min-width: 0; }
.homepage-long .browser__open {
  margin-left: auto;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; white-space: nowrap;
}
.homepage-long .browser__open:hover { color: var(--espresso); }
.homepage-long__frame {
  max-height: none; overflow: hidden;
  background: #1c1916; border-top: 1px solid rgba(255,255,255,0.06);
}
.homepage-long__frame img {
  width: 100%; display: block; height: auto;
}
.homepage-long__frame--live {
  height: min(78vh, 780px);
  background: var(--ivory);
}
.homepage-long__iframe {
  width: 100%; height: 100%; border: 0; display: block;
  background: var(--ivory);
}

.phases { display: grid; gap: 18px; }
.phase {
  border: 1px solid var(--line); border-radius: 4px; background: var(--white); overflow: hidden;
  display: grid !important;
  grid-template-columns: 96px minmax(0, 1fr) 120px;
  align-items: stretch;
}
.phase__num {
  background: var(--green); color: var(--ivory); display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 24px 10px; text-align: center;
}
.phase__num b { font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1; }
.phase__num span { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.75; margin-top: 4px; }
.phase__body { padding: 26px 28px; min-width: 0; }
.phase__body h3 { margin: 0 0 6px; font-size: 24px; }
.phase__body .tagline { font-family: var(--serif); font-style: italic; color: var(--brass); margin: 0 0 14px; }
.phase__body ul { margin: 0; padding: 0 0 0 18px; color: var(--muted); font-size: 14.5px; }
.phase__body li { margin-bottom: 4px; }
.phase__price {
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--line); font-family: var(--serif); font-size: 24px; color: var(--green);
  padding: 16px 10px; text-align: center;
}
@media (max-width: 700px) {
  .phase { grid-template-columns: 72px minmax(0, 1fr); }
  .phase__price {
    grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line);
    justify-content: flex-start; padding: 14px 22px;
  }
}

.spaces { display: grid; gap: 28px; }
.space {
  display: grid !important;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--line); border-radius: 5px; overflow: hidden; background: var(--white);
}
.space:nth-child(even) { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); }
.space:nth-child(even) .space__media { order: 2; }
.space__media {
  position: relative;
  aspect-ratio: 4 / 3;
  max-height: 420px;
  background: var(--stone);
  overflow: hidden;
}
.space__media > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.space__before {
  position: absolute; right: 16px; bottom: 16px; z-index: 2;
  width: 33%; max-width: 190px;
  border: 3px solid var(--white); border-radius: 3px;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,0.5); overflow: hidden;
}
.space__before img { width: 100%; display: block; position: relative; inset: auto; height: auto; object-fit: cover; aspect-ratio: 4/3; }
.space__before span {
  position: absolute; top: 0; left: 0; z-index: 1;
  background: var(--espresso); color: var(--ivory);
  font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase; padding: 3px 8px;
}
.space__media--pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  aspect-ratio: auto;
  max-height: none;
  min-height: 280px;
}
.space__media--pair > img {
  position: relative; inset: auto;
  width: 100%; height: 100%;
  min-height: 280px;
  max-height: 420px;
  object-fit: cover;
}
.space__body { padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.space__tag { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); margin-bottom: 10px; }
.space__body h3 { font-size: clamp(22px, 2.8vw, 28px); margin: 0 0 10px; }
.space__body p { color: var(--muted); font-size: 15px; margin: 0 0 16px; }
.space__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.space__list li {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line); border-radius: 40px; padding: 6px 13px;
}
@media (max-width: 860px) {
  .space, .space:nth-child(even) { grid-template-columns: 1fr; }
  .space:nth-child(even) .space__media { order: 0; }
  .space__media { max-height: 320px; }
}

/* ---------- Signature moments ---------- */
.moments {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(32px, 6vw, 72px);
  max-width: 720px;
}
.moments li {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.25;
  letter-spacing: 0.01em;
  padding: 16px 0;
  border-bottom: 1px solid rgba(247, 244, 239, 0.14);
}
.moments li:nth-child(-n+2) {
  border-top: 1px solid rgba(247, 244, 239, 0.14);
}
.moments__close {
  margin-top: clamp(40px, 6vw, 64px);
  max-width: 48ch;
}
.moments__close-lead {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-style: italic;
  color: var(--ivory);
  line-height: 1.35;
  margin: 0 0 12px;
}
.moments__close .muted-sm {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(247, 244, 239, 0.68);
}
@media (max-width: 560px) {
  .moments { grid-template-columns: 1fr; }
  .moments li:nth-child(-n+2) { border-top: none; }
  .moments li:first-child { border-top: 1px solid rgba(247, 244, 239, 0.14); }
}

.figure--arch {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 999px 999px 8px 8px;
  border: 1px solid var(--line);
  margin-left: auto;
}
.figure--arch img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 42% 38%;
  display: block;
}
.figure--arch figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 14px; background: linear-gradient(transparent, rgba(44,38,32,0.72));
  color: var(--ivory); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}

.foot__mono { width: 64px !important; height: auto !important; max-width: 64px; margin: 0 auto 22px; display: block; }
.foot__logo { width: min(220px, 70vw) !important; max-width: 220px; }

/* Hard cap any runaway media in this proposal */
.section img { max-width: 100%; }
.frontage img, .ig--photo img { max-width: 100%; }
