/* ============== Nav ============== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 1.1rem 0; transition: background var(--t-med) var(--ease-out), backdrop-filter var(--t-med) var(--ease-out), border-color var(--t-med) var(--ease-out); border-bottom: 1px solid transparent; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.18em; font-weight: 400; color: var(--charcoal); }
.nav-links { display: flex; align-items: center; gap: 2rem; font-size: 0.92rem; color: var(--ink); }
.nav-links a { opacity: 0.85; transition: opacity var(--t-fast) var(--ease-out); }
.nav-links a:hover { opacity: 1; }
.nav-cta { padding: 0.6rem 1.15rem; border: 1px solid var(--ink); border-radius: var(--radius-pill); transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out); }
.nav-cta:hover { background: var(--charcoal); color: var(--paper); border-color: var(--charcoal); }
.nav.scrolled { background: rgba(242, 237, 227, 0.92); backdrop-filter: saturate(140%) blur(10px); border-bottom-color: var(--rule); }
@media (max-width: 820px) { .nav-links .nav-link { display: none; } }

/* ============== Hero ============== */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; padding-top: 6rem; padding-bottom: clamp(3rem, 8vh, 6rem); overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(242, 237, 227, 0.55) 0%, rgba(242, 237, 227, 0) 14%),
  linear-gradient(90deg, rgba(242, 237, 227, 0.65) 0%, rgba(242, 237, 227, 0.35) 30%, rgba(242, 237, 227, 0) 55%);
}
.hero-content { position: relative; z-index: 1; color: var(--charcoal); width: 100%; max-width: 46%; margin-inline: 0; padding-inline: clamp(1.5rem, 4vw, 4rem); }
.hero h1 { color: var(--charcoal); max-width: 16ch; font-weight: 320; font-size: clamp(1.7rem, 4.2vw, 3.9rem); font-variation-settings: "opsz" 144, "SOFT" 30; }
.hero h1 .accent { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--moss); }
.hero h1 em { color: var(--moss); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }
.hero h1 .eq-op { color: var(--terracotta); font-style: italic; font-weight: 320; margin-inline: 0.15em; font-variation-settings: "opsz" 144, "SOFT" 100; }
.hero .eyebrow { color: var(--terracotta); margin-bottom: 1.75rem; }
.hero .eyebrow::before { background: var(--terracotta); }
.hero-sub { font-size: clamp(1.05rem, 1.3vw, 1.2rem); line-height: 1.55; max-width: 34rem; margin-top: 1.6rem; color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.5rem; }
.hero .btn-primary { background: var(--moss); color: var(--paper); }
.hero .btn-primary:hover { background: var(--charcoal); color: var(--paper); }
.hero .btn-ghost { color: var(--ink); border-color: var(--ink); }
.hero .btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.hero-meta { position: absolute; right: clamp(1.25rem, 4vw, 3rem); bottom: clamp(2rem, 6vh, 4rem); z-index: 1; text-align: right; color: rgba(31, 28, 24, 0.6); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.8; }
.hero-meta span { display: block; }
@media (max-width: 1000px) { .hero-content { max-width: 62%; } .hero-bg img { object-position: 75% center; } }
@media (max-width: 720px) { .hero-meta { display: none; } .hero-content { max-width: 100%; } .hero-bg img { object-position: 80% center; } .hero-bg::after { background: linear-gradient(180deg, rgba(242, 237, 227, 0) 0%, rgba(242, 237, 227, 0.85) 65%, rgba(242, 237, 227, 0.96) 100%); } }

/* ============== Vision section ============== */
.section-vision { background: var(--cream); }
.vision-header { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; margin-bottom: clamp(3rem, 6vw, 5rem); }
@media (max-width: 900px) { .vision-header { grid-template-columns: 1fr; gap: 2rem; align-items: start; } }
.vision-header h2 { max-width: 16ch; font-weight: 320; }
.vision-header h2 em { color: var(--moss); font-weight: 360; font-variation-settings: "opsz" 144, "SOFT" 100; }
.vision-header .eyebrow { margin-bottom: 1.5rem; }
.vision-lead p { color: var(--ink); }
.vision-lead p:last-child { color: var(--moss); font-family: var(--font-display); font-style: italic; font-size: 1.35rem; line-height: 1.4; margin-top: 1.2rem; font-variation-settings: "opsz" 144, "SOFT" 100; }

