:root {
  --green-950: #061a13;
  --green-900: #0a251b;
  --green-800: #133429;
  --gold: #b99a58;
  --gold-light: #e2c986;
  --ivory: #f2eee5;
  --warm: #e8e0d3;
  --paper: #faf7f0;
  --ink: #122219;
  --muted: #6f756f;
  --line: rgba(18, 34, 25, 0.16);
  --serif: "Shippori Mincho B1", "Yu Mincho", "Times New Roman", serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", sans-serif;
  --shell: min(1280px, calc(100% - 96px));
  --header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.97rem + 0.12vw, 1.075rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.005em;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--gold-light); color: var(--green-950); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}
h2 { max-width: 15ch; font-size: clamp(3rem, 5.1vw, 5.25rem); letter-spacing: -0.024em; }
h3 { font-size: clamp(1.75rem, 2.25vw, 2.45rem); letter-spacing: -0.014em; line-height: 1.06; }
p { max-width: 62ch; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--paper);
  padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }
.section-shell { width: var(--shell); margin-inline: auto; }
.section-light { background: var(--paper); }
.section-warm { background: var(--warm); }
.section-dark { background: var(--green-950); color: var(--ivory); }
.eyebrow {
  margin-bottom: 20px;
  color: #765f2d;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--gold-light); }
.eyebrow-gold { color: var(--gold); }
.lead { max-width: 48ch; font-size: clamp(1.05rem, 1rem + 0.22vw, 1.18rem); line-height: 1.72; }
.dark-lead { color: #4e5b54; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 clamp(30px, 4.5vw, 76px);
  border-bottom: 1px solid rgba(255,255,255,0.13);
  color: var(--ivory);
  transition: background 240ms ease, min-height 240ms ease, box-shadow 240ms ease;
}
.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(6, 26, 19, 0.96);
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 14px; font-weight: 600; letter-spacing: 0.035em; }
.brand img { width: 50px; height: 50px; border-radius: 50%; }
.header-panel { display: flex; align-items: center; gap: clamp(24px, 2.5vw, 40px); margin-left: auto; }
.main-nav { display: flex; gap: clamp(20px, 2vw, 32px); }
.main-nav a, .language-switch {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.main-nav a { opacity: 0.72; transition: opacity 160ms ease; }
.main-nav a:hover, .main-nav a:focus-visible { opacity: 1; }
.language-switch { display: flex; gap: 6px; }
.language-switch a:not([aria-current="page"]) { opacity: 0.5; }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 27px;
  border: 1px solid var(--gold);
  background: var(--gold-light);
  color: var(--green-950);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.095em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 170ms ease, color 170ms ease, transform 170ms ease;
}
.button:hover { transform: translateY(-2px); background: #efdca9; }
.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.language-switch a:focus-visible,
.brand:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}
.button span { padding-left: 18px; border-left: 1px solid rgba(6,26,19,0.3); }
.button-small { min-height: 44px; padding-inline: 19px; font-size: 0.7rem; }
.button-gold { background: var(--gold); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}
.text-link::after { content: ""; width: 54px; height: 1px; background: currentColor; transition: width 170ms ease; }
.text-link:hover::after { width: 76px; }
.text-link-light { color: var(--ivory); }

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
  background: var(--green-950);
  color: var(--ivory);
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media {
  background-image: url("assets/hero-luxury-japan.png");
  background-position: 58% center;
  background-size: cover;
  transform: scale(1.02);
  animation: hero-settle 1500ms cubic-bezier(.2,.7,.2,1) both;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(3,16,11,0.97) 0%, rgba(3,16,11,0.82) 39%, rgba(3,16,11,0.2) 74%),
    linear-gradient(0deg, rgba(3,16,11,0.68), transparent 48%);
}
.hero-content { position: relative; z-index: 2; width: min(1080px, calc(100% - 14vw)); margin: 0 7vw 11vh; }
.hero h1 {
  max-width: 1080px;
  margin-bottom: 30px;
  font-size: clamp(4rem, 6vw, 7.1rem);
  line-height: 0.96;
  letter-spacing: -0.018em;
  white-space: nowrap;
}
.hero-copy {
  max-width: 48ch;
  margin-bottom: 38px;
  color: rgba(244,240,231,0.76);
  font-size: clamp(1.05rem, 1rem + 0.22vw, 1.18rem);
  line-height: 1.72;
}
.hero-actions { display: flex; align-items: center; gap: 30px; }
.hero-corner {
  position: absolute;
  right: 4vw;
  bottom: 5vh;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding-left: 26px;
  border-left: 1px solid var(--gold);
  color: rgba(244,240,231,0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  right: 4vw;
  bottom: 160px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(244,240,231,0.55);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
}
.scroll-cue i { display: block; width: 42px; height: 1px; background: var(--gold); }

.fit { padding: 116px 0 108px; }
.fit-heading { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr); gap: 9vw; align-items: end; }
.fit-heading h2 { max-width: 13ch; margin-bottom: 0; }
.fit-heading > p { margin: 0 0 8px; color: #59645d; }
.fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 72px; border: 1px solid rgba(18,34,25,0.18); }
.fit-card { min-height: 310px; padding: 38px 36px; background: rgba(250,247,240,0.52); border-right: 1px solid rgba(18,34,25,0.18); }
.fit-card:last-child { border-right: 0; }
.fit-card > span { color: var(--gold); font-family: var(--serif); font-size: 1.4rem; }
.fit-card h3 { max-width: 12ch; margin: 78px 0 18px; font-size: clamp(1.9rem, 2.3vw, 2.55rem); }
.fit-card p { margin-bottom: 0; color: #606a63; font-size: 0.9rem; line-height: 1.65; }
.fit-note { margin-top: 26px; padding-left: 22px; border-left: 1px solid var(--gold); color: #59645d; font-size: 0.78rem; letter-spacing: 0.025em; }

.intro { padding: 132px 0 118px; }
.intro-grid { display: grid; grid-template-columns: 0.6fr 2fr 1.25fr; gap: 7vw; align-items: start; }
.section-marker { display: flex; gap: 18px; align-items: baseline; }
.section-marker span { color: var(--gold); font-family: var(--serif); font-size: 2.6rem; font-weight: 500; }
.section-marker p { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.intro-copy h2 { margin: 0; }
.intro-detail { padding-top: 74px; color: #536058; }
.intro-detail p + p { margin-top: 28px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 126px; border-top: 1px solid var(--line); }
.value-card { min-height: 270px; padding: 42px 42px 34px; border-right: 1px solid var(--line); }
.value-card:first-child { border-left: 1px solid var(--line); }
.value-card > span { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.14em; }
.value-card h3 { margin: 66px 0 18px; }
.value-card p { max-width: 33ch; color: #687069; font-size: 0.92rem; line-height: 1.65; }

.consultation { padding: 132px 0; }
.consultation-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr); gap: 8vw; align-items: center; }
.consultation-image { position: relative; }
.consultation-image::before { content: ""; position: absolute; inset: -20px 20px 20px -20px; border: 1px solid rgba(197,164,94,0.38); }
.consultation-image img { position: relative; aspect-ratio: 1 / 1.05; object-fit: cover; }
.image-index { position: absolute; right: 18px; bottom: 16px; padding: 6px 10px; background: rgba(6,26,19,0.8); color: var(--gold-light); font-size: 0.58rem; letter-spacing: 0.16em; }
.consultation-copy { max-width: 610px; }
.consultation-copy h2 { max-width: 11ch; margin-bottom: 38px; }
.price-line { display: flex; align-items: baseline; gap: 24px; margin-bottom: 30px; padding-block: 20px; border-block: 1px solid rgba(229,210,160,0.18); }
.price-line strong { color: var(--gold-light); font-family: var(--serif); font-size: 2.8rem; font-weight: 500; letter-spacing: -0.02em; }
.price-line span { color: rgba(244,240,231,0.58); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; }
.consultation-cta { margin-bottom: 36px; }
.consultation-copy .lead { color: rgba(244,240,231,0.76); }
.check-list { display: grid; gap: 13px; margin: 32px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 26px; color: rgba(244,240,231,0.72); font-size: 0.92rem; line-height: 1.55; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.78em; width: 10px; height: 1px; background: var(--gold); }
.credit-note { margin: 35px 0; padding: 22px 24px; border: 1px solid rgba(197,164,94,0.28); background: rgba(255,255,255,0.025); }
.credit-note span { color: var(--gold); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.credit-note p { margin: 8px 0 0; color: rgba(244,240,231,0.7); font-size: 0.83rem; }

.journeys { padding: 128px 0; }
.section-heading { display: grid; grid-template-columns: 2fr 0.8fr; gap: 8vw; align-items: end; margin-bottom: 80px; }
.section-heading h2 { max-width: 900px; margin-bottom: 0; }
.section-heading > p { color: #657068; }
.journey-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1px; background: rgba(18,34,25,0.18); border: 1px solid rgba(18,34,25,0.18); }
.journey-card { position: relative; min-height: 390px; padding: 40px; overflow: hidden; background: var(--paper); transition: background 220ms ease, color 220ms ease; }
.journey-card:nth-child(1) { grid-column: span 8; }
.journey-card:nth-child(2) { grid-column: span 4; }
.journey-card:nth-child(3),
.journey-card:nth-child(4),
.journey-card:nth-child(5) { grid-column: span 4; }
.journey-card:nth-child(6) { grid-column: span 12; min-height: 270px; }
.journey-card::after { content: ""; position: absolute; right: 40px; bottom: 36px; width: 44px; height: 1px; background: rgba(185,154,88,0.48); transition: width 220ms ease; }
.journey-card:hover::after { width: 72px; }
.journey-card-featured {
  background:
    linear-gradient(90deg, rgba(6,26,19,0.92), rgba(6,26,19,0.48)),
    url("assets/tokyo-evening-photo.png") center 54% / cover;
  color: var(--ivory);
}
.journey-card-dark {
  display: grid;
  grid-template-columns: 0.22fr 0.65fr 1fr;
  align-content: center;
  align-items: end;
  gap: 32px;
  background: var(--green-950);
  color: var(--ivory);
}
.journey-number { color: var(--gold); font-family: var(--serif); font-size: 1.8rem; }
.journey-label { margin: 100px 0 14px; color: #817451; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }
.journey-card-featured .journey-label, .journey-card-dark .journey-label { color: var(--gold-light); }
.journey-card-dark .journey-label { margin: 0; }
.journey-card-dark h3 { margin: 0; }
.journey-card h3 { margin-bottom: 18px; }
.journey-card p:last-child { max-width: 35ch; color: #6b716c; font-size: 0.88rem; line-height: 1.65; }
.journey-card-featured p:last-child, .journey-card-dark p:last-child { color: rgba(244,240,231,0.66); }

.private-plan { padding: 132px 0; }
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.plan-copy h2 { margin-bottom: 30px; }
.founding-price { margin-top: 50px; padding-top: 28px; border-top: 1px solid var(--line); }
.founding-price span { display: block; color: #7c683c; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.founding-price strong { display: block; margin: 10px 0; font-family: var(--serif); font-size: 3.35rem; font-weight: 500; letter-spacing: -0.025em; }
.founding-price p { color: var(--muted); font-size: 0.82rem; }
.deliverables { padding: 56px; background: var(--ivory); border: 1px solid var(--line); }
.deliverables ol { margin: 0; padding: 0; list-style: none; }
.deliverables li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; line-height: 1.5; }
.deliverables li span { color: var(--gold); font-family: var(--serif); font-size: 1.15rem; }
.boundary-note { margin: 26px 0 0; color: #70776f; font-size: 0.76rem; }

.examples { padding: 128px 0; }
.example-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.example-card { display: grid; grid-template-rows: auto 1fr; min-width: 0; background: var(--paper); border: 1px solid rgba(18,34,25,0.15); }
.example-media { position: relative; overflow: hidden; aspect-ratio: 1.18 / 1; background: var(--green-900); }
.example-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(3,16,11,0.58)); }
.example-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.example-card:hover .example-media img { transform: scale(1.025); }
.example-media span { position: absolute; right: 18px; bottom: 16px; z-index: 1; padding: 6px 9px; border: 1px solid rgba(226,201,134,0.55); color: var(--gold-light); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.example-content { padding: 34px 32px 38px; }
.example-meta { margin-bottom: 18px; color: #806a39; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.example-content h3 { margin-bottom: 30px; font-size: clamp(1.85rem, 2.2vw, 2.35rem); line-height: 1.08; }
.example-points { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.example-points li { position: relative; padding: 13px 0 13px 20px; border-top: 1px solid var(--line); color: #606a63; font-size: 0.82rem; line-height: 1.55; }
.example-points li::before { content: ""; position: absolute; left: 0; top: 1.3em; width: 8px; height: 1px; background: var(--gold); }
.editorial-disclaimer { margin-top: 28px; color: #727970; font-size: 0.72rem; letter-spacing: 0.025em; }

.sample { padding: 132px 0; }
.sample-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 10vw; align-items: center; }
.sample-copy h2 { margin-bottom: 28px; }
.sample-copy > p:not(.eyebrow) { margin-bottom: 32px; color: rgba(244,240,231,0.66); }
.sample-facts { display: flex; flex-wrap: wrap; gap: 8px; margin: -4px 0 30px; }
.sample-facts span { padding: 7px 10px; border: 1px solid rgba(226,201,134,0.26); color: rgba(244,240,231,0.68); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; }
.sample-sheet { padding: 62px; border: 1px solid rgba(185,154,88,0.25); background: var(--paper); color: var(--ink); box-shadow: 0 34px 90px rgba(0,0,0,0.22); }
.sheet-topline { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: #79683e; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.sample-sheet h3 { max-width: 14ch; margin: 44px 0; font-size: clamp(2.7rem, 4vw, 3.55rem); }
.timeline-item { display: grid; grid-template-columns: 75px 1fr; gap: 25px; padding: 20px 0; border-top: 1px solid var(--line); }
.timeline-item time { color: #8b713c; font-family: var(--serif); font-size: 1.3rem; }
.timeline-item p { margin: 0; color: #5b665f; font-size: 0.86rem; }
.sheet-note { margin: 28px 0 0; color: #92958f; font-size: 0.7rem; }

.process { padding: 112px 0; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid rgba(18,34,25,0.18); }
.process-step { min-height: 320px; padding: 38px 30px; border-right: 1px solid rgba(18,34,25,0.18); }
.process-step:first-child { border-left: 1px solid rgba(18,34,25,0.18); }
.process-step:nth-child(4) { border-left: 1px solid rgba(18,34,25,0.18); }
.process-step > span { color: var(--gold); font-family: var(--serif); font-size: 1.5rem; }
.process-step h3 { margin: 78px 0 18px; font-size: 1.75rem; line-height: 1.08; }
.process-step p { max-width: 29ch; color: #59655d; font-size: 0.92rem; line-height: 1.62; }

.about { padding: 128px 0; }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 9vw; align-items: center; }
.about-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-copy h2 { margin-bottom: 36px; }
.about-copy > p:not(.eyebrow) { max-width: 56ch; color: #57635c; line-height: 1.75; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 46px; border-block: 1px solid var(--line); }
.trust-item { padding: 26px 22px 28px 0; border-right: 1px solid var(--line); }
.trust-item + .trust-item { padding-left: 22px; }
.trust-item:last-child { border-right: 0; padding-right: 0; }
.trust-item > span { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; }
.trust-item h3 { margin: 26px 0 12px; font-size: 1.28rem; line-height: 1.12; }
.trust-item p { margin: 0; color: #6a736c; font-size: 0.74rem; line-height: 1.55; }
.about-signature { display: flex; align-items: center; gap: 20px; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line); }
.about-signature span { color: var(--green-800); font-family: var(--serif); font-size: 2.4rem; letter-spacing: -0.03em; }
.about-signature p { margin: 0; color: #7b817c; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }

.faq { padding: 112px 0; }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 10vw; }
.faq-heading h2 { max-width: 500px; }
.faq-list { border-top: 1px solid rgba(18,34,25,0.22); }
details { border-bottom: 1px solid rgba(18,34,25,0.22); }
summary { position: relative; padding: 28px 46px 28px 0; cursor: pointer; font-family: var(--serif); font-size: 1.5rem; font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 5px; top: 20px; color: #8d733f; font-family: var(--sans); font-size: 1.5rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 64ch; padding: 0 40px 28px 0; color: #687169; font-size: 0.9rem; line-height: 1.7; }

.final-cta { position: relative; display: grid; align-items: center; min-height: 760px; overflow: hidden; background: var(--green-950); color: var(--ivory); text-align: center; }
.final-cta-media { position: absolute; inset: 0; background: linear-gradient(rgba(3,16,11,0.82), rgba(3,16,11,0.92)), url("assets/shopping-guidance-photo.png") center/cover; }
.final-cta-content { position: relative; z-index: 1; display: grid; min-width: 0; justify-items: center; }
.final-cta-content img { margin-bottom: 24px; border-radius: 50%; }
.final-cta-content h2 { max-width: 13ch; margin-bottom: 32px; }
.final-cta-content > p:not(.eyebrow) { max-width: 680px; margin-bottom: 36px; color: rgba(244,240,231,0.68); }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; gap: 30px 6vw; align-items: center; padding: 42px clamp(30px, 4.5vw, 76px); background: #03100b; color: rgba(244,240,231,0.55); font-size: 0.7rem; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--ivory); font-weight: 700; }
.footer-brand img { border-radius: 50%; }
.footer-links { display: flex; gap: 24px; }
.copyright { grid-column: 1 / -1; margin: 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes hero-settle { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1.02); } }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 56px, 960px); }
  .menu-toggle { display: grid; gap: 7px; margin-left: auto; padding: 14px 4px 14px 18px; border: 0; background: transparent; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 26px; height: 1px; background: currentColor; }
  .header-panel {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    align-content: start;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    margin-left: 0;
    gap: 24px;
    padding: 34px clamp(28px, 5vw, 64px) 40px;
    background: rgba(6,26,19,0.985);
    border-top: 1px solid rgba(255,255,255,0.1);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-24px);
    pointer-events: none;
    transition: transform 240ms ease, opacity 180ms ease, visibility 0s linear 240ms;
  }
  .header-panel.is-open { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; transition-delay: 0s; }
  .main-nav { display: grid; gap: 0; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .header-panel .button { width: 100%; }
  .intro-grid { grid-template-columns: 0.5fr 1.5fr 1fr; gap: 4vw; }
  .fit-grid { grid-template-columns: repeat(3, 1fr); }
  .fit-card { padding-inline: 26px; }
  .example-grid { grid-template-columns: 1fr 1fr; }
  .example-card:last-child { grid-column: 1 / -1; grid-template-columns: 0.82fr 1.18fr; grid-template-rows: 1fr; }
  .example-card:last-child .example-media { aspect-ratio: auto; min-height: 390px; }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-card:nth-child(n) { grid-column: auto; }
  .journey-card:nth-child(6) { grid-column: 1 / -1; }
  .journey-card-dark { grid-template-columns: 0.3fr 0.7fr 1fr; }
  .process-list { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(4) { border-left: 1px solid rgba(18,34,25,0.18); }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 40px); --header-height: 72px; }
  body { font-size: 15px; }
  h2 { max-width: 12ch; font-size: clamp(2.65rem, 12vw, 4rem); line-height: 1; }
  .site-header { padding: 0 18px; }
  .brand span { font-size: 0.82rem; }
  .brand img { width: 42px; height: 42px; }
  .menu-toggle { display: grid; gap: 7px; margin-left: auto; padding: 14px 4px 14px 18px; border: 0; background: transparent; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 26px; height: 1px; background: currentColor; }
  .header-panel {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    align-content: start;
    width: 100%;
    height: calc(100dvh - 72px);
    margin-left: 0;
    gap: 24px;
    padding: 30px 24px 36px;
    background: rgba(6,26,19,0.98);
    border-top: 1px solid rgba(255,255,255,0.1);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-24px);
    pointer-events: none;
    transition: transform 240ms ease, opacity 180ms ease, visibility 0s linear 240ms;
  }
  .header-panel.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
  }
  .main-nav { display: grid; gap: 0; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .header-panel .button { width: 100%; }

  .hero { min-height: 820px; }
  .hero-media { background-position: 65% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,16,11,0.95) 0%, rgba(3,16,11,0.68) 100%), linear-gradient(0deg, rgba(3,16,11,0.8), transparent 60%); }
  .hero-content { width: var(--shell); margin: 0 auto 160px; }
  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(3.05rem, 12.9vw, 4rem);
    line-height: 1;
    letter-spacing: -0.014em;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }
  .hero-copy { max-width: 37ch; font-size: 1rem; line-height: 1.62; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .hero-corner { right: auto; bottom: 36px; left: 18px; }
  .scroll-cue { display: none; }

  .fit, .intro, .journeys, .private-plan, .examples, .about { padding: 88px 0; }
  .process, .faq { padding: 80px 0; }
  .consultation, .sample { padding: 92px 0; }
  .fit-heading, .intro-grid, .consultation-grid, .section-heading, .plan-grid, .sample-grid, .about-grid, .faq-grid { grid-template-columns: 1fr; gap: 42px; }
  .fit-heading > p { margin-bottom: 0; }
  .fit-grid { grid-template-columns: 1fr; margin-top: 52px; }
  .fit-card { min-height: 245px; padding: 30px 28px; border-right: 0; border-bottom: 1px solid rgba(18,34,25,0.18); }
  .fit-card:last-child { border-bottom: 0; }
  .fit-card h3 { margin-top: 48px; }
  .fit-note { margin-top: 22px; }
  .section-marker { display: none; }
  .intro-detail { padding-top: 0; }
  .value-grid { grid-template-columns: 1fr; margin-top: 70px; }
  .value-card, .value-card:first-child { min-height: 224px; padding: 34px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .value-card h3 { margin-top: 54px; }
  .consultation-image::before { inset: -10px 10px 10px -10px; }
  .consultation-copy { order: 1; }
  .consultation-image { order: 2; }
  .price-line { align-items: flex-start; flex-direction: column; gap: 0; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-card:nth-child(n) { grid-column: auto; }
  .journey-card { min-height: 282px; padding: 28px 26px; }
  .journey-card::after { right: 30px; bottom: 30px; }
  .journey-label { margin-top: 48px; }
  .journey-card-dark { display: block; min-height: 282px; }
  .journey-card-dark .journey-label { margin: 48px 0 14px; }
  .journey-card-dark h3 { margin-bottom: 18px; }
  .deliverables { padding: 30px 22px; }
  .example-grid { grid-template-columns: 1fr; gap: 18px; }
  .example-card:last-child { grid-column: auto; grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .example-card:last-child .example-media { min-height: 0; aspect-ratio: 1.18 / 1; }
  .example-content { padding: 30px 26px 34px; }
  .sample-sheet { padding: 38px 25px; }
  .sample-sheet h3 { font-size: 2.55rem; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 14px; }
  .process-list { grid-template-columns: 1fr; }
  .process-step, .process-step:first-child, .process-step:nth-child(4) { min-height: auto; border-left: 1px solid rgba(18,34,25,0.18); border-bottom: 1px solid rgba(18,34,25,0.18); }
  .process-step h3 { margin-top: 36px; }
  .about-image { order: 2; }
  .about-copy { order: 1; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item + .trust-item, .trust-item:last-child { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .trust-item h3 { margin-top: 16px; }
  .final-cta { min-height: 700px; }
  .final-cta-content h2 { font-size: 3.15rem; }
  .site-footer { grid-template-columns: 1fr; gap: 20px; padding: 38px 20px; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 360px) {
  :root { --shell: calc(100% - 32px); }
  .hero h1 { font-size: 2.9rem; }
  .hero-actions .button { gap: 10px; padding-inline: 17px; font-size: 0.68rem; }
  .hero-actions .button span { padding-left: 10px; }
  .hero-corner { left: 16px; }
  .final-cta-content h2 { width: 100%; font-size: 2.7rem; }
  .final-cta-content > p:not(.eyebrow) { width: 100%; }
  .final-cta-content .button { width: 100%; padding-inline: 12px; font-size: 0.64rem; letter-spacing: 0.075em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
