:root {
  color-scheme: light;
  --navy: #18232D;
  --ivory: #F6F2EA;
  --ivory-mid: #F0EBE3;
  --greige: #E8E1D6;
  --champagne: #C1A36B;
  --champagne-hover: #D0B783;
  --gold-ink: #74603B;
  --text: #18232D;
  --muted: #555B60;
  --muted-light: #D8D1C6;
  --border: #D6CEC1;
  --line-dark: #43505A;
  --display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --container: 1240px;
  --gutter: clamp(20px, 4.5vw, 72px);
  --section-space: clamp(56px, 6.5vw, 94px);
  --gap: clamp(24px, 4vw, 56px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --soft-gradient: linear-gradient(130deg,
    oklch(.963 .011 83) 0%,
    oklch(.942 .012 77) 48%,
    oklch(.92 .016 78) 100%);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  -webkit-text-size-adjust: 100%;
  background: var(--navy);
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ivory);
  overflow-wrap: break-word;
}
body, html { max-width: 100%; overflow-x: clip; }
button, input, select, textarea { font: inherit; }
button, input, select, textarea, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
button:disabled { cursor: default; }
a { color: inherit; text-underline-offset: 5px; }
button, a { touch-action: manipulation; }
button, input, select, textarea { border-radius: 0; }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; flex-shrink: 0; }
figure, blockquote { margin: 0; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(45px, 5.3vw, 78px); }
h2 { font-size: clamp(37px, 4.35vw, 64px); }
h3 { font-size: clamp(27px, 2.6vw, 37px); }
p { text-wrap: pretty; }
p + p { margin-top: 16px; }
ul, ol { margin: 0; padding: 0; }
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--gold-ink); outline-offset: 5px; }
.dark :focus-visible, .site-header :focus-visible, .mobile-menu :focus-visible {
  outline-color: var(--champagne-hover);
}
[hidden] { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap; border: 0;
}
.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  min-width: 0;
}
.narrow { max-width: 850px; }
.section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: var(--section-space);
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
}
.paper { background: var(--ivory); }
.soft { background: var(--ivory-mid); background: var(--soft-gradient); }
.dark { background: var(--navy); color: var(--ivory); color-scheme: dark; }
.section-heading { margin-bottom: clamp(28px, 3vw, 44px); }
.section-heading h2 + p { margin-top: 22px; }
.section-heading p:not(.eyebrow) { max-width: 65ch; }
.section-intro, .section-heading > p:not(.eyebrow), .lead { color: var(--muted); }
.lead { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7; }
.dark .lead, .dark .section-intro, .dark .section-heading > p:not(.eyebrow) { color: var(--muted-light); }
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  color: var(--gold-ink); font-size: 12px;
  letter-spacing: .13em; line-height: 1.5;
  text-transform: uppercase; margin-bottom: 23px;
}
.eyebrow::before {
  content: ""; width: 40px; height: 1px;
  background: var(--champagne); flex: 0 0 40px;
}
.eyebrow > span { font-variant-numeric: tabular-nums; }
.dark .eyebrow, .sac-card .eyebrow { color: var(--champagne-hover); }
.small, .ethical-note, .privacy-copy, .field-help {
  font-size: 14px; line-height: 1.65; color: var(--muted);
}
.ethical-note { margin-top: 28px; max-width: 100ch; }
.dark .small, .dark .ethical-note, .dark .privacy-copy { color: var(--muted-light); }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; min-height: 52px; padding: 13px 24px;
  border: 1px solid transparent; background: var(--champagne);
  color: var(--navy); text-decoration: none;
  font-size: 14px; font-weight: 700; line-height: 1.45;
  text-align: center; transition: background .2s ease, transform .2s ease;
}
.button:hover { background: var(--champagne-hover); transform: translateY(-2px); }
.button:disabled { opacity: .6; transform: none; }
.text-link {
  display: inline-flex; align-items: center; min-height: 44px;
  width: fit-content; font-size: 14px; font-weight: 650;
  text-decoration: underline; text-decoration-color: var(--champagne);
  text-decoration-thickness: 1px;
}
.text-link:hover { text-decoration-thickness: 2px; }
.text-button { padding: 0; border: 0; background: transparent; color: inherit; }
.icon-button {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; min-width: 46px;
  border: 1px solid currentColor; color: inherit; background: transparent;
}
.icon-button:hover { background: rgb(193 163 107 / 13%); }
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 100;
  padding: 14px 18px; background: var(--ivory); color: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  height: 76px; padding-block: 0;
  background: var(--navy); color: var(--ivory); z-index: 5;
}
.header-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; min-width: 0; flex-shrink: 0;
}
.brand-mark { width: 42px; height: 42px; color: var(--champagne); }
.brand-type { display: flex; flex-direction: column; min-width: 0; }
.brand-type strong {
  font-family: var(--display); font-size: 24px;
  font-weight: 400; line-height: 1.15; white-space: nowrap; letter-spacing: -.025em;
}
.brand-type small {
  font-size: 10px; letter-spacing: .12em;
  line-height: 1.8; white-space: nowrap;
}
.desktop-nav { display: none; align-items: center; gap: 24px; }
.desktop-nav a {
  display: inline-flex; align-items: center; min-height: 44px;
  white-space: nowrap; font-size: 13px; text-decoration: none;
  border-bottom: 1px solid transparent;
}
.desktop-nav a:hover, .desktop-nav a[aria-current="location"] { border-color: var(--champagne); }
.header-cta { display: none; white-space: nowrap; }
.menu-toggle { margin-left: auto; color: var(--champagne); }