.wealth-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--rule); }
.wealth-list li { padding: 2.25rem 1.5rem 2.5rem; border-right: 1px solid var(--rule); display: flex; flex-direction: column; gap: 0.85rem; }
.wealth-list li:last-child { border-right: 0; }
.wealth-list .num { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: var(--tracking-wide); color: var(--terracotta); font-weight: 500; }
.wealth-list h4 { font-size: 1.5rem; font-weight: 360; }
.wealth-list p { font-size: 0.96rem; line-height: 1.5; color: var(--fg-soft); margin: 0; }
@media (max-width: 1020px) { .wealth-list { grid-template-columns: repeat(2, 1fr); } .wealth-list li { border-bottom: 1px solid var(--rule); } .wealth-list li:nth-child(2n) { border-right: 0; } .wealth-list li:nth-last-child(-n+2) { border-bottom: 0; } .wealth-list li:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: 0; } }
@media (max-width: 560px) { .wealth-list { grid-template-columns: 1fr; } .wealth-list li { border-right: 0; } .wealth-list li:last-child { border-bottom: 0; } }

/* ============== Overview section ============== */
.section-overview { background: var(--cream); padding-block: clamp(5rem, 10vw, 9rem); }
.overview-grid { display: grid; grid-template-columns: 0.35fr 1.65fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.overview-grid .eyebrow { margin-top: 0.6rem; }
.overview-copy { max-width: 44rem; }
.overview-copy .lead { font-size: clamp(1.2rem, 1.6vw, 1.45rem); line-height: 1.5; color: var(--ink); }
.overview-copy .lead + .lead { margin-top: 1.2rem; }
.overview-copy .invitation { margin-top: 2.5rem; font-family: var(--font-display); font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.3; color: var(--moss); font-variation-settings: "opsz" 144, "SOFT" 100; }
@media (max-width: 820px) { .overview-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ============== Savings row (Home pillar) ============== */
.savings-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-block: clamp(3rem, 6vw, 5rem); }
.savings-row .saving { padding: 2rem 1.75rem 2.25rem; border-right: 1px solid var(--rule); display: flex; flex-direction: column; gap: 1rem; }
.savings-row .saving:last-child { border-right: 0; }
.saving-figure { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.25rem); line-height: 1; color: var(--moss); font-weight: 360; letter-spacing: var(--tracking-tight); font-variation-settings: "opsz" 144, "SOFT" 60; }
.saving-figure .unit { display: block; font-family: var(--font-body); font-size: 0.78rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--terracotta); font-weight: 500; margin-bottom: 0.6rem; }
.savings-row .saving p { margin: 0; font-size: 0.96rem; color: var(--ink); line-height: 1.5; }
@media (max-width: 820px) { .savings-row { grid-template-columns: 1fr; } .savings-row .saving { border-right: 0; border-bottom: 1px solid var(--rule); } .savings-row .saving:last-child { border-bottom: 0; } }

/* ============== Core amenities (simpler list) ============== */
.core-amenities-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.core-amenities-list article { padding: 2.5rem 1.5rem 2.75rem; border-right: 1px solid var(--rule); display: flex; flex-direction: column; gap: 1.25rem; min-height: 14rem; }
.core-amenities-list article:last-child { border-right: 0; }
.core-amenities-list .num { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1; letter-spacing: 0; text-transform: none; color: var(--terracotta); font-weight: 320; font-variation-settings: "opsz" 144, "SOFT" 100; }
.core-amenities-list h4 { font-size: 1.35rem; font-weight: 380; line-height: 1.3; max-width: 14ch; letter-spacing: var(--tracking-snug); color: var(--charcoal); }

/* ============== Amenities (editorial list) ============== */
.amenities { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--rule); }
.amenities li { display: grid; grid-template-columns: 4rem 1.1fr 2fr; gap: clamp(1.25rem, 3vw, 3rem); padding: 1.75rem 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.amenities .num { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1; color: var(--terracotta); font-weight: 320; font-variation-settings: "opsz" 144, "SOFT" 100; }
.amenities h4 { font-size: clamp(1.25rem, 1.9vw, 1.55rem); font-weight: 360; line-height: 1.25; color: var(--charcoal); margin: 0; max-width: 22ch; letter-spacing: var(--tracking-snug); }
.amenities p { font-size: 1rem; line-height: 1.55; color: var(--ink); margin: 0; max-width: 48rem; }
@media (max-width: 820px) { .amenities li { grid-template-columns: 3rem 1fr; gap: 0.85rem 1rem; padding: 1.5rem 0; } .amenities p { grid-column: 2 / -1; } }
@media (max-width: 1020px) { .core-amenities-list { grid-template-columns: repeat(2, 1fr); } .core-amenities-list article { border-bottom: 1px solid var(--rule); } .core-amenities-list article:nth-child(2n) { border-right: 0; } .core-amenities-list article:nth-last-child(-n+2) { border-bottom: 0; } .core-amenities-list article:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: 0; } }
@media (max-width: 560px) { .core-amenities-list { grid-template-columns: 1fr; } .core-amenities-list article { border-right: 0; } .core-amenities-list article:last-child { border-bottom: 0; } }

