:root {
  --ivory: #fbf3e8;
  --sand: #efd7c8;
  --taupe: #d9b3a2;
  --cocoa: #a4513d;
  --cocoa-2: #8f4437;
  --ink: #302522;
  --olive: #7b625b;
  --gold: #c99345;
  --deep: #4a2830;
  --white: #fffaf5;
  --muted: #76645e;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --header-h: 82px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--taupe); color: var(--deep); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: #b97762; border-radius: 12px; border: 3px solid var(--ivory); }

h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, h3, blockquote {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h1 { font-size: clamp(3.35rem, 5.6vw, 5.8rem); line-height: .98; }
h2 { font-size: clamp(2.55rem, 4.15vw, 4.65rem); line-height: 1.02; }
h3 { font-size: clamp(1.65rem, 2.1vw, 2.25rem); line-height: 1.13; }
p { max-width: 68ch; }

.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; left: 16px; top: -60px; z-index: 1000;
  background: var(--deep); color: var(--white); padding: 10px 16px;
  border-radius: 10px; text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 14px; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(92px, 10vw, 154px) 0; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: color-mix(in srgb, var(--ivory) 92%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { border-color: rgba(91,70,57,.14); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 30px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-family: var(--serif); font-size: 1.12rem; line-height: 1;
  white-space: nowrap;
}
.brand-photo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: 0 0 42px; box-shadow: 0 4px 14px rgba(41, 29, 22, .12); }
.brand-photo-footer { width: 38px; height: 38px; flex-basis: 38px; box-shadow: none; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav a {
  text-decoration: none; font-size: .89rem; color: #5f504b;
  text-underline-offset: 5px; transition: color .2s ease;
}
.main-nav a:hover { color: var(--cocoa); text-decoration: underline; text-decoration-thickness: 1px; }
.mobile-nav-cta { display: none; }
.header-cta { margin-left: 4px; }
.menu-toggle { display: none; background: none; border: 0; padding: 10px; margin-left: auto; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 1px; background: var(--ink); margin: 6px 0; transition: transform .25s ease, opacity .25s ease; transform-origin: center; }
.nav-backdrop { position: fixed; inset: var(--header-h) 0 0; z-index: 98; border: 0; background: rgba(34, 26, 20, .34); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .24s ease; }
body.menu-open .nav-backdrop { opacity: 1; pointer-events: auto; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 14px 23px; border: 1px solid var(--cocoa); border-radius: 999px;
  background: var(--cocoa); color: var(--white); text-decoration: none; font-weight: 650; font-size: .96rem;
  box-shadow: 0 10px 24px rgba(65,48,38,.12);
  transition: transform .2s var(--ease), background .2s ease, box-shadow .2s ease;
}
.button:hover { background: #8d4134; transform: translateY(-2px); box-shadow: 0 13px 28px rgba(65,48,38,.16); }
.button:active { transform: translateY(0); }
.button-sm { min-height: 44px; padding: 10px 17px; font-size: .86rem; box-shadow: none; }
.button-light { background: var(--white); color: var(--deep); border-color: var(--white); box-shadow: none; }
.button-light:hover { background: var(--sand); color: var(--deep); }
.text-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--cocoa); font-weight: 650;
  text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px;
  transition: gap .2s ease, color .2s ease;
}
.text-link:hover { gap: 12px; color: var(--deep); }
.text-link-light { color: #fae9dc; }
.text-link-light:hover { color: var(--white); }

.hero {
  min-height: calc(100svh - var(--header-h));
  position: relative; overflow: clip; display: flex; align-items: center;
  padding: clamp(46px, 6vw, 86px) 0 clamp(76px, 7vw, 106px);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .8fr; gap: clamp(50px, 7vw, 96px); align-items: center; }
.hero-copy { position: relative; z-index: 2; padding-top: 8px; }
.hero-copy h1 { max-width: 760px; margin-bottom: 28px; }
.hero-lede { font-size: clamp(1.1rem, 1.35vw, 1.3rem); line-height: 1.62; color: #64534d; max-width: 690px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.microcopy { margin: 14px 0 0 2px; color: var(--muted); font-size: .82rem; letter-spacing: .015em; }
.hero-portrait { margin: 0; position: relative; z-index: 2; }
.portrait-frame { overflow: hidden; border-radius: 26px 116px 26px 26px; box-shadow: 0 28px 54px rgba(66,49,38,.16); }
.portrait-frame img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center center; }
.hero-portrait figcaption { display: flex; flex-direction: column; gap: 1px; margin-top: 16px; padding-left: 4px; }
.hero-portrait figcaption strong { font-family: var(--serif); font-size: 1.17rem; font-weight: 500; }
.hero-portrait figcaption span { color: var(--muted); font-size: .82rem; }
.hero-ring { position: absolute; width: min(63vw, 880px); right: -20vw; top: -13vw; opacity: .75; pointer-events: none; }
.hero-ring svg { width: 100%; fill: none; stroke: rgba(179,150,97,.46); stroke-width: 1.1; }
.hero-ring path { stroke: rgba(91,70,57,.34); stroke-width: 2; stroke-linecap: round; }
.hero-ring circle, .hero-ring path { stroke-dasharray: 2100; stroke-dashoffset: 2100; animation: drawRing 1.85s .15s var(--ease) forwards; }
.hero-ring path { animation-delay: .45s; }
.hero-portrait { animation: settlePortrait 1s .08s var(--ease) both; }
@keyframes drawRing { to { stroke-dashoffset: 0; } }
@keyframes settlePortrait { from { transform: translateY(16px); opacity: .88; } to { transform: translateY(0); opacity: 1; } }

.recognition { background: var(--sand); }
.recognition-grid { display: grid; grid-template-columns: .8fr 1.1fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.section-heading h2 { margin-bottom: 28px; }
.section-heading p { color: #6b5851; font-size: 1.03rem; }
.sticky-heading { position: sticky; top: calc(var(--header-h) + 44px); }
.recognition-list { border-top: 1px solid rgba(91,70,57,.22); }
.recognition-item { display: grid; grid-template-columns: 20px 1fr; gap: 18px; padding: 32px 0; border-bottom: 1px solid rgba(91,70,57,.22); }
.recognition-item h3 { margin-bottom: 9px; font-size: clamp(1.45rem, 1.9vw, 1.95rem); }
.recognition-item p { margin-bottom: 0; color: #6b5851; font-size: .98rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 12px; }
.statement-band { margin-top: clamp(70px, 9vw, 126px); border-top: 1px solid rgba(91,70,57,.22); padding-top: 42px; }
.statement-band p { max-width: 1050px; margin: 0; font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 4.15rem); line-height: 1.05; letter-spacing: -0.025em; }

.perspective { background: var(--ivory); }
.perspective-grid { display: grid; grid-template-columns: 1.1fr .86fr; gap: clamp(70px, 10vw, 150px); }
.perspective-copy h2 { margin-bottom: 30px; }
.perspective-copy > p { font-size: 1.06rem; color: #6b5851; }
.perspective-lines { border-top: 1px solid rgba(91,70,57,.22); }
.perspective-line { padding: 34px 0; border-bottom: 1px solid rgba(91,70,57,.22); }
.perspective-line h3 { margin-bottom: 10px; }
.perspective-line p { margin-bottom: 0; color: #6b5851; font-size: .97rem; }
.perspective-quote { margin-top: clamp(80px, 9vw, 135px); }
.perspective-quote blockquote { margin-bottom: 0; max-width: 980px; color: var(--cocoa); font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1.02; }

.method { background: #f3ddd0; }
.method-shell { display: grid; grid-template-columns: .78fr 1.15fr; gap: clamp(70px, 10vw, 160px); align-items: start; }
.method-heading { position: sticky; top: calc(var(--header-h) + 44px); }
.method-steps { position: relative; }
.method-steps::before { content: ""; position: absolute; left: 11px; top: 18px; bottom: 28px; width: 1px; background: rgba(91,70,57,.24); }
.method-step { display: grid; grid-template-columns: 24px 1fr; gap: 26px; padding-bottom: 62px; position: relative; }
.method-step:last-child { padding-bottom: 0; }
.step-marker { width: 23px; height: 23px; border-radius: 50%; border: 1px solid var(--gold); background: #f3ddd0; position: relative; z-index: 2; }
.step-marker::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: var(--gold); }
.step-content h3 { font-size: clamp(2rem, 2.8vw, 3rem); margin-bottom: 7px; }
.step-label { color: var(--cocoa); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.step-content > p:last-child { margin-bottom: 0; color: #6c5952; }

.shifts { position: relative; overflow: clip; background: var(--deep); color: var(--white); }
.shifts-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1fr; gap: clamp(80px, 12vw, 170px); align-items: start; }
.shifts h2 { color: var(--white); margin-bottom: 25px; }
.shifts-intro { color: #f0d8d0; font-size: 1.06rem; }
.shifts-list { border-top: 1px solid rgba(255,253,249,.24); }
.shifts-list p { margin: 0; padding: 24px 0; border-bottom: 1px solid rgba(255,253,249,.2); color: #f7e8e1; max-width: none; }
.shifts-list span { color: var(--gold); margin-right: 10px; }
.shifts-orbit { position: absolute; width: 660px; height: 660px; border: 1px solid rgba(179,150,97,.24); border-radius: 50%; right: -280px; top: -300px; }
.shifts-orbit::after { content: ""; position: absolute; width: 82%; height: 82%; border: 1px solid rgba(255,253,249,.08); border-radius: 50%; left: 9%; top: 9%; }

.services { background: var(--ivory); }
.services-heading { display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: end; margin-bottom: 68px; }
.services-heading h2, .services-heading p { margin-bottom: 0; }
.service-primary { display: grid; grid-template-columns: 1.12fr .78fr; background: var(--sand); border-radius: var(--radius-lg); overflow: hidden; }
.service-primary-copy { padding: clamp(42px, 6vw, 78px); }
.service-name { font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 750; color: var(--cocoa); margin-bottom: 22px; }
.service-primary h3 { font-size: clamp(2.15rem, 3.3vw, 3.75rem); margin-bottom: 25px; }
.service-primary-copy > p:not(.service-name) { color: #69544d; }
.clean-list { list-style: none; padding: 0; margin: 28px 0 34px; border-top: 1px solid rgba(91,70,57,.2); }
.clean-list li { padding: 13px 0 13px 24px; border-bottom: 1px solid rgba(91,70,57,.2); position: relative; font-size: .95rem; }
.clean-list li::before { content: ""; position: absolute; left: 1px; top: 23px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.service-visual { min-height: 520px; background: #ddb7a7; position: relative; display: grid; place-items: center; padding: 40px; overflow: hidden; }
.service-visual-figure { width: min(86%, 390px); aspect-ratio: 1 / 1; margin: 0; display: grid; place-items: center; }
.service-visual-figure img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; filter: drop-shadow(0 10px 24px rgba(34,26,20,.08)); }
.service-visual p { position: absolute; bottom: 44px; max-width: 260px; text-align: center; font-family: var(--serif); font-size: 1.6rem; line-height: 1.15; color: var(--deep); }
.service-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding: 48px 0 0; margin-top: 34px; border-top: 1px solid rgba(91,70,57,.25); }
.service-secondary h3 { margin-bottom: 0; font-size: clamp(2rem, 3vw, 3.15rem); }
.service-secondary > div:last-child > p { color: #6b5851; margin-bottom: 22px; }

.about { background: #f0d7cc; }
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(64px, 8vw, 120px); align-items: center; }
.about-brand-visual { margin: 0; width: min(100%, 620px); justify-self: center; }
.about-brand-visual img { width: 100%; height: auto; border-radius: 28px; box-shadow: 0 24px 50px rgba(44, 33, 27, .16); }
.about-copy h2 { margin-bottom: 25px; }
.about-lede { font-family: var(--serif); font-size: clamp(1.65rem, 2.4vw, 2.5rem); line-height: 1.23; color: var(--cocoa); max-width: 640px; }
.about-meta { margin: -2px 0 22px; color: var(--olive); font-size: .88rem; letter-spacing: .03em; text-transform: uppercase; font-weight: 700; }
.about-copy > p:not(.about-lede):not(.pending-note) { color: #69564f; }
.about-copy blockquote { margin: 38px 0; padding: 26px 0 26px 28px; border-left: 1px solid var(--gold); color: var(--deep); font-size: clamp(1.55rem, 2.2vw, 2.25rem); line-height: 1.2; }
.about-disciplines { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.about-disciplines span { border: 1px solid rgba(91,70,57,.32); border-radius: 999px; padding: 8px 13px; font-size: .78rem; color: var(--cocoa); font-weight: 650; }
.pending-note { margin-top: 19px; margin-bottom: 0; font-size: .78rem; color: #806963; }

.book { background: var(--deep); color: var(--white); }
.book-grid { display: grid; grid-template-columns: .82fr 1fr; gap: clamp(70px, 10vw, 150px); align-items: center; }
.book-photo { margin: 0; }
.book-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 24px 88px 24px 24px; box-shadow: 0 28px 54px rgba(0,0,0,.23); }
.book-copy h2 { margin-bottom: 20px; color: var(--white); }
.book-subtitle { color: #f0dcd3; font-size: 1.08rem; }
.book-copy blockquote { color: #ffe7d7; font-size: clamp(1.8rem, 2.7vw, 2.85rem); line-height: 1.18; margin: 34px 0; }
.book-copy > p:not(.book-subtitle) { color: #ead6cf; }
.book-points { border-top: 1px solid rgba(255,253,249,.2); margin-top: 29px; }
.book-points p { margin: 0; padding: 15px 0; border-bottom: 1px solid rgba(255,253,249,.16); color: #f2dfd7; font-size: .92rem; }
.book-points strong { color: var(--white); }
.book-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 34px; }
.book-note { margin: 0; color: #e1c5bb; font-size: .9rem; }

.gentle-path { background: var(--ivory); overflow: hidden; }
.guide-download-grid { display: grid; grid-template-columns: .86fr 1fr; gap: clamp(58px, 9vw, 120px); align-items: center; }
.guide-preview { position: relative; width: min(100%, 520px); min-height: 610px; margin-inline: auto; }
.guide-cover { position: relative; z-index: 2; width: min(76%, 390px); height: auto; border-radius: 18px; box-shadow: 0 26px 58px rgba(54,40,31,.2); transform: rotate(-2deg); }
.guide-brand-art { position: absolute; z-index: 1; width: 82%; height: auto; right: -6%; bottom: 3%; border-radius: 18px; box-shadow: 0 18px 40px rgba(28,20,16,.16); }
.guide-download-copy h2 { margin-bottom: 24px; }
.guide-title { font-family: var(--serif); font-size: clamp(1.9rem, 2.7vw, 2.9rem); line-height: 1.1; color: var(--cocoa); margin-bottom: 18px; }
.guide-download-copy > p:not(.guide-title):not(.guide-file-note) { color: #6b5851; }
.guide-highlights { border-top: 1px solid rgba(91,70,57,.2); margin: 28px 0 30px; }
.guide-highlights p { margin: 0; padding: 13px 0; border-bottom: 1px solid rgba(91,70,57,.16); color: #5b4944; }
.guide-highlights span { color: var(--gold); margin-right: 8px; }
.guide-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.guide-open-link { white-space: nowrap; }
.guide-file-note { margin: 14px 0 0; color: var(--muted); font-size: .82rem; }

.faq { background: #efd2c7; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.1fr; gap: clamp(65px, 10vw, 150px); align-items: start; }
.faq-list { border-top: 1px solid rgba(91,70,57,.24); }
details { border-bottom: 1px solid rgba(91,70,57,.24); }
summary {
  list-style: none; cursor: pointer; padding: 28px 52px 28px 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.35rem, 1.8vw, 1.75rem); line-height: 1.22;
}
summary::-webkit-details-marker { display: none; }
summary::before, summary::after { content: ""; position: absolute; right: 5px; top: 50%; width: 20px; height: 1px; background: var(--cocoa); transition: transform .25s ease; }
summary::after { transform: rotate(90deg); }
details[open] summary::after { transform: rotate(0deg); }
details div { padding: 0 50px 28px 0; }
details div p { color: #6b5851; margin-bottom: 0; font-size: .96rem; }

.contact { background: var(--ivory); padding-bottom: clamp(120px, 12vw, 180px); }
.contact-grid { display: grid; grid-template-columns: .83fr 1.08fr; gap: clamp(70px, 10vw, 145px); align-items: start; }
.contact-copy { position: sticky; top: calc(var(--header-h) + 44px); }
.contact-copy h2 { margin-bottom: 26px; }
.contact-lede { font-family: var(--serif); color: var(--cocoa); font-size: clamp(1.55rem, 2.3vw, 2.3rem); line-height: 1.24; }
.contact-expectations { margin-top: 40px; border-top: 1px solid rgba(91,70,57,.22); }
.contact-expectations p { margin: 0; padding: 15px 0; border-bottom: 1px solid rgba(91,70,57,.18); color: #69544d; font-size: .92rem; }
.contact-expectations span { color: var(--gold); font-weight: 800; margin-right: 8px; }
.contact-form { background: var(--sand); border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 58px); }
.contact-form label:not(.check-row) { display: block; margin-bottom: 22px; }
.contact-form label > span:first-child { display: block; font-weight: 650; font-size: .84rem; margin-bottom: 8px; color: #574640; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
input, select, textarea {
  width: 100%; border: 1px solid rgba(91,70,57,.3); border-radius: 12px; background: var(--white);
  color: var(--ink); padding: 14px 15px; min-height: 51px; transition: border-color .2s ease, box-shadow .2s ease;
}
textarea { min-height: 126px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #8b746d; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(179,150,97,.16); }
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: #b85d48; }
.field-error { display: block; color: #9b4336; min-height: 1.1em; font-size: .75rem; margin-top: 5px; }
.check-row { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 8px 0 0; cursor: pointer; }
.check-row input { width: 18px; min-height: 18px; height: 18px; margin: 4px 0 0; accent-color: var(--cocoa); }
.check-row span { font-size: .79rem; color: #6b5851; }
.form-error { margin: 0 0 15px 30px; }
.form-submit { width: 100%; border: 0; cursor: pointer; margin-top: 6px; }
.button-arrow { font-size: 1.25rem; }
.form-note { font-size: .73rem; line-height: 1.45; color: #7d6760; margin: 13px 3px 0; }
.form-success { margin-top: 18px; background: var(--white); padding: 16px 18px; border-radius: 12px; border: 1px solid rgba(91,70,57,.2); }
.form-success strong { font-family: var(--serif); font-size: 1.1rem; }
.form-success p { margin: 4px 0 0; font-size: .84rem; color: #6b5851; }

.site-footer { background: #201713; color: #f0d8d0; padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .55fr .55fr; gap: 70px; }
.brand-footer { color: var(--white); }
.footer-brand p { font-size: .84rem; color: #c7aa9f; margin: 18px 0 0; max-width: 430px; }
.footer-links, .footer-legal { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-legal a { color: #e1c5bb; font-size: .82rem; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 58px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.12); color: #a68a82; font-size: .72rem; }
.mobile-sticky-cta { display: none; }

.toast {
  position: fixed; z-index: 300; right: 22px; bottom: 22px; width: min(390px, calc(100vw - 44px));
  background: var(--deep); color: var(--white); padding: 19px 44px 19px 20px; border-radius: 14px;
  box-shadow: 0 18px 45px rgba(28,20,16,.28);
}
.toast p { margin: 0; font-size: .84rem; line-height: 1.48; }
.toast button { position: absolute; right: 10px; top: 8px; border: 0; background: none; color: var(--white); font-size: 1.45rem; cursor: pointer; }

@media (max-width: 1040px) {
  :root { --header-h: 74px; }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: .82rem; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr .72fr; gap: 44px; }
  .hero-copy h1 { font-size: clamp(3rem, 6vw, 4.8rem); }
  .recognition-grid, .perspective-grid, .method-shell, .faq-grid, .contact-grid { gap: 70px; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 36px, 720px); }
  body { font-size: 17px; padding-bottom: 69px; }
  .section { padding: 88px 0; }
  .site-header { backdrop-filter: blur(10px); z-index: 100; }
  .menu-toggle { display: block; z-index: 104; position: relative; }
  .main-nav {
    position: fixed; top: var(--header-h); right: 0; bottom: 0; left: auto;
    width: min(88vw, 390px); background: #fff8f2; z-index: 103;
    border-radius: 26px 0 0 0; border-left: 1px solid rgba(91,70,57,.12); border-top: 1px solid rgba(91,70,57,.12);
    box-shadow: -24px 24px 54px rgba(34, 26, 20, .16);
    flex-direction: column; align-items: stretch; gap: 0; padding: 24px 24px 96px;
    overflow-y: auto; overscroll-behavior: contain;
    opacity: 1; visibility: hidden; pointer-events: none; transform: translateX(104%);
    transition: transform .28s var(--ease), visibility 0s linear .28s;
  }
  .main-nav a { width: 100%; padding: 17px 4px; font-family: var(--serif); font-size: 1.34rem; line-height: 1.2; border-bottom: 1px solid rgba(91,70,57,.12); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav .mobile-nav-cta { display: flex; justify-content: center; align-items: center; margin-top: 24px; padding: 14px 18px; border: 1px solid var(--cocoa); border-radius: 999px; background: var(--cocoa); color: var(--white); font-family: var(--sans); font-size: .92rem; font-weight: 700; text-align: center; }
  .main-nav .mobile-nav-cta:hover { color: var(--white); text-decoration: none; background: #8d4134; }
  body.menu-open .main-nav { visibility: visible; pointer-events: auto; transform: translateX(0); transition: transform .28s var(--ease), visibility 0s; }
  body.menu-open .menu-toggle .line-1 { transform: translateY(7px) rotate(45deg); }
  body.menu-open .menu-toggle .line-2 { opacity: 0; }
  body.menu-open .menu-toggle .line-3 { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: auto; padding-top: 38px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-portrait { order: 2; width: min(92%, 560px); margin: 8px auto 0; }
  .hero-copy h1 { font-size: clamp(3.25rem, 12vw, 5.2rem); }
  .hero-lede { font-size: 1.08rem; }
  .hero-ring { width: 880px; right: -590px; top: -180px; opacity: .6; }
  .portrait-frame { border-radius: 22px 82px 22px 22px; }

  .recognition-grid, .perspective-grid, .method-shell, .shifts-grid, .services-heading, .service-primary, .about-grid, .book-grid, .faq-grid, .contact-grid, .service-card-grid, .testimonial-grid, .guide-download-grid { grid-template-columns: 1fr; }
  .sticky-heading, .method-heading, .contact-copy { position: static; }
  .recognition-grid, .perspective-grid, .method-shell, .shifts-grid, .about-grid, .book-grid, .faq-grid, .contact-grid, .guide-download-grid { gap: 52px; }
  .services-heading { gap: 18px; margin-bottom: 46px; }
  .statement-band { margin-top: 72px; padding-top: 30px; }
  .perspective-quote { margin-top: 75px; }
  .method-steps { margin-top: 4px; }
  .service-primary { overflow: visible; }
  .service-visual { min-height: 390px; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .service-visual-figure { width: min(76%, 300px); }
  .service-card-grid { gap: 20px; }
  .about-brand-visual { width: min(92vw, 620px); }
  .book-photo { width: min(88%, 520px); margin-inline: auto; }
  .contact-direct { gap: 10px; }
  .book-copy { padding-bottom: 8px; }
  .guide-preview { min-height: 540px; width: min(92%, 500px); }
  .guide-cover { width: min(74%, 350px); }
  .guide-brand-art { width: 80%; right: -2%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .mobile-sticky-cta {
    display: flex; position: fixed; z-index: 120; left: 12px; right: 12px; bottom: 10px;
    align-items: center; justify-content: center; min-height: 50px; background: var(--cocoa); color: var(--white);
    text-decoration: none; border-radius: 999px; font-weight: 750; font-size: .9rem;
    box-shadow: 0 9px 28px rgba(43,31,25,.25);
  }
}

@media (max-width: 540px) {
  :root { --shell: calc(100vw - 30px); }
  h2 { font-size: clamp(2.45rem, 11vw, 3.5rem); }
  .brand { font-size: 1rem; }
  .brand-photo { width: 38px; height: 38px; flex-basis: 38px; }
  .hero { padding-top: 30px; padding-bottom: 80px; }
  .hero-copy h1 { font-size: clamp(3rem, 14vw, 4.25rem); line-height: .99; margin-bottom: 22px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-portrait { width: 100%; }
  .hero-portrait figcaption span { max-width: 290px; }
  .recognition-item { grid-template-columns: 16px 1fr; gap: 12px; }
  .statement-band p { font-size: clamp(2rem, 10vw, 3.2rem); }
  .perspective-quote blockquote { font-size: clamp(2.4rem, 11vw, 3.65rem); }
  .method-step { gap: 18px; }
  .service-primary-copy { padding: 34px 26px 38px; }
  .service-visual { min-height: 335px; }
  .service-visual-figure { width: min(76%, 250px); }
  .service-visual p { bottom: 32px; font-size: 1.35rem; }
  .about-brand-visual { width: 100%; }
  .about-brand-visual img { border-radius: 20px; }
  .about-copy blockquote { padding-left: 19px; }
  .book-photo { width: 100%; }
  .book-actions { align-items: stretch; flex-direction: column; }
  .book-actions .button { width: 100%; }
  .book-note { font-size: .88rem; }

  .guide-preview { min-height: 455px; width: 100%; }
  .guide-cover { width: min(76%, 315px); border-radius: 14px; }
  .guide-brand-art { width: 82%; right: -5%; bottom: 2%; border-radius: 14px; }
  .guide-actions { align-items: stretch; flex-direction: column; }
  .guide-actions .button { width: 100%; }
  .guide-open-link { align-self: flex-start; white-space: normal; }
  .form-row.two-col { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .contact-direct a { width: 100%; justify-content: center; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .toast { right: 12px; bottom: 76px; width: calc(100vw - 24px); }
}

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


.service-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 34px; }
.service-card { background: #f6e6dc; border-radius: 24px; padding: clamp(28px, 4vw, 38px); }
.service-card h3 { font-size: clamp(1.85rem, 2.6vw, 2.7rem); margin-bottom: 16px; }
.service-card > p { color: #6b5851; }
.service-card-note { margin-bottom: 18px; }
.compact-list { margin-top: 18px; margin-bottom: 0; }
.compact-list li { font-size: .92rem; }

.testimonials { background: #efd5ca; }
.testimonials-heading { margin-bottom: 44px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.testimonial-card { background: var(--ivory); border-radius: 22px; padding: 28px 24px 24px; box-shadow: 0 14px 28px rgba(66,49,38,.06); }
.testimonial-card p { margin-bottom: 20px; color: #4f3b38; }
.testimonial-card span { color: var(--olive); font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.contact-direct { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.contact-direct a { display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 999px; border: 1px solid rgba(91,70,57,.24); text-decoration: none; color: var(--cocoa); font-weight: 650; background: rgba(255,255,255,.35); }
.contact-direct a:hover { background: rgba(255,255,255,.6); }

body.menu-open .mobile-sticky-cta { opacity: 0; pointer-events: none; transform: translateY(12px); }
.mobile-sticky-cta { transition: opacity .22s ease, transform .22s ease; }

.legal-page { min-height: 100vh; background: var(--ivory); }
.legal-main { padding: clamp(48px, 8vw, 92px) 0; }
.legal-card { background: #fffaf5; border-radius: 28px; padding: clamp(28px, 5vw, 48px); box-shadow: 0 18px 48px rgba(66,49,38,.08); }
.legal-card h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); margin-bottom: 24px; }
.legal-card h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); margin-top: 34px; margin-bottom: 16px; }
.legal-card p, .legal-card li { color: #62504a; }
.legal-card ul { padding-left: 18px; }
.legal-meta { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.legal-back { display: inline-flex; margin-top: 26px; }
.footer-seal { width: 82px; height: 82px; object-fit: cover; border-radius: 20px; margin-bottom: 18px; box-shadow: 0 10px 26px rgba(0,0,0,.18); }
@media (max-width: 540px) { .footer-seal { width: 72px; height: 72px; border-radius: 18px; } }
