@charset "UTF-8";
:root {
  --cream: #F2EDE3;
  --cream-light: #f8f3eb;
  --black: #0A0A0A;
  --gold: #C9A84C;
  --gold-text: #8a7535;
  --gold-dark: #a28e5e;
  --gold-footer: #b29c5a;
  --text: #1a1714;
  --text-muted: #5c5449;
  --border: rgba(201,168,76,0.25);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --serif: var(--font-serif);
  --sans: var(--font-sans);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold-text);
  text-decoration: none;
}

p {
  margin-bottom: 1rem;
}

em {
  color: var(--gold-text);
  font-style: italic;
  font-weight: 500;
}

/* ─── UTILITY ─── */
.gold {
  color: var(--gold-text);
}

.muted {
  color: var(--text-muted);
}

.italic {
  font-style: italic;
}

.bg-light {
  background: var(--cream-light);
}

.text-lead {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.text-center {
  text-align: center;
}

.text-highlight {
  color: var(--gold-text);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  padding-left: 1.5rem;
  margin: 2rem 0;
  width: 80%;
}

.season-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--border);
  margin-bottom: 20px;
}

#milan-immersions .season-item {
  text-align: left;
}

.immersion-card-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.2;
}

.immersion-card-meta {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--gold-text);
  margin-bottom: 16px;
}

.immersion-card-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0;
}

.label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text) !important;
}

.section-number {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold-text);
  text-transform: uppercase;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.divider-center {
  margin: 1.5rem auto;
}

/* ─── SCROLL FADE ─── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero is always visible — no fade-in delay */
#hero .fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAVIGATION ─── */
nav {
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  background: var(--cream);
}

.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-logo img {
  width: 300px;
}
@media (max-width: 480px) {
  .nav-logo img {
    width: 210px;
  }
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold-text);
}

.nav-cta {
  background: var(--gold);
  color: var(--cream);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 400;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.85;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--black);
  border: 1px solid var(--black);
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.35s;
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--black);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: transparent;
  border: 1px solid var(--gold);
  padding: 14px 32px;
  text-decoration: none;
  transition: all 0.35s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--cream);
}

/* ─── 01 HERO ─── */
#hero {
  min-height: 100vh;
  padding: 140px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #f7f3eb;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-left {
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 28px;
}

.hero-headline-top {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hero-support {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--black);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-intro {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero-location {
  font-size: 12px;
  color: var(--gold-text);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  font-style: italic;
}

.hero-tags {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 2;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.hero-micro {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ornament {
  width: 360px;
  height: 360px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-ornament::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 50%;
}

.hero-ornament-inner {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--gold-text);
  text-align: center;
  line-height: 2;
  letter-spacing: 0.08em;
  padding: 40px;
}

/* ─── GENERAL SECTION ─── */
section {
  padding: 100px 48px;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-inner-wide {
  max-width: 1100px;
  margin: 0 auto;
}

.section-inner-narrow {
  max-width: 680px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 2rem;
}

.section-title-italic {
  font-style: italic;
  font-weight: 400;
}

/* ─── 02 DOES THIS SOUND FAMILIAR ─── */
#familiar {
  /* removed dark bg */
}

#familiar .label {
  color: var(--gold-text);
}

#familiar .divider {
  background: var(--gold);
}

.familiar-intro {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.7);
  margin-bottom: 52px;
  line-height: 1.6;
}

.quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.quote-item {
  padding: 28px 32px;
  border-left: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.quote-item:nth-child(odd) {
  border-left: none;
  border-right: 1px solid rgba(201, 168, 76, 0.2);
}

.quote-item p {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.85);
}

/* ─── 03 NOTHING IS BROKEN ─── */
#broken {
  background: #f7f3eb;
}

.broken-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 36px;
}

.broken-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.broken-key {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--black);
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 36px 0;
}

.safe-list {
  margin-top: 40px;
}

.safe-list-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 20px;
}

.safe-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.safe-list li {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.safe-list li::before {
  content: "—";
  color: var(--gold-text);
  flex-shrink: 0;
}

/* ─── 04 ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 120px;
}

.about-name {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.about-sidebar-ornament {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-sidebar-ornament::before {
  content: "A";
  font-family: var(--font-serif);
  font-size: 100px;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.12);
}

.about-body p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.about-pullquote {
  font-family: var(--font-serif);
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  color: var(--black);
  line-height: 1.55;
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 36px 0;
}

.about-closing {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold-text);
  font-style: italic;
  margin-top: 32px;
}

/* ─── 05 WHAT I DO ─── */
#what-i-do {
  text-align: center;
}