/* ============== Rhythm prose (simpler weekly rhythm) ============== */
.rhythm-prose { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.rhythm-prose li { padding: 1.25rem 0; border-bottom: 1px solid var(--rule); font-family: var(--font-display); font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.4; color: var(--ink); font-weight: 340; font-variation-settings: "opsz" 144, "SOFT" 30; }
.rhythm-prose li:first-child { border-top: 1px solid var(--rule); }

/* ============== Section subtitle (for sub-blocks inside pillars) ============== */
.section-subtitle { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 360; line-height: 1.1; letter-spacing: var(--tracking-tight); color: var(--charcoal); margin: clamp(3rem, 6vw, 5rem) 0 1.5rem; font-variation-settings: "opsz" 144, "SOFT" 30; }
.section-subtitle em { color: var(--terracotta); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }

/* ============== Canada stats ============== */
.canada-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-block: 0 clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.canada-stats .stat { padding: 2rem 1.5rem 2.25rem; border-right: 1px solid var(--rule); display: flex; flex-direction: column; gap: 0.65rem; }
.canada-stats .stat:last-child { border-right: 0; }
.canada-stats .stat-figure { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.75rem); line-height: 1; color: var(--moss); font-weight: 360; letter-spacing: var(--tracking-tight); font-variation-settings: "opsz" 144, "SOFT" 30; }
.canada-stats .stat-label { font-size: 1rem; color: var(--ink); line-height: 1.4; max-width: 18ch; }
.canada-stats .stat-source { font-size: 0.78rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--terracotta); font-weight: 500; margin-top: 0.4rem; }
.canada-stats .stat-meaning { font-size: 0.92rem; line-height: 1.5; color: var(--moss-soft); margin-top: 0.5rem; max-width: 22ch; }
.canada-sources { font-family: var(--font-display); font-style: italic; font-size: 0.82rem; color: var(--moss-soft); margin: 1.5rem 0 0; text-align: right; letter-spacing: 0.01em; font-variation-settings: "opsz" 144, "SOFT" 100; }
@media (max-width: 720px) { .canada-sources { text-align: left; } }
@media (max-width: 900px) { .canada-stats { grid-template-columns: repeat(2, 1fr); } .canada-stats .stat { border-bottom: 1px solid var(--rule); } .canada-stats .stat:nth-child(2n) { border-right: 0; } .canada-stats .stat:nth-last-child(-n+2) { border-bottom: 0; } }
@media (max-width: 560px) { .canada-stats { grid-template-columns: 1fr; } .canada-stats .stat { border-right: 0; } .canada-stats .stat:last-child { border-bottom: 0; } }

/* ============== Residency callout ============== */
.residency-callout { background: var(--moss); color: var(--paper); padding: clamp(2.5rem, 5vw, 3.5rem); border-radius: var(--radius-md); margin-block: clamp(3rem, 6vw, 5rem); }
.residency-callout .callout-eyebrow { display: block; font-family: var(--font-body); font-size: 0.78rem; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--clay); font-weight: 500; margin-bottom: 1rem; }
.residency-callout h3 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.75rem); line-height: 1.1; font-weight: 360; color: var(--paper); letter-spacing: var(--tracking-snug); max-width: 22ch; margin: 0 0 1.5rem; }
.residency-callout h3 em { color: var(--clay); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }
.residency-callout p { font-size: 1.05rem; line-height: 1.6; color: rgba(251, 248, 242, 0.9); max-width: 52rem; margin: 0 0 1.1rem; }
.residency-callout p:last-of-type { margin-bottom: 0; }
.residency-callout a { color: var(--clay); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color var(--t-fast) var(--ease-out); }
.residency-callout a:hover { color: var(--paper); }

/* ============== Future pillars (4-item list) ============== */
.future-pillars { list-style: none; padding: 0; margin: clamp(3rem, 6vw, 5rem) 0 0; display: grid; gap: 0; border-top: 1px solid var(--rule); }
.future-pillars li { display: grid; grid-template-columns: 5rem 1fr 2fr; gap: clamp(1.5rem, 3vw, 3rem); padding: 1.75rem 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.future-pillars .num { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--terracotta); font-variation-settings: "opsz" 144, "SOFT" 100; }
.future-pillars h4 { font-size: 1.4rem; font-weight: 360; max-width: 20ch; }
.future-pillars h4 em { color: var(--moss); font-variation-settings: "opsz" 144, "SOFT" 100; }
.future-pillars p { margin: 0; font-size: 1.05rem; color: var(--ink); line-height: 1.55; max-width: 42rem; }
@media (max-width: 820px) { .future-pillars li { grid-template-columns: 3rem 1fr; gap: 1rem 1.5rem; } .future-pillars p { grid-column: 2 / -1; } }

