/* Patrícia Vanzan — etapa 1
   CSS sem build, sem bibliotecas, sem regras essenciais dentro de @layer.
   Estados JS preparados para a etapa 2, com conteúdo legível por padrão. */

:root {
  --ink-950: #17141C;
  --ink-900: #221C2B;
  --ink-800: #302536;
  --ink-700: #403048;

  --plum: #6B3F87;
  --plum-deep: #4A2A63;
  --plum-light: #7B4B9E;
  --wine: #583343;
  --wine-deep: #39222E;

  --champagne: #D4B896;
  --gold: #C9A66B;
  --gold-light: #EAD8BE;
  --gold-deep: #997643;
  --metal: linear-gradient(115deg, #997643 0%, #C9A66B 38%, #EAD8BE 68%, #AD8B57 100%);
  --metal-on-light: linear-gradient(115deg, #63471F 0%, #80602F 38%, #65431F 68%, #735029 100%);

  --paper: #F5F1EA;
  --paper-clean: #FBFAF7;
  --paper-deep: #E8DFD1;
  --text: #F5F1EA;
  --text-muted: #CDC2CC;
  --text-on-light: #2B2230;
  --muted-on-light: #625568;
  --line: rgba(212, 184, 150, .3);

  --signature: linear-gradient(130deg, #4A2A63 0%, #583343 48%, #C3A583 100%);
  --soft: linear-gradient(130deg, #FBFAF7 0%, #F0EBF4 57%, #EDE4D8 100%);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(52px, 6vw, 88px);
  --gap: clamp(24px, 4vw, 58px);
  --header-height: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

@supports (color: oklch(0.5 0.1 300)) {
  :root {
    --signature: linear-gradient(
      130deg,
      oklch(0.34 0.09 310) 0%,
      oklch(0.37 0.055 350) 48%,
      oklch(0.73 0.058 76) 100%
    );
    --soft: linear-gradient(
      130deg,
      oklch(0.985 0.004 91.4) 0%,
      oklch(0.953 0.019 307) 57%,
      oklch(0.929 0.022 77) 100%
    );
    --paper-clean: oklch(0.985 0.004 91.4);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink-950);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

button,
input,
select,
textarea {
  font-size: inherit;
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
a,
summary {
  touch-action: manipulation;
}

button {
  color: inherit;
}

button,
input,
select,
textarea {
  border-radius: 0;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  max-width: 62ch;
  margin-bottom: 1em;
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .99;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 5.4vw, 80px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(43px, 4.45vw, 66px);
}

h3 {
  font-weight: 550;
}

h1 em,
h2 em {
  display: inline;
  font-weight: 400;
  color: var(--gold-light);
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

address {
  font-style: normal;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

::selection {
  background: var(--plum-deep);
  color: var(--paper);
}

[hidden] {
  display: none !important;
}

.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--paper);
  color: var(--ink-950);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flip {
  transform: rotate(180deg);
}

.section,
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--section-space);
  isolation: isolate;
}

.section-dark {
  color: var(--text);
  background: var(--ink-950);
  --local-muted: var(--text-muted);
  --local-line: var(--line);
}

.section-paper,
.section-soft {
  color-scheme: light;
  color: var(--text-on-light);
  --local-muted: var(--muted-on-light);
  --local-line: rgba(153, 118, 67, .3);
}

.section-paper {
  background: var(--paper-clean);
}

.section-soft {
  background: var(--soft);
}

.section-paper h2 em,
.section-soft h2 em {
  background-image: var(--metal-on-light);
}

.section-dark::before,
.signature-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23F5F1EA' filter='url(%23n)' opacity='.85' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
}

.signature-gradient {
  background: var(--signature);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  max-width: none;
  color: inherit;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.6;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  flex: 0 0 30px;
  background: var(--metal);
}

.section-no {
  color: var(--local-muted, var(--text-muted));
  font-size: 12px;
  font-weight: 450;
  letter-spacing: .05em;
  font-variant-numeric: tabular-nums;
}

.section-heading {
  margin-bottom: clamp(30px, 4vw, 54px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: var(--gap);
}

.heading-aside {
  max-width: 39ch;
  margin: 0 0 3px auto;
  color: var(--local-muted);
}

.heading-aside p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.6;
}

.microcopy,
.pending-note,
.privacy-microcopy {
  font-size: 14px;
  line-height: 1.6;
}

.microcopy {
  color: var(--local-muted, var(--text-muted));
}

.pending-note {
  color: var(--local-muted, var(--text-muted));
  margin-top: 20px;
  margin-bottom: 0;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.3;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

.button .icon {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}

.button-gold {
  color: #241C22;
  background: var(--metal);
  box-shadow: 0 6px 20px rgba(23, 20, 28, .12), inset 0 1px 0 rgba(245, 241, 234, .5);
  overflow: hidden;
}

.button-gold::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -50%;
  width: 30%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(245, 241, 234, .35), transparent);
  pointer-events: none;
  transition: left .7s var(--ease);
}

.button-gold:hover::after {
  left: 125%;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  opacity: .6;
  transform: none;
}

.button:disabled::after {
  display: none;
}

.button-outline {
  background: transparent;
  border-color: var(--gold-deep);
  color: inherit;
}

.button-outline:hover {
  background: rgba(201, 166, 107, .1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 44px;
  width: fit-content;
  padding: 5px 0;
  border: 0;
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(201, 166, 107, .65);
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.text-link:hover {
  text-decoration-color: currentColor;
}

.text-link .icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 0;
  border: 1px solid var(--local-line, var(--line));
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 28px;
  line-height: 1;
  transition: background .25s, border-color .25s;
}

.icon-button:hover {
  background: rgba(201, 166, 107, .12);
  border-color: var(--gold);
}

/* Header: hauteur fixe, aucune position sticky/fixed. */

.site-header {
  position: relative;
  z-index: 20;
  height: var(--header-height);
  min-height: var(--header-height);
  padding-block: 0;
  background: var(--plum-deep);
  color: var(--paper);
  border-bottom: 1px solid rgba(212, 184, 150, .2);
}

.header-inner {
  width: min(1480px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.brand-name {
  white-space: nowrap;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: .005em;
  line-height: 1;
}

.brand-copy small {
  white-space: nowrap;
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 1.4vw, 23px);
  height: 100%;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  min-height: 44px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--metal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.main-nav a:hover::after,
.main-nav a.is-active::after,
.main-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-cta {
  min-height: 44px;
  padding: 12px 17px;
  font-size: 12px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 9px;
  border: 1px solid rgba(212, 184, 150, .45);
  border-radius: 3px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.nav-toggle span {
  width: 23px;
  height: 1px;
  background: var(--metal);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 22px var(--gutter) max(28px, env(safe-area-inset-bottom));
  background: linear-gradient(140deg, var(--plum-deep), var(--ink-950) 70%);
  color: var(--paper);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  transition: opacity .3s, visibility .3s;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
}

.mobile-menu-brand {
  font-family: var(--display);
  font-size: 29px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding-block: 18px;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  padding-block: 7px;
  font-family: var(--display);
  font-size: clamp(28px, 5.5vw, 43px);
  line-height: 1.2;
  opacity: 1;
  transform: none;
}

.mobile-menu nav a span {
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 11px;
}

.mobile-menu.is-open nav a {
  animation: menu-entry .45s var(--ease) both;
}

.mobile-menu nav a:nth-child(2) { animation-delay: .04s; }
.mobile-menu nav a:nth-child(3) { animation-delay: .08s; }
.mobile-menu nav a:nth-child(4) { animation-delay: .12s; }
.mobile-menu nav a:nth-child(5) { animation-delay: .16s; }
.mobile-menu nav a:nth-child(6) { animation-delay: .2s; }
.mobile-menu nav a:nth-child(7) { animation-delay: .24s; }

.mobile-menu > p {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* Hero */

.hero {
  overflow: hidden;
  padding-top: clamp(38px, 4vw, 62px);
  padding-bottom: 30px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(23, 20, 28, .43), rgba(23, 20, 28, .14) 55%, transparent 78%);
}

.hero-gridlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .14;
  background-image: linear-gradient(rgba(234, 216, 190, .3) 1px, transparent 1px), linear-gradient(90deg, rgba(234, 216, 190, .3) 1px, transparent 1px);
  background-size: 104px 104px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #17141C);
  mask-image: linear-gradient(90deg, transparent, #17141C);
}

.hero-monogram {
  position: absolute;
  right: -1%;
  top: -10%;
  font-family: var(--display);
  font-size: clamp(500px, 58vw, 860px);
  font-weight: 400;
  line-height: 1;
  color: rgba(245, 241, 234, .055);
  pointer-events: none;
  z-index: -1;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: center;
  gap: clamp(28px, 4.2vw, 68px);
}

.hero-copy {
  min-width: 0;
}

.hero .eyebrow {
  max-width: 54ch;
  margin-bottom: 26px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: .12em;
}

.hero-overline {
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 14px;
}

.hero-description {
  max-width: 44ch;
  margin-bottom: 28px;
  font-size: clamp(16px, 1.25vw, 18px);
  color: var(--paper);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 30px;
  margin-top: clamp(26px, 3vw, 42px);
  padding-top: 22px;
  border-top: 1px solid rgba(234, 216, 190, .28);
}

.award-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}

.award-proof > .icon {
  width: 29px;
  height: 29px;
  flex-basis: 29px;
  color: var(--gold-light);
}

.award-proof strong,
.google-proof strong {
  font-size: 13px;
  font-weight: 600;
}

.award-proof small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.google-proof {
  min-height: 44px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 12px;
}

.rating-stars {
  color: var(--gold-light);
  letter-spacing: .18em;
  font-size: 12px;
}

.google-proof small {
  margin-left: 6px;
  color: var(--text-muted);
  font-size: 12px;
}

.hero-portrait {
  position: relative;
  width: 100%;
  max-width: 510px;
  margin-left: auto;
  padding-top: 12px;
}

.portrait-frame {
  position: relative;
  padding: 9px;
  border: 1px solid rgba(234, 216, 190, .65);
  border-radius: 150px 150px 3px 3px;
  background: rgba(23, 20, 28, .1);
  box-shadow: 22px 32px 64px rgba(23, 20, 28, .24);
}

.portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: .85;
  object-fit: cover;
  object-position: 50% 46%;
  border-radius: 142px 142px 0 0;
  /* Retrato original: sem parallax, sem transformação cromática invasiva. */
}

.portrait-seal {
  position: absolute;
  left: -28px;
  bottom: 94px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 22px;
  border: 1px solid rgba(212, 184, 150, .55);
  background: var(--ink-900);
  box-shadow: 0 12px 34px rgba(23, 20, 28, .2);
}

.portrait-seal > .icon {
  width: 30px;
  height: 30px;
  color: var(--champagne);
}

.portrait-seal span {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.05;
}

.hero-portrait figcaption {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-top: 16px;
  font-size: 11px;
  color: #291F28;
  font-weight: 550;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  font-size: 12px;
  color: var(--paper);
}

.hero-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  color: #291F28;
  font-weight: 600;
}

/* Faixa: overflow limitado ao próprio componente. */

.marquee {
  width: 100%;
  overflow: hidden;
  padding-block: 17px;
  background: var(--ink-950);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-travel 42s linear infinite;
}

.marquee-track > span {
  display: block;
  flex: 0 0 auto;
  white-space: nowrap;
  padding-right: 24px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(22px, 2.3vw, 31px);
  font-weight: 400;
}

.marquee b {
  margin-inline: 22px;
  color: var(--champagne);
  font-size: 14px;
  font-weight: 400;
  vertical-align: middle;
}

/* A profissional */

.professional-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.atelier-composition {
  position: relative;
  padding-right: 25px;
  padding-bottom: 24px;
}

.atelier-photo {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(153, 118, 67, .45);
  background: var(--paper);
}

.atelier-photo img {
  width: 100%;
  height: clamp(340px, 33vw, 445px);
  object-fit: cover;
  object-position: center;
}

.atelier-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px 3px;
  font-size: 12px;
  color: var(--muted-on-light);
}

.atelier-note {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 195px;
  padding: 24px;
  background: var(--plum-deep);
  color: var(--paper);
  box-shadow: 0 12px 28px rgba(48, 37, 54, .12);
}

.atelier-note .icon {
  color: var(--gold-light);
  margin-bottom: 14px;
}

.atelier-note p {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.05;
}

.atelier-note em {
  color: var(--gold-light);
}

.professional-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted-on-light);
}

.professional-copy h2 {
  margin-bottom: 20px;
}

.values-list {
  display: grid;
  gap: 16px;
  margin-top: 25px;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.values-list .icon {
  margin-top: 3px;
  color: var(--gold-deep);
  stroke: url(#metal-stroke);
}

.values-list h3 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 650;
}

.values-list p {
  margin: 0;
  font-size: 14px;
  color: var(--muted-on-light);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
  padding-top: 27px;
  position: relative;
}

.stats-row::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--metal);
  opacity: .65;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat strong {
  color: var(--plum-deep);
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 43px);
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.stat span {
  max-width: 16ch;
  font-size: 12px;
  color: var(--muted-on-light);
  line-height: 1.5;
}

/* Estante */

.treatments-section {
  overflow: hidden;
}

.shelf-instruction {
  font-size: 13px;
  color: var(--plum-deep);
}

.shelf-instruction span {
  font-size: 20px;
  margin-right: 5px;
}

.shelf {
  width: 100%;
  position: relative;
  padding-inline: 13px;
}

.shelf-stage {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: clamp(10px, 1.4vw, 22px);
  width: 100%;
  min-height: 310px;
  padding: 35px 4px 30px;
  perspective: 1500px;
}

.book-card {
  --r: 0deg;
  --yaw: -10deg;
  --hover-y: 0px;
  --detail-yaw: -4deg;
  --detail-pitch: 0deg;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  padding: 0;
  border: 0;
  border-radius: 3px 7px 7px 3px;
  background: transparent;
  transform-style: preserve-3d;
  transform: translateY(var(--hover-y)) rotate(var(--r));
  transition: transform .55s var(--ease);
  isolation: isolate;
}

.book-card:nth-child(1) { --r: -4deg; --yaw: -12deg; }
.book-card:nth-child(2) { --r: -2.5deg; --yaw: -10deg; }
.book-card:nth-child(3) { --r: -1deg; --yaw: -8deg; }
.book-card:nth-child(4) { --r: .5deg; --yaw: -7deg; }
.book-card:nth-child(5) { --r: 2deg; --yaw: -9deg; }
.book-card:nth-child(6) { --r: 3deg; --yaw: -11deg; }
.book-card:nth-child(7) { --r: 4.5deg; --yaw: -12deg; }

.book {
  position: absolute;
  inset: 0;
  display: block;
  transform-style: preserve-3d;
  transform: rotateY(var(--yaw));
  transition: transform .55s var(--ease);
}

.book-shadow,
.book-back,
.page-block,
.page-fan,
.front-cover {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 3px 7px 7px 3px;
  transform-origin: 1.5% center;
}

.book-shadow {
  transform: translate3d(8px, 13px, -22px);
  background: rgba(23, 20, 28, .16);
  box-shadow: 12px 14px 22px rgba(23, 20, 28, .17);
  filter: blur(5px);
}

.book-back {
  background: var(--cover-color);
  transform: translate3d(2px, 0, -15px);
  border: 1px solid rgba(212, 184, 150, .35);
}

.page-block {
  inset: 1.9% 1.5% 1.9% 4.4%;
  transform: translate3d(6px, 1px, -10px);
  background: repeating-linear-gradient(90deg, #D4C8B5 0 1px, #EFE7DA 1px 3px);
  box-shadow: inset 5px 0 8px rgba(76, 53, 37, .16);
}

.page-fan {
  inset: 2% 2% 2% 4%;
  transform: translateZ(-5px);
  transform-style: preserve-3d;
}

.page-fan i {
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 2px 5px 5px 2px;
  transform-origin: left center;
  background: #E9E0D0;
  border-right: 1px solid #BAAA91;
  transition: transform .55s var(--ease);
}

.front-cover {
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 18px);
  background-color: var(--cover-color);
  background-image: var(--cover-img);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(234, 216, 190, .26);
  box-shadow: inset 5px 0 8px rgba(23, 20, 28, .3), inset -1px 0 0 rgba(234, 216, 190, .3);
  transition: transform .65s var(--ease), box-shadow .65s var(--ease);
}

.front-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(245, 241, 234, .17), transparent 7%, rgba(23, 20, 28, .18) 9%, transparent 13%, transparent 65%, rgba(245, 241, 234, .08));
}