#what-i-do .label {
  color: var(--gold-text);
}

#what-i-do .divider {
  background: var(--gold);
  margin: 24px auto;
}

.what-i-do-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.what-i-do-item {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  color: rgba(10, 10, 10, 0.85);
  padding: 22px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.what-i-do-item:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.what-i-do-location {
  margin-top: 36px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
}

/* ─── 06 HOMECOMING METHOD ─── */
#method {
  background: var(--cream);
}

.method-intro {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.method-descriptor {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}

.method-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.pillar {
  background: var(--cream);
  padding: 3rem 0;
  display: grid;
  --pillar-number-col: minmax(150px, 250px);
  --pillar-main-col: 1fr;
  grid-template-columns: var(--pillar-number-col) var(--pillar-main-col);
  column-gap: 36px;
  align-items: start;
}

.pillar:last-child {
  border-bottom: none;
}

.pillar-number {
  grid-column: 1;
  font-family: var(--font-serif);
  font-size: 54px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.24);
  line-height: 0.85;
  margin-top: 4px;
  top: 80px;
  align-self: start;
  /* position:sticky crea stacking context: il blend va qui sul contenitore,
     NON sull'img figlio che sarebbe isolato all'interno */
  mix-blend-mode: multiply;
}

.pillar-number img {
  width: 100%;
  /* NO mix-blend-mode qui: sarebbe isolato dentro .pillar-number */
}
@media (max-width: 768px) {
  .pillar-number img {
    max-width: 200px;
  }
}

.pillar-main {
  grid-column: 2;
  display: grid;
  gap: 0;
}
.pillar-main .label {
  display: none;
}
.pillar-main .label:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1px;
  background: var(--gold);
  margin-top: 8px;
  margin-bottom: 16px;
}

.pillar.is-reverse .pillar-number {
  grid-column: 2;
  grid-row: 1;
  justify-self: stretch;
}

.pillar.is-reverse .pillar-main {
  grid-column: 1;
  grid-row: 1;
}

.pillar.is-reverse {
  /* In reverse: col1 = text (wide), col2 = image (narrow) */
  --pillar-number-col: 1fr;
  --pillar-main-col: minmax(150px, 250px);
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
}

.pillar-subtitle {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 0.5rem 0 2rem 0;
}

.pillar-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
}

.pillar-key {
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  color: var(--black);
  margin-top: 1.5rem;
  line-height: 1.25;
}

.method-note {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 20px;
}

.method-three-treasures-image {
  width: 100%;
  max-width: 250px;
  mix-blend-mode: multiply;
}

/* ─── 07 MIND HEART GUT ─── */
#mind-heart-gut {
  background: #f7f3eb;
}

.mhg-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin: 56px 0;
}

.mhg-word {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.mhg-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
}

.mhg-key {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--gold-text);
  margin-top: 12px;
}

.mhg-bridge {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--black);
  text-align: center;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 72px;
  border-left: none;
}

.phases-title {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-text);
  text-align: center;
  margin-bottom: 12px;
}

.phases-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  text-align: center;
  color: var(--black);
  margin-bottom: 8px;
}

.phases-sub {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  margin-bottom: 56px;
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.phase {
  background: #f7f3eb;
  padding: 44px 36px;
}

.phase-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 6px;
}

.phase-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 4px;
}

.phase-descriptor {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.phase-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
}

.phase-key {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--black);
  margin-top: 16px;
  line-height: 1.5;
}

.living-cycle {
  max-width: 680px;
  margin: 60px auto 0;
  text-align: center;
}

.living-cycle p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.living-cycle .closing {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--black);
}

/* ─── 08 WHY HEALING DOESN'T LAST ─── */
#why-healing .label {
  color: var(--gold-text);
}

#why-healing .divider {
  background: var(--gold);
}

.healing-intro {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.8);
  line-height: 1.65;
  margin-bottom: 56px;
}

.healing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.15);
  margin-bottom: 56px;
}

.healing-block {
  background: #f7f3eb; /* changed to light generic bg */
  padding: 40px 32px;
}

.healing-block-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}

.healing-block p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(10, 10, 10, 0.7);
  margin-bottom: 12px;
}

.healing-truth {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: rgba(10, 10, 10, 0.9);
  line-height: 1.65;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 40px 0;
}

.healing-close {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: rgba(10, 10, 10, 0.7);
  line-height: 1.8;
}

/* ─── 09 IS THIS FOR YOU ─── */
#for-you {
  background: var(--cream);
}