/* ============== Pillar (generic) ============== */
.pillar { background: var(--cream); }
.pillar + .pillar { border-top: 1px solid var(--rule); }
.pillar-opener { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; margin-bottom: clamp(3rem, 6vw, 5rem); }
.pillar-opener .label { font-family: var(--font-display); font-style: normal; font-weight: 320; font-size: clamp(2.35rem, 5.5vw, 4.7rem); line-height: 1; letter-spacing: var(--tracking-tight); color: var(--charcoal); font-variation-settings: "opsz" 144, "SOFT" 30; display: block; }
.pillar-opener .label .num { font-family: var(--font-display); font-style: italic; font-weight: 320; font-size: 0.78em; letter-spacing: 0; text-transform: none; color: var(--terracotta); display: inline; margin: 0 0.18em 0 0; font-variation-settings: "opsz" 144, "SOFT" 100; }
.pillar-opener h2 { max-width: 22ch; font-weight: 360; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.25; letter-spacing: var(--tracking-snug); color: var(--moss); margin-top: 0.4rem; }
.pillar-opener h2 em { color: var(--terracotta); font-weight: 360; font-variation-settings: "opsz" 144, "SOFT" 100; }
.pillar-opener .lead { margin-top: 1.3rem; color: var(--ink); }
@media (max-width: 900px) { .pillar-opener { grid-template-columns: 1fr; gap: 1.25rem; align-items: start; } .pillar-opener .label { font-size: clamp(2.1rem, 8vw, 3rem); } }

.pillar-hero { position: relative; margin-block: clamp(2rem, 5vw, 4rem); }
.pillar-hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-md); }
.pillar-hero--wide img { aspect-ratio: auto; height: auto; }
@media (max-width: 720px) {
  .pillar-hero { margin-inline: calc(-1 * clamp(1.25rem, 4vw, 3rem)); }
  .pillar-hero img { border-radius: 0; aspect-ratio: 4 / 3; }
  .pillar-hero--wide img { aspect-ratio: auto; }
  .pillar-hero figcaption { padding-inline: clamp(1.25rem, 4vw, 3rem); }
}
.pillar-hero figcaption { margin-top: 0.85rem; font-size: 0.86rem; letter-spacing: 0.04em; color: var(--fg-soft); font-style: italic; font-family: var(--font-display); font-variation-settings: "opsz" 144, "SOFT" 100; }

.pillar-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; margin-block: clamp(3rem, 6vw, 5rem); }
.pillar-split.reverse > div:first-child { order: 2; }
.pillar-split .copy h3 { margin-bottom: 1.25rem; max-width: 18ch; font-weight: 320; }
.pillar-split .copy h3 em { color: var(--moss); font-variation-settings: "opsz" 144, "SOFT" 100; }
.pillar-split .copy p { color: var(--ink); }
.pillar-split img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-md); }
@media (max-width: 900px) { .pillar-split { grid-template-columns: 1fr; gap: 2rem; } .pillar-split.reverse > div:first-child { order: 0; } }

.plan { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; margin-block: clamp(3rem, 6vw, 5rem); padding: clamp(2rem, 4vw, 3.5rem); background: var(--moss); border-radius: var(--radius-md); border: 0; color: var(--paper); }
.plan img { width: 100%; height: auto; border-radius: var(--radius-sm); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.35); }
.plan h4 { margin-bottom: 1.25rem; font-weight: 360; color: var(--paper); font-size: 1.6rem; }
.plan-callouts { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.2rem; }
.plan-callouts li { display: grid; grid-template-columns: 2.5rem 1fr; gap: 0.85rem; align-items: start; font-size: 1rem; color: rgba(251, 248, 242, 0.88); line-height: 1.55; }
.plan-callouts .marker { font-family: var(--font-display); font-style: italic; font-weight: 320; color: var(--clay); font-size: 1.1rem; letter-spacing: 0; padding-top: 0; line-height: 1; font-variation-settings: "opsz" 144, "SOFT" 100; }
@media (max-width: 820px) { .plan { grid-template-columns: 1fr; } }