.mobile-menu {
  position: fixed; inset: 0; width: 100%; max-width: none;
  height: 100%; height: 100dvh; max-height: none;
  margin: 0; padding: 24px var(--gutter);
  border: 0; background: var(--navy); color: var(--ivory);
  overflow-y: auto; overscroll-behavior: contain;
}
.mobile-menu::backdrop { background: rgb(24 35 45 / 85%); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mobile-menu-head p { font-family: var(--display); font-size: 25px; }
.mobile-menu nav { display: grid; margin-block: 28px; gap: 4px; }
.mobile-menu nav a {
  display: block; padding-block: 7px; min-height: 44px;
  font-family: var(--display); font-size: clamp(25px, 6vw, 38px);
  line-height: 1.25; text-decoration: none;
}
.mobile-menu nav a:hover { color: var(--champagne-hover); }
.mobile-menu > .small { margin-top: 20px; color: var(--muted-light); }

.hero { padding-top: 44px; padding-bottom: 26px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 28px; }
.hero-copy { min-width: 0; position: relative; z-index: 1; }
.hero .eyebrow { margin-bottom: 26px; }
.hero-attribution {
  margin-top: 18px; margin-bottom: 20px;
  color: var(--champagne-hover); font-size: 14px;
}
.hero .lead { max-width: 55ch; font-size: 16px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 20px; margin-top: 26px; }
.hero-actions .text-link { max-width: 31ch; line-height: 1.5; }
.hero-portrait {
  position: relative;
  width: 100%; max-width: 430px; justify-self: end; align-self: center;
}
.hero-portrait::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  border-radius: 2px;
  background:
    radial-gradient(120% 90% at 50% 42%, transparent 52%, rgba(24,35,45,.32) 78%, rgba(24,35,45,.72) 100%),
    linear-gradient(to bottom, rgba(24,35,45,.38) 0%, transparent 12%, transparent 62%, rgba(24,35,45,.55) 100%);
}
.hero-portrait img {
  width: 100%; height: auto; aspect-ratio: 1218 / 1100;
  object-fit: contain; filter: saturate(.94);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #fff 26%, #fff 74%, transparent 100%), linear-gradient(to bottom, transparent 0%, #fff 8%, #fff 70%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, #fff 26%, #fff 74%, transparent 100%), linear-gradient(to bottom, transparent 0%, #fff 8%, #fff 70%, transparent 100%);
  mask-composite: intersect;
}
.hero-portrait figcaption {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  color: var(--muted-light); font-size: 12px; padding-inline: 28px;
}
.hero-portrait figcaption span { color: var(--champagne-hover); }
.rating-link { display: inline-flex; flex-wrap: wrap; gap: 16px; align-items: center; text-decoration: none; margin-top: 26px; }
.rating-stars { color: var(--champagne-hover); letter-spacing: 3px; font-size: 16px; }
.rating-link strong { display: block; font-size: 14px; font-weight: 650; }
.rating-link small { display: block; font-size: 12px; color: var(--muted-light); }
.trust-strip {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1.45fr;
  gap: 22px; border-top: 1px solid var(--line-dark);
  margin-top: 44px; padding-top: 21px;
}
.trust-strip > span, .trust-strip > a { font-size: 12px; color: var(--muted-light); text-decoration: none; }
.trust-strip strong { display: block; color: var(--ivory); font-size: 13px; font-weight: 500; line-height: 1.5; margin-top: 5px; }
.trust-note { margin-top: 12px; font-size: 11px; color: var(--muted-light); }
.service-ribbon { background: var(--navy); color: var(--ivory); border-top: 1px solid var(--line-dark); }
.ribbon-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px 22px; padding-block: 20px; }
.ribbon-inner span { font-family: var(--display); font-size: 22px; }
.ribbon-inner [aria-hidden] { color: var(--champagne); font-size: 15px; }