.for-you-intro {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 52px;
}

.for-you-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.for-you-block {
  background: var(--cream);
  padding: 44px 40px;
}

.for-you-block-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 28px;
}

.for-you-block ul {
  list-style: none;
}

.for-you-block li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.for-you-block li::before {
  content: "—";
  color: var(--gold-text);
  flex-shrink: 0;
  margin-top: 1px;
}

.for-you-bridge {
  text-align: center;
  padding: 32px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--black);
  background: var(--cream);
  border-top: 1px solid var(--border);
}

/* ─── 10 TRANSFORMATION ─── */
#transformation {
  background: #f7f3eb;
}

.transformation-intro {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.notice-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 24px;
}

.notice-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 48px;
}

.notice-list li {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--black);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.transformation-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.transformation-key {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--black);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 36px 0;
  line-height: 1.6;
}

.shift-table {
  width: 100%;
  border-collapse: collapse;
  margin: 56px 0;
  font-size: 14px;
}

.shift-table thead th {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  text-align: left;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}

.shift-table tbody td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
  vertical-align: top;
}

.shift-table tbody tr td:first-child {
  color: var(--text-muted);
}

.shift-table tbody tr td:last-child {
  color: var(--black);
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
}

.women-notice-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 24px;
}

.women-notice-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.women-notice-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.women-notice-list li::before {
  content: "—";
  color: var(--gold-text);
  flex-shrink: 0;
}

/* ─── 11 TESTIMONIAL ─── */
#testimonial {
  text-align: center;
}

.testimonial-eyebrow {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1rem;
}

.testimonial-body {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 18px);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  max-width: 780px;
  margin: 0 auto 40px;
}

.testimonial-attribution {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  font-family: var(--serif);
}

.testimonial-divider {
  width: 60px;
  height: 1px;
  background: rgba(201, 168, 76, 0.3);
  margin: 48px auto;
}

/* ─── 12 SEASONS ─── */
#seasons {
  background: #f7f3eb;
}

.seasons-intro {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.seasons-body {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.seasons-quote {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--gold-text);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  line-height: 1.65;
  margin: 36px 0 52px;
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--cream-light);
  margin-top: 2rem;
}

.season-item {
  background: var(--cream);
  padding: 3rem;
  text-align: center;
}
.season-item img {
  max-width: 100px;
  height: auto;
  mix-blend-mode: multiply;
}

.season-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 12px;
}

.season-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ─── 13 WAYS TO WORK TOGETHER ─── */
#ways {
  background: #f7f3eb;
}

.ways-intro {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 60px;
  font-style: italic;
}

.offering {
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}
.offering:first-of-type {
  border-top: none;
  padding-top: 0;
}

.offering:last-of-type {
  padding-bottom: 0;
}

.offering-grid {
  display: grid;
  grid-template-columns: 240px 1fr 200px;
  gap: 56px;
  align-items: start;
}

.offering-number {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 200;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 12px;
}

.offering-name {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.2;
}

.offering-tag {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 20px;
}
.offering-tag span {
  display: block;
}
.offering-tag span.offering-location {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.offering-image {
  width: 100%;
  max-width: 200px;
  mix-blend-mode: multiply;
}

.offering-desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.offering-includes {
  margin-top: 24px;
}

.offering-includes-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.offering-includes ul {
  list-style: none;
}

.offering-includes li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.offering-includes li::before {
  content: "—";
  color: var(--gold-text);
  flex-shrink: 0;
}

.offering-price-col {
  text-align: right;
  padding-top: 8px;
}

@media (max-width: 1100px) {
  .offering-grid {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    gap: 40px;
  }
  .offering-price-col {
    grid-column: 1/-1;
    text-align: left;
    padding-top: 0;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
.offering-price {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold-text);
  line-height: 1;
  margin-bottom: 6px;
}

.offering-price-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.offering-note {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--gold-text);
  margin-top: 1.5rem;
  margin-bottom: 0;
  line-height: 1.25;
}

.homecoming-detail {
  margin-top: 36px;
  padding: 32px;
  border: 1px solid var(--border);
  background: rgba(242, 237, 227, 0.6);
}

.homecoming-detail-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 16px;
}

.homecoming-detail p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.weekly-rhythm {
  margin-top: 24px;
}

.weekly-rhythm-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 14px;
}

/* Milan Immersions */
.immersions-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

.immersions-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 8px;
}

.immersions-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
}

.immersions-sub {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 52px;
}

