@charset "UTF-8";

:root {
  color-scheme: light;
  --petrol: #173D3B;
  --navy: #172331;
  --sage: #DCE8E0;
  --ivory: #FBFAF7;
  --champagne: #C8AE7D;
  --sand: #E9DDC8;
  --text: #243B3A;
  --muted: #536461;
  --line: #D3DCD5;
  --white: #FFFFFF;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --container: 1180px;
  --radius: 5px;
  --shadow: 0 22px 60px rgb(23 61 59 / 10%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body, button, input, textarea { font-family: var(--sans); }
::selection { background: var(--sage); color: var(--petrol); }
a { color: inherit; text-underline-offset: 5px; }
a, button { -webkit-tap-highlight-color: transparent; }
button { font: inherit; cursor: pointer; }
button:disabled { cursor: default; opacity: .45; }
button, a { touch-action: manipulation; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
figure, blockquote { margin: 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--petrol); font-weight: 400; }
h1, h2 { font-family: var(--serif); letter-spacing: -.045em; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(3rem, 5.3vw, 5.1rem); margin-bottom: 26px; }
h2 { font-size: clamp(2.35rem, 4.1vw, 3.9rem); margin-bottom: 26px; }
h3 { font-family: var(--serif); font-size: 1.6rem; line-height: 1.25; }
em { font-weight: 400; }
p { margin-bottom: 1.1rem; }
small, .fine-print { font-size: .8rem; line-height: 1.65; }
.fine-print { color: var(--muted); }
address { font-style: normal; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--petrol); outline-offset: 5px; }
.container { width: min(var(--container), calc(100% - 80px)); margin-inline: auto; }
.section { padding-block: 108px; }
.eyebrow {
  display: block;
  font-size: .7rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.lead { font-size: 1.16rem; line-height: 1.75; }
.actions { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 50px;
  padding: 15px 23px;
  border: 1px solid var(--petrol);
  border-radius: var(--radius);
  background: var(--petrol);
  color: var(--ivory);
  text-decoration: none;
  text-align: center;
  font-size: .86rem;
  font-weight: 500;
  line-height: 1.45;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.button:hover { background: var(--navy); border-color: var(--navy); box-shadow: 0 7px 20px rgb(23 61 59 / 12%); }
.button:active { transform: translateY(1px); }
.button-small { padding: 11px 17px; min-height: 44px; font-size: .8rem; }
.button-light { background: var(--sage); color: var(--petrol); border-color: var(--sage); }
.button-light:hover { background: var(--ivory); color: var(--petrol); border-color: var(--ivory); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: .85rem;
  line-height: 1.5;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--petrol);
  color: white;
}
.skip-link:focus { top: 12px; }

/* Header volontairement dans le flux normal. */
.site-header { position: relative; z-index: 10; background: var(--ivory); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 15px; text-decoration: none; flex-shrink: 0; }
.brand-symbol { font-family: var(--serif); font-size: 3rem; line-height: 1; letter-spacing: -.12em; color: var(--petrol); }
.brand-symbol > span { color: var(--champagne); letter-spacing: 0; }
.brand-name { font-family: var(--serif); font-size: 1.45rem; letter-spacing: -.035em; line-height: 1.2; }
.brand-name small { display: block; font-family: var(--sans); font-size: .6rem; letter-spacing: .27em; text-transform: uppercase; margin-top: 7px; }
.main-nav { display: flex; align-items: center; gap: 23px; }
.main-nav > a:not(.button) { text-decoration: none; font-size: .79rem; padding-block: 12px; }
.main-nav > a:not(.button):hover { text-decoration: underline; }
.menu-toggle { border: 1px solid var(--line); background: transparent; color: var(--petrol); padding: 10px 14px; border-radius: 3px; min-height: 44px; }

.hero { overflow: hidden; padding-block: 68px 76px; background: linear-gradient(120deg, var(--ivory) 42%, #EDF1E9 100%); }
.hero-grid { display: grid; grid-template-columns: 1.07fr 1fr; align-items: center; gap: 65px; }
.hero-copy > p:not(.eyebrow, .registration) { max-width: 480px; }
.hero-copy .eyebrow { display: flex; align-items: center; gap: 12px; }
.tiny-line { width: 35px; height: 1px; background: var(--champagne); }
.hero .actions { gap: 18px; }
.hero-credentials { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 33px; font-size: .78rem; }
.hero-credentials span + span { border-left: 1px solid var(--line); padding-left: 22px; }
.registration { color: var(--muted); font-size: .73rem; margin-top: 8px; margin-bottom: 0; }
.hero-portrait { position: relative; padding-right: 16px; padding-bottom: 20px; }
.portrait-frame { position: relative; z-index: 1; overflow: hidden; border-radius: 160px 8px 8px 8px; background: var(--navy); }
.portrait-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center; }
.portrait-outline { position: absolute; inset: 22px 0 0 24px; border: 1px solid var(--champagne); border-radius: 150px 8px 8px 8px; pointer-events: none; }
.hero-portrait figcaption { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 15px; background: var(--petrol); color: var(--ivory); padding: 22px 27px; border-radius: 0 0 5px 5px; margin-top: -5px; }
.hero-portrait figcaption > span { font-family: var(--serif); font-size: 1.35rem; line-height: 1.2; }
.hero-portrait figcaption small { font-size: .68rem; text-align: right; color: var(--sage); }
.trust-strip { border-block: 1px solid var(--line); }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 25px; padding-block: 22px; }
.trust-inner > p { margin: 0; font-family: var(--serif); font-size: 1.15rem; }
.trust-inner > p span { margin-inline: 13px; color: var(--muted); }
.trust-inner > small { color: var(--muted); font-size: .65rem; }
.google-rating { display: flex; align-items: center; gap: 13px; font-size: .79rem; text-decoration: none; }
.google-rating:hover { text-decoration: underline; }
.stars { letter-spacing: 2px; color: var(--petrol); font-size: .85rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.prose { max-width: 620px; }
.facts { margin: 30px 0 0; }
.facts > div { border-top: 1px solid var(--line); padding: 15px 0; }
.facts dt { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.facts dd { margin: 3px 0 0; font-size: .87rem; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; margin-bottom: 45px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 345px; margin-bottom: 5px; font-size: .92rem; color: var(--muted); }

.library-section { background: linear-gradient(180deg, #EDF1EA, #F8F7F1); border-block: 1px solid var(--line); }
.shelf-instruction { font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 25px; }
.shelf-stage { position: relative; }
.shelf-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px 30px; align-items: start; padding: 0 15px 35px; border-bottom: 9px solid #D5CEBD; box-shadow: 0 14px 14px -14px rgb(23 35 49 / 45%); }
.book-card {
  --book-bg: var(--sage);
  --book-fg: var(--petrol);
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 2 / 3;
  padding: 23px 22px 23px 27px;
  overflow: hidden;
  color: var(--book-fg);
  background-color: var(--book-bg);
  background-image: linear-gradient(90deg, rgb(0 0 0 / 14%), transparent 4%, rgb(255 255 255 / 16%) 5%, transparent 8%), var(--cover-img, none);
  background-size: cover;
  background-position: center;
  text-decoration: none;
  border: 1px solid rgb(23 61 59 / 14%);
  border-radius: 2px 7px 7px 2px;
  box-shadow: 7px 8px 0 -3px #F5F0E7, 9px 8px 0 -3px #C9C8BB, 10px 19px 23px -13px rgb(23 35 49 / 50%);
  transition: transform .25s ease, box-shadow .25s ease;
}
.book-card::after { content: ""; position: absolute; inset: 9px 8px 9px 13px; border: 1px solid currentColor; opacity: .2; pointer-events: none; }
.book-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: 7px 8px 0 -3px #F5F0E7, 9px 8px 0 -3px #C9C8BB, 13px 25px 25px -14px rgb(23 35 49 / 55%); }
.book-card.is-selected, .book-card.selected { transform: rotate(-2deg); box-shadow: 7px 8px 0 -3px #F5F0E7, 9px 8px 0 -3px #C9C8BB, 18px 28px 35px -15px rgb(23 35 49 / 40%); }
.book-card--ivory { --book-bg: var(--ivory); }
.book-card--sage { --book-bg: var(--sage); }
.book-card--sand { --book-bg: var(--sand); }
.book-card--petrol { --book-bg: var(--petrol); --book-fg: var(--ivory); }
.book-card--navy { --book-bg: var(--navy); --book-fg: var(--ivory); }
.book-top { font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; opacity: .85; position: relative; z-index: 1; }
.book-title { font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.4rem); letter-spacing: -.035em; line-height: 1.1; margin-top: 25px; position: relative; z-index: 1; }
.book-bottom { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; font-size: .75rem; line-height: 1.4; position: relative; z-index: 1; }
.book-bottom > span { font-size: 1.2rem; }
.book-art { position: absolute; width: 42%; aspect-ratio: 1; left: 34%; top: 47%; color: currentColor; opacity: .28; pointer-events: none; }
.art-orbit { border: 1px solid; border-radius: 50%; box-shadow: 12px 0 0 -1px var(--book-bg), 13px 0 0 0 currentColor; transform: rotate(-35deg); }
.art-roots { border: 1px solid; border-top: none; border-radius: 0 0 55% 55%; transform: rotate(15deg); }
.art-roots::after { content: ""; position: absolute; inset: -17px 21px 14px; border: 1px solid; border-top: none; border-radius: 0 0 55% 55%; }
.art-sun { border-radius: 50%; border: 1px solid; background: repeating-linear-gradient(0deg, transparent 0 7px, currentColor 8px 9px); }
.art-waves { border-block: 1px solid; border-radius: 45%; transform: rotate(-35deg); }
.art-waves::after { content: ""; position: absolute; inset: 15px -15px; border-block: 1px solid; border-radius: 45%; }

.shelf[data-mode="open"] .shelf-stage { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: 65px; align-items: start; }
.shelf[data-mode="open"] .shelf-row { display: grid; grid-template-columns: minmax(0, 1fr); padding: 15px 0 30px; border: 0; box-shadow: none; }
.shelf[data-mode="open"] .book-card:not(.is-selected):not(.selected) { display: none; }
.shelf[data-mode="open"] .book-card { width: 290px; height: 435px; }
.shelf[data-mode="open"] .book-title { font-size: 2.65rem; }
.book-panel { position: relative; padding: 38px; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); opacity: 1; visibility: visible; box-shadow: var(--shadow); }
.book-panel.is-open, .book-panel.is-in, #book-panel.is-open, #book-panel.is-in { opacity: 1; visibility: visible; transform: none; }
.panel-close { display: flex; align-items: center; gap: 20px; margin: -10px 0 24px auto; padding: 8px 0 8px 12px; min-height: 44px; background: transparent; border: 0; color: var(--muted); font-size: .74rem; }
.panel-close span { font-size: 1.65rem; line-height: 1; }
.book-panel .eyebrow { margin-bottom: 12px; }
.book-panel h3 { font-size: clamp(1.9rem, 3vw, 2.7rem); letter-spacing: -.035em; margin-bottom: 20px; }
.book-panel p { font-size: .93rem; }
.book-panel .fine-print { font-size: .77rem; }
.care-list { padding: 0; margin: 24px 0 30px; list-style: none; }
.care-list li { position: relative; padding: 10px 0 10px 21px; border-bottom: 1px solid var(--line); font-size: .91rem; }
.care-list li::before { content: ""; width: 5px; height: 5px; border: 1px solid currentColor; position: absolute; left: 0; top: 21px; border-radius: 50%; }
.chapter-navigation { display: flex; align-items: center; justify-content: space-between; gap: 15px; border-top: 1px solid var(--line); margin-top: 32px; padding-top: 15px; }
.chapter-navigation > span { font-size: .72rem; color: var(--muted); }
.chapter-navigation .text-link { font-size: .75rem; border-bottom: 0; }
.areas-summary { margin-top: 35px; border-bottom: 1px solid var(--line); }
.areas-summary summary { font-size: .86rem; }
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 40px; padding: 25px 0; }
.summary-grid h3 { font-size: 1.25rem; margin-bottom: 8px; }
.summary-grid p { font-size: .87rem; color: var(--muted); }

.capilar-section { background: var(--petrol); color: var(--sage); }
.capilar-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 100px; align-items: center; }
.capilar-section h2 { color: var(--ivory); }
.capilar-section .eyebrow { color: var(--champagne); }
.capilar-section .care-list li { border-color: rgb(220 232 224 / 22%); }
.capilar-section :focus-visible { outline-color: var(--champagne); }
.capilar-illustration { position: relative; color: var(--champagne); max-width: 420px; margin-inline: auto; width: 100%; }
.capilar-illustration svg { width: 100%; height: auto; }
.capilar-img { width: 100%; height: auto; border-radius: 160px 24px 24px 24px; box-shadow: 0 30px 60px -30px rgb(23 35 49 / 45%); display: block; }
.capilar-illustration > span { display: block; text-align: center; font-family: var(--serif); font-size: 1.6rem; }
.capilar-illustration small { display: block; font-family: var(--sans); font-size: .64rem; color: var(--sage); margin-top: 8px; }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; list-style: none; padding: 0; margin: 0; }
.steps li { border-top: 1px solid var(--line); padding-top: 28px; }
.step-number { display: block; font-family: var(--serif); color: var(--muted); font-size: 2.4rem; margin-bottom: 22px; }
.steps h3 { font-size: 1.5rem; margin-bottom: 15px; }
.steps p { font-size: .91rem; color: var(--muted); }

.reviews-section { background: #EDF1EA; }
.review-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 90px; align-items: center; }
.review-badge { display: inline-flex; align-items: center; gap: 20px; text-decoration: none; margin-block: 8px 22px; }
.review-badge > strong { font-family: var(--serif); font-size: 3rem; font-weight: 400; line-height: 1; }
.review-badge > strong span { font-family: var(--sans); font-size: 1.15rem; margin-left: 6px; }
.review-badge > span { font-size: .85rem; }
.review-badge small { font-size: .7rem; text-decoration: underline; }
.quote-card { background: var(--ivory); border: 1px solid var(--line); padding: 42px; border-radius: 5px; }
.quote-mark { display: block; color: var(--champagne); font-family: var(--serif); font-size: 5rem; line-height: .8; }
.quote-card blockquote p { font-family: var(--serif); font-size: clamp(1.45rem, 2.3vw, 2rem); line-height: 1.45; letter-spacing: -.02em; }
.quote-card figcaption { display: flex; flex-direction: column; font-size: .82rem; gap: 5px; margin-top: 25px; }
.quote-card figcaption span { font-size: .73rem; color: var(--muted); }
.quote-card .text-link { margin-top: 18px; font-size: .75rem; }

.locations-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.location-card { display: flex; flex-direction: column; align-items: flex-start; padding: 30px; border: 1px solid var(--line); border-radius: 4px; }
.location-card--featured { background: var(--sage); border-color: var(--sage); }
.location-card .eyebrow { margin-bottom: 20px; font-size: .63rem; }
.location-card h3 { font-size: 1.5rem; margin-bottom: 16px; }
.location-card p, .location-card address { font-size: .87rem; }
.location-card .fine-print { font-size: .75rem; }
.location-card address { margin-bottom: 25px; }
.location-card .text-link { margin-top: auto; font-size: .76rem; }
.map-shell { background: #EEF1EB; border: 1px solid var(--line); padding: 30px; margin-top: 24px; border-radius: 4px; }
.map-placeholder { display: flex; align-items: center; justify-content: center; gap: 35px; min-height: 250px; }
.map-placeholder > div { max-width: 560px; }
.map-placeholder h3 { margin-bottom: 10px; }
.map-placeholder p { font-size: .85rem; color: var(--muted); }
.map-pin { font-size: 5rem; color: var(--petrol); line-height: 1; }
.map-placeholder .actions { margin-top: 18px; }
#map-container iframe { display: block; width: 100%; height: 380px; border: 0; border-radius: 3px; background: var(--sage); }
#map-status { margin: 15px 0 0; }
#map-status:empty { display: none; }
#unload-map { margin-top: 10px; font-size: .76rem; }
.partnership { display: flex; align-items: center; gap: 35px; border-block: 1px solid var(--line); padding-block: 27px; margin-top: 32px; }
.partnership .eyebrow { flex-shrink: 0; margin: 0; color: var(--petrol); }
.partnership p { margin: 0; font-size: .85rem; color: var(--muted); }
.partnership a { flex-shrink: 0; font-size: .77rem; }

.faq-section { border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
summary { cursor: pointer; padding: 20px 30px 20px 0; position: relative; font-size: .95rem; }
summary::marker { color: var(--petrol); }
details[open] > summary { color: var(--petrol); font-weight: 500; }
.faq-list details p { font-size: .89rem; color: var(--muted); padding: 0 15px 12px 0; }

.final-cta { background: radial-gradient(ellipse at 15% 90%, #DCE8E0 0, transparent 60%), linear-gradient(135deg, #F5F4EC, #FBFAF7 50%, #E7E6D9); border-block: 1px solid var(--line); }
.final-cta-inner { text-align: center; }
.final-cta p:not(.eyebrow) { max-width: 480px; margin-inline: auto; color: var(--muted); }
.final-cta small { display: block; margin: 22px auto 0; max-width: 460px; color: var(--muted); font-size: .72rem; }

.site-footer { padding: 55px 0 25px; background: var(--navy); color: var(--sage); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.2fr .75fr; gap: 45px; }
.brand--footer { color: var(--ivory); align-self: start; }
.brand--footer .brand-symbol { color: var(--sage); }
.footer-grid p { font-size: .74rem; line-height: 1.9; }
.footer-grid nav { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid nav a { font-size: .78rem; padding-block: 4px; }
.site-footer :focus-visible { outline-color: var(--champagne); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 15px; padding-top: 25px; margin-top: 30px; border-top: 1px solid rgb(220 232 224 / 20%); }
.footer-bottom p { font-size: .7rem; margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 25px; }
.footer-bottom a { font-size: .7rem; }
.footer-disclaimer { font-size: .66rem; opacity: .85; margin: 22px 0 0; max-width: 850px; }

/* Conteúdo visível mesmo sem JS, com falha de observador ou com classes legadas. */
[data-reveal], .reveal { opacity: 1; visibility: visible; transform: none; }
[data-reveal].is-visible, [data-reveal].is-in, [data-reveal].in,
.reveal.is-visible, .reveal.is-in, .reveal.in { opacity: 1; visibility: visible; transform: none; }
@keyframes gentle-entry {
  from { transform: translateY(12px); }
  to { transform: translateY(0); }
}
@media (prefers-reduced-motion: no-preference) {
  [data-reveal].reveal-animate { animation: gentle-entry .65s ease both; }
}

.legal-main { padding-block: 70px 95px; }
.legal-document { max-width: 780px; }
.legal-document h1 { font-size: clamp(2.7rem, 5vw, 4rem); }
.legal-document h2 { font-size: 1.75rem; letter-spacing: -.02em; margin-top: 38px; margin-bottom: 17px; }
.legal-document p, .legal-document li { font-size: .95rem; }
.legal-document li { margin-bottom: 10px; }
.legal-document ul { padding-left: 22px; }
.document-notice { padding: 18px 22px; border-left: 3px solid var(--champagne); background: #EEF1EB; font-size: .83rem !important; }
.legal-header-nav { font-size: .83rem; padding-block: 12px; }
.error-main { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.error-code { font-family: var(--serif); color: var(--muted); font-size: 5rem; line-height: 1; margin-bottom: 25px; }
.error-main .actions { justify-content: center; }

@media (min-width: 981px) {
  .menu-toggle { display: none; }
}
@media (max-width: 1100px) {
  .main-nav { gap: 15px; }
  .brand-name { font-size: 1.25rem; }
  .hero-grid { gap: 35px; }
  .book-card { padding: 21px 18px 21px 23px; }
  .shelf-row { gap: 35px 22px; }
}
@media (max-width: 980px) {
  .container { width: min(var(--container), calc(100% - 48px)); }
  .section { padding-block: 78px; }
  .header-inner { flex-wrap: wrap; min-height: 90px; padding-block: 18px; gap: 15px; }
  .main-nav { width: 100%; flex-wrap: wrap; gap: 12px 25px; padding-top: 12px; border-top: 1px solid var(--line); }
  .site-header.nav-enhanced .menu-toggle { display: inline-flex; align-items: center; gap: 12px; }
  .site-header.nav-enhanced .main-nav:not(.is-open) { display: none; }
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 30px; }
  .hero h1 { font-size: clamp(2.8rem, 5.5vw, 4rem); }
  .hero .lead { font-size: 1rem; }
  .hero-copy > p:not(.eyebrow, .lead) { font-size: .88rem; }
  .hero-portrait figcaption { padding: 20px; flex-direction: column; align-items: flex-start; }
  .hero-portrait figcaption small { text-align: left; }
  .portrait-frame { border-top-left-radius: 110px; }
  .about-grid, .review-grid, .faq-grid { gap: 45px; }
  .shelf-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .book-title { font-size: 2rem; }
  .shelf[data-mode="open"] .shelf-stage { grid-template-columns: 250px minmax(0, 1fr); gap: 30px; }
  .shelf[data-mode="open"] .book-card { width: 250px; height: 375px; }
  .book-panel { padding: 28px; }
  .capilar-grid { gap: 45px; }
  .steps { gap: 25px; }
  .locations-grid { grid-template-columns: 1fr; }
  .location-card { padding: 28px; }
  .location-card .text-link { margin-top: 12px; }
  .partnership { flex-wrap: wrap; gap: 15px 25px; }
  .partnership p { flex: 1 1 60%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-grid > .brand { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .section { padding-block: 62px; }
  .hero { padding-top: 38px; }
  .hero-grid, .about-grid, .capilar-grid, .review-grid, .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero h1 { font-size: clamp(3rem, 9.7vw, 4.6rem); }
  .hero-copy > p:not(.eyebrow, .lead) { font-size: .95rem; }
  .hero .lead { font-size: 1.1rem; }
  .hero-portrait { width: min(100%, 480px); margin-inline: auto; }
  .hero-portrait figcaption { flex-direction: row; align-items: center; }
  .hero-portrait figcaption small { text-align: right; }
  .trust-inner { align-items: flex-start; flex-direction: column; gap: 12px; }
  .section-heading { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
  .section-heading > p { max-width: 500px; }
  .shelf-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 22px; padding-inline: 0 7px; }
  .book-card { padding: 21px 18px 20px 23px; }
  .book-title { font-size: clamp(1.55rem, 5vw, 2.2rem); margin-top: 22px; }
  .book-top { font-size: .52rem; }
  .book-bottom { font-size: .68rem; }
  .shelf[data-mode="open"] .shelf-stage { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .shelf[data-mode="open"] .shelf-row { display: flex; justify-content: center; padding: 10px 0 18px; }
  .shelf[data-mode="open"] .book-card { width: min(230px, 60vw); height: auto; aspect-ratio: 2 / 3; flex-shrink: 0; }
  .shelf[data-mode="open"] .book-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .book-panel { padding: 26px 22px; }
  .book-panel .button { width: 100%; }
  .summary-grid { grid-template-columns: 1fr; gap: 15px; }
  .capilar-illustration { max-width: 270px; }
  .capilar-grid { gap: 45px; }
  .steps { grid-template-columns: 1fr; gap: 22px; }
  .steps li { position: relative; padding: 24px 0 0 64px; }
  .step-number { position: absolute; left: 0; top: 21px; font-size: 2rem; }
  .quote-card { padding: 32px 26px; }
  .map-shell { padding: 23px; }
  .map-placeholder { flex-direction: column; align-items: flex-start; gap: 15px; }
  .map-pin { font-size: 3rem; }
  #map-container iframe { height: 320px; }
  .partnership { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > .brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 380px) {
  .container { width: calc(100% - 32px); }
  .brand-name { font-size: 1.15rem; }
  .brand-symbol { font-size: 2.4rem; }
  .brand { gap: 10px; }
  .menu-toggle { font-size: .76rem; padding-inline: 10px; }
  .book-card { padding: 17px 12px 18px 18px; }
  .book-title { font-size: 1.45rem; }
  .book-top { font-size: .46rem; letter-spacing: .07em; }
  .book-bottom { font-size: .6rem; }
  .hero-portrait figcaption { padding: 18px; }
  .hero-portrait figcaption > span { font-size: 1.15rem; }
  .hero-portrait figcaption small { font-size: .6rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .book-card:hover, .book-card.is-selected, .book-card.selected { transform: none; }
}
@media (forced-colors: active) {
  .button, .book-card, .book-panel, .location-card { border: 1px solid ButtonText; }
  .book-art { display: none; }
}
