:root {
  --ink: #111318;
  --ink-soft: #24272e;
  --canvas: #f3efe7;
  --white: #fffdf8;
  --muted: #62646b;
  --blue: #2447d8;
  --blue-dark: #1832a9;
  --rule: #c8c2b8;
  --focus: #ffd35c;
  --rail: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 0; overflow-wrap: anywhere; background: var(--canvas); color: var(--ink); font-family: var(--sans); line-height: 1.5; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-underline-offset: 4px; }
a:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
main, section, header, footer, nav, figure, div { min-width: 0; }
section { scroll-margin-top: 92px; }

.skip-link { position: fixed; z-index: 100; left: 18px; top: -90px; padding: 12px 18px; background: var(--focus); color: var(--ink); font-weight: 900; }
.skip-link:focus { top: 18px; }
.concept-notice { min-height: 34px; padding: 7px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--blue); color: white; font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }

.site-header { position: absolute; z-index: 20; top: 34px; left: 0; width: 100%; min-height: 82px; padding: 18px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; color: white; border-bottom: 1px solid rgba(255,255,255,.22); transition: background-color .2s ease, border-color .2s ease; }
.site-header.is-scrolled { position: fixed; top: 0; background: rgba(17,19,24,.96); border-color: rgba(255,255,255,.1); }
.brand { min-height: 44px; display: inline-flex; align-items: center; gap: 13px; text-decoration: none; font-family: var(--serif); font-size: clamp(18px, 2.2vw, 28px); font-weight: 700; letter-spacing: -.03em; }
.brand-stitch { width: 46px; height: 46px; display: grid; place-items: center; border: 1px dashed currentColor; border-radius: 50%; color: white; font-family: var(--sans); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
nav { display: flex; align-items: center; gap: clamp(14px, 2.8vw, 36px); }
nav a { min-height: 44px; display: inline-flex; align-items: center; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; }
nav a:not(.nav-call):hover { text-decoration: underline; }
.nav-call { padding: 0 20px; border-radius: 999px; background: white; color: var(--ink); }
.nav-call:hover { background: var(--focus); }

.hero { position: relative; min-height: calc(94svh - 34px); overflow: hidden; display: grid; align-items: end; background: var(--ink); color: white; }
.hero-media, .hero-scrim { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.hero-media { filter: contrast(1.08); }
.hero-scrim { background: linear-gradient(90deg, rgba(6,8,12,.9) 0%, rgba(6,8,12,.62) 47%, rgba(6,8,12,.18) 82%), linear-gradient(0deg, rgba(6,8,12,.68), transparent 55%); }
.thread { position: absolute; z-index: 1; width: 260px; height: 260px; border: 1px dashed rgba(255,255,255,.22); border-radius: 50%; pointer-events: none; }
.thread-one { right: 10vw; top: 19%; }
.thread-two { right: 5vw; top: 29%; width: 340px; height: 340px; border-color: rgba(36,71,216,.7); }
.hero-inner { position: relative; z-index: 2; width: min(var(--rail), calc(100% - var(--gutter) * 2)); margin: 0 auto; padding: 170px 0 clamp(84px, 11vh, 124px); }
.eyebrow { margin: 0 0 18px; color: white; font-size: 10px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow.blue { color: var(--blue); }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.055em; line-height: .94; }
h1 { max-width: 920px; font-size: clamp(4rem, 9.7vw, 9rem); text-wrap: balance; }
h1 em, h2 em { color: var(--blue); font-weight: 400; }
.hero-copy { max-width: 600px; margin: 30px 0 0; font-size: clamp(17px, 2vw, 23px); line-height: 1.45; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.button { min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: space-between; gap: 42px; border-radius: 999px; text-decoration: none; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; transition: background-color .18s ease, color .18s ease, transform .18s ease; }
.button:hover { transform: translateY(-2px); }
.primary { background: var(--blue); color: white; }
.primary:hover { background: white; color: var(--ink); }
.inverse { background: white; color: var(--ink); }
.inverse:hover { background: var(--focus); }
.dark { background: var(--ink); color: white; }
.dark:hover { background: var(--blue); }
.quiet-link { min-height: 44px; display: inline-flex; align-items: center; gap: 16px; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; text-decoration-thickness: 1px; }
.quiet-link.light { color: white; }
.media-label { position: absolute; z-index: 3; right: var(--gutter); bottom: 18px; max-width: 330px; margin: 0; color: rgba(255,255,255,.68); font-size: 9px; text-align: right; letter-spacing: .05em; }
.scroll-note { position: absolute; z-index: 3; right: var(--gutter); top: 51%; display: flex; align-items: center; gap: 12px; transform: rotate(90deg) translateX(50%); transform-origin: right center; color: white; font-size: 9px; font-weight: 900; letter-spacing: .18em; text-decoration: none; text-transform: uppercase; }
.scroll-note i { width: 58px; height: 1px; background: currentColor; }

.essentials { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); border-bottom: 1px solid var(--rule); }
.essential { min-height: 142px; padding: 28px clamp(18px, 3vw, 44px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; border-right: 1px solid var(--rule); text-decoration: none; }
.essential:last-child { border-right: 0; }
.essential[href]:hover { background: #ebe8ff; }
.number { color: var(--blue); font-family: var(--serif); font-size: 24px; font-style: italic; }
.essential small { display: block; margin-bottom: 6px; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.essential strong { font-size: clamp(14px, 1.4vw, 19px); }

.care { width: min(var(--rail), calc(100% - var(--gutter) * 2)); margin: 0 auto; padding: clamp(90px, 13vw, 180px) 0; display: grid; grid-template-columns: minmax(300px,.85fr) minmax(390px,1fr); gap: clamp(56px, 10vw, 150px); }
.care h2 { font-size: clamp(4.4rem, 9.2vw, 8.7rem); }
.service-ledger { align-self: end; }
.lead { margin: 0 0 44px; max-width: 590px; font-family: var(--serif); font-size: clamp(22px, 2.5vw, 32px); line-height: 1.25; letter-spacing: -.025em; }
.service-row { min-height: 70px; padding: 13px 0; display: flex; align-items: center; justify-content: space-between; gap: 22px; border-top: 1px solid var(--rule); font-family: var(--serif); font-size: clamp(24px, 3vw, 40px); letter-spacing: -.035em; }
.service-row b { color: var(--blue); font-family: var(--sans); font-size: 10px; letter-spacing: .1em; }
.service-note { margin: 24px 0 0; max-width: 620px; color: var(--muted); font-size: 12px; }

.tailoring { display: grid; grid-template-columns: 1.08fr .92fr; background: var(--ink); color: white; }
.tailoring-media { margin: 0; position: relative; }
.tailoring-media img { height: 100%; min-height: 690px; object-fit: cover; object-position: center; }
figcaption { padding: 10px 0; color: var(--muted); font-size: 9px; letter-spacing: .04em; }
.tailoring-media figcaption { position: absolute; left: 22px; bottom: 12px; color: rgba(255,255,255,.72); }
.tailoring-copy { padding: clamp(72px, 10vw, 150px) var(--gutter); display: flex; flex-direction: column; justify-content: center; }
.tailoring-copy h2 { max-width: 680px; font-size: clamp(4rem, 8vw, 7.8rem); }
.tailoring-copy > p:not(.eyebrow) { max-width: 560px; margin: 34px 0 20px; color: rgba(255,255,255,.72); font-size: 17px; }
.tailoring-copy .quiet-link { color: white; align-self: flex-start; }

.call-band { min-height: 450px; padding: clamp(60px, 8vw, 106px) var(--gutter); display: grid; grid-template-columns: auto minmax(380px,1fr) auto; align-items: center; gap: clamp(28px, 6vw, 88px); background: var(--blue); color: white; }
.ticket { margin: 0; writing-mode: vertical-rl; transform: rotate(180deg); font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.call-band h2 { max-width: 880px; font-size: clamp(4.1rem, 8.2vw, 8.4rem); }

.visit { width: min(var(--rail), calc(100% - var(--gutter) * 2)); margin: 0 auto; padding: clamp(90px, 13vw, 180px) 0; display: grid; grid-template-columns: 1fr minmax(320px,.78fr); gap: clamp(60px, 11vw, 160px); }
.visit-copy { align-self: center; }
.visit h2 { max-width: 720px; font-size: clamp(4.1rem, 8vw, 8rem); }
.address { margin: 36px 0 0; font-family: var(--serif); font-size: clamp(21px, 2.4vw, 30px); line-height: 1.35; }
.visit-actions { margin: 28px 0 54px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.hours { margin: 0; border-top: 1px solid var(--rule); }
.hours div { padding: 15px 0; display: flex; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--rule); }
.hours dt { font-weight: 800; }
.hours dd { margin: 0; text-align: right; }
.fine-print { max-width: 600px; color: var(--muted); font-size: 12px; }
.visit-media { position: relative; margin: 0; }
.visit-media img { min-height: 640px; height: 100%; max-height: 820px; object-fit: cover; }
.image-stamp { position: absolute; right: -34px; top: 42px; width: 136px; height: 136px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--blue); color: white; transform: rotate(8deg); }
.image-stamp span { font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.image-stamp strong { font-family: var(--serif); font-size: 34px; font-weight: 400; }

footer { padding: 58px var(--gutter) 28px; display: grid; grid-template-columns: 1fr auto; gap: 48px 80px; background: var(--ink); color: white; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand p { margin: 0; }
.footer-brand strong { font-family: var(--serif); font-size: 25px; }
.footer-brand span { color: rgba(255,255,255,.64); font-size: 11px; }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 30px; }
.footer-links a { min-height: 44px; display: inline-flex; align-items: center; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.disclosure { grid-column: 1 / -1; max-width: 840px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.16); }
.disclosure strong { color: #8094ff; font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.disclosure p { margin: 10px 0 0; color: rgba(255,255,255,.68); font-size: 13px; }
.copyright { grid-column: 1 / -1; margin: 0; color: rgba(255,255,255,.43); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 940px) {
  .care { grid-template-columns: .8fr 1.2fr; gap: 54px; }
  .call-band { grid-template-columns: auto 1fr; }
  .call-band .button { grid-column: 2; justify-self: start; }
  .visit { grid-template-columns: 1fr .72fr; gap: 54px; }
}

@media (max-width: 740px) {
  .concept-notice { justify-content: center; text-align: center; font-size: 8px; }
  .concept-notice span:last-child { display: none; }
  .site-header { min-height: 104px; padding-top: 11px; flex-direction: column; gap: 3px; }
  .site-header.is-scrolled { min-height: 82px; padding-block: 6px; }
  .brand-stitch { width: 35px; height: 35px; }
  .brand { font-size: 18px; }
  nav { width: 100%; justify-content: center; gap: 4px 18px; }
  nav a { min-height: 34px; font-size: 9px; }
  .nav-call { min-height: 36px; padding-inline: 13px; }
  .hero { min-height: 93svh; }
  .hero-scrim { background: linear-gradient(0deg, rgba(6,8,12,.94), rgba(6,8,12,.52) 74%, rgba(6,8,12,.45)); }
  .hero-inner { padding-top: 180px; padding-bottom: 82px; }
  h1 { font-size: clamp(3.8rem, 18vw, 6rem); }
  .hero-copy { max-width: 94%; font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 8px; }
  .button { width: 100%; }
  .media-label { right: 16px; bottom: 10px; max-width: 250px; font-size: 8px; }
  .scroll-note, .thread { display: none; }
  .essentials { grid-template-columns: 1fr; }
  .essential { min-height: 98px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .essential:last-child { border-bottom: 0; }
  .care { grid-template-columns: 1fr; gap: 58px; }
  .care h2 { font-size: clamp(4rem, 18vw, 6.3rem); }
  .lead { font-size: 23px; }
  .tailoring { grid-template-columns: 1fr; }
  .tailoring-media img { min-height: 430px; max-height: 70svh; }
  .tailoring-copy { padding-block: 78px; }
  .tailoring-copy h2, .visit h2 { font-size: clamp(3.8rem, 16vw, 5.7rem); }
  .call-band { grid-template-columns: 1fr; gap: 28px; }
  .ticket { writing-mode: initial; transform: none; }
  .call-band .button { grid-column: auto; }
  .call-band h2 { font-size: clamp(3.8rem, 16vw, 5.8rem); }
  .visit { grid-template-columns: 1fr; }
  .visit-media { order: -1; }
  .visit-media img { min-height: 420px; height: 68svh; }
  .image-stamp { right: 14px; top: 18px; width: 112px; height: 112px; }
  .hours div { align-items: flex-start; flex-direction: column; gap: 4px; }
  .hours dd { text-align: left; }
  footer { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { align-items: flex-start; flex-direction: column; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header { position: static; background: var(--ink); }
  .hero { min-height: 700px; }
}