.immersions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.immersion {
  background: #f7f3eb;
  padding: 44px 40px;
}

.immersion-price {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-text);
  margin-bottom: 16px;
}

.immersion-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 4px;
}

.immersion-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.immersion-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.immersion-key {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--black);
  margin-top: 16px;
  line-height: 1.5;
}

.immersions-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── 14 FINAL CTA ─── */
#final-cta {
  text-align: center;
  padding: 120px 48px;
}

.final-cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: rgba(10, 10, 10, 0.85);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 48px;
}

.final-cta-begin {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 20px;
}

.final-cta-micro {
  font-size: 13px;
  font-style: italic;
  color: rgba(10, 10, 10, 0.6);
  margin-bottom: 12px;
}

.final-cta-body {
  font-size: 14px;
  color: rgba(10, 10, 10, 0.7);
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto 48px;
}

.final-cta-email {
  font-size: 12px;
  color: rgba(10, 10, 10, 0.5);
  margin-top: 24px;
  letter-spacing: 0.06em;
}

.final-cta-email a {
  color: var(--gold-text);
  text-decoration: none;
}

.final-cta-location {
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.3);
}

#professional-note {
  text-align: center;
}

.professional-boundary {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  font-size: 12px;
  color: rgba(10, 10, 10, 0.35);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

#three-treasures .two-col-image img {
  width: 80%;
}

/* ─── TWO-COL CONTENT PATTERN ─── */
.two-col {
  display: grid;
  --two-col-text: 1fr;
  --two-col-image: 1fr;
  grid-template-columns: var(--two-col-text) var(--two-col-image);
  gap: 5rem;
  align-items: center;
}
.two-col.two-col--twothirds {
  --two-col-text: 2fr;
  --two-col-image: 1fr;
  grid-template-columns: var(--two-col-image) var(--two-col-text);
}
.two-col.two-col--twothirds.two-col--img-right {
  --two-col-text: 2fr;
  --two-col-image: 1fr;
  grid-template-columns: var(--two-col-text) var(--two-col-image);
}

.two-col--reverse .two-col-text {
  order: 2;
}

.two-col--reverse .two-col-image {
  order: 1;
}

.two-col--img-right .two-col-image {
  order: 2;
}

.two-col--img-right .two-col-text {
  order: 1;
}

@media screen and (max-width: 768px) {
  .two-col {
    --two-col-text: 2fr;
    --two-col-image: 3fr;
    gap: 3rem;
  }
  #home-hero-2 .two-col {
    --two-col-text: 2fr;
    --two-col-image: 3fr;
    gap: 3rem;
  }
  .two-col--img-right {
    --two-col-text: 3fr;
    --two-col-image: 2fr;
    grid-template-columns: var(--two-col-text) var(--two-col-image);
  }
}
@media screen and (max-width: 480px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .two-col--reverse .two-col-text,
  .two-col--reverse .two-col-image {
    order: unset;
  }
  .two-col--img-right {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .two-col--img-right .two-col-image {
    order: 1;
  }
  .two-col--img-right .two-col-text {
    order: 2;
  }
  .two-col.two-col--twothirds, .two-col.two-col--twothirds.two-col--img-right {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.two-col-text {
  /* text column — typographic styles scoped here */
}

.two-col-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.home-hero-first-image {
  width: 100%;
  max-width: 0px;
  mix-blend-mode: multiply;
}

.two-col-image img.home-hero-image {
  mix-blend-mode: normal !important;
}

.home-hero-image {
  max-width: 350px;
  mix-blend-mode: normal !important;
}

.seasons-women-image {
  max-width: 200px;
  mix-blend-mode: multiply;
}

#home-hero-2 .intro-image {
  justify-content: flex-start;
}
#home-hero-2 .intro-image img {
  max-width: 400px;
}

#contact-opening .intro-image img {
  max-width: 300px;
}

.two-col-image {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  mix-blend-mode: multiply;
}

.two-col-image img {
  width: 100%;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 480px) {
  .two-col-image img {
    width: 70%;
  }
}

.home-about .two-col-image img {
  width: 80%;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 480px) {
  .home-about .two-col-image {
    justify-content: flex-start;
  }
  .home-about .two-col-image img {
    width: 50%;
  }
}

.home-method .two-col-image img {
  width: 80%;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 480px) {
  .home-method .two-col-image {
    justify-content: flex-start;
  }
  .home-method .two-col-image img {
    width: 50%;
  }
}