.specs { margin-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--rule); }
.specs h4 { margin-block: 2rem 1.25rem; font-size: 1.15rem; color: var(--moss); font-weight: 400; letter-spacing: 0.02em; }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.spec-list dl { display: grid; grid-template-columns: 9rem 1fr; gap: 0.75rem 1.5rem; padding: 1.3rem 0; margin: 0; border-bottom: 1px solid var(--rule); }
.spec-list dl:last-child, .spec-list dl:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
.spec-list dt { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--terracotta); font-weight: 500; padding-top: 0.15rem; }
.spec-list dd { margin: 0; font-size: 0.98rem; line-height: 1.5; color: var(--ink); }
@media (max-width: 820px) { .spec-list { grid-template-columns: 1fr; } .spec-list dl:last-child { border-bottom: 0; } }

.pillar-coda { max-width: 52rem; margin: clamp(4rem, 7vw, 6rem) auto 0; text-align: center; font-family: var(--font-display); font-style: italic; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.2; color: var(--moss); font-variation-settings: "opsz" 144, "SOFT" 100; letter-spacing: var(--tracking-snug); }

/* ============== Savings points (numbered list inside split) ============== */
.savings-points { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: 1.5rem; }
.savings-points li { display: grid; grid-template-columns: 2.75rem 1fr; gap: 0.85rem; align-items: baseline; }
.savings-points .point-num { font-family: var(--font-display); font-style: italic; font-size: 1.65rem; line-height: 1; color: var(--terracotta); font-weight: 320; font-variation-settings: "opsz" 144, "SOFT" 100; }
.savings-points p { margin: 0; color: var(--ink); line-height: 1.55; }
.savings-points strong { color: var(--charcoal); font-weight: 600; }

/* ============== Core amenities grid ============== */
.core-grid { margin-block: clamp(4rem, 7vw, 6rem); }
.core-grid-head { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; margin-bottom: 3rem; }
.core-grid-head .label { font-family: var(--font-display); font-style: normal; font-weight: 320; font-size: clamp(2.5rem, 5.5vw, 4.5rem); line-height: 1; letter-spacing: var(--tracking-tight); color: var(--charcoal); font-variation-settings: "opsz" 144, "SOFT" 30; }
.core-grid-head h3 { max-width: 22ch; font-weight: 360; font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.25; letter-spacing: var(--tracking-snug); color: var(--moss); margin-top: 0.4rem; }
.core-grid-head h3 em { color: var(--terracotta); font-variation-settings: "opsz" 144, "SOFT" 100; }
@media (max-width: 900px) { .core-grid-head { grid-template-columns: 1fr; gap: 1.25rem; align-items: start; } .core-grid-head .label { font-size: clamp(2.25rem, 8vw, 3.25rem); } }

.core-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); }
.core-columns > div { padding: 1.75rem 1.5rem 2rem; border-right: 1px solid var(--rule); }
.core-columns > div:last-child { border-right: 0; }
.core-columns h5 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--terracotta); margin: 0 0 1.1rem; }
.core-columns ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.core-columns li { font-size: 0.98rem; color: var(--ink); line-height: 1.45; }
@media (max-width: 820px) { .core-columns { grid-template-columns: 1fr; } .core-columns > div { border-right: 0; border-bottom: 1px solid var(--rule); } .core-columns > div:last-child { border-bottom: 0; } }

/* ============== Weekly rhythm ============== */
.rhythm { margin-block: clamp(4rem, 7vw, 6rem); }
.rhythm-head { max-width: 56rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.rhythm-head h3 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); font-weight: 320; line-height: 1.04; letter-spacing: var(--tracking-tight); color: var(--charcoal); margin-top: 1rem; max-width: 22ch; }
.rhythm-head h3 em { color: var(--terracotta); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }
.rhythm-head .lead { margin-top: 1.5rem; max-width: 38rem; color: var(--ink); }
.rhythm-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.rhythm-grid li { padding: 2.5rem 1.75rem 3rem; border-right: 1px solid var(--rule); display: flex; flex-direction: column; gap: 1.5rem; min-height: 18rem; }
.rhythm-grid li:last-child { border-right: 0; }
.rhythm-grid .rhythm-num { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--terracotta); font-weight: 320; line-height: 1; font-variation-settings: "opsz" 144, "SOFT" 100; }
.rhythm-grid p { margin: 0; font-family: var(--font-display); font-size: clamp(1.3rem, 2.1vw, 1.75rem); line-height: 1.3; color: var(--ink); font-weight: 360; letter-spacing: var(--tracking-snug); font-variation-settings: "opsz" 144, "SOFT" 30; }
@media (max-width: 900px) { .rhythm-grid { grid-template-columns: 1fr; } .rhythm-grid li { border-right: 0; border-bottom: 1px solid var(--rule); min-height: auto; padding: 2rem 1.25rem; } .rhythm-grid li:last-child { border-bottom: 0; } }