.front-cover::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4.5%;
  width: 1px;
  background: rgba(234, 216, 190, .25);
}

.shelf-base {
  position: relative;
  height: 12px;
  border-top: 1px solid #B79665;
  background: linear-gradient(180deg, #5B4154, #302536);
  box-shadow: 0 13px 19px rgba(55, 37, 52, .18);
}

.shelf-base::after {
  content: "";
  position: absolute;
  inset: auto 4% -12px;
  height: 12px;
  background: linear-gradient(180deg, rgba(55, 37, 52, .12), transparent);
}

.book-panel {
  display: none;
  position: relative;
  min-width: 0;
  padding: 30px clamp(24px, 3vw, 44px);
  background: rgba(251, 250, 247, .79);
  border: 1px solid rgba(153, 118, 67, .35);
  box-shadow: 0 22px 60px rgba(48, 37, 54, .06);
}

.book-panel-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.book-panel .eyebrow {
  padding-right: 35px;
  font-size: 10px;
}

.book-panel h3 {
  max-width: 20ch;
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.06;
}

.book-panel > p:not(.eyebrow) {
  color: var(--muted-on-light);
}

.book-panel-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 24px;
  font-size: 14px;
}

.book-panel-list li {
  position: relative;
  padding-left: 20px;
}

.book-panel-list li::before {
  content: "";
  position: absolute;
  top: .73em;
  left: 0;
  width: 9px;
  height: 1px;
  background: var(--metal);
}