/* ─── METHOD OPENING ─── */
.intro-first-line .section-title {
  font-size: clamp(44px, 5.5vw, 72px);
  margin-bottom: 1rem;
  line-height: 1.08;
}

.intro-first-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.intro-first-line .intro-title {
  grid-area: title;
}
.intro-first-line .intro-image {
  grid-area: image;
}
.intro-first-line {
  grid-template-areas: " title image";
}
@media screen and (max-width: 768px) {
  .intro-first-line {
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
    grid-template-areas: " title image";
  }
}
@media screen and (max-width: 480px) {
  .intro-first-line {
    grid-template-columns: 1fr;
    gap: 2rem;
    grid-template-areas: "title" "image";
  }
}

#home-hero-2 .intro-first-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
#home-hero-2 .intro-first-line .intro-title {
  grid-area: title;
}
#home-hero-2 .intro-first-line .intro-image {
  grid-area: image;
}
#home-hero-2 .intro-first-line {
  grid-template-areas: " title image";
}
@media screen and (max-width: 768px) {
  #home-hero-2 .intro-first-line {
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
  }
}
@media screen and (max-width: 480px) {
  #home-hero-2 .intro-first-line {
    grid-template-columns: 1fr;
    gap: 2rem;
    grid-template-areas: "image" "title";
  }
}

.intro-title {
  /* text + label column — no extra rules needed */
}

.intro-image {
  /* overflow:hidden o mix-blend-mode sul contenitore creano stacking context
     e impediscono che l'img blendi col background della pagina */
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.intro-image img {
  width: 100%;
  mix-blend-mode: multiply;
}

/* ─── TESTIMONIAL ACCORDION ─── */
.testimonial-accordion {
  display: flex;
  flex-direction: column;
}

.testimonial-item {
  padding: 1rem 2rem;
  border-bottom: 3px solid var(--cream);
  background: var(--cream-light);
}

.testimonial-item:first-child {
  border-top: 1px solid var(--border);
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.12em;
}

.testimonial-preview {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.25;
  margin: 0;
  position: relative;
}
.testimonial-previewbefore {
  content: "“";
}

/* Fade hint that text continues */
.testimonial-header {
  position: relative;
}

.testimonial-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--cream-light));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.testimonial-item.is-expanded .testimonial-header::after {
  opacity: 0;
}

/* testimonial-body inside accordion: smaller, left-aligned */
.testimonial-accordion .testimonial-body {
  font-size: 18px;
  line-height: 1.25;
  color: var(--text-muted);
  max-width: none;
  margin: 18px 0 0;
  text-align: left;
}
.testimonial-accordion .testimonial-body p:first-of-type {
  margin-top: 1rem;
}

/* btn-expand inside accordion: more subtle */
.testimonial-item .btn-expand {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 10px;
}

.testimonial-item .btn-expand:hover {
  color: var(--gold-text);
}

/* ─── CONTACT DETAILS ─── */
.contact-details {
  list-style: none;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
}

.contact-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.contact-detail-value {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  text-decoration: none;
}

a.contact-detail-value:hover {
  color: var(--black);
}

/* ─── JOURNEY CTA ─── */
.cta {
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta img {
  max-width: 100px;
  height: auto;
  margin-bottom: 32px;
  mix-blend-mode: multiply;
}

.journey-cta-title {
  margin-bottom: 1.5rem;
}

.journey-cta-body {
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.journey-cta-primary {
  margin-top: 32px;
}

.journey-cta-secondary {
  margin-top: 16px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }
  .teaser-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .teaser-section.reverse {
    direction: ltr;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 72px 24px;
  }
  #hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
  }
  .hero-right {
    display: none;
  }
  .quotes-grid {
    grid-template-columns: 1fr;
  }
  .quote-item {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-sidebar {
    display: none;
  }
  .method-pillars {
    grid-template-columns: 1fr;
  }
  .mhg-three {
    grid-template-columns: 1fr;
  }
  .phases-grid {
    grid-template-columns: 1fr;
  }
  .healing-grid {
    grid-template-columns: 1fr;
  }
  .for-you-grid {
    grid-template-columns: 1fr;
  }
  .notice-list {
    grid-template-columns: 1fr;
  }
  .shift-table {
    font-size: 12px;
  }
  .seasons-grid {
    grid-template-columns: 1fr;
  }
  .offering-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .offering-price-col {
    text-align: left;
  }
  .immersions-grid {
    grid-template-columns: 1fr;
  }
  .safe-list ul {
    grid-template-columns: 1fr;
  }
  .women-notice-list {
    grid-template-columns: 1fr;
  }
}
/* ─── 11TY SHARED HEADER & FOOTER ─── */
.site-footer {
  background: #25211D;
  color: var(--cream);
  padding: 72px 48px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--gold-footer);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo-img {
  width: 100%;
  max-width: 300px;
  opacity: 1;
}

.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, 0.4);
  margin: 0;
}