/* ============== Steps (3-step intake) ============== */
.steps { margin-block: clamp(3rem, 6vw, 5rem); }
.steps-head { margin-bottom: 2.5rem; }
.steps-head h3 { max-width: 22ch; font-weight: 320; }
.steps-head h3 em { color: var(--moss); font-variation-settings: "opsz" 144, "SOFT" 100; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.steps-grid article { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 1.75rem 1.5rem 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.steps-grid .num { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; color: var(--terracotta); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }
.steps-grid h4 { font-size: 1.25rem; font-weight: 360; margin: 0; }
.steps-grid p { margin: 0; font-size: 0.96rem; color: var(--ink); line-height: 1.5; }
@media (max-width: 820px) { .steps-grid { grid-template-columns: 1fr; } }

/* ============== Page intro (editorial opener) ============== */
.page-intro { padding-top: calc(var(--s-7) + 4rem); padding-bottom: var(--s-7); background: var(--cream); border-bottom: 1px solid var(--rule); }
.page-intro-grid { display: grid; grid-template-columns: 0.55fr 1.45fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.page-intro .label { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--moss); font-variation-settings: "opsz" 144, "SOFT" 100; }
.page-intro .label .num { font-style: normal; font-family: var(--font-body); font-size: 0.78rem; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--terracotta); display: block; margin-bottom: 0.6rem; }
.page-intro h1 { max-width: 22ch; font-weight: 320; }
.page-intro h1 em { color: var(--moss); font-variation-settings: "opsz" 144, "SOFT" 100; }
.page-intro .lead { margin-top: 1.6rem; max-width: 38rem; }
@media (max-width: 900px) { .page-intro-grid { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; } }

/* ============== Offer (what $1M unlocks) ============== */
.offer { background: var(--cream); }
.offer-head { margin-bottom: 3rem; }
.offer-head .label { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--moss); }
.offer-head h2 { max-width: 18ch; margin-top: 1rem; font-weight: 320; }
.offer-head h2 em { color: var(--moss); font-variation-settings: "opsz" 144, "SOFT" 100; }
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.offer-grid article { padding: 2rem 1.5rem 2.25rem; border-right: 1px solid var(--rule); display: flex; flex-direction: column; gap: 1rem; }
.offer-grid article:last-child { border-right: 0; }
.offer-grid .num { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--terracotta); font-weight: 500; }
.offer-grid h4 { font-size: 1.4rem; font-weight: 360; }
.offer-grid h4 em { color: var(--moss); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }
.offer-grid p { margin: 0; font-size: 0.96rem; color: var(--ink); line-height: 1.5; }
@media (max-width: 1020px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } .offer-grid article { border-bottom: 1px solid var(--rule); } .offer-grid article:nth-child(2n) { border-right: 0; } .offer-grid article:nth-last-child(-n+2) { border-bottom: 0; } }
@media (max-width: 560px) { .offer-grid { grid-template-columns: 1fr; } .offer-grid article { border-right: 0; } .offer-grid article:last-child { border-bottom: 0; } }

.figure-big { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); line-height: 1; color: var(--moss); font-weight: 360; letter-spacing: var(--tracking-tight); font-variation-settings: "opsz" 144, "SOFT" 60; }
.figure-big .unit { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--terracotta); display: block; margin-bottom: 0.4rem; font-style: normal; }

/* ============== Fit (for / not for) ============== */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.fit > div { padding: clamp(2rem, 4vw, 3rem); }
.fit > div:first-child { border-right: 1px solid var(--rule); }
.fit h4 { font-size: 1.4rem; font-weight: 360; margin-bottom: 1.5rem; }
.fit h4 em { color: var(--moss); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }
.fit ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.fit li { display: grid; grid-template-columns: 1.2rem 1fr; gap: 0.7rem; font-size: 1rem; color: var(--ink); line-height: 1.5; }
.fit .ok::before, .fit .no::before { content: ""; display: inline-block; width: 0.9rem; height: 0.9rem; margin-top: 0.45rem; border-radius: 50%; }
.fit .ok::before { background: var(--moss); }
.fit .no::before { background: transparent; border: 1px solid var(--terracotta); }
@media (max-width: 820px) { .fit { grid-template-columns: 1fr; } .fit > div:first-child { border-right: 0; border-bottom: 1px solid var(--rule); } }