.book-panel > .microcopy {
  margin: 16px 0 0;
  font-size: 13px;
}

.shelf[data-mode="detail"] .shelf-stage {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 80px);
  padding: 25px clamp(5px, 2vw, 28px);
  min-height: 470px;
}

.shelf[data-mode="detail"] .book-card:not(.selected) {
  display: none;
}

.shelf[data-mode="detail"] .book-card.selected {
  --r: 0deg;
  --hover-y: 0px;
  width: 100%;
  z-index: 3;
}

.shelf[data-mode="detail"] .book-card.selected .book {
  transform: rotateX(var(--detail-pitch)) rotateY(var(--detail-yaw));
}

.shelf[data-mode="detail"] .book-card.selected .front-cover {
  transform: translate3d(0, 0, 18px) rotateY(-29deg);
  box-shadow: 25px 26px 44px rgba(23, 20, 28, .22), inset 5px 0 8px rgba(23, 20, 28, .25), inset -1px 0 0 rgba(234, 216, 190, .35);
}

.shelf[data-mode="detail"] .selected .page-fan i:nth-child(1) { transform: rotateY(-4deg); }
.shelf[data-mode="detail"] .selected .page-fan i:nth-child(2) { transform: rotateY(-8deg); }
.shelf[data-mode="detail"] .selected .page-fan i:nth-child(3) { transform: rotateY(-12deg); }
.shelf[data-mode="detail"] .selected .page-fan i:nth-child(4) { transform: rotateY(-16deg); }

.shelf[data-mode="detail"] .book-panel[aria-hidden="false"] {
  display: block;
  animation: panel-entry .45s var(--ease) both;
}

.shelf[data-mode="detail"] .shelf-base {
  opacity: .5;
}

.shelf-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
}

.shelf-bottom p {
  max-width: 88ch;
  margin: 0;
  color: var(--muted-on-light);
  font-size: 13px;
}

.shelf-mobile-hint {
  display: none;
  color: var(--plum-deep);
  font-size: 12px;
  white-space: nowrap;
}

.treatment-reader {
  margin-top: 17px;
  color: var(--muted-on-light);
  font-size: 14px;
}

.treatment-reader summary {
  width: fit-content;
  min-height: 44px;
  padding-block: 10px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.treatment-text-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 22px;
}

.treatment-text-grid h3 {
  margin: 0 0 9px;
  color: var(--text-on-light);
  font-size: 16px;
}

.treatment-text-grid p {
  margin: 0;
}

/* Caderno: leitura completa antes da inicialização do iframe. */

.method-section {
  overflow: hidden;
}

.sketchbook-host {
  width: min(930px, 100%);
  margin-inline: auto;
  position: relative;
}

.sketchbook-reader {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding: 9px;
  border-radius: 5px 11px 11px 5px;
  background: var(--wine-deep);
  border: 1px solid rgba(153, 118, 67, .45);
  box-shadow: 0 26px 45px rgba(48, 37, 54, .13), 0 4px 0 #4B3344;
}

.journal-cover-edge {
  position: absolute;
  inset: 5px -3px -4px;
  z-index: -1;
  border: 1px solid #896B77;
  border-radius: inherit;
}

.journal-page {
  position: relative;
  min-width: 0;
  min-height: 350px;
  padding: clamp(23px, 3vw, 40px);
  background-color: #EFE6D6;
  background-image: repeating-linear-gradient(0deg, rgba(139, 111, 73, .025) 0 1px, transparent 1px 4px);
  color: #342A31;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.journal-page-left {
  border-radius: 2px 0 0 2px;
  box-shadow: inset -18px 0 28px -23px rgba(64, 41, 34, .7);
}

.journal-page-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 4px 4px 0;
  box-shadow: inset 18px 0 28px -23px rgba(64, 41, 34, .7);
}

.journal-kicker {
  margin: 0 0 18px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.journal-small-line {
  display: block;
  width: 44px;
  height: 1px;
  margin-bottom: 22px;
  background: var(--metal);
}

.journal-page-left h3 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 500;
  line-height: 1.04;
}

.journal-page-left > p:not(.journal-kicker):not(.journal-signature) {
  max-width: 35ch;
  font-size: 14px;
  color: #60514D;
}