.footer-nav-block {
  display: flex;
  justify-content: center;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-nav a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-nav a.active {
  color: var(--gold-footer);
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.footer-email {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--gold-footer);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--gold-text);
}

.footer-location {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, 0.55);
  margin: 0;
}

.footer-social {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--gold-footer);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social:hover {
  color: var(--gold-text);
}

.footer-legal {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-legal p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 56px 24px 0;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-contact-block {
    text-align: center;
  }
  .footer-legal {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* ─── DESKTOP HEADER NAV (from 11ty migration) ─── */
/* nav rules consolidated at top of file */
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-text);
}

@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }
  .teaser-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .teaser-section.reverse {
    direction: ltr;
  }
  .nav-links {
    display: none;
  }
  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
}
/* ─── MISSING LAYOUT / INLINE STYLES CONVERTED TO CSS ─── */
#your-path-teaser {
  background: var(--cream);
}

#offerings-teaser {
  background: #f7f3eb;
}

#method-teaser, #familiar {
  background: #f7f3eb;
}

/* 03 Homecoming Offerings */
.offering-includes {
  margin-top: 20px;
}

.homecoming-detail {
  margin-top: 24px;
}

.homecoming-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

.homecoming-body-sm {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* 04 About */
#about-intro .intro-first-line {
  margin-bottom: 0;
}

#about-intro .intro-image img {
  mix-blend-mode: normal !important;
}

#about-intro img {
  border-radius: 250px;
}

/* 05 What I Do */
#what-i-do .label {
  margin-bottom: 16px;
}

#what-i-do .section-title {
  margin-bottom: 48px;
}

.btn-primary.btn-gold {
  background: var(--gold);
  border-color: var(--gold-text);
  color: var(--cream);
}

#what-i-do .btn-primary {
  background: var(--gold);
  border-color: var(--gold-text);
  color: var(--cream);
  margin-top: 64px;
}

/* 06 Method */
.method-body-sm {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 12px;
}

.pillar-body {
  margin-top: 20px;
}

/* 07 Mind Heart Gut */
#mind-heart-gut .intro-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 48px;
}

.phases-title {
  margin-top: 80px;
}

/* 10 Transformation */
.transformation-shift {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 56px 0 24px;
}

/* 14 Final CTA */
#final-cta .btn-primary {
  background: var(--gold);
  border-color: var(--gold-text);
  color: var(--cream);
}

/* Immersions */
.immersion-body-spaced {
  margin-top: 14px;
}

/* --- EXTRACTED INLINE STYLES --- */
.z-inline-1 {
  margin-top: 64px;
}

.z-inline-2 {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

.z-inline-3 {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.z-inline-4 {
  margin-top: 24px;
}

.z-inline-5 {
  background: var(--cream);
}

.z-inline-6 {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 12px;
}

.z-inline-7 {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
}

.z-inline-8 {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 48px;
}

.z-inline-9 {
  background: #f7f3eb;
}

.z-inline-10 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 56px 0 24px;
}

.z-inline-11 {
  background: var(--cream);
}

/* --- ADDITIONAL MANUAL PARSED STYLES --- */
.homecoming-contact-cta {
  margin-top: 24px;
}

.guide-teaser-title {
  margin-bottom: 24px;
}

.guide-teaser-btn {
  margin-top: 40px;
  border-color: var(--gold-text);
  color: var(--gold-text);
}

.what-i-do-title {
  margin-bottom: 48px;
}

.what-i-do-cta {
  margin-top: 64px;
}

.mb-12 {
  margin-bottom: 12px;
}

/* ─── 11TY HOMEPAGE TEASERS ─── */
.teaser-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.teaser-section.reverse {
  direction: rtl;
}

.teaser-section.reverse > * {
  direction: ltr;
}

.teaser-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teaser-image::after {
  content: "Image Placeholder";
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-text);
  font-size: 14px;
}

.teaser-content {
  max-width: 480px;
}

.teaser-content p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ─── DARK SECTION (HOMEPAGE TEASER) ─── */
/* We convert this to light theme since the user wanted dark backgrounds removed earlier */
.dark-section {
  background: var(--cream);
  color: var(--black);
  text-align: center;
  padding: 120px 48px;
}