/* ============== Moss block (Plan B section) ============== */
.moss-block { background: var(--moss); color: var(--paper); padding-block: clamp(4rem, 8vw, 7rem); }
.moss-block .container { color: var(--paper); }
.moss-block .label { color: var(--clay); font-family: var(--font-display); font-style: italic; font-size: 1.05rem; }
.moss-block .label .num { font-style: normal; font-family: var(--font-body); font-size: 0.78rem; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--clay); display: block; margin-bottom: 0.6rem; opacity: 0.8; }
.moss-block h2 { color: var(--paper); max-width: 22ch; font-weight: 320; margin-top: 1.5rem; }
.moss-block h2 em { color: var(--clay); font-variation-settings: "opsz" 144, "SOFT" 100; }
.moss-block .lead { color: rgba(251, 248, 242, 0.88); max-width: 40rem; margin-top: 1.5rem; }
.moss-block .moss-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 3rem; border-top: 1px solid rgba(251, 248, 242, 0.2); }
.moss-block .moss-grid > div { padding: 2rem 1.5rem 0; border-right: 1px solid rgba(251, 248, 242, 0.2); }
.moss-block .moss-grid > div:last-child { border-right: 0; }
.moss-block .moss-grid h5 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--clay); margin: 0 0 1rem; font-weight: 500; }
.moss-block .moss-grid p { font-size: 0.98rem; line-height: 1.55; color: rgba(251, 248, 242, 0.85); margin: 0; }
.moss-block .small-print { margin-top: 3rem; font-size: 0.86rem; color: rgba(251, 248, 242, 0.6); max-width: 40rem; line-height: 1.55; }
@media (max-width: 820px) { .moss-block .moss-grid { grid-template-columns: 1fr; } .moss-block .moss-grid > div { border-right: 0; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(251, 248, 242, 0.18); } .moss-block .moss-grid > div:last-child { border-bottom: 0; } }

/* ============== Timeline ============== */
.timeline { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.timeline h2 { max-width: 14ch; font-weight: 320; }
.timeline h2 em { color: var(--moss); font-variation-settings: "opsz" 144, "SOFT" 100; }
.timeline ol { list-style: none; padding: 0; margin: 0; }
.timeline li { display: grid; grid-template-columns: 10rem 1fr; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.timeline li:first-child { border-top: 1px solid var(--rule); }
.timeline .when { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--terracotta); font-weight: 500; }
.timeline .what h4 { font-size: 1.2rem; font-weight: 380; margin-bottom: 0.35rem; }
.timeline .what p { margin: 0; font-size: 0.96rem; color: var(--ink); line-height: 1.5; }
@media (max-width: 820px) { .timeline { grid-template-columns: 1fr; gap: 1.5rem; } .timeline li { grid-template-columns: 1fr; gap: 0.4rem; } }

/* ============== FAQ ============== */
.faq { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.faq h2 { max-width: 14ch; font-weight: 320; }
.faq h2 em { color: var(--moss); font-variation-settings: "opsz" 144, "SOFT" 100; }
.faq details { border-bottom: 1px solid var(--rule); padding: 1.4rem 0; }
.faq details:first-child { border-top: 1px solid var(--rule); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; list-style: none; font-size: 1.1rem; font-family: var(--font-display); font-weight: 360; color: var(--charcoal); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-body); font-size: 1.4rem; font-weight: 300; color: var(--terracotta); transition: transform var(--t-fast) var(--ease-out); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 1rem 0 0; font-size: 0.98rem; color: var(--ink); line-height: 1.6; max-width: 42rem; }
@media (max-width: 820px) { .faq { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ============== Founders ============== */
.founders-intro { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; margin-top: clamp(2rem, 5vw, 3rem); }
.founders-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-md); display: block; box-shadow: 0 30px 60px -30px rgba(31, 28, 24, 0.25); }
.founders-letter { max-width: 38rem; }
.founders-letter p { font-size: 1.1rem; line-height: 1.7; color: var(--ink); margin: 0 0 1.25rem; }
.founders-letter p:last-of-type { margin-bottom: 0; }
.founders-letter .signature { margin-top: 2rem; font-family: var(--font-display); font-style: italic; font-size: clamp(1.5rem, 2.4vw, 1.9rem); line-height: 1.2; color: var(--terracotta); font-variation-settings: "opsz" 144, "SOFT" 100; }

.founders-individual { margin-top: clamp(4rem, 7vw, 6rem); padding-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--rule); }
.founders-individual .eyebrow { margin-bottom: 2rem; }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.founder { display: flex; flex-direction: column; gap: 1.1rem; }
.founder-photo { width: 100%; aspect-ratio: 4 / 5; background: var(--sand); border-radius: var(--radius-md); object-fit: cover; display: block; }
.founder-meta { display: flex; flex-direction: column; gap: 0.35rem; }
.founder-meta .name { font-family: var(--font-display); font-size: clamp(1.6rem, 2.4vw, 2.1rem); font-weight: 360; line-height: 1.15; color: var(--charcoal); letter-spacing: var(--tracking-snug); }
.founder-meta .role { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--terracotta); font-weight: 500; }
.founder p { margin: 0.5rem 0 0; color: var(--ink); line-height: 1.6; }
@media (max-width: 900px) { .founders-intro { grid-template-columns: 1fr; gap: 2rem; } .founders-portrait img { aspect-ratio: 1 / 1; max-width: 26rem; margin-inline: auto; } .founders-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ============== Phases (project plan) ============== */
.phases { margin-top: clamp(3rem, 6vw, 5rem); position: relative; padding-left: 2rem; }
.phases::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--rule); }
.phases-progress { position: absolute; left: 0; top: 0; width: 2px; height: 0; background: var(--moss); z-index: 1; will-change: height; }
.phases ol { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--rule); position: relative; }
.phases li { display: grid; grid-template-columns: 12rem 1fr; gap: clamp(1.5rem, 4vw, 4rem); padding: 2rem 0; border-bottom: 1px solid var(--rule); align-items: start; position: relative; }
.phase-current .now-dot { position: absolute; left: calc(-2rem - 6px); top: 2.4rem; width: 14px; height: 14px; border-radius: 50%; background: var(--terracotta); z-index: 3; box-shadow: 0 0 0 4px var(--cream); }
.phase-current .now-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--terracotta); opacity: 0.5; animation: phase-pulse 2.4s ease-out infinite; z-index: -1; }
@keyframes phase-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(3.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .phase-current .now-dot::after { animation: none; }
  .phases-progress { transition: none; }
}
.phases .phase-num { display: flex; align-items: baseline; gap: 0.85rem; }
.phases .phase-num .num { font-family: var(--font-display); font-style: italic; font-size: 1.8rem; line-height: 1; color: var(--terracotta); font-weight: 320; font-variation-settings: "opsz" 144, "SOFT" 100; }
.phases .phase-num .when { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--moss); font-weight: 500; }
.phases .phase-body h4 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 360; margin-bottom: 0.6rem; max-width: 28ch; }
.phases .phase-body h4 em { color: var(--moss); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }
.phases .phase-body p { margin: 0; color: var(--ink); line-height: 1.55; max-width: 48rem; }
@media (max-width: 820px) { .phases li { grid-template-columns: 1fr; gap: 0.75rem; padding: 1.75rem 0; } }

