/* Gianoto Hair Alphaville
   Paleta: café escuro + dourado, tipografia Cormorant Garamond + Inter */

:root {
  --ink: #0e0b09;
  --coffee: #1c140e;
  --coffee-2: #2a1d14;
  --gold: #c9a45c;
  --gold-hi: #e9d3a0;
  --gold-lo: #775a25;
  --cream: #f6f1e8;
  --cream-2: #efe7d9;
  --text: #2a2420;
  --muted: #6d625a;
  --line: rgba(14, 11, 9, 0.1);
  --line-dark: rgba(233, 211, 160, 0.16);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(14, 11, 9, 0.18);
  --wrap: 1180px;
  --nav-h: 92px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.1; margin: 0 0 0.6em; letter-spacing: -0.005em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
h4 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; }

.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.wrap--narrow { max-width: 820px; }
.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section--soft { background: var(--cream-2); }
.section--dark { background: var(--coffee); color: var(--cream); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead, .section--dark p { color: rgba(246, 241, 232, 0.82); }
.section--gold { background: linear-gradient(135deg, #d8b871 0%, var(--gold) 45%, #b28e47 100%); color: var(--ink); }
.section--gold h2 { color: var(--ink); }
.section__head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head .lead { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lo);
  margin: 0 0 1rem;
}
.hero .eyebrow, .section--dark .eyebrow { color: var(--gold); }
[id] { scroll-margin-top: calc(var(--nav-h) + 1rem); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.nav :focus-visible, .footer :focus-visible, .whats:focus-visible, .hero :focus-visible { outline-color: var(--gold-hi); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.eyebrow--dark { color: var(--ink); opacity: 0.75; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--muted); max-width: 60ch; }

.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 0.6rem 1rem; z-index: 200; }
.skip:focus-visible { left: 1rem; top: 1rem; }

/* Botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.75rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold-hi); outline-offset: 3px; }
.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.85rem; }
.btn--gold { background: linear-gradient(180deg, var(--gold-hi), var(--gold) 55%, #b48f47); color: var(--ink); box-shadow: 0 10px 30px rgba(201, 164, 92, 0.35); }
.btn--gold:hover { box-shadow: 0 14px 34px rgba(201, 164, 92, 0.5); }
.btn--ghost { background: rgba(255, 255, 255, 0.06); color: #fff; border-color: rgba(255, 255, 255, 0.3); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); }
.btn--dark { background: var(--ink); color: var(--gold-hi); }
.btn--dark:hover { background: var(--coffee-2); }

/* Navegação */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  background: rgba(14, 11, 9, 0.55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233, 211, 160, 0.08);
  transition: background 0.3s ease;
}
.nav.is-solid { background: rgba(14, 11, 9, 0.92); }
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav__logo img { width: auto; height: 62px; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a:not(.btn) {
  color: rgba(246, 241, 232, 0.86); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  padding: 0.35rem 0; border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.nav__links a:not(.btn):hover, .nav__links a:not(.btn).is-active { color: var(--gold-hi); border-color: var(--gold); }
.nav__toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.nav__toggle span { display: block; height: 2px; background: var(--gold-hi); margin: 5px 0; transition: transform 0.25s, opacity 0.25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding: calc(var(--nav-h) + 3rem) 0 4rem; background: var(--ink); color: var(--cream); overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; opacity: 0.55; filter: saturate(0.85) contrast(1.05); }
.hero__shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 20% 40%, rgba(14, 11, 9, 0.35) 0%, rgba(14, 11, 9, 0.85) 70%),
    linear-gradient(180deg, rgba(14, 11, 9, 0.55) 0%, rgba(14, 11, 9, 0.2) 50%, var(--ink) 100%);
}
.hero__grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 3rem; align-items: end; }
.hero__copy h1 { color: #fff; margin-bottom: 1.2rem; text-wrap: balance; }
.hero__copy .lead { color: rgba(246, 241, 232, 0.8); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(233, 211, 160, 0.12); border: 1px solid rgba(233, 211, 160, 0.16); border-radius: var(--radius);
  overflow: hidden; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.hero__stats { margin: 0; }
.stat { background: rgba(14, 11, 9, 0.55); padding: 1.4rem 1.3rem; display: flex; flex-direction: column-reverse; gap: 0.25rem; }
.stat dd { margin: 0; }
.stat__num { font-family: var(--serif); font-size: clamp(1.9rem, 2.6vw, 2.5rem); font-weight: 600; color: var(--gold-hi); line-height: 1; }
.stat__label { font-size: 0.82rem; color: rgba(246, 241, 232, 0.72); line-height: 1.35; }

/* Faixa de prova */
.proof { background: var(--ink); color: var(--cream); border-top: 1px solid var(--line-dark); }
.proof__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof__item { padding: 1.5rem 1.25rem; display: flex; flex-direction: column; gap: 0.15rem; border-left: 1px solid var(--line-dark); }
.proof__item:first-child { border-left: 0; padding-left: 0; }
.proof__item strong { font-family: var(--serif); font-size: 1.25rem; color: var(--gold-hi); font-weight: 600; }
.proof__item span { font-size: 0.85rem; color: rgba(246, 241, 232, 0.65); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { margin: 0; position: relative; }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.split__media figcaption { margin-top: 0.9rem; font-size: 0.85rem; color: var(--muted); }
.section--dark .split__media figcaption { color: rgba(246, 241, 232, 0.6); }
.split__copy .btn { margin-top: 1.25rem; }

.checks { list-style: none; margin: 1.5rem 0 0.5rem; display: grid; gap: 0.9rem; }
.checks li { position: relative; padding-left: 2rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 0.35rem; width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: var(--gold); box-shadow: inset 0 0 0 3px var(--cream);
  border: 1px solid var(--gold-lo);
}
.checks strong { color: var(--ink); }

/* Passos */
.steps { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: clamp(3rem, 6vw, 5rem); background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.step { background: var(--coffee); padding: 1.75rem 1.5rem 1.6rem; }
.step__n { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); line-height: 1; display: block; margin-bottom: 0.8rem; }
.step h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.92rem; margin: 0; }

/* Linha do tempo */
.timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; position: relative; }
.tl { position: relative; }
.tl img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 14px; box-shadow: 0 14px 34px rgba(14, 11, 9, 0.16); }
.tl__when {
  display: inline-block; margin: 1.1rem 0 0.55rem; padding: 0.3rem 0.75rem; border-radius: 999px;
  background: var(--ink); color: var(--gold-hi); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.tl h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.tl p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* Vídeos */
.videos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.vcard { margin: 0; display: flex; flex-direction: column; }
.vcard__play {
  position: relative; display: block; width: 100%; aspect-ratio: 9 / 16; padding: 0; border: 0; cursor: pointer;
  border-radius: var(--radius); overflow: hidden; background: var(--ink); box-shadow: var(--shadow);
}
.vcard__play img, .vcard video { width: 100%; height: 100%; object-fit: cover; }
.vcard__play::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14, 11, 9, 0) 55%, rgba(14, 11, 9, 0.55) 100%); }
.vcard__icon {
  position: absolute; left: 50%; top: 50%; width: 68px; height: 68px; transform: translate(-50%, -50%);
  border-radius: 50%; background: rgba(233, 211, 160, 0.92); z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); transition: transform 0.2s ease, background 0.2s ease;
}
.vcard__icon::before { content: ""; position: absolute; left: 55%; top: 50%; transform: translate(-50%, -50%); border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent var(--ink); }
.vcard__play:hover .vcard__icon, .vcard__play:focus-visible .vcard__icon { transform: translate(-50%, -50%) scale(1.08); background: var(--gold-hi); }
.vcard__play:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.vcard.is-playing .vcard__play { display: none; }
.vcard video { aspect-ratio: 9 / 16; border-radius: var(--radius); background: #000; box-shadow: var(--shadow); }
.vcard figcaption { padding: 1rem 0.25rem 0; display: grid; gap: 0.2rem; }
.vcard figcaption strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; }
.vcard figcaption span { font-size: 0.9rem; color: var(--muted); }
.section--dark .vcard figcaption span { color: rgba(246, 241, 232, 0.7); }
.vcard figcaption time { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-lo); }
.section--dark .vcard figcaption time { color: var(--gold); }