.dark-section .label {
  color: var(--gold-text);
}

.dark-section .section-title {
  color: var(--black);
}

.dark-section .divider {
  background: var(--gold);
  margin: 24px auto;
}

.dark-section p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(10, 10, 10, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* --- MISSING 11TY COMPONENTS --- */
.footer-cta-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
  margin-inline: auto;
}

.footer-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}

.footer-opt-in {
  max-width: 400px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-opt-in input[type=email] {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  text-align: center;
  outline: none;
}

.footer-opt-in button {
  background: var(--black);
  color: var(--cream);
  border: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.footer-opt-in button:hover {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  text-decoration: none;
  margin-top: 24px;
  transition: all 0.3s;
}

.link-arrow:hover {
  gap: 12px;
  color: var(--black);
}

.opt-in-box {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 40px;
}

.opt-in-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-text);
  margin-bottom: 16px;
  line-height: 1.4;
}

.opt-in-form {
  display: flex;
  gap: 12px;
}

.opt-in-form input[type=email] {
  flex: 1;
  background: transparent;
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text);
  outline: none;
}

.opt-in-form input[type=email]::placeholder {
  color: var(--text-muted);
}

.opt-in-form button {
  background: var(--gold);
  color: var(--cream);
  border: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 24px;
  cursor: pointer;
  transition: background 0.3s;
}

.opt-in-form button:hover {
  background: var(--black);
}

.opt-in-form {
  flex-direction: column;
}

.opt-in-form button {
  padding: 14px;
}

footer-opt-in input[type=email] {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  text-align: center;
  outline: none;
}

/* --- FIX NAVBAR OVERLAP FOR SUBPAGES --- 
main > section:first-of-type:not(#hero) {
  padding-top: 180px;
}
@media (max-width: 900px) {
  main > section:first-of-type:not(#hero) {
    padding-top: 140px;
  }
}
*/
/* ─── ACCORDION STYLES FOR PILLARS ─── */
.expandable-content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable-content {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.expandable-container.is-expanded .expandable-content-wrapper {
  grid-template-rows: 1fr;
}

.expandable-container.is-expanded .expandable-content {
  opacity: 1;
}

.btn-expand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  cursor: pointer;
  padding: 0;
  margin-top: 16px;
  transition: color 0.3s ease;
  width: auto;
}

.btn-expand:hover {
  color: var(--black);
}

.expand-icon {
  font-size: 18px;
  line-height: 1;
  font-weight: 300;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--gold-text);
}

.expand-text-more,
.expand-text-less {
  letter-spacing: 0.12em;
  color: var(--gold-text);
}

.expand-text-less {
  display: none;
  color: var(--gold-text);
}

.expandable-container.is-expanded .expand-text-more {
  display: none;
}

.expandable-container.is-expanded .expand-text-less {
  display: inline;
}

.expandable-container.is-expanded .expand-icon {
  transform: rotate(45deg);
  color: var(--gold-text);
}

/* Grid layout rules for Pillar */
.pillar > *:not(.pillar-number) {
  grid-column: 2;
}

@media (max-width: 768px) {
  .pillar {
    --pillar-number-col: 1fr;
    --pillar-main-col: 1fr;
    grid-template-columns: 1fr;
    padding: 34px 0;
    gap: 0;
  }
  .pillar-number {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 24px;
    line-height: 1;
  }
  .pillar-main {
    grid-column: 1;
  }
  .pillar.is-reverse {
    grid-template-columns: 1fr;
  }
  .pillar.is-reverse .pillar-number,
  .pillar.is-reverse .pillar-main {
    grid-column: 1;
    justify-self: start;
  }
  .pillar > *:not(.pillar-number) {
    grid-column: 1;
  }
  .pillar.is-reverse .pillar-number {
    grid-column: 1;
    grid-row: 1;
  }
  .pillar.is-reverse .pillar-main {
    grid-column: 1;
    grid-row: 2;
  }
}
.expandable-content > *:first-child {
  margin-top: 0 !important;
}

/* ─── HOME PAGE ─── */
.home-hero-header {
  text-align: center;
  padding-bottom: 56px;
}

.home-hero-overline {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1.5rem;
}

.home-h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.home-hero-sub {
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-text);
}

.hero-intro p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.home-hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 2.5rem;
}

.home-hero-cta-secondary {
  margin-top: 14px;
}

.home-hero-tags {
  margin-top: 2rem;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.32);
  line-height: 2;
}

#familiar {
  background: #f7f3eb;
}