/* ============== Aligned / Ownership prose blocks ============== */
.aligned-body { max-width: 44rem; margin-top: clamp(2rem, 4vw, 3rem); }
.ownership-body { max-width: 44rem; margin: clamp(2rem, 4vw, 3rem) auto 0; }
.aligned-body p, .ownership-body p { font-size: 1.1rem; line-height: 1.65; color: var(--ink); margin: 0 0 1.25rem; }
.aligned-body p:last-child, .ownership-body p:last-child { margin-bottom: 0; }
.ownership-learn-more { margin-top: 2rem !important; font-family: var(--font-display); font-style: italic; font-size: 1.1rem !important; color: var(--moss); font-variation-settings: "opsz" 144, "SOFT" 100; }
.ownership-learn-more a { color: var(--terracotta); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color var(--t-fast) var(--ease-out); }
.ownership-learn-more a:hover { color: var(--moss); }
.aligned-cta { margin-top: 1.5rem !important; padding-top: 1.5rem; border-top: 1px solid var(--rule); color: var(--moss) !important; font-family: var(--font-display); font-style: italic; font-size: 1.25rem !important; line-height: 1.45 !important; font-variation-settings: "opsz" 144, "SOFT" 100; }
.aligned-cta a { color: var(--terracotta); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color var(--t-fast) var(--ease-out); }
.aligned-cta a:hover { color: var(--moss); }

/* ============== CTA strip ============== */
.cta-strip { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding-block: clamp(4rem, 8vw, 6rem); }
.cta-strip .container { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-strip h2 { max-width: 18ch; font-weight: 320; }
.cta-strip h2 em { color: var(--moss); font-variation-settings: "opsz" 144, "SOFT" 100; }
.cta-strip p { color: var(--ink); margin-top: 0.5rem; max-width: 40rem; }
@media (max-width: 820px) { .cta-strip .container { grid-template-columns: 1fr; } }