.journal-signature {
  margin: 20px 0 34px;
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--wine);
}

.journal-folio {
  position: absolute;
  bottom: 22px;
  left: clamp(23px, 3vw, 40px);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #65554C;
}

.journal-art {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 190px;
}

.journal-art svg {
  width: 100%;
  height: auto;
}

.study-note {
  position: absolute;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 18px);
  color: #5C3D52;
}

.note-one {
  top: 4%;
  left: 3%;
  transform: rotate(-6deg);
}

.note-two {
  bottom: 4%;
  right: 0;
  transform: rotate(-3deg);
}

.journal-caption {
  position: relative;
  margin-top: 20px;
  padding-top: 18px;
}

.journal-caption::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--metal);
}

.journal-caption .journal-kicker {
  margin-bottom: 7px;
}

.journal-caption h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.05;
}

.journal-caption > p:last-child {
  margin: 0;
  color: #60514D;
  font-size: 13px;
}

.sketchbook-frame {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  background: transparent;
}

.sketchbook-status {
  text-align: center;
  max-width: none;
  margin: 19px 0 0;
  font-size: 13px;
}

.sketchbook-host[data-state="ready"] .sketchbook-reader {
  display: none;
}

.method-fallback {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
  margin-top: 24px;
}

.method-fallback details {
  min-width: 0;
  border-top: 1px solid rgba(153, 118, 67, .4);
}

.method-fallback summary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 550;
}

.method-fallback summary::-webkit-details-marker {
  display: none;
}

.method-fallback summary > span {
  color: var(--plum-deep);
  font-family: var(--display);
  font-size: 24px;
}

.method-fallback summary .icon {
  margin-left: auto;
  width: 15px;
  height: 15px;
  flex-basis: 15px;
  transform: rotate(90deg);
  transition: transform .25s;
}

.method-fallback details[open] summary .icon {
  transform: rotate(-90deg);
}

.method-fallback details > p {
  font-size: 14px;
  color: var(--muted-on-light);
  margin: 0 0 14px;
}

/* Depoimentos.
   Sem data-enhanced=true, todos são visíveis.
   Etapa 2: definir data-enhanced="true", desocultar controles,
   mover track e tornar slides inativos inert/aria-hidden. */

.testimonials-section {
  background: linear-gradient(130deg, #221C2B, #302235);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(35px, 6vw, 90px);
}

.testimonials-intro > .microcopy {
  margin-top: 23px;
  max-width: 42ch;
}

.google-rating-card {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.google-rating-number {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--display);
  font-size: 53px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.google-rating-number > span {
  font-family: var(--sans);
  font-size: 22px;
  color: var(--champagne);
}

.google-rating-card strong,
.google-rating-card small {
  display: block;
}

.google-rating-card strong {
  font-size: 13px;
  font-weight: 600;
}

.google-rating-card small {
  font-size: 11px;
  margin-top: 5px;
  color: var(--text-muted);
}

.google-rating-card > .icon {
  width: 19px;
  height: 19px;
  flex-basis: 19px;
  color: var(--champagne);
}

.testimonials-slider,
.tst-viewport {
  min-width: 0;
  max-width: 100%;
}

.tst-viewport {
  overflow: hidden;
}

.tst-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.tst-slide {
  position: relative;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(245, 241, 234, .025);
}

.quote-mark {
  display: block;
  height: 34px;
  color: var(--champagne);
  font-family: var(--display);
  font-size: 70px;
  line-height: 1;
}

.tst-slide blockquote p {
  margin: 14px 0 24px;
  font-family: var(--display);
  font-size: clamp(23px, 2.3vw, 32px);
  line-height: 1.25;
  font-weight: 400;
}

.tst-slide figcaption {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.reviewer-monogram {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 184, 150, .5);
  border-radius: 50%;
  font-family: var(--display);
  color: var(--gold-light);
  font-size: 18px;
}

.tst-slide figcaption strong {
  display: block;
  font-size: 14px;
  font-weight: 550;
}

.tst-slide figcaption small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.review-stars {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--champagne);
}

.testimonials-slider[data-enhanced="true"] .tst-track {
  flex-direction: row;
  gap: 0;
  align-items: stretch;
  transition: transform .55s var(--ease);
}

.testimonials-slider[data-enhanced="true"] .tst-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.testimonials-slider[data-enhanced="true"] .tst-slide figcaption {
  margin-top: auto;
}

.tst-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 24px;
}

.tst-controls .icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.tst-dots {
  display: flex;
}

.tst-dots button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
}

.tst-dots button > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8F8192;
  transition: width .3s, background .3s;
}

.tst-dots button[aria-current="true"] > span {
  width: 22px;
  border-radius: 8px;
  background: var(--metal);
}

/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: var(--gap);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 36ch;
  color: var(--muted-on-light);
}

.faq-intro > .text-link {
  margin-top: 10px;
}

.faq-item {
  position: relative;
  border: 0;
}

.faq-item::before,
.faq-item:last-child::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--metal);
  opacity: .6;
}

.faq-item:last-child::after {
  inset: auto 0 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 67px;
  padding: 19px 0;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 550;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  background: var(--metal);
}

.faq-plus::before {
  left: 2px;
  right: 2px;
  top: 9px;
  height: 1px;
}

.faq-plus::after {
  top: 2px;
  bottom: 2px;
  left: 9px;
  width: 1px;
  transition: transform .25s;
}

.faq-item[open] .faq-plus::after {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 36px 22px 0;
}

.faq-answer p {
  margin: 0;
  font-size: 14px;
  color: var(--muted-on-light);
}

.faq-item[open] .faq-answer {
  animation: answer-entry .3s var(--ease);
}

/* Mentoria */

.mentoring-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.mentoring-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted-on-light);
}

.mentoring-topics {
  display: grid;
  gap: 0;
  margin: 25px 0 20px;
}

.mentoring-topics li {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 54px;
  padding-block: 12px;
  border-top: 1px solid rgba(153, 118, 67, .3);
  font-size: 14px;
}

.mentoring-topics li:last-child {
  border-bottom: 1px solid rgba(153, 118, 67, .3);
}

.mentoring-topics li span {
  color: var(--plum);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.mentoring-copy > .button {
  margin-top: 9px;
}

.mentoring-image {
  position: relative;
  padding: 10px;
  background: var(--plum-deep);
  border: 1px solid rgba(153, 118, 67, .45);
  box-shadow: 16px 20px 0 rgba(107, 63, 135, .07);
}

.mentoring-image img {
  width: 100%;
  height: clamp(350px, 37vw, 520px);
  object-fit: cover;
  object-position: center;
}

.mentoring-image figcaption {
  padding: 23px 16px 18px;
  color: var(--paper);
}

.mentoring-image figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.mentoring-image figcaption strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
}

/* Convite */

.invitation-section {
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 80%, rgba(107, 63, 135, .27), transparent 70%), var(--ink-950);
  text-align: center;
}

.invitation-monogram {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(470px, 60vw, 870px);
  line-height: 1;
  color: rgba(212, 184, 150, .045);
  pointer-events: none;
}

.invitation-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.invitation-content .eyebrow {
  justify-content: center;
}

.invitation-content h2 {
  font-size: clamp(51px, 6.3vw, 91px);
}

.invitation-content > p:not(.eyebrow) {
  max-width: 51ch;
  margin-bottom: 29px;
  color: var(--text-muted);
}

.invitation-signature {
  display: block;
  margin-top: 35px;
  color: var(--champagne);
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
}