#method-teaser {
  background: var(--cream);
}

.home-section-cta {
  display: inline-block;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .home-hero-header {
    padding-bottom: 36px;
  }
}
/* ─── NEW HOMEPAGE OVERRIDES ─── */
.hero {
  border-bottom: 0.5px solid rgba(10, 10, 10, 0.12);
}

.overline {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.75rem;
}

.hero-eyebrow {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(10, 10, 10, 0.5);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.hero-intro {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(10, 10, 10, 0.7);
  max-width: 580px;
  margin-bottom: 2.25rem;
}

.hero-intro p + p {
  margin-top: 1em;
}

.btn-primary {
  display: inline-block;
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
  vertical-align: middle;
}

.btn-primary:hover {
  opacity: 0.8;
}

.btn-micro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(10, 10, 10, 0.4);
  margin-left: 1.2rem;
  vertical-align: middle;
}

.tags {
  margin-top: 2.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.35);
}

/* ── FAMILIAR ── */
.familiar {
  border-bottom: 0.5px solid rgba(10, 10, 10, 0.12);
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.familiar h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 0.4rem;
}

.familiar-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(10, 10, 10, 0.5);
  margin-bottom: 2.25rem;
}

.quotes {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 600px;
}

.quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.68);
  padding-left: 1.1rem;
  border-left: 1px solid var(--gold);
}

.familiar-link {
  margin-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.4);
  text-decoration: none;
  display: inline-block;
}

.familiar-link:hover {
  color: var(--black);
}

/* ── NOTHING BROKEN ── */
.nothing-broken {
  background: var(--black);
  color: var(--cream);
  padding: 4.5rem 3rem;
}

.nothing-broken .section-label {
  color: var(--gold);
}

.nothing-broken h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.75rem;
}

.nb-body {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(242, 237, 227, 0.6);
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.nb-pullquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(242, 237, 227, 0.88);
  border-left: 1px solid var(--gold);
  padding-left: 1.25rem;
  margin: 2rem 0;
  max-width: 540px;
}

.nb-signals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
  margin-top: 2rem;
  max-width: 480px;
}

.nb-signal {
  font-size: 0.85rem;
  color: rgba(242, 237, 227, 0.55);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nb-signal::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── TEASERS ── */
.teasers .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  border-bottom: 0.5px solid rgba(10, 10, 10, 0.12);
}

.teaser {
  border-top: 1px solid rgba(10, 10, 10, 0.15);
  padding-top: 1.25rem;
}

.teaser-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.teaser h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 0.7rem;
}

.teaser p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.52);
  margin-bottom: 0.85rem;
}

.teaser a {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.38);
  text-decoration: none;
}

.teaser a:hover {
  color: var(--black);
}

/* ── TESTIMONIAL ── */
.testimonial {
  padding: 4rem 3rem;
  background: rgba(201, 168, 76, 0.07);
  border-top: 0.5px solid rgba(10, 10, 10, 0.1);
  border-bottom: 0.5px solid rgba(10, 10, 10, 0.1);
}

.test-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.35);
  margin-bottom: 1.5rem;
}

.test-quote {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.72);
  max-width: 580px;
  margin-bottom: 1.25rem;
}

.test-name {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.38);
}

/* ── HOME CTA ── */
.home-cta {
  padding: 4.5rem 3rem 3.5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.footer-headline {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(10, 10, 10, 0.6);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-gold:hover {
  opacity: 0.85;
}

.footer-or {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(10, 10, 10, 0.35);
}

.footer-or a {
  color: rgba(10, 10, 10, 0.45);
  text-decoration: underline;
}

/* ── RESPONSIVE OVERRIDES ── */
@media (max-width: 900px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
  }
  .familiar {
    padding: 3rem 1.5rem;
  }
  .nothing-broken {
    padding: 4rem 1.5rem;
  }
  .nb-signals {
    grid-template-columns: 1fr;
  }
  .teasers {
    padding: 3rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .testimonial {
    padding: 3rem 1.5rem;
  }
}
/* ─── MOBILE MENU ─── */
.nav-hamburger {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
}

.nav-hamburger-label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}

.nav-hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger-icon span {
  display: block;
  width: 22px;
  height: 0;
  border-top: 1px solid var(--text);
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .nav-hamburger {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--black);
}

.mobile-menu-nav ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.mobile-menu-nav a {
  font-family: var(--font-serif);
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-menu-nav a:hover, .mobile-menu-nav a.active {
  color: var(--gold-text);
}

/*# sourceMappingURL=main.css.map */