.principle-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px; }
.principle { padding-top: 23px; border-top: 1px solid var(--champagne); }
.index-number { color: var(--gold-ink); font-family: var(--display); font-size: 27px; display: block; margin-bottom: 15px; }
.principle h3 { font-size: clamp(27px, 2.6vw, 35px); }
.principle p { margin-top: 20px; color: var(--muted); }
.principle .text-link { margin-top: 16px; }
.editorial-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--gap); align-items: center; }
.editorial-grid .section-heading { margin-bottom: 0; }
.editorial-grid .text-link { margin-top: 20px; }
.sac-card { background: var(--navy); color: var(--ivory); padding: clamp(26px, 4vw, 48px); position: relative; }
.sac-card::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgb(193 163 107 / 38%); pointer-events: none; }
.topic-list { list-style: none; margin-top: 30px; }
.topic-list li { display: flex; gap: 18px; padding-block: 16px; border-top: 1px solid var(--line-dark); }
.topic-list li > span { color: var(--champagne-hover); font-size: 13px; }
.topic-list strong { font-size: 15px; font-weight: 600; }
.topic-list p { font-size: 14px; color: var(--muted-light); margin-top: 3px; }
.sac-card blockquote { margin-top: 24px; font-size: 15px; color: var(--muted-light); }
.sac-card cite { display: block; font-style: normal; font-size: 12px; margin-top: 12px; }

