:root {
  --paper: #f5f5f2;
  --white: #fbfbf9;
  --ink: #111110;
  --muted: #71716d;
  --line: #d6d6d0;
  --soft: #e9e9e4;
  --deep: #191918;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
::selection { background: var(--ink); color: var(--paper); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
summary:focus-visible { outline-offset: -4px; }

.nav-shell {
  position: fixed;
  z-index: 50;
  top: 28px;
  left: 50%;
  width: min(316px, calc(100vw - 32px));
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 16, .1);
  border-radius: 6px;
  background: rgba(250, 250, 247, .88);
  box-shadow: 0 8px 32px rgba(17, 17, 16, .06);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: width .55s cubic-bezier(.22, 1, .36, 1), height .55s cubic-bezier(.22, 1, .36, 1);
}
.nav-shell.is-open { width: min(720px, calc(100vw - 32px)); height: 300px; }
.nav-bar { height: 57px; display: flex; align-items: center; justify-content: space-between; padding: 0 17px; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 650; letter-spacing: -.02em; text-transform: uppercase; }
.brand-mark { display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid var(--ink); border-radius: 50%; font-size: 8px; letter-spacing: -.05em; }
.menu-button { position: relative; width: 28px; height: 28px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-button span { position: absolute; left: 6px; width: 16px; height: 1px; background: var(--ink); transition: transform .3s ease; }
.menu-button span:first-child { transform: translateY(-3px); }
.menu-button span:last-child { transform: translateY(3px); }
.is-open .menu-button span:first-child { transform: rotate(45deg); }
.is-open .menu-button span:last-child { transform: rotate(-45deg); }
.nav-menu { visibility: hidden; display: grid; grid-template-columns: 1fr 1.45fr; gap: 74px; padding: 30px 22px 24px; opacity: 0; transform: translateY(-8px); transition: opacity .2s ease, transform .35s ease, visibility 0s linear .35s; }
.is-open .nav-menu { visibility: visible; opacity: 1; transform: none; transition-delay: .16s, .16s, 0s; }
.nav-menu nav { display: flex; flex-direction: column; gap: 8px; font-size: 18px; line-height: 1.2; letter-spacing: -.04em; }
.nav-menu nav a:hover { color: var(--muted); }
.nav-note { display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: 8px; padding: 16px; }
.nav-note p { margin: 26px 0 0; font-size: 14px; line-height: 1.35; letter-spacing: -.025em; }
.eyebrow, .section-label, .service-number, .statement-index {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero { position: relative; height: 280svh; min-height: 1900px; background: var(--paper); }
.hero-sticky {
  --hero-word-y: 0vh;
  --hero-word-scale: 1;
  --hero-content-opacity: 1;
  --hero-kicker-shift: 0vw;
  --hero-orbit-scale: .82;
  --hero-orbit-rotation: 0deg;
  --scroll-opacity: 1;
  --handoff-y: 104%;
  --handoff-radius: 28px;
  --handoff-copy-opacity: 0;
  --handoff-copy-y: 24px;
  position: sticky;
  top: 0;
  isolation: isolate;
  display: grid;
  place-items: center;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
}
.hero-wordmark { position: relative; z-index: 2; margin: 0; text-align: center; font-size: clamp(64px, 12.2vw, 188px); font-weight: 470; line-height: .76; letter-spacing: -.09em; opacity: var(--hero-content-opacity); transform: translate3d(0, var(--hero-word-y), 0) scale(var(--hero-word-scale)); transform-origin: center; will-change: transform, opacity; }
.hero-kicker { position: absolute; z-index: 3; margin: 0; font-size: clamp(20px, 2.2vw, 32px); font-weight: 480; line-height: 1; letter-spacing: -.05em; }
.hero-left { top: 48%; left: 7vw; opacity: var(--hero-content-opacity); transform: translate3d(calc(var(--hero-kicker-shift) * -1), 0, 0); will-change: transform, opacity; }
.hero-right { top: 52%; right: 7vw; opacity: var(--hero-content-opacity); transform: translate3d(var(--hero-kicker-shift), 0, 0); will-change: transform, opacity; }
.hero-orbit { position: absolute; z-index: 1; width: clamp(310px, 50vw, 760px); aspect-ratio: 1; opacity: var(--hero-content-opacity); transform: rotate(var(--hero-orbit-rotation)) scale(var(--hero-orbit-scale)); will-change: transform, opacity; }
.orbit-ring { position: absolute; inset: 0; border: 1px solid #cacac5; border-radius: 48% 52% 58% 42% / 50% 42% 58% 50%; }
.ring-one { transform: rotate(24deg); }
.ring-two { inset: 12%; border-color: #deded9; transform: rotate(-18deg); }
.scroll-cue { position: absolute; bottom: 36px; left: 50%; z-index: 4; display: flex; align-items: center; gap: 16px; opacity: var(--scroll-opacity); transform: translateX(-50%); font: 10px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; will-change: opacity; }
.scroll-cue i { font-style: normal; animation: scroll-nudge 1.6s ease-in-out infinite; }
.hero-handoff { position: absolute; z-index: 8; inset: 0; display: grid; align-items: center; padding: 72px max(24px, calc((100vw - 1440px) / 2 + 56px)); background: var(--white); border-radius: var(--handoff-radius) var(--handoff-radius) 0 0; transform: translate3d(0, var(--handoff-y), 0); will-change: transform, border-radius; }
.hero-handoff p { max-width: 1000px; margin: 0; opacity: var(--handoff-copy-opacity); font-size: clamp(52px, 7.4vw, 112px); font-weight: 430; line-height: .9; letter-spacing: -.075em; transform: translateY(var(--handoff-copy-y)); will-change: opacity, transform; }

.section-pad { padding: 72px max(24px, calc((100vw - 1440px) / 2 + 56px)); }
.statement, .system, .services, .work, .faq, .contact { scroll-margin-top: 96px; }
.section-label { display: flex; align-items: center; gap: 11px; color: var(--muted); }
.label-dot { width: 7px; height: 7px; border-radius: 2px; background: currentColor; }

.statement { position: relative; z-index: 3; display: flex; flex-direction: column; min-height: 100svh; background: var(--white); border-radius: 28px 28px 0 0; }
.statement-grid { flex: 1; display: grid; grid-template-columns: 1fr 5fr; align-items: center; gap: 40px; padding: 9vh 0; }
.statement-index { align-self: start; margin-top: 18px; color: var(--muted); }
.statement h2 { max-width: 1180px; margin: 0; font-size: clamp(48px, 6.7vw, 102px); font-weight: 430; line-height: .98; letter-spacing: -.07em; }
.answer-block { max-width: 760px; margin: 52px 0 0; color: var(--muted); font-size: clamp(17px, 1.7vw, 24px); line-height: 1.45; letter-spacing: -.025em; }
.statement-foot { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; padding-top: 28px; border-top: 1px solid var(--line); }
.statement-foot p { max-width: 480px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.text-link { display: flex; align-items: center; gap: 48px; border-bottom: 1px solid var(--ink); padding-bottom: 5px; font-size: 13px; }

.system { min-height: 100svh; background: var(--deep); color: var(--paper); }
.system .section-label { color: #8b8b84; }
.system-heading { margin: 13vh 0 11vh; font-size: clamp(58px, 8.5vw, 126px); line-height: .87; letter-spacing: -.08em; font-weight: 420; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #3a3a37; }
.principles article { display: flex; flex-direction: column; min-height: 420px; padding: 25px 28px 0 0; border-right: 1px solid #3a3a37; }
.principles article + article { padding-left: 28px; }
.principles article:last-child { border-right: 0; }
.principle-number { color: #777770; font: 10px/1 var(--mono); }
.principle-symbol { position: relative; height: 130px; margin: 55px 0 40px; }
.principle-symbol span { position: absolute; top: 50%; left: 50%; width: 88px; height: 88px; border: 1px solid #70706a; transform: translate(-50%, -50%) rotate(45deg); }
.principle-symbol span:last-child { width: 38px; height: 38px; border-color: var(--paper); background: var(--paper); }
.symbol-stack span { width: 112px; height: 38px; border-radius: 50%; transform: translate(-50%, -80%); }
.symbol-stack span:nth-child(2) { transform: translate(-50%, -35%); }
.symbol-stack span:nth-child(3) { background: transparent; transform: translate(-50%, 10%); }
.symbol-orbit span { border-radius: 50%; transform: translate(-50%, -50%); }
.symbol-orbit span:last-child { width: 20px; height: 20px; transform: translate(75px, -50%); }
.principles h3 { margin: auto 0 14px; font-size: 25px; line-height: 1; letter-spacing: -.04em; font-weight: 480; }
.principles p { max-width: 340px; min-height: 64px; margin: 0; color: #989891; font-size: 13px; line-height: 1.55; }

.services { background: var(--paper); }
.services-intro { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; align-items: end; margin: 13vh 0 10vh; }
.services-intro h2 { max-width: 900px; margin: 0; font-size: clamp(54px, 7.5vw, 112px); font-weight: 430; line-height: .9; letter-spacing: -.08em; }
.services-intro p { max-width: 300px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.service-list { border-top: 1px solid var(--line); }
.service-list details { border-bottom: 1px solid var(--line); }
.service-list summary { display: grid; grid-template-columns: 90px 1fr 40px; align-items: center; min-height: 112px; cursor: pointer; list-style: none; }
.service-list summary::-webkit-details-marker { display: none; }
.service-number { color: var(--muted); }
.service-title { font-size: clamp(26px, 3.4vw, 50px); letter-spacing: -.06em; }
.service-toggle { justify-self: end; font-size: 28px; font-weight: 300; transition: transform .3s ease; }
details[open] .service-toggle { transform: rotate(45deg); }
.service-content { display: grid; grid-template-columns: 90px minmax(0, 560px) auto; padding: 0 0 38px; }
.service-content p { grid-column: 2; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.service-content a { justify-self: end; border-bottom: 1px solid var(--ink); padding-bottom: 4px; font-size: 12px; }

.work { background: var(--white); border-radius: 28px 28px 0 0; }
.work > h2 { margin: 13vh 0 8vh; font-size: clamp(58px, 8vw, 122px); font-weight: 430; line-height: .9; letter-spacing: -.08em; }
.work-areas { display: flex; gap: 52px; margin: 0; padding: 0 0 22px; overflow-x: auto; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 15px; letter-spacing: -.03em; list-style: none; }
.work-areas li { flex: 0 0 auto; }
.work-areas li:first-child { color: var(--ink); }
.featured-card { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 540px; margin-top: 48px; }
.featured-visual { position: relative; min-height: 440px; overflow: hidden; background: #deded8; }
.visual-grid { position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(circle at 60% 50%, black, transparent 70%); }
.visual-word { position: absolute; top: 50%; left: 50%; color: var(--ink); font-size: clamp(52px, 7.5vw, 116px); font-weight: 650; letter-spacing: -.08em; transform: translate(-50%, -50%); }
.visual-pulse { position: absolute; top: 50%; left: 50%; width: 40%; aspect-ratio: 1; border: 1px solid rgba(17, 17, 16, .45); border-radius: 50%; transform: translate(-50%, -50%); animation: pulse-ring 4s ease-out infinite; }
.featured-copy { display: flex; flex-direction: column; justify-content: space-between; padding: 42px; border: 1px solid var(--line); }
.featured-copy h3 { margin: 30px 0 0; font-size: clamp(34px, 4vw, 58px); line-height: .94; letter-spacing: -.07em; font-weight: 450; }
.featured-copy p { margin: 40px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.faq { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 150px); margin-top: 13vh; }
.faq h2 { position: sticky; top: 130px; align-self: start; margin: 0; font-size: clamp(52px, 6.6vw, 100px); font-weight: 430; line-height: .91; letter-spacing: -.075em; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; min-height: 104px; cursor: pointer; list-style: none; font-size: clamp(20px, 2.1vw, 31px); line-height: 1.15; letter-spacing: -.045em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span:last-child { font-size: 25px; transition: transform .3s ease; }
.faq-list details[open] summary span:last-child { transform: rotate(45deg); }
.faq-list p { max-width: 650px; margin: 0; padding: 0 52px 34px 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.contact { display: flex; flex-direction: column; justify-content: space-between; min-height: 100svh; background: var(--ink); color: var(--paper); }
.contact-top { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 24px; border-bottom: 1px solid #3d3d39; }
.contact-mail { border-bottom: 1px solid var(--paper); padding-bottom: 3px; font-size: 12px; }
.contact h2 { margin: 12vh 0; font-size: clamp(78px, 15vw, 230px); font-weight: 420; line-height: .7; letter-spacing: -.1em; }
.contact-bottom { display: grid; grid-template-columns: 1fr 1fr auto; gap: 32px; padding-top: 24px; border-top: 1px solid #3d3d39; color: #91918a; font: 10px/1.3 var(--mono); letter-spacing: .08em; text-transform: uppercase; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1); }
[data-reveal][data-visible="true"] { opacity: 1; transform: none; }

@keyframes scroll-nudge { 50% { transform: translateY(5px); } }
@keyframes pulse-ring { 0% { opacity: 0; transform: translate(-50%, -50%) scale(.65); } 25% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, -50%) scale(2.2); } }

@media (max-width: 800px) {
  .nav-shell { top: 18px; }
  .nav-shell.is-open { height: 350px; }
  .nav-menu { grid-template-columns: 1fr; gap: 22px; }
  .nav-note { min-height: 98px; }
  .nav-note p { margin-top: 15px; }
  .hero { height: 235svh; min-height: 1480px; }
  .hero-sticky { min-height: 560px; }
  .hero-wordmark { font-size: clamp(62px, 20vw, 98px); line-height: .79; }
  .hero-orbit { width: 86vw; }
  .hero-left { top: 25%; left: 24px; }
  .hero-right { top: auto; right: 24px; bottom: 25%; }
  .hero-handoff { padding: 48px 24px; }
  .hero-handoff p { font-size: clamp(48px, 15vw, 72px); }
  .section-pad { padding: 48px 24px; }
  .statement { min-height: 920px; border-radius: 18px 18px 0 0; }
  .statement-grid { grid-template-columns: 1fr; gap: 28px; padding: 13vh 0 9vh; }
  .statement-index { margin: 0; }
  .statement h2 { font-size: clamp(43px, 12vw, 66px); }
  .answer-block { margin-top: 36px; font-size: 17px; }
  .statement-foot { grid-template-columns: 1fr; }
  .text-link { width: 100%; justify-content: space-between; }
  .system-heading { margin: 12vh 0 9vh; font-size: 61px; }
  .principles { grid-template-columns: 1fr; }
  .principles article, .principles article + article { min-height: 360px; padding: 24px 0 28px; border-right: 0; border-bottom: 1px solid #3a3a37; }
  .principle-symbol { margin: 32px 0; }
  .services-intro { grid-template-columns: 1fr; gap: 36px; margin: 12vh 0 8vh; }
  .services-intro h2 { font-size: 61px; }
  .service-list summary { grid-template-columns: 48px 1fr 28px; min-height: 92px; }
  .service-title { font-size: 25px; }
  .service-content { grid-template-columns: 48px 1fr; gap: 20px 0; }
  .service-content p, .service-content a { grid-column: 2; }
  .service-content a { justify-self: start; }
  .work { border-radius: 18px 18px 0 0; }
  .work > h2 { font-size: 60px; }
  .work-areas { gap: 30px; }
  .featured-card { grid-template-columns: 1fr; min-height: 0; }
  .featured-visual { min-height: 360px; }
  .featured-copy { min-height: 390px; padding: 28px; }
  .faq-layout { grid-template-columns: 1fr; gap: 60px; margin-top: 10vh; }
  .faq h2 { position: static; font-size: 56px; }
  .faq-list summary { min-height: 92px; font-size: 22px; }
  .faq-list p { padding-right: 24px; }
  .contact-top { flex-direction: column; }
  .contact-mail { align-self: flex-start; font-size: 11px; }
  .contact h2 { margin: 16vh 0; font-size: 25vw; }
  .contact-bottom { grid-template-columns: 1fr auto; }
  .contact-bottom span:nth-child(2) { display: none; }
}

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

@media print {
  .nav-shell, .scroll-cue { display: none; }
  .hero { height: auto; min-height: 0; }
  .hero-sticky { position: relative; height: 70vh; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Core engagements */
.core-engagements { overflow: hidden; }
.core-intro { position: relative; }
.core-intro::after {
  content: "";
  position: absolute;
  right: 2vw;
  bottom: -4vh;
  width: clamp(180px, 24vw, 350px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: inset 0 0 0 48px var(--paper), inset 0 0 0 49px var(--line), inset 0 0 0 86px var(--paper), inset 0 0 0 87px var(--line);
  opacity: .7;
  pointer-events: none;
}
.core-service-list { position: relative; z-index: 1; }
.core-service-list summary {
  grid-template-columns: 58px minmax(210px, 1fr) minmax(170px, .55fr) minmax(250px, .9fr) 28px;
  gap: 24px;
  min-height: 118px;
}
.core-service-list .service-title { font-size: clamp(25px, 2.35vw, 38px); }
.service-price { font-size: clamp(14px, 1.25vw, 18px); line-height: 1.3; letter-spacing: -.035em; }
.service-price-quote { max-width: 230px; font-size: 14px; line-height: 1.4; }
.service-summary { max-width: 350px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.core-service-content {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 24px;
  padding: 0 0 38px;
}
.core-service-content ul {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.core-service-content li { color: var(--muted); font-size: 13px; line-height: 1.45; }
.core-service-content li::before { content: "+"; margin-right: 16px; color: var(--ink); }
.core-service-content a,
.services-all-link,
.booking-link,
.page-cta,
.offer-arrow {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 12px;
}
.core-service-content a { align-self: end; justify-self: end; }
.services-all-link { display: inline-flex; gap: 38px; margin-top: 36px; }

/* Shared booking close */
.booking-close { position: relative; overflow: hidden; min-height: 94svh; }
.booking-close::after {
  content: "";
  position: absolute;
  right: -5vw;
  top: 34%;
  width: min(42vw, 600px);
  aspect-ratio: 1;
  border: 1px solid #3d3d39;
  border-radius: 50%;
  box-shadow: inset 0 0 0 70px var(--ink), inset 0 0 0 71px #3d3d39, inset 0 0 0 142px var(--ink), inset 0 0 0 143px #3d3d39;
  pointer-events: none;
}
.booking-close-main { position: relative; z-index: 1; display: grid; grid-template-columns: 1.45fr .55fr; gap: 8vw; align-items: end; margin: 12vh 0; }
.booking-close h2 { margin: 0; font-size: clamp(54px, 7.2vw, 108px); line-height: .89; letter-spacing: -.075em; }
.booking-close-copy { max-width: 440px; }
.booking-close-copy p { margin: 0 0 24px; color: #a4a49d; font-size: 14px; line-height: 1.6; }
.booking-link { display: inline-flex; gap: 44px; margin-top: 18px; font-size: 14px; }

/* Inner-page system */
.inner-page main { background: var(--paper); }
.page-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92svh;
  padding-top: 148px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero-copy { position: relative; z-index: 2; max-width: 1040px; }
.page-hero .section-label { margin-bottom: 42px; }
.page-title { max-width: 980px; margin: 0; font-size: clamp(68px, 9vw, 136px); font-weight: 430; line-height: .83; letter-spacing: -.085em; }
.page-lede { max-width: 590px; margin: 44px 0 0; color: var(--muted); font-size: clamp(17px, 1.55vw, 23px); line-height: 1.48; letter-spacing: -.025em; }
.page-price { margin: 48px 0 0; font-size: clamp(30px, 3.5vw, 52px); line-height: 1.05; letter-spacing: -.055em; }
.page-price.quote-price { max-width: 650px; font-size: clamp(22px, 2.5vw, 36px); line-height: 1.16; }
.page-cta { display: inline-flex; gap: 52px; margin-top: 34px; font-size: 14px; }
.page-orbit { position: absolute; z-index: 1; top: 13%; right: 3vw; width: clamp(280px, 39vw, 570px); aspect-ratio: 1; opacity: .72; }
.page-orbit::before,
.page-orbit::after,
.page-orbit span { content: ""; position: absolute; border: 1px solid #c8c8c2; border-radius: 50%; }
.page-orbit::before { inset: 0; }
.page-orbit::after { inset: 18%; border-style: dashed; }
.page-orbit span:first-child { inset: 34%; }
.page-orbit span:last-child { top: 49%; left: -18%; width: 136%; height: 1px; border: 0; border-top: 1px solid #c8c8c2; border-radius: 0; transform: rotate(-45deg); }
.page-orbit i { position: absolute; top: 49%; left: 49%; width: 13px; height: 13px; border-radius: 50%; background: #bcbcb6; }

.catalog-section,
.pricing-section,
.detail-inclusions,
.use-cases { background: var(--white); }
.catalog-heading,
.section-heading { margin: 0 0 8vh; font-size: clamp(48px, 6.5vw, 94px); font-weight: 430; line-height: .92; letter-spacing: -.075em; }
.catalog-group { margin-top: 68px; }
.catalog-group:first-of-type { margin-top: 0; }
.catalog-label { display: inline-block; margin-bottom: 18px; border-bottom: 1px solid var(--ink); padding-bottom: 3px; font: 10px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.catalog-list,
.price-list,
.inclusion-list { border-top: 1px solid var(--line); }
.offer-row {
  display: grid;
  grid-template-columns: 60px minmax(220px, 1fr) minmax(170px, .55fr) minmax(260px, .9fr) 28px;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
}
.offer-index { color: var(--muted); font: 10px/1 var(--mono); letter-spacing: .1em; }
.offer-name { font-size: clamp(24px, 2.25vw, 35px); line-height: 1.08; letter-spacing: -.05em; }
.offer-price { font-size: 14px; line-height: 1.35; letter-spacing: -.025em; }
.offer-description { max-width: 350px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.offer-arrow { justify-self: end; border: 0; font-size: 20px; transition: transform .25s ease; }
.offer-row:hover .offer-arrow { transform: translateX(5px); }

.pricing-section { padding-top: 96px; }
.price-list .offer-row { grid-template-columns: 60px minmax(280px, 1fr) minmax(240px, .55fr) 28px; min-height: 124px; }
.pricing-note { margin: 28px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.pricing-method { background: var(--paper); }
.method-grid,
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.method-step,
.process-step { min-height: 310px; padding: 28px 34px 30px 0; border-right: 1px solid var(--line); }
.method-step + .method-step,
.process-step + .process-step { padding-left: 34px; }
.method-step:last-child,
.process-step:last-child { border-right: 0; }
.method-number,
.process-number { color: var(--muted); font: 10px/1 var(--mono); letter-spacing: .1em; }
.method-step h3,
.process-step h3 { margin: 92px 0 16px; font-size: 28px; font-weight: 470; line-height: 1; letter-spacing: -.045em; }
.method-step p,
.process-step p { max-width: 330px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.detail-inclusions { padding-top: 104px; }
.inclusion-row { display: grid; grid-template-columns: 60px minmax(250px, .85fr) minmax(320px, 1.15fr); gap: 30px; align-items: center; min-height: 128px; border-bottom: 1px solid var(--line); }
.inclusion-row h3 { margin: 0; font-size: clamp(23px, 2.35vw, 35px); font-weight: 470; line-height: 1.1; letter-spacing: -.05em; }
.inclusion-row p { max-width: 500px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.use-cases { padding-top: 32px; }
.use-case-rail { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.use-case-rail li { position: relative; padding: 30px 18px 0 0; color: var(--muted); font-size: 14px; }
.use-case-rail li::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: #b9b9b2; }
.detail-process { background: var(--deep); color: var(--paper); }
.detail-process .section-heading { max-width: 850px; }
.process-grid { border-color: #3a3a37; }
.process-step { border-color: #3a3a37; }
.process-number,
.process-step p { color: #989891; }

@media (max-width: 1050px) {
  .core-service-list summary { grid-template-columns: 50px 1fr .72fr 28px; }
  .core-service-list .service-summary { grid-column: 2 / 4; padding: 0 0 24px; }
  .core-service-list .service-toggle { grid-column: 4; grid-row: 1; }
  .core-service-content { grid-template-columns: 50px 1fr; }
  .core-service-content a { grid-column: 2; justify-self: start; }
  .booking-close-main { grid-template-columns: 1fr; gap: 56px; }
  .booking-close-copy { max-width: 600px; }
  .offer-row { grid-template-columns: 50px 1fr .65fr 28px; }
  .offer-description { grid-column: 2 / 4; padding-bottom: 25px; }
  .offer-arrow { grid-column: 4; grid-row: 1; }
}

@media (max-width: 800px) {
  .core-intro::after { right: -32vw; bottom: auto; top: -12vh; width: 78vw; opacity: .45; }
  .core-service-list summary { grid-template-columns: 42px 1fr 24px; gap: 14px; padding: 22px 0; }
  .core-service-list .service-title { font-size: 25px; }
  .core-service-list .service-price,
  .core-service-list .service-summary { grid-column: 2 / 4; max-width: 100%; padding: 0; }
  .core-service-list .service-price { margin-top: 8px; }
  .core-service-list .service-summary { margin-top: 3px; }
  .core-service-list .service-toggle { grid-column: 3; grid-row: 1; }
  .core-service-content { grid-template-columns: 42px 1fr; gap: 14px; }
  .core-service-content ul { grid-column: 2; grid-template-columns: 1fr; gap: 13px; }
  .booking-close { min-height: 920px; }
  .booking-close::after { top: 47%; right: -52vw; width: 110vw; opacity: .7; }
  .booking-close-main { margin: 14vh 0; }
  .booking-close h2 { font-size: clamp(48px, 14vw, 70px); }
  .page-hero { min-height: 780px; padding-top: 126px; }
  .page-title { font-size: clamp(58px, 17vw, 82px); }
  .page-lede { font-size: 17px; }
  .page-price { font-size: 34px; }
  .page-price.quote-price { font-size: 24px; }
  .page-orbit { top: 11%; right: -38vw; width: 90vw; opacity: .42; }
  .catalog-heading,
  .section-heading { font-size: 54px; }
  .offer-row,
  .price-list .offer-row { grid-template-columns: 38px 1fr 24px; gap: 14px; min-height: 0; padding: 26px 0; }
  .offer-name { font-size: 25px; }
  .offer-price,
  .offer-description { grid-column: 2 / 4; max-width: none; padding: 0; }
  .offer-price { margin-top: 5px; }
  .offer-description { margin-top: 2px; }
  .offer-arrow { grid-column: 3; grid-row: 1; }
  .method-grid,
  .process-grid { grid-template-columns: 1fr; }
  .method-step,
  .method-step + .method-step,
  .process-step,
  .process-step + .process-step { min-height: 270px; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step,
  .process-step + .process-step { border-color: #3a3a37; }
  .method-step h3,
  .process-step h3 { margin-top: 72px; }
  .inclusion-row { grid-template-columns: 38px 1fr; gap: 14px; padding: 26px 0; }
  .inclusion-row p { grid-column: 2; }
  .use-case-rail { grid-template-columns: 1fr 1fr; gap: 38px 20px; }
}