/* Resultados */
.results { display: grid; grid-template-columns: 1.2fr 0.9fr 0.9fr; gap: 1.5rem; align-items: start; }
.quote blockquote { margin: 0; }
.quote { margin: 0; padding: 2.25rem; border-radius: var(--radius); background: var(--coffee-2); border: 1px solid var(--line-dark); align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.quote p { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.6rem); font-style: italic; color: var(--gold-hi); line-height: 1.05; margin-bottom: 1.25rem; }
.quote figcaption { font-size: 0.85rem; color: rgba(246, 241, 232, 0.6); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.gallery figure { margin: 0; }
.gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 14px; }
.gallery figcaption { margin-top: 0.7rem; font-size: 0.85rem; color: rgba(246, 241, 232, 0.65); }
.section--dark .disclaimer { margin: 1.75rem 0 0; font-size: 0.8rem; color: rgba(246, 241, 232, 0.65); }

/* Equipe */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.member { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(14, 11, 9, 0.08); display: flex; flex-direction: column; }
.member img, .member__initials { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center 20%; }
.member__initials { display: grid; place-items: center; background: radial-gradient(circle at 30% 20%, var(--coffee-2), var(--ink)); color: var(--gold); font-family: var(--serif); font-size: 5rem; font-weight: 600; letter-spacing: 0.05em; }
.member h3 { font-size: 1.35rem; margin: 1.25rem 1.4rem 0.25rem; }
.member__role { margin: 0 1.5rem 1.6rem; font-size: 0.95rem; color: var(--muted); }
.member__crm { margin: auto 1.5rem 1.5rem; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-lo); font-weight: 600; }