.shelf-stage { position: relative; min-width: 0; display: grid; grid-template-columns: 1fr; }
.shelf-books {
  min-width: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 23px 30px; padding: 20px 10px 12px;
}
.book-card {
  --r: -1.2deg; --yaw: -7deg; --cover-color: #22313C;
  width: 100%; min-width: 0; max-width: 214px; justify-self: center;
  padding: 0; border: 0; background: transparent; text-align: left;
  color: var(--ivory); perspective: 1200px;
  position: relative; isolation: isolate;
}
.book-card:nth-child(2n) { --r: 1.3deg; --cover-color: #263741; }
.book-card:nth-child(3n) { --r: -.5deg; --cover-color: #323A3C; }
.book-card:nth-child(4n) { --r: 1.8deg; --cover-color: #1F303D; }
.book {
  display: block; position: relative; aspect-ratio: 2 / 3;
  transform-style: preserve-3d;
  transform: rotateZ(var(--r)) rotateY(var(--yaw));
  transition: transform .55s var(--ease);
}
.book-shadow, .book-back, .page-block, .front-cover, .page-fan {
  position: absolute; inset: 0; border-radius: 3px 7px 7px 3px;
}
.book-shadow { background: rgb(24 35 45 / 16%); filter: blur(12px); transform: translate3d(7px, 12px, -18px); }
.book-back { background: var(--cover-color); transform: translateZ(-16px); }
.page-block {
  inset: 1.9% 1.5% 1.9% 4.4%;
  background: repeating-linear-gradient(90deg, #E8E1D6 0 2px, #D6CEC1 2px 3px);
  transform: translate3d(5px, 1px, -10px);
}
.page-fan { transform-style: preserve-3d; pointer-events: none; }
.page-fan i {
  position: absolute; inset: 2% 1.5% 2% 4.4%;
  display: block; background: var(--ivory-mid); border: 1px solid var(--border);
  transform-origin: left center; transition: transform .55s var(--ease);
}
.front-cover {
  overflow: hidden; background: var(--cover-color);
  border: 1px solid rgb(193 163 107 / 52%);
  transform-origin: 1.5% center;
  transform: translate3d(0, 0, 7px);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
  backface-visibility: hidden;
}
.front-cover::before {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(90deg, rgb(24 35 45 / 38%), transparent 4%, rgb(246 242 234 / 9%) 7%, transparent 12%, transparent 87%, rgb(246 242 234 / 5%));
}
.cover-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; }
.front-cover.has-art .cover-art { opacity: 1; }
.cover-copy {
  position: absolute; inset: 0; z-index: 2;
  padding: 19px 16px; display: flex; flex-direction: column;
  justify-content: center; gap: 12px; transition: opacity .15s;
}
.front-cover.has-art .cover-copy { opacity: 0; }
.cover-kicker { color: var(--champagne-hover); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.cover-copy strong { font-family: var(--display); font-size: clamp(21px, 2vw, 28px); font-weight: 400; line-height: 1.13; }
.cover-copy > span:not(.cover-kicker):not(.cover-foot) { font-size: 11px; color: var(--muted-light); }
.cover-foot { position: absolute; bottom: 18px; left: 16px; right: 12px; font-size: 10px; color: var(--muted-light); }
.book-action { display: block; color: var(--gold-ink); font-size: 12px; text-align: center; padding-block: 12px 3px; }
.book-card:focus-visible { outline-offset: 10px; }
.book-card.selected .book {
  transform: rotateZ(0) rotateX(var(--detail-pitch, 0deg)) rotateY(var(--detail-yaw, 0deg));
}
.book-card.selected .front-cover {
  transform: translate3d(0, 0, 18px) rotateY(-29deg);
  box-shadow: 25px 26px 44px rgb(24 35 45 / 15%), inset 2px 0 3px rgb(246 242 234 / 10%);
}
.book-card.selected .page-fan i:nth-child(1) { transform: rotateY(-4deg); }
.book-card.selected .page-fan i:nth-child(2) { transform: rotateY(-8deg); }
.book-card.selected .page-fan i:nth-child(3) { transform: rotateY(-12deg); }
.book-card.selected .page-fan i:nth-child(4) { transform: rotateY(-16deg); }
.shelf-stage[data-mode="detail"] {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  column-gap: clamp(34px, 5vw, 80px); align-items: center;
  min-height: 530px;
}
.shelf-stage[data-mode="detail"] .shelf-books {
  grid-column: 1; grid-row: 1; display: grid; grid-template-columns: 1fr;
  overflow: visible; padding: 25px 14px; position: relative; z-index: 2;
}
.shelf-stage[data-mode="detail"] .book-card:not(.selected) { display: none; }
.shelf-stage[data-mode="detail"] .book-card { width: 100%; max-width: 270px; }
.book-panel {
  grid-column: 1 / -1; grid-row: 1;
  display: grid; grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  column-gap: clamp(34px, 5vw, 80px);
  position: relative; min-width: 0; padding-block: 54px 16px;
}
.book-panel > * { grid-column: 2; min-width: 0; }
.book-panel .eyebrow { margin-bottom: 14px; }
.book-panel h3 { font-size: clamp(32px, 3.4vw, 48px); margin-bottom: 20px; }
.book-panel > p:not(.eyebrow) { color: var(--muted); }
.panel-close { position: absolute; top: 0; right: 0; color: var(--gold-ink); }
.detail-list { list-style: none; margin-block: 22px; }
.detail-list li { position: relative; padding-left: 19px; margin-bottom: 9px; color: var(--muted); font-size: 14px; }
.detail-list li::before { content: ""; width: 7px; height: 1px; background: var(--gold-ink); position: absolute; top: .8em; left: 0; }
.book-panel .button { justify-self: start; }
.book-panel .ethical-note { margin-top: 18px; font-size: 13px; }
.shelf-help { font-size: 13px; color: var(--muted); margin-top: 20px; }
.help-touch { display: none; }
@media (hover: none), (pointer: coarse) {
  .help-touch { display: inline; }
  .help-keys { display: none; }
}
.notice { padding: 18px; border: 1px solid var(--border); margin-top: 24px; }

.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.comparison-card { border-top: 1px solid var(--champagne); padding-top: 27px; }
.fine-label { color: var(--gold-ink); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.comparison-card h3 { margin-top: 16px; }
.comparison-card p { margin-top: 20px; color: var(--muted); }
.comparison-card .text-link { margin-top: 18px; }
.process-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px; list-style: none; }
.process-list li { border-top: 1px solid var(--champagne); padding-top: 20px; min-width: 0; }
.step-number { display: block; color: var(--gold-ink); font-size: 13px; margin-bottom: 20px; font-variant-numeric: tabular-nums; }
.process-list h3 { font-size: 27px; }
.process-list p { color: var(--muted); font-size: 14px; margin-top: 15px; }

.testimonial-top { display: flex; justify-content: space-between; align-items: start; gap: 32px; }
.testimonial-top h2 { font-size: clamp(35px, 4vw, 58px); }
.google-score { display: grid; justify-items: end; flex-shrink: 0; text-decoration: none; gap: 6px; }
.google-score > strong { font-family: var(--display); font-size: 58px; font-weight: 400; line-height: 1; }
.google-score strong span { font-family: var(--sans); font-size: 15px; color: var(--muted-light); }
.google-score > span:last-child { font-size: 12px; color: var(--muted-light); }
.review-slider { border-top: 1px solid var(--line-dark); padding-top: 30px; }
.review-slider.is-ready { min-height: 290px; }
.review-slide + .review-slide { margin-top: 40px; }
.review-slider.is-ready .review-slide { margin-top: 0; }
.review-topic { color: var(--champagne-hover); font-size: 13px; margin-bottom: 23px; }
.review-slide blockquote p { font-family: var(--display); font-size: clamp(26px, 3vw, 42px); line-height: 1.28; max-width: 53ch; }
.review-slide cite { display: block; margin-top: 23px; font-size: 14px; font-style: normal; color: var(--muted-light); }
.slider-controls { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 28px; }
.slider-controls .icon-button { color: var(--champagne); }
.review-dots { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.review-dots button { width: 44px; height: 44px; padding: 0; border: 0; background: transparent; display: grid; place-items: center; }
.review-dots button span { display: block; width: 6px; height: 6px; border-radius: 50%; border: 1px solid var(--champagne); }
.review-dots button[aria-current="true"] span { background: var(--champagne); width: 9px; height: 9px; }

.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--gap); align-items: start; }
.faq-layout .section-heading { margin-bottom: 0; }
.faq-layout .text-link { margin-top: 22px; }
.faq-list { border-top: 1px solid var(--champagne); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary {
  list-style: none; position: relative; cursor: pointer;
  padding: 20px 35px 20px 0; min-height: 62px;
  font-size: 15px; font-weight: 650; line-height: 1.5;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 2px; top: 19px; font-size: 22px; line-height: 1; font-weight: 400; color: var(--gold-ink); }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 22px 23px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.space-gallery { display: grid; grid-template-columns: 1.35fr .85fr; gap: 24px; }
.space-gallery img { width: 100%; height: 320px; object-fit: cover; }
.space-gallery figcaption { font-size: 12px; color: var(--muted); margin-top: 10px; }
.wall-photo img { object-position: center; }
.location-strip { display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 30px; align-items: center; border-top: 1px solid var(--border); padding-top: 24px; margin-top: 30px; }
.location-strip address, .location-strip p { font-size: 14px; color: var(--muted); }
.location-strip address strong { display: block; color: var(--navy); margin-bottom: 4px; }
.location-strip p { margin: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: stretch; }
.contact-form { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field label { font-size: 14px; font-weight: 650; }
.field label span { font-weight: 400; color: var(--muted); }
input, select, textarea {
  width: 100%; min-width: 0; border: 1px solid var(--border);
  background: #FAF7F1; color: var(--navy);
  padding: 13px 14px; font-size: 16px; line-height: 1.5;
}
input, select { height: 52px; }
textarea { min-height: 104px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #62666A; opacity: 1; }
select {
  appearance: none; padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='m4 6 5 5 5-5' fill='none' stroke='%2374603B' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.field-help { font-size: 12px; }
.contact-form .button { width: 100%; }
.privacy-copy { font-size: 12px; }
.contact-form .privacy-copy, .form-status { margin-top: 0; }
.form-status { font-size: 14px; color: var(--gold-ink); }
.contact-info { min-width: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 10px; }
.contact-card {
  display: flex; align-items: center; gap: 15px; padding: 13px 16px;
  border: 1px solid var(--border); min-height: 74px;
  text-decoration: none; background: var(--ivory-mid);
}
.contact-card:hover:is(a) { border-color: var(--champagne); }
.contact-icon { width: 24px; height: 24px; color: var(--gold-ink); }
.contact-card > span { min-width: 0; }
.contact-card small { display: block; color: var(--muted); font-size: 12px; }
.contact-card strong { display: block; font-size: 15px; font-weight: 600; font-variant-numeric: tabular-nums; }
.map-card { border: 1px solid var(--border); background: var(--ivory-mid); }
.map-card iframe { display: block; width: 100%; height: 230px; border: 0; background: var(--greige); }
.map-info { padding: 19px; }
.map-info address { color: var(--muted); font-size: 14px; }
.map-info address strong { display: block; color: var(--navy); }
.map-actions { display: flex; flex-wrap: wrap; gap: 8px 25px; margin-top: 8px; }
.map-info .small { margin-top: 5px; font-size: 12px; }
.final-cta { text-align: center; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { font-size: clamp(43px, 5.7vw, 78px); }
.final-cta h2 + p { margin: 28px auto; color: var(--muted); max-width: 58ch; }
.final-cta .small { margin-top: 19px; }
.final-cta::after {
  content: ""; width: 1px; height: 60px; background: var(--champagne);
  position: absolute; bottom: 0; left: 50%; pointer-events: none;
}

.site-footer { padding-top: 58px; padding-bottom: 96px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand { margin-bottom: 20px; }
.footer-grid > div > p { color: var(--muted-light); font-size: 14px; max-width: 40ch; margin-bottom: 12px; }
.footer-grid nav { display: flex; flex-direction: column; align-items: start; }
.footer-grid nav strong { font-weight: 600; font-size: 14px; margin-bottom: 12px; }
.footer-grid nav a { display: inline-flex; align-items: center; min-height: 44px; font-size: 14px; color: var(--muted-light); text-decoration: none; }
.footer-grid nav a:hover { color: var(--champagne-hover); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 25px; margin-top: 40px; border-top: 1px solid var(--line-dark); padding-top: 22px; font-size: 12px; color: var(--muted-light); }
.footer-bottom p { margin: 0; }
.footer-bottom a { display: inline-flex; min-height: 44px; align-items: center; }
.footer-disclaimer { margin-top: 20px; color: var(--muted-light); font-size: 12px; }
.preview-note { border-left: 1px solid var(--champagne); padding-left: 15px; }
.floating-whatsapp, .back-to-top {
  position: fixed; right: max(16px, env(safe-area-inset-right)); z-index: 9;
  width: 52px; height: 52px; display: grid; place-items: center;
  background: var(--champagne); color: var(--navy); text-decoration: none;
  box-shadow: 0 6px 20px rgb(24 35 45 / 15%);
  border: 1px solid var(--champagne);
}
.floating-whatsapp { bottom: max(18px, env(safe-area-inset-bottom)); border-radius: 50%; }
.back-to-top { bottom: calc(max(18px, env(safe-area-inset-bottom)) + 64px); width: 44px; height: 44px; right: max(20px, env(safe-area-inset-right)); background: var(--ivory); }
.floating-whatsapp:hover { background: var(--champagne-hover); }

.legal-page { background: var(--ivory); }
.legal-header { background: var(--navy); color: var(--ivory); padding-block: 20px; }
.legal-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-header a { min-height: 44px; display: inline-flex; align-items: center; font-size: 14px; }
.legal-main { max-width: 850px; padding-block: 64px 90px; }
.legal-main h1 { font-size: clamp(39px, 5vw, 62px); margin-bottom: 22px; }
.legal-main h2 { font-family: var(--sans); font-weight: 600; font-size: 21px; letter-spacing: -.015em; line-height: 1.4; margin-top: 38px; margin-bottom: 16px; }
.legal-main p, .legal-main li { color: var(--muted); }
.legal-main ul { padding-left: 23px; margin-block: 16px; }
.legal-main li + li { margin-top: 9px; }
.legal-main .notice { color: var(--navy); }
.legal-footer { background: var(--navy); color: var(--ivory); padding-block: 25px; }
.legal-footer .container { display: flex; flex-wrap: wrap; gap: 15px 25px; align-items: center; font-size: 14px; }
.legal-footer a { min-height: 44px; display: inline-flex; align-items: center; }
.error-main { text-align: center; }
.error-main p { margin: 24px auto; max-width: 50ch; }
.error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

@media (hover: hover) and (pointer: fine) {
  .book-card:not(.selected):hover { z-index: 4; }
  .book-card:not(.selected):hover .book { transform: translateY(-14px) rotateZ(0) rotateY(-5deg); }
}
@media (min-width: 1024px) {
  .header-cta { display: inline-flex; }
}
@media (min-width: 1200px) {
  .desktop-nav { display: flex; }
  .menu-toggle { display: none; }
}
@media (max-width: 1100px) {
  .process-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .location-strip { grid-template-columns: 1fr 1.2fr; }
  .location-strip .text-link { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .shelf-books {
    display: flex; gap: 26px; overflow-x: auto;
    padding: 24px 16px 22px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--champagne) var(--greige);
  }
  .book-card { flex: 0 0 202px; max-width: 202px; scroll-snap-align: center; }
  .shelf-stage[data-mode="detail"] { display: block; min-height: 0; }
  .shelf-stage[data-mode="detail"] .shelf-books { display: grid; padding-top: 18px; overflow: visible; }
  .shelf-stage[data-mode="detail"] .book-card { width: 210px; max-width: 230px; }
  .book-panel { display: block; padding-top: 65px; grid-column: 1 / -1; }
  .book-panel .eyebrow { padding-right: 0; }
  .book-panel .button { margin-top: 6px; }
  .cover-copy strong { font-size: 27px; }
}
@media (max-width: 840px) {
  :root { --section-space: 56px; }
  .hero { padding-top: 35px; padding-bottom: 25px; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-copy { max-width: 660px; }
  .hero-portrait { width: min(300px, 86%); justify-self: center; }
  .hero-portrait figcaption { font-size: 11px; }
  .hero h1 { font-size: clamp(44px, 8vw, 65px); }
  .hero .eyebrow { margin-bottom: 20px; }
  .hero-attribution { margin-top: 14px; margin-bottom: 15px; }
  .hero-actions { margin-top: 22px; }
  .rating-link { margin-top: 20px; }
  .trust-strip { grid-template-columns: 1fr 1fr; margin-top: 25px; gap: 16px; }
  .principle-grid { grid-template-columns: 1fr; gap: 28px; }
  .principle { display: grid; grid-template-columns: 30px 1fr; gap: 0 18px; padding-top: 19px; }
  .principle .index-number { grid-row: 1 / 4; margin-bottom: 0; }
  .principle h3, .principle p, .principle .text-link { grid-column: 2; }
  .principle p { margin-top: 13px; }
  .principle .text-link { margin-top: 9px; }
  .editorial-grid, .faq-layout, .contact-grid { grid-template-columns: 1fr; }
  .editorial-grid { gap: 34px; }
  .comparison-grid { gap: 28px; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .testimonial-top { flex-direction: column; gap: 0; }
  .testimonial-top .section-heading { margin-bottom: 22px; }
  .google-score { justify-items: start; margin-bottom: 26px; }
  .google-score > strong { font-size: 44px; }
  .review-slider.is-ready { min-height: 280px; }
  .space-gallery img { height: 260px; }
  .contact-grid { gap: 34px; }
  .contact-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-card { align-items: start; flex-direction: column; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  :root { --gutter: 20px; --gap: 28px; }
  body { font-size: 15px; }
  .brand { gap: 8px; }
  .brand-mark { width: 33px; height: 33px; }
  .brand-type strong { font-size: 20px; }
  .brand-type small { font-size: 9px; letter-spacing: .08em; }
  .header-inner { gap: 8px; }
  .menu-toggle { width: 44px; height: 44px; min-width: 44px; }
  h2 { font-size: 37px; }
  .hero h1 { font-size: 44px; }
  .hero .eyebrow { font-size: 10px; letter-spacing: .07em; gap: 8px; }
  .hero .eyebrow::before { width: 24px; flex-basis: 24px; }
  .hero .lead { font-size: 14px; line-height: 1.7; }
  .hero-actions { display: grid; gap: 8px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { max-width: none; font-size: 13px; }
  .hero-portrait { width: 260px; }
  .trust-strip { gap: 18px 14px; }
  .trust-strip strong { font-size: 12px; }
  .ribbon-inner { justify-content: center; gap: 10px 14px; }
  .ribbon-inner span { font-size: 19px; }
  .ribbon-inner [aria-hidden] { font-size: 12px; }
  .eyebrow { font-size: 11px; letter-spacing: .08em; }
  .section-heading h2 + p { margin-top: 19px; }
  .comparison-grid { grid-template-columns: 1fr; gap: 30px; }
  .process-list { grid-template-columns: 1fr; gap: 18px; }
  .process-list li { display: grid; grid-template-columns: 28px 1fr; gap: 15px; padding-top: 17px; }
  .step-number { margin-bottom: 0; }
  .process-list h3 { font-size: 26px; }
  .process-list p { margin-top: 9px; }
  .review-slide blockquote p { font-size: 27px; }
  .review-slider.is-ready { min-height: 355px; }
  .slider-controls { flex-wrap: wrap; }
  .review-dots { order: 3; width: 100%; }
  .review-dots button { width: 44px; }
  .shelf-books { padding-bottom: 72px; }
  .space-gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .space-gallery img { height: 200px; }
  .space-gallery figcaption { font-size: 11px; }
  .reception-photo img { object-position: 59% center; }
  .location-strip { grid-template-columns: 1fr; gap: 15px; }
  .location-strip .text-link { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card { flex-direction: row; align-items: center; }
  .map-card iframe { height: 245px; }
  .final-cta h2 { font-size: 43px; }
  .final-cta .button { width: 100%; }
  .final-cta .eyebrow { display: block; }
  .final-cta .eyebrow::before { display: block; margin: 0 auto 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { align-items: start; flex-direction: column; gap: 2px; }
  .floating-whatsapp { width: 48px; height: 48px; right: 14px; }
  .back-to-top { right: 16px; bottom: 80px; }
  .legal-header .container { align-items: start; flex-direction: column; gap: 7px; }
  .legal-main { padding-top: 42px; }
  .privacy-copy { font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .book-card .book { transform: none; }
  .button:hover { transform: none; }
}
@supports not (overflow: clip) {
  body, html { overflow-x: hidden; }
}