/* Localização */

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, .73fr) minmax(0, 1.27fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

.location-info {
  padding: clamp(24px, 3vw, 38px);
  background: var(--paper);
  border: 1px solid rgba(153, 118, 67, .28);
}

.location-pin {
  width: 34px;
  height: 34px;
  color: var(--gold-deep);
  stroke: url(#metal-stroke);
  margin-bottom: 21px;
}

.location-info h3 {
  margin-bottom: 15px;
  font-family: var(--display);
  font-size: 33px;
  font-weight: 500;
}

.location-info address {
  color: var(--muted-on-light);
  font-size: 15px;
  line-height: 1.8;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-top: 26px;
}

.location-actions .button {
  min-height: 46px;
  padding: 12px 17px;
}

.copy-status:empty {
  display: none;
}

.copy-status {
  margin: 10px 0 0;
}

.location-hours {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(153, 118, 67, .35);
}

.location-hours > .icon {
  margin-top: 2px;
  color: var(--gold-deep);
  stroke: url(#metal-stroke);
}

.location-hours strong {
  font-size: 14px;
  font-weight: 600;
}

.location-hours p {
  margin: 7px 0 0;
  color: var(--muted-on-light);
  font-size: 14px;
}

.map-frame {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(153, 118, 67, .35);
  background: #E5DED6;
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  flex: 1;
  border: 0;
  color-scheme: light;
}

.map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 55px;
  padding: 15px 22px;
  background: var(--paper);
  font-size: 13px;
  font-weight: 550;
}

.map-caption .icon {
  width: 19px;
  height: 19px;
  flex-basis: 19px;
}

/* Contato */

.contact-section {
  overflow: hidden;
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(23, 20, 28, .4), rgba(23, 20, 28, .13) 70%, transparent);
}

.contact-section .heading-aside {
  color: var(--paper);
  padding: 17px 20px;
  border-left: 1px solid rgba(234, 216, 190, .65);
  background: rgba(23, 20, 28, .48);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: stretch;
}

.contact-form-card {
  padding: clamp(24px, 3.3vw, 44px);
  background: var(--paper-clean);
  color: var(--text-on-light);
  border: 1px solid rgba(234, 216, 190, .7);
  box-shadow: 0 20px 45px rgba(23, 20, 28, .13);
  color-scheme: light;
}

.contact-form-card h3 {
  margin: 0 0 9px;
  font-family: var(--display);
  font-size: 33px;
  font-weight: 500;
  line-height: 1.15;
}

.contact-form-card > p {
  margin-bottom: 25px;
  color: var(--muted-on-light);
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.field {
  min-width: 0;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
}

.field label > span:not(.optional) {
  color: var(--plum-deep);
}

.optional {
  font-weight: 400;
  color: var(--muted-on-light);
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #B4A397;
  border-radius: 3px;
  background: #F4EEE6;
  color: var(--text-on-light);
  padding: 14px 15px;
  font-size: 16px;
  line-height: 1.4;
  transition: border-color .25s, box-shadow .25s;
}

.field input,
.field select {
  height: 52px;
}

.field textarea {
  min-height: 106px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6E606D;
  opacity: 1;
  font-size: 14px;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(201, 166, 107, .1);
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  cursor: pointer;
  font-size: 14px;
}

.select-wrap > .icon {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 16px;
  height: 16px;
  color: var(--gold-deep);
  stroke: url(#metal-stroke);
  transform: rotate(90deg);
  pointer-events: none;
}

.select-wrap option {
  background: var(--paper-clean);
  color: var(--text-on-light);
}

.form-submit {
  width: 100%;
}

.form-status,
.privacy-microcopy {
  margin: -6px 0 0;
  max-width: none;
  color: var(--muted-on-light);
  font-size: 12px;
}

.form-status {
  font-size: 13px;
}

.contact-cards {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr auto;
  gap: 16px;
  min-width: 0;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: clamp(22px, 2.4vw, 32px);
  background: rgba(34, 28, 43, .94);
  color: var(--paper);
  border: 1px solid rgba(234, 216, 190, .45);
}

.contact-card-whatsapp {
  transition: background .3s, transform .3s var(--ease);
}

.contact-card-whatsapp:hover {
  background: var(--plum-deep);
  transform: translateY(-3px);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(212, 184, 150, .3);
  color: var(--champagne);
}

.contact-icon > .icon {
  stroke: url(#metal-stroke);
}

.contact-card > span:not(.contact-icon),
.contact-card > div {
  min-width: 0;
}

.contact-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .03em;
}

.contact-card strong {
  display: block;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  font-variant-numeric: tabular-nums;
}

.contact-card address {
  font-size: 14px;
  line-height: 1.75;
}

.contact-card span > span,
.contact-card div > span {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  color: var(--text-muted);
}

.contact-card-arrow {
  margin-left: auto;
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  color: var(--champagne);
}

.contact-instagram {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 80px;
  padding: 18px 22px;
  background: rgba(34, 28, 43, .94);
  border: 1px solid rgba(234, 216, 190, .45);
}

.contact-instagram > .icon {
  color: var(--champagne);
}

.contact-instagram > span {
  min-width: 0;
  font-size: 11px;
  color: var(--text-muted);
}

.contact-instagram strong {
  display: block;
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact-instagram > .icon:last-child {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  margin-left: auto;
}

/* Rodapé */

.site-footer {
  position: relative;
  padding: 62px 0 100px;
  background: var(--ink-950);
  color: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .95fr 1fr;
  gap: clamp(24px, 3vw, 44px);
}

.footer-brand-column > p {
  max-width: 35ch;
  margin-top: 23px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--gold-light);
  font-size: 12px;
}

.footer-grid h3 {
  margin: 5px 0 17px;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav a,
.footer-contact > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-services li {
  padding-block: 9px;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-contact address {
  margin: 10px 0 8px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.9;
}

.footer-contact > .footer-phone {
  color: var(--paper);
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-professional-note {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
}

.footer-professional-note p {
  max-width: none;
  margin: 0 0 5px;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 22px;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-bottom > p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a,
.webforge-credit {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.webforge-credit {
  gap: 6px;
}

.webforge-credit strong {
  color: var(--paper);
  font-weight: 600;
}

.webforge-credit .icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
  transform: rotate(-40deg);
}

/* Ações fixas independentes do header. */

.floating-actions {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 35;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.floating-whatsapp {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(234, 216, 190, .8);
  border-radius: 50%;
  background: var(--metal);
  color: var(--ink-950);
  box-shadow: 0 8px 25px rgba(23, 20, 28, .25);
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(212, 184, 150, .6);
  border-radius: 50%;
  pointer-events: none;
  animation: whatsapp-pulse 3.5s ease-out infinite;
}

.floating-whatsapp .icon {
  width: 27px;
  height: 27px;
}

.back-to-top {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--gold-light);
  border: 1px solid var(--line);
  box-shadow: 0 5px 18px rgba(23, 20, 28, .15);
}

.back-to-top .icon {
  width: 18px;
  height: 18px;
  transform: rotate(-90deg);
}

/* Progressive enhancement: nenhum conteúdo nasce oculto. */

.reveal,
.reveal.is-visible,
.reveal.is-in,
.reveal.in,
.is-visible,
.is-in,
.in {
  opacity: 1;
  visibility: visible;
}

.reveal {
  transform: none;
}

.reveal.is-visible,
.reveal.is-in,
.reveal.in {
  animation: reveal-mask .65s var(--ease) both;
}

.d1 { animation-delay: .08s; }
.d2 { animation-delay: .16s; }
.d3 { animation-delay: .24s; }

@keyframes marquee-travel {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes menu-entry {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes panel-entry {
  from { opacity: .3; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes answer-entry {
  from { opacity: .4; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-mask {
  from { clip-path: inset(0 0 9% 0); }
  to { clip-path: inset(0); }
}

@keyframes whatsapp-pulse {
  0%, 45%, 100% { transform: scale(1); opacity: 0; }
  55% { opacity: .6; }
  88% { transform: scale(1.25); opacity: 0; }
}

@media (hover: hover) and (pointer: fine) {
  .shelf[data-mode="browse"] .book-card:hover,
  .shelf[data-mode="browse"] .book-card:focus-visible {
    --hover-y: -20px;
    z-index: 5;
  }

  .shelf[data-mode="browse"] .book-card:hover .book {
    transform: rotateY(-4deg);
  }
}

/* Menu muda antes de qualquer quebra em 1280/1100/1024. */

@media (max-width: 1279px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    width: calc(100% - var(--gutter) * 2);
  }

  .hero h1 {
    font-size: clamp(51px, 5.5vw, 70px);
  }

  .hero-proof {
    gap: 17px;
  }

  .shelf-stage {
    min-height: 270px;
    gap: 13px;
  }

  .professional-grid {
    gap: 42px;
  }

  .stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .stat span {
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1.3fr .8fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr auto;
    gap: 20px;
    align-items: center;
  }

  .footer-contact h3,
  .footer-contact address {
    margin: 0;
  }
}

@media (max-width: 1024px) {
  :root {
    --gutter: 32px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
    gap: 27px;
  }

  .hero .eyebrow {
    font-size: 9px;
    gap: 8px;
  }

  .hero .eyebrow::before {
    width: 22px;
    flex-basis: 22px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .portrait-seal {
    left: -15px;
    padding: 14px 17px;
  }

  .portrait-seal span {
    font-size: 22px;
  }

  .hero-portrait figcaption {
    font-size: 10px;
  }

  .professional-copy h2,
  .faq-intro h2 {
    font-size: 48px;
  }

  .professional-grid,
  .mentoring-grid {
    gap: 35px;
  }

  .atelier-photo img {
    height: 420px;
  }

  .atelier-note {
    right: -3px;
  }

  .testimonials-layout {
    gap: 35px;
  }

  .google-rating-card {
    gap: 12px;
  }

  .google-rating-card > .icon {
    display: none;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  }

  .contact-card {
    padding: 23px 20px;
    gap: 12px;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .contact-card-arrow {
    display: none;
  }
}

/* Scroll-snap somente na estante, nunca no documento ou nas seções. */

@media (max-width: 900px) {
  .shelf {
    padding-inline: 0;
  }

  .shelf[data-mode="browse"] .shelf-stage {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-deep) transparent;
    padding: 30px 24px 40px;
    min-height: 355px;
  }

  .shelf[data-mode="browse"] .book-card {
    flex: 0 0 190px;
    width: 190px;
    scroll-snap-align: center;
    --r: 0deg;
    --yaw: -9deg;
  }

  .shelf[data-mode="detail"] .shelf-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 32px;
    min-height: 0;
    padding: 22px 12px;
    overflow: visible;
  }

  .shelf[data-mode="detail"] .book-card.selected {
    width: 230px;
    max-width: 78%;
  }

  .shelf[data-mode="detail"] .book-panel {
    width: 100%;
    max-height: none;
  }

  .shelf-mobile-hint {
    display: block;
  }

  .shelf-bottom {
    flex-direction: column;
    gap: 11px;
  }

  .treatment-text-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-fallback {
    gap: 12px;
  }

  .method-fallback summary {
    font-size: 13px;
  }
}

/* Hero empilha SOMENTE aqui. */

@media (max-width: 840px) {
  :root {
    --gutter: 26px;
    --section-space: 54px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 27px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero .eyebrow {
    font-size: 10px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(47px, 8vw, 66px);
    margin-bottom: 19px;
  }

  .hero-description {
    max-width: 54ch;
    margin-bottom: 21px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 8px 22px;
  }

  .hero-proof {
    margin-top: 22px;
    padding-top: 17px;
    gap: 16px 25px;
  }

  .hero-portrait {
    width: min(100%, 410px);
    margin-inline: auto;
    padding-top: 0;
  }

  .portrait-frame {
    border-radius: 105px 105px 3px 3px;
  }

  .portrait-frame img {
    aspect-ratio: 1.3;
    object-position: 50% 32%;
    border-radius: 99px 99px 0 0;
  }

  .portrait-seal {
    left: -15px;
    bottom: 50px;
    padding: 12px 16px;
  }

  .portrait-seal span {
    font-size: 20px;
  }

  .portrait-seal .icon {
    width: 24px;
    height: 24px;
  }

  .hero-portrait figcaption {
    margin-top: 10px;
  }

  .hero-bottom {
    margin-top: 18px;
  }

  .hero-bottom > span {
    font-size: 11px;
  }

  .professional-grid,
  .mentoring-grid,
  .testimonials-layout,
  .faq-layout,
  .location-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .professional-copy {
    order: -1;
  }

  .professional-copy h2,
  .faq-intro h2 {
    font-size: clamp(43px, 7vw, 58px);
  }

  .atelier-composition {
    width: min(100%, 540px);
    margin-inline: auto;
  }

  .atelier-photo img {
    height: 300px;
    object-position: center;
  }

  .values-list {
    gap: 14px;
  }

  .stats-row {
    margin-top: 30px;
  }

  .split-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 19px;
  }

  .heading-aside {
    max-width: 60ch;
    margin: 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .testimonials-intro h2 {
    margin-bottom: 15px;
  }

  .google-rating-card {
    margin-top: 22px;
    padding-block: 15px;
  }

  .testimonials-intro > .microcopy {
    max-width: 60ch;
    margin: 18px 0 0;
  }

  .tst-slide blockquote p {
    font-size: 28px;
  }

  .faq-layout {
    gap: 28px;
  }

  .faq-intro > p:not(.eyebrow) {
    max-width: 55ch;
  }

  .mentoring-grid {
    gap: 28px;
  }

  .mentoring-image {
    width: min(100%, 530px);
    margin-inline: auto;
  }

  .mentoring-image img {
    height: 310px;
  }

  .mentoring-image figcaption {
    padding: 17px 12px 13px;
  }

  .map-frame iframe {
    min-height: 330px;
    height: 330px;
  }

  .contact-cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: stretch;
  }

  .contact-card {
    min-height: 142px;
  }

  .contact-instagram {
    min-height: 142px;
  }

  .contact-instagram > .icon:last-child {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
  }

  .footer-contact {
    display: block;
    grid-column: auto;
  }

  .footer-contact h3 {
    margin-bottom: 14px;
  }

  .footer-contact address {
    margin-block: 10px;
  }
}

@media (max-width: 640px) {
  .journal-page {
    min-height: 315px;
    padding: 23px 20px;
  }

  .journal-page-left h3 {
    font-size: 31px;
  }

  .journal-page-left > p:not(.journal-kicker):not(.journal-signature) {
    font-size: 14px;
    line-height: 1.55;
  }

  .journal-kicker {
    font-size: 9px;
    letter-spacing: .1em;
  }

  .journal-signature {
    font-size: 23px;
  }

  .journal-caption h3 {
    font-size: 23px;
  }

  .journal-art {
    min-height: 160px;
  }

  .method-fallback {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
  }

  .contact-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-card,
  .contact-instagram {
    min-height: 110px;
  }

  .contact-card-arrow {
    display: block;
  }

  .contact-card strong {
    font-size: 20px;
  }

  .contact-instagram > .icon:last-child {
    display: block;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 20px;
    --section-space: 48px;
  }

  body {
    font-size: 15px;
  }

  h2 {
    font-size: clamp(42px, 9vw, 51px);
  }

  .eyebrow {
    gap: 9px;
    font-size: 9px;
    letter-spacing: .13em;
    margin-bottom: 19px;
  }

  .eyebrow::before {
    width: 23px;
    flex-basis: 23px;
  }

  .section-no {
    font-size: 10px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .brand-name {
    font-size: 25px;
  }

  .brand-copy small {
    font-size: 7.5px;
    letter-spacing: .09em;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .mobile-menu {
    padding-top: 15px;
  }

  .mobile-menu nav a {
    min-height: 49px;
    font-size: 31px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: .065em;
    gap: 7px;
    margin-bottom: 14px;
  }

  .hero .eyebrow::before {
    width: 17px;
    flex-basis: 17px;
  }

  .hero-overline {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(43px, 11.3vw, 59px);
    line-height: .98;
    margin-bottom: 17px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 17px;
  }

  .hero-actions {
    gap: 0 16px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
    padding: 14px 15px;
  }

  .hero-actions .text-link {
    min-height: 44px;
    font-size: 13px;
  }

  .hero-proof {
    margin-top: 10px;
    padding-top: 13px;
    align-items: center;
    gap: 10px 15px;
  }

  .award-proof {
    gap: 8px;
  }

  .award-proof > .icon {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
  }

  .award-proof strong {
    font-size: 11px;
  }

  .award-proof small {
    display: none;
  }

  .google-proof {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    min-height: 32px;
    gap: 6px;
    font-size: 11px;
  }

  .google-proof strong {
    font-size: 12px;
  }

  .google-proof small {
    font-size: 10px;
    margin-left: 3px;
  }

  .rating-stars {
    font-size: 9px;
    letter-spacing: .08em;
  }

  .hero-layout {
    gap: 17px;
  }

  .hero-portrait {
    width: min(100%, 350px);
  }

  .portrait-frame {
    padding: 6px;
    border-radius: 76px 76px 3px 3px;
  }

  .portrait-frame img {
    aspect-ratio: 1.7;
    border-radius: 71px 71px 0 0;
    object-position: 50% 29%;
  }

  .portrait-seal {
    left: 9px;
    bottom: 37px;
    gap: 8px;
    padding: 8px 12px;
  }

  .portrait-seal span {
    font-size: 17px;
  }

  .portrait-seal .icon {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }

  .hero-portrait figcaption {
    font-size: 9px;
    margin-top: 8px;
  }

  .hero-bottom {
    margin-top: 12px;
  }

  .hero-bottom > span {
    font-size: 10px;
    max-width: 20ch;
  }

  .hero-bottom a {
    font-size: 10px;
    gap: 8px;
  }

  .marquee {
    padding-block: 12px;
  }

  .marquee-track > span {
    font-size: 24px;
  }

  .marquee b {
    margin-inline: 15px;
    font-size: 11px;
  }

  .professional-grid {
    gap: 25px;
  }

  .professional-copy > p {
    font-size: 14px;
  }

  .professional-copy > .lead {
    font-size: 18px;
  }

  .values-list h3 {
    font-size: 14px;
  }

  .values-list p {
    font-size: 14px;
  }

  .atelier-composition {
    padding-right: 16px;
    padding-bottom: 18px;
  }

  .atelier-photo {
    padding: 7px;
  }

  .atelier-photo img {
    height: 215px;
  }

  .atelier-photo figcaption {
    font-size: 10px;
  }

  .atelier-note {
    width: 156px;
    padding: 16px;
  }

  .atelier-note .icon {
    width: 20px;
    height: 20px;
    margin-bottom: 9px;
  }

  .atelier-note p {
    font-size: 25px;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px;
    margin-top: 28px;
    padding-top: 23px;
  }

  .stat strong {
    font-size: 37px;
  }

  .stat span {
    font-size: 11px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .heading-aside {
    font-size: 14px;
  }

  .shelf[data-mode="browse"] .shelf-stage {
    min-height: 338px;
    gap: 23px;
    padding: 26px 22px 34px;
  }

  .shelf[data-mode="browse"] .book-card {
    flex-basis: 182px;
    width: 182px;
  }

  .shelf[data-mode="detail"] .book-card.selected {
    width: 180px;
  }

  .shelf[data-mode="detail"] .shelf-stage {
    gap: 27px;
    padding-inline: 7px;
  }

  .book-panel {
    padding: 28px 20px 23px;
  }

  .book-panel .eyebrow {
    font-size: 8px;
    gap: 7px;
  }

  .book-panel h3 {
    font-size: 32px;
  }

  .book-panel > p,
  .book-panel-list {
    font-size: 14px;
  }

  .book-panel > .button {
    width: 100%;
    padding-inline: 13px;
    font-size: 13px;
  }

  .book-panel-close {
    top: 8px;
    right: 8px;
  }

  .shelf-bottom {
    margin-top: 20px;
  }

  .shelf-bottom p {
    font-size: 14px;
  }

  .treatment-text-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .sketchbook-reader {
    grid-template-columns: minmax(0, 1fr);
    padding: 7px;
  }

  .journal-page {
    min-height: 0;
    padding: 25px;
  }

  .journal-page-left {
    border-radius: 2px 2px 0 0;
    box-shadow: inset 0 -14px 24px -24px rgba(64, 41, 34, .7);
  }

  .journal-page-left h3 {
    font-size: 33px;
    margin-bottom: 13px;
  }

  .journal-page-left h3 br {
    display: none;
  }

  .journal-page-left > p:not(.journal-kicker):not(.journal-signature) {
    max-width: none;
  }

  .journal-kicker {
    margin-bottom: 12px;
  }

  .journal-small-line {
    margin-bottom: 15px;
  }

  .journal-signature {
    margin: 15px 0 0;
    font-size: 24px;
  }

  .journal-folio {
    position: static;
    display: block;
    margin-top: 15px;
    font-size: 9px;
  }

  .journal-page-right {
    padding-top: 15px;
    border-top: 1px solid rgba(153, 118, 67, .25);
    box-shadow: inset 0 14px 24px -24px rgba(64, 41, 34, .7);
  }

  .journal-art {
    min-height: 0;
    height: 153px;
  }

  .journal-art svg {
    width: 100%;
    height: 153px;
  }

  .study-note {
    font-size: 15px;
  }

  .note-one {
    top: -2%;
  }

  .note-two {
    bottom: -1%;
  }

  .journal-caption {
    margin-top: 13px;
    padding-top: 12px;
  }

  .journal-caption h3 {
    font-size: 25px;
  }

  .journal-caption > p:last-child {
    font-size: 14px;
  }

  .sketchbook-status {
    font-size: 12px;
  }

  .method-fallback {
    gap: 0 18px;
    margin-top: 20px;
  }

  .method-fallback summary {
    min-height: 53px;
    font-size: 14px;
    gap: 8px;
  }

  .method-fallback summary > span {
    font-size: 23px;
  }

  .testimonials-layout {
    gap: 24px;
  }

  .google-rating-number {
    font-size: 45px;
  }

  .google-rating-card small {
    font-size: 11px;
  }

  .tst-slide {
    padding: 23px;
  }

  .tst-slide blockquote p {
    font-size: 25px;
  }

  .tst-slide figcaption {
    gap: 11px;
  }

  .review-stars {
    display: none;
  }

  .tst-controls {
    justify-content: center;
    gap: 8px;
  }

  .faq-item summary {
    min-height: 65px;
    padding-block: 17px;
    font-size: 14px;
    gap: 17px;
  }

  .faq-answer {
    padding-right: 20px;
    padding-bottom: 20px;
  }

  .mentoring-copy > p {
    font-size: 14px;
  }

  .mentoring-copy > .lead {
    font-size: 18px;
  }

  .mentoring-topics {
    margin-top: 22px;
  }

  .mentoring-copy > .button {
    width: 100%;
  }

  .mentoring-image {
    box-shadow: 8px 10px 0 rgba(107, 63, 135, .07);
  }

  .mentoring-image img {
    height: 245px;
  }

  .mentoring-image figcaption strong {
    font-size: 27px;
  }

  .invitation-content h2 {
    font-size: clamp(47px, 12vw, 67px);
  }

  .invitation-content > p:not(.eyebrow) {
    font-size: 15px;
  }

  .invitation-content .button {
    width: 100%;
    gap: 10px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .invitation-signature {
    font-size: 22px;
  }

  .location-info {
    padding: 25px;
  }

  .location-info h3 {
    font-size: 31px;
  }

  .location-info address {
    font-size: 14px;
  }

  .location-actions {
    gap: 8px 19px;
    margin-top: 20px;
  }

  .location-hours {
    margin-top: 20px;
  }

  .location-info .pending-note {
    font-size: 14px;
  }

  .map-frame iframe {
    min-height: 280px;
    height: 280px;
  }

  .map-caption {
    font-size: 12px;
    padding-inline: 18px;
  }

  .contact-section {
    padding-bottom: 84px;
  }

  .contact-section .heading-aside {
    padding: 13px 16px;
  }

  .contact-form-card {
    padding: 25px 21px;
  }

  .contact-form-card h3 {
    font-size: 31px;
  }

  .contact-form-card > p {
    font-size: 14px;
  }

  .contact-form {
    gap: 18px;
  }

  .field input::placeholder,
  .field textarea::placeholder {
    font-size: 14px;
  }

  .field textarea {
    min-height: 122px;
  }

  .form-submit {
    font-size: 13px;
    gap: 10px;
    padding-inline: 12px;
  }

  .privacy-microcopy,
  .form-status {
    font-size: 13px;
  }

  .contact-cards {
    gap: 12px;
  }

  .contact-card {
    padding: 23px 20px;
  }

  .contact-card address {
    font-size: 14px;
  }

  .contact-instagram {
    padding-inline: 20px;
  }

  .site-footer {
    padding-top: 45px;
    padding-bottom: 90px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .footer-brand-column,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-brand-column > p {
    max-width: 40ch;
    font-size: 14px;
  }

  .footer-grid h3 {
    margin-top: 0;
  }

  .footer-nav a,
  .footer-services li {
    font-size: 12px;
  }

  .footer-services li {
    min-height: 44px;
    padding-block: 12px;
  }

  .footer-contact address {
    font-size: 14px;
  }

  .footer-professional-note {
    margin-top: 27px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 19px;
  }

  .floating-actions {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    gap: 8px;
  }

  .floating-whatsapp {
    width: 48px;
    height: 48px;
  }

  .floating-whatsapp .icon {
    width: 24px;
    height: 24px;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 359px) {
  :root {
    --gutter: 16px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-copy small {
    font-size: 6.8px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero .eyebrow {
    font-size: 7px;
  }

  .tst-slide {
    padding: 20px;
  }

  .tst-slide blockquote p {
    font-size: 23px;
  }

  .tst-controls {
    gap: 3px;
  }

  .tst-dots button {
    width: 44px;
  }

  .method-fallback {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (pointer: coarse) {
  .book-card {
    --detail-pitch: 0deg !important;
    --detail-yaw: -4deg !important;
  }

  .sketchbook-loupe,
  .journal-loupe {
    display: none !important;
  }
}

@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;
  }

  .marquee-track {
    animation: none !important;
    transform: none;
  }

  .reveal,
  .reveal.is-visible,
  .reveal.is-in,
  .reveal.in {
    clip-path: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .book-card {
    --hover-y: 0px !important;
    --detail-pitch: 0deg !important;
    --detail-yaw: -4deg !important;
  }

  .floating-whatsapp::before {
    display: none;
  }

  .mobile-menu nav a {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (forced-colors: active) {
  h1 em,
  h2 em {
    background: none;
    color: CanvasText;
    -webkit-text-fill-color: CanvasText;
  }

  .button,
  .icon-button,
  .front-cover,
  .contact-card,
  .faq-item,
  .nav-toggle {
    border: 1px solid ButtonText;
  }

  .button-gold,
  .floating-whatsapp {
    background: ButtonFace;
    color: ButtonText;
  }

  .icon {
    stroke: currentColor;
  }

  .eyebrow::before,
  .faq-plus::before,
  .faq-plus::after {
    background: CanvasText;
  }
}

@media print {
  html,
  body {
    background: #FBFAF7;
    color: #2B2230;
    overflow: visible;
  }

  .section,
  .hero {
    min-height: auto;
    padding-block: 24px;
    background: #FBFAF7 !important;
    color: #2B2230;
    break-inside: auto;
  }

  .section::before,
  .section::after,
  .site-header,
  .mobile-menu,
  .marquee,
  .floating-actions,
  .hero-gridlines,
  .hero-monogram,
  .invitation-monogram,
  .map-frame,
  .contact-form,
  .tst-controls,
  .shelf,
  .skip-link {
    display: none !important;
  }

  .container {
    width: 100%;
  }

  h1,
  h2 {
    font-size: 34px;
    color: #2B2230;
  }

  h1 em,
  h2 em {
    background: none;
    color: #4A2A63;
    -webkit-text-fill-color: #4A2A63;
  }

  .hero-layout,
  .professional-grid,
  .testimonials-layout,
  .faq-layout,
  .mentoring-grid,
  .location-grid,
  .contact-grid,
  .footer-grid {
    display: block;
  }

  .hero-portrait {
    max-width: 220px;
    margin: 20px 0;
  }

  .atelier-composition,
  .mentoring-image {
    max-width: 300px;
    margin: 20px 0;
  }

  .tst-track,
  .testimonials-slider[data-enhanced="true"] .tst-track {
    display: block;
    transform: none !important;
  }

  .tst-slide {
    margin-bottom: 20px;
    color: #2B2230;
    break-inside: avoid;
  }

  .testimonials-slider[data-enhanced="true"] .tst-slide {
    display: block;
  }

  .treatment-reader > .treatment-text-grid,
  .faq-item > .faq-answer,
  .method-fallback details > p {
    display: block !important;
  }

  .contact-card,
  .contact-instagram,
  .site-footer,
  .contact-form-card {
    background: #FBFAF7;
    color: #2B2230;
    box-shadow: none;
  }

  .site-footer {
    padding-block: 25px;
  }

  p,
  address,
  .microcopy,
  .pending-note,
  .contact-card strong,
  .contact-card small,
  .contact-card span,
  .contact-instagram strong,
  .footer-grid a,
  .footer-grid li,
  .footer-grid p,
  .footer-bottom,
  .footer-professional-note {
    color: #2B2230 !important;
  }
}