/* FAQ */
.faq { display: grid; gap: 0.75rem; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0 1.4rem; transition: border-color 0.2s; }
.faq details[open] { border-color: var(--gold); }
.faq summary { list-style: none; cursor: pointer; padding: 1.15rem 2.5rem 1.15rem 0; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold); background-image: linear-gradient(var(--gold-lo), var(--gold-lo)), linear-gradient(var(--gold-lo), var(--gold-lo)); background-repeat: no-repeat; background-size: 12px 1.5px, 1.5px 12px; background-position: center; transition: background 0.2s; }
.faq details[open] summary::after { background-color: var(--gold); background-image: linear-gradient(var(--ink), var(--ink)); background-size: 12px 1.5px; }
.faq summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 8px; }
.faq details p { margin: 0 0 1.25rem; color: var(--muted); }
.faq__cta { margin: 1.5rem 0 0; text-align: center; color: var(--muted); }
.faq__cta a { color: var(--ink); font-weight: 600; text-decoration-color: var(--gold); }

/* Unidade */
.address p { margin-bottom: 1rem; font-style: normal; }
.address strong { display: block; font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-lo); margin-bottom: 0.2rem; }
.address a { color: var(--ink); text-decoration-color: var(--gold); }
.map iframe { width: 100%; aspect-ratio: 4 / 3; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }

/* Formulário */
.form { background: rgba(14, 11, 9, 0.92); color: var(--cream); padding: 2rem; border-radius: var(--radius); display: grid; gap: 0.5rem; box-shadow: var(--shadow); }
.form label { font-size: 0.85rem; font-weight: 500; margin-top: 0.6rem; color: var(--gold-hi); }
.form label span { color: rgba(246, 241, 232, 0.65); font-weight: 400; }
.form input, .form textarea { width: 100%; padding: 0.9rem 1rem; border-radius: 12px; border: 1px solid rgba(233, 211, 160, 0.5); background: rgba(255, 255, 255, 0.05); color: #fff; font: inherit; }
.form input::placeholder, .form textarea::placeholder { color: rgba(246, 241, 232, 0.6); opacity: 1; }
.form input:focus, .form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.form textarea { resize: vertical; }
.form .btn { margin-top: 1rem; justify-self: start; }
.form__note { font-size: 0.75rem; color: rgba(246, 241, 232, 0.55); margin: 0.5rem 0 0; }
.hp { position: absolute; left: -9999px; }

/* Rodapé */
.footer { background: var(--ink); color: rgba(246, 241, 232, 0.75); padding: 4rem 0 2rem; font-size: 0.9rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__brand img { width: 210px; height: auto; margin-bottom: 1rem; }
.footer h3 { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer ul { list-style: none; display: grid; gap: 0.55rem; }
.footer a { color: rgba(246, 241, 232, 0.85); text-decoration: none; }
.footer a:hover { color: var(--gold-hi); }
.footer__legal { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); font-size: 0.78rem; color: rgba(246, 241, 232, 0.66); }
.footer__legal p { margin-bottom: 0.4rem; }

/* WhatsApp flutuante */
.whats {
  position: fixed; right: 1.25rem; bottom: 4.75rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #128c7e; color: #fff; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}
.whats:hover { transform: scale(1.06); }

/* Revelação */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: rgba(14, 11, 9, 0.9); }
  .hero__stats { background: rgba(14, 11, 9, 0.75); }
}

/* Responsivo */
@media (max-width: 1080px) {
  .videos { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .results { grid-template-columns: 1fr 1fr; }
  .quote { grid-column: span 2; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .proof__row { grid-template-columns: repeat(2, 1fr); }
  .proof__item:nth-child(3) { border-left: 0; padding-left: 0; }
}
@media (max-width: 980px) {
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(14, 11, 9, 0.97); padding: 0.75rem 1.25rem 1.5rem; border-bottom: 1px solid var(--line-dark);
    max-height: calc(100vh - var(--nav-h)); max-height: calc(100svh - var(--nav-h)); overflow-y: auto;
    transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.2s, transform 0.2s, visibility 0s linear 0.2s;
  }
  .nav__links.is-open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .nav__links a:not(.btn) { padding: 0.9rem 0; border-bottom: 1px solid var(--line-dark); font-size: 1rem; }
  .nav__links .nav__cta { margin-top: 1rem; }
  .nav__toggle { display: block; }
  .hero { padding-top: calc(var(--nav-h) + 2.5rem); }
  .hero__grid, .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 3.5rem 0; }
  .nav__logo img { height: 48px; }
  .hero__video { object-position: center 30%; }
  .stat { padding: 1.1rem 1rem; }
  .results, .steps, .footer__grid { grid-template-columns: 1fr; }
  .videos, .timeline, .gallery { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .team { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .tl h3, .vcard figcaption strong { font-size: 1.1rem; }
  .tl p, .vcard figcaption span { font-size: 0.82rem; }
  .quote { grid-column: auto; }
  .proof__row { grid-template-columns: 1fr; }
  .proof__item { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-dark); }
  .proof__item:first-child { border-top: 0; }
  .form { padding: 1.5rem; }
  .whats { width: 54px; height: 54px; }
  .footer { padding-bottom: 8rem; }
}

@media print {
  .nav, .whats, .skip, .hero__media, .vcard__play::after, .vcard__icon, .map, .form { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .section--dark, .section--gold, .proof, .footer, .hero { background: #fff !important; color: #000 !important; }
  .section--dark h2, .section--dark h3, .hero__copy h1 { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.85em; }
  .faq details { break-inside: avoid; }
}
