/* ==========================================================================
   Dra. Luanna Barreira — Design System
   Direction: "Dossiê Editorial" — premium magazine-style composition.
   Palette and logo are inherited brand commitments (see PRODUCT.md);
   composition, type and rhythm are new.
   ========================================================================== */

:root {
  /* ---- Brand palette (inherited, do not introduce new hues) ---- */
  --bronze: #A27349;
  --bronze-dark: #856653;
  --tan: #D9BFA9;
  --cream: #FCF8F5;
  --cream-deep: #F5EEE7;
  --ink: #2A211B;
  --ink-soft: #5B4E43;
  --white: #FFFFFF;

  /* ---- Type ---- */
  --font-display: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;

  /* ---- Rhythm ---- */
  --gutter: clamp(20px, 5vw, 64px);
  --max-width: 1280px;
  --radius-sm: 2px;
  --radius-md: 4px;

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea {
  font: inherit;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------------------------------------------------------------------- */
/* Type scale                                                              */
/* ---------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
}

.display-1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}

.display-2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
}

.display-3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1.2;
}

.lede {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 400;
}

.body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.small-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.italic {
  font-style: italic;
}

.hero-highlight {
  background-image: linear-gradient(var(--tan), var(--tan));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 0.1em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-bottom: 0.06em;
  animation: hero-underline-draw 1.3s 0.9s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes hero-underline-draw {
  to {
    background-size: 100% 0.1em;
  }
}

/* ---------------------------------------------------------------------- */
/* Layout                                                                   */
/* ---------------------------------------------------------------------- */
.wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  min-width: 0;
}

body {
  overflow-x: clip;
}

.hero-grid,
.about-grid,
.treat-main,
.footer-grid,
.cta-band-inner {
  min-width: 0;
}

.hero-grid>*,
.about-grid>*,
.treat-main>*,
.footer-grid>* {
  min-width: 0;
}

section {
  position: relative;
}

.section-pad {
  padding-block: clamp(48px, 7vw, 96px);
}

.section-pad-sm {
  padding-block: clamp(32px, 4vw, 56px);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(162, 115, 73, 0.5), rgba(162, 115, 73, 0.08));
}

.divider-full {
  height: 1px;
  background: rgba(162, 115, 73, 0.22);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 16px;
}

.section-head .eyebrow {
  margin-bottom: 4px;
}

@media (min-width: 900px) {
  .section-head {
    grid-template-columns: 0.9fr 1.4fr;
    align-items: end;
  }
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                  */
/* ---------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.4s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--bronze);
  color: var(--white);
  box-shadow: 0 8px 24px -10px rgba(162, 115, 73, 0.65);
}

.btn-primary:hover {
  background: var(--bronze-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(133, 102, 83, 0.55);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  border: 1px solid rgba(162, 115, 73, 0.45);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--bronze);
  background: rgba(162, 115, 73, 0.06);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}

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

.btn-stagger {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1.1;
  vertical-align: middle;
}

.btn-stagger-layer {
  display: block;
  white-space: pre;
}

.btn-stagger-bottom {
  position: absolute;
  left: 0;
  top: 0;
}

.btn-stagger-layer span {
  display: inline-block;
  transition: transform 0.5s var(--ease);
}

.btn-stagger-top span {
  transform: translateY(0);
}

.btn-stagger-bottom span {
  transform: translateY(110%);
}

.btn:hover .btn-stagger-top span {
  transform: translateY(-110%);
}

.btn:hover .btn-stagger-bottom span {
  transform: translateY(0);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--bronze);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), gap 0.3s var(--ease), color .3s var(--ease);
}

.text-link:hover {
  border-color: var(--bronze);
  gap: 12px;
}

.text-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

.text-link:hover svg {
  transform: translateX(2px);
}

/* ---------------------------------------------------------------------- */
/* Header                                                                   */
/* ---------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 248, 245, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(162, 115, 73, 0.16);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px -20px rgba(42, 33, 27, 0.35);
}

.site-header .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 16px;
  height: 84px;
  gap: 16px;
}

@media (max-width: 699px) {
  .site-header .wrap {
    padding-inline: 0;
    column-gap: 0;
    gap: 0;
    width: 90% !Important;
  }

  .site-header .header-cta {
    margin-left: auto;
    gap: 10px;
  }
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
}

.brand img {
  height: 32px;
  width: auto;
  max-width: 100%;
}

@media (max-width: 767px) {
  .brand img {
    height: 40px;
  }
}

@media (min-width: 560px) {
  .brand img {
    height: 50px;
  }
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  padding-block: 6px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.main-nav a:hover {
  color: var(--bronze);
  border-color: var(--bronze);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: none;
}

.header-cta .btn-primary {
  display: inline-flex;
  padding: 10px 16px;
  font-size: 0.66rem;
  letter-spacing: 0.11em;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--bronze);
  flex: none;
}

.header-phone:hover {
  color: var(--bronze);
}

@media (min-width: 560px) {
  .header-cta .btn-primary {
    padding: 12px 22px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }
}

@media (min-width: 860px) {
  .header-phone {
    display: inline-flex;
  }
}

.nav-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: rotate(-45deg) translate(4px, -5px);
}

.mobile-nav {
  position: fixed;
  inset: 84px 0 0 0;
  background: var(--cream);
  z-index: 99;
  padding: 32px var(--gutter) 40px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0.32s;
  overflow-y: auto;
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(162, 115, 73, 0.16);
}

.mobile-nav a {
  display: block;
  padding: 18px 2px;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.mobile-nav .header-cta {
  margin-top: 28px;
  flex-direction: column;
  align-items: stretch;
}

.mobile-nav .header-cta .btn {
  justify-content: center;
}

@media (min-width: 1080px) {
  .main-nav {
    display: flex;
    justify-content: center;
    min-width: 0;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                     */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(56px, 9vw, 96px) clamp(50px, 8vw, 80px);
  overflow: hidden;
  background-color: #FCF8F5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-media {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 28px;
  margin-bottom: -45px;
  position: relative;
  z-index: 1;
}

.hero-photo {
  width: 112%;
  max-width: 112%;
  margin-left: -6%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .hero {
    min-height: 900px;
    flex-direction: row;
    align-items: center;
    padding-block: clamp(56px, 9vw, 96px) clamp(64px, 8vw, 120px);
    background-image: linear-gradient(90deg, #FCF8F5 0%, #FCF8F5 40%, rgba(252, 248, 245, 0.88) 49%, rgba(252, 248, 245, 0) 64%), url('../img/hero-photo.webp');
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-media {
    display: none;
  }
}


.hero-divider {
  width: 100%;
  height: 60px;
  position: absolute;
  inset-inline-end: 0;
  inset-block-end: -2px;
  inset-inline-start: 0;
  z-index: 2;
  color: #F6F3EE;
  line-height: 0;
  padding: 0;
  display: block;
  pointer-events: none;
}

.hero-scroll-divider {
  position: absolute;
  z-index: 11;
  bottom: 0px;
  left: 50%;
  width: 37px;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero-scroll-divider {
    bottom: 0px;
    width: 27px;
  }
}



.hero-copy {
  max-width: 600px;
  min-width: 0;
}

.hero-location {
  margin-bottom: 16px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-kicker .rule {
  width: 34px;
  height: 1px;
  background: var(--bronze);
}

.hero h1 {
  margin-bottom: 26px;
}

.hero .lede {
  margin-bottom: 36px;
  max-width: 52ch;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-bottom: 22px;
}

.hero-cta-row .btn {
  padding-block: 21px;
}

.hero-google-rating {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto auto 1px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(42, 33, 27, 0.35);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.hero-google-rating:hover {
  transform: translateY(-2px);
  border-color: var(--bronze);
  background: rgba(162, 115, 73, 0.06);
}

.google-wordmark {
  grid-column: 1 / 3;
  grid-row: 1;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.g-blue {
  color: #4285F4;
}

.g-red {
  color: #EA4335;
}

.g-yellow {
  color: #FBBC05;
}

.g-green {
  color: #34A853;
}

.google-stars {
  grid-column: 1 / 3;
  grid-row: 2;
  color: #FFC107;
  font-size: 0.68rem;
  letter-spacing: 1px;
  line-height: 1;
}

.google-separator {
  grid-column: 3;
  grid-row: 1 / 3;
  width: 1px;
  height: 28px;
  background: rgba(42, 33, 27, 0.45);
}

.google-score {
  grid-column: 4;
  grid-row: 1 / 3;
  color: var(--ink);
  font-size: 0.74rem;
  line-height: 1.25;
  white-space: nowrap;
}

.hero-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-soft);
  border-left: 2px solid var(--tan);
  padding-left: 12px;
  max-width: 40ch;
}

/* ---------------------------------------------------------------------- */
/* Treatments — editorial index                                            */
/* ---------------------------------------------------------------------- */
.treatments {
  background: linear-gradient(180deg, #F6F3EE 0%, var(--cream) 100%);
}

.treatments .section-head {
  grid-template-columns: 1fr;
  text-align: center;
}

.treat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-block: 34px;
  border-bottom: 1px solid rgba(162, 115, 73, 0.22);
}

.treat-row:last-child {
  border-bottom: 0;
}

@media (min-width: 760px) {
  .treat-row {
    padding-block: 42px;
  }
}

.treat-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .treat-main {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 40px;
  }

  .treat-row:nth-child(even) .treat-main {
    grid-template-columns: 1fr 1.5fr;
  }

  .treat-row:nth-child(even) .treat-media {
    order: -1;
  }

  .laser-treatments {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding-block: 42px;
  }

  .laser-treatments .treat-row {
    padding: 0;
    border-bottom: 0;
  }

  .laser-treatments .treat-row .treat-main,
  .laser-treatments .treat-row:nth-child(even) .treat-main {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 20px;
  }

  .laser-treatments .treat-row .treat-media {
    order: -1;
    width: 100%;
    justify-self: center;
  }

  .laser-treatments .treat-body {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .laser-treatments .treat-body p {
    max-width: none;
  }

  .laser-treatments .btn {
    margin-top: auto;
    padding: 12px 20px;
    align-self: flex-start;
  }

  .featured-treatments {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    border-bottom: 1px solid rgba(162, 115, 73, 0.22);
  }

  .featured-treatments .treat-row {
    padding-block: 0 42px;
    border-bottom: 0;
  }

  .featured-treatments .treat-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .featured-treatments .treat-row:nth-child(even) .treat-main {
    grid-template-columns: 1fr;
  }

  .featured-treatments .treat-row:nth-child(even) .treat-media {
    order: initial;
  }

  .featured-treatments .treat-body p {
    min-height: calc(1.75em * 3);
  }
}

.treat-body .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
}

.treat-title {
  margin-bottom: 14px;
}

.treat-body p {
  margin-bottom: 20px;
  max-width: 62ch;
}

.text-more-wrap {
  margin-bottom: 20px;
}

.text-more-extra p:last-child {
  margin-bottom: 0;
}

.text-more-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--bronze);
  margin-top: 4px;
}

.text-more-toggle .chevron-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.text-more-toggle[aria-expanded="true"] .chevron-icon {
  transform: rotate(180deg);
}

.treat-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--cream-deep);
}

.treat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.treat-row:hover .treat-media img {
  transform: scale(1.045);
}

.treat-media.is-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: 100%;
  border: 1px solid rgba(162, 115, 73, 0.35);
  background:
    radial-gradient(circle at 30% 20%, rgba(217, 191, 169, 0.35), transparent 60%),
    var(--cream-deep);
}

.signature-badge {
  text-align: center;
  padding: 24px;
}

.signature-badge .mono {
  width: 56px;
  height: 56px;
  margin-inline: auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.signature-badge .mono-wrap {
  display: flex;
  justify-content: center;
}

.signature-badge span.label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bronze-dark);
  letter-spacing: 0.02em;
}

.video-card {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-deep);
  cursor: pointer;
}

.treat-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--ink);
}

.play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 33, 27, 0.18);
  transition: background 0.3s var(--ease);
}

.play-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 45%);
  pointer-events: none;
}

.play-btn .play-circle {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 14px 32px -12px rgba(42, 33, 27, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
  animation: play-pulse 2.2s ease-in-out infinite;
}

.play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
  color: var(--bronze-dark);
}

.play-btn:hover .play-circle {
  transform: scale(1.06);
}

.video-card.is-playing .play-btn {
  opacity: 0;
  pointer-events: none;
}

.video-card.is-playing .play-btn::after {
  opacity: 0;
}

@keyframes play-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 14px 32px -12px rgba(42, 33, 27, 0.55);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 14px 42px -8px rgba(42, 33, 27, 0.7), 0 0 0 14px rgba(252, 248, 245, 0.18);
  }
}

/* ---------------------------------------------------------------------- */
/* About / Bio                                                             */
/* ---------------------------------------------------------------------- */
.about {
  background: var(--cream-deep);
}

.about-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.about-photo-col {
  width: 100%;
}

.about-photo-col picture {
  display: block;
  width: 100%;
}

.about-photo-col img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 40px 70px -30px rgba(133, 102, 83, 0.45), 0 15px 30px -15px rgba(42, 33, 27, 0.25);
  display: block;
}

@media (max-width: 767px) {
  .about-photo-col img {
    border-radius: 48px;
    box-shadow: none !important;
  }
}

.about-body {
  min-width: 0;
}

@media (min-width: 900px) {
  .about-grid-2col {
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
  }
}

.about-lead {
  margin-bottom: 26px;
}

.about-body p {
  margin-bottom: 20px;
}

.about-body strong {
  font-weight: 700;
  color: var(--ink);
}

.about-body u {
  text-decoration: none;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 1px;
}

.about-portrait {
  position: relative;
  margin-top: clamp(28px, 5vw, 56px);
  max-width: 340px;
}

.about-portrait .frame {
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(162, 115, 73, 0.35);
  z-index: 0;
}

.about-portrait .photo-wrap {
  position: relative;
  z-index: 1;
  background: linear-gradient(175deg, var(--cream), var(--tan) 150%);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-body h2 {
  margin-bottom: 30px;
}

.bio-content {
  margin-bottom: 18px;
}

.virtue-list {
  margin-top: 24px;
  margin-bottom: 28px;
  display: grid;
  gap: 20px;
}

.virtue-list .item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.virtue-list .item p {
  margin-bottom: 0;
}

.virtue-list .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
  flex: none;
  margin-top: 0.75em;
}

.virtue-list strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bronze-dark);
}

/* ---------------------------------------------------------------------- */
/* Testimonials                                                            */
/* ---------------------------------------------------------------------- */
.testimonials {
  background: var(--cream);
}

.testimonials-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}

.testimonials-title {
  width: 100%;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-rating .stars {
  color: var(--bronze);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.google-rating .rating-text {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.google-rating .rating-text strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.google-rating .rating-count {
  color: var(--ink-soft);
}

@media (min-width: 900px) {
  .testimonials-title {
    width: 40%;
  }
}

.t-cascade {
  columns: 1;
  column-gap: 22px;
}

@media (min-width: 640px) {
  .t-cascade {
    columns: 2;
  }
}

@media (min-width: 980px) {
  .t-cascade {
    columns: 3;
  }
}

.t-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  background: var(--white);
  border: 1px solid rgba(162, 115, 73, 0.18);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  display: block;
  margin-bottom: 22px;
}

.t-card:nth-child(3n+1) {
  margin-top: 0;
}

.t-card:nth-child(3n+2) {
  margin-top: 34px;
}

.t-card:nth-child(3n+3) {
  margin-top: 68px;
}

@media (max-width: 979px) {
  .t-card:nth-child(3n+3) {
    margin-top: 0;
  }
}

.t-carousel-controls {
  display: none;
}

@media (max-width: 639px) {
  .t-card:nth-child(3n+2) {
    margin-top: 0;
  }

  .t-cascade {
    display: flex;
    gap: 16px;
    columns: auto;
    overflow-x: auto;
    padding: 0 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .t-cascade::-webkit-scrollbar {
    display: none;
  }

  .t-cascade .t-card {
    flex: 0 0 calc(100% - 32px);
    margin: 0;
    scroll-snap-align: start;
  }

  .t-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }

  .t-carousel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 1px solid rgba(162, 115, 73, 0.45);
    border-radius: 50%;
    transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
  }

  .t-carousel-btn:hover {
    background: var(--bronze);
    color: var(--white);
  }

  .t-carousel-btn svg {
    width: 19px;
    height: 19px;
  }
}

.t-card p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.t-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  background: var(--cream-deep);
}

.t-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.t-meta .name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.2;
}

.t-stars {
  color: #FBBC04;
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.t-google-icon {
  width: 20px;
  height: 20px;
  flex: none;
}

.t-source {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.t-stars {
  color: var(--bronze);
  letter-spacing: 2px;
}

/* ---------------------------------------------------------------------- */
/* FAQ                                                                      */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* O Consultório                                                            */
/* ---------------------------------------------------------------------- */
.office {
  background: radial-gradient(120% 140% at 15% 15%, #4a372c 0%, #2a1f18 55%, #1e1611 100%);
  padding-block: clamp(56px, 8vw, 100px);
  color: rgba(252, 248, 245, 0.88);
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .office-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.office-eyebrow {
  color: var(--tan);
}

.office-title {
  color: var(--cream);
  font-style: italic;
  margin-top: 14px;
  margin-bottom: 16px;
}

.office-text {
  color: rgba(252, 248, 245, 0.75);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 48ch;
}

.office-quote {
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--bronze);
}

.office-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 10px;
}

.office-quote cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tan);
}

.office-carousel-wrap {
  position: relative;
}
.office-carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
}

.office-float {
  position: absolute;
  width: clamp(110px, 16vw, 170px);
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  padding: 6px;
  background: var(--cream);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.5);
  z-index: 3;
}
.office-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
@keyframes office-float-bob {
  0%, 100% { transform: translateY(0) rotate(var(--float-rot, 0deg)); }
  50% { transform: translateY(-16px) rotate(var(--float-rot, 0deg)); }
}
.office-float-1 {
  top: -10%;
  right: -8%;
  --float-rot: 4deg;
  animation: office-float-bob 5.5s ease-in-out infinite;
}
.office-float-2 {
  bottom: -10%;
  left: 8%;
  --float-rot: -4deg;
  animation: office-float-bob 6.5s ease-in-out infinite 0.6s;
}

@media (max-width: 640px) {
  .office-float { display: none; }
}

.office-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s var(--ease);
}

.office-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: none;
}

.office-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(252, 248, 245, 0.16);
  backdrop-filter: blur(6px);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}

.office-nav:hover {
  background: rgba(252, 248, 245, 0.3);
}

.office-nav svg {
  width: 18px;
  height: 18px;
}

.office-nav.prev {
  left: 16px;
}

.office-nav.next {
  right: 16px;
}

.faq {
  background: var(--cream-deep);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .faq-layout {
    grid-template-columns: 0.8fr 1.3fr;
    gap: 64px;
  }
}

.faq-aside {
  min-width: 0;
}

@media (min-width: 900px) {
  .faq-aside {
    position: sticky;
    top: 110px;
    align-self: start;
  }
}

.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.eyebrow-line .rule {
  flex: 1 1 auto;
  max-width: 140px;
  height: 1px;
  background: rgba(162, 115, 73, 0.4);
}

.faq-item {
  border-bottom: 1px solid rgba(162, 115, 73, 0.25);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

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

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: none;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--bronze);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 16px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 16px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-panel {
  padding-bottom: 28px;
  max-width: 68ch;
}

.faq-panel p {
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ---------------------------------------------------------------------- */
/* Nossa Clínica (map card)                                                */
/* ---------------------------------------------------------------------- */
.clinic {
  background: linear-gradient(0deg, #fff 0%, var(--cream) 100%);
}

.clinic-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 30px 60px -30px rgba(133, 102, 83, 0.35);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 820px) {
  .clinic-card {
    grid-template-columns: 1.1fr 1fr;
  }
}

.clinic-map {
  min-height: 300px;
  background: var(--cream-deep);
}

.clinic-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

.clinic-info {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clinic-info h2 {
  margin-bottom: 22px;
}

.clinic-hours h4,
.clinic-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
}

.clinic-hours h4 {
  margin-bottom: 10px;
}

.clinic-label {
  display: block;
  margin-bottom: 4px;
}

.clinic-hours p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 2px;
}

.clinic-info ul {
  display: grid;
  gap: 14px;
}

.clinic-info li {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.clinic-info a:hover {
  color: var(--bronze);
}

.clinic-info .btn {
  margin-top: 26px;
  align-self: flex-start;
}

/* ---------------------------------------------------------------------- */
/* Final CTA band                                                          */
/* ---------------------------------------------------------------------- */
.cta-band {
  background: var(--ink);
  color: var(--cream);
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding-block: clamp(64px, 9vw, 108px);
}

.cta-band h2 {
  color: var(--cream);
  max-width: 18ch;
}

.cta-band .lede {
  color: rgba(252, 248, 245, 0.72);
}

.cta-band .hero-disclaimer {
  color: rgba(252, 248, 245, 0.65);
  border-color: var(--bronze);
}

@media (min-width: 900px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cta-band .cta-text {
    max-width: 46%;
  }

  .cta-band .cta-actions {
    text-align: right;
  }
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                   */
/* ---------------------------------------------------------------------- */
.site-footer {
  background: #fff;
  padding-block: 4em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

@media (max-width: 639px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
  }

  .footer-grid .footer-brand,
  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid .footer-brand {
    padding-right: 0;
  }
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
}

@media (min-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 0.8fr 0.8fr;
  }
}

.footer-brand {
  padding-right: 3em;
}

.footer-brand img {
  height: auto;
  margin-bottom: 30px;
}

.footer-logo-lg {
  width: 220px;
}

.footer-brand p {
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-tagline {
  margin-bottom: 12px;
}

.footer-tagline strong {
  color: var(--ink);
}

.footer-crm {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col a,
.footer-col span {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.footer-col a:hover {
  color: var(--bronze);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(162, 115, 73, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.footer-social a:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-region h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}

.footer-region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 24px;
}

.footer-region-grid a {
  display: block;
  font-size: 0.86rem;
  color: var(--ink-soft);
  padding: 11px 0;
  border-bottom: 1px solid rgba(162, 115, 73, 0.16);
  transition: color 0.3s var(--ease);
}

.footer-region-grid a:hover {
  color: var(--bronze);
}

.footer-region-grid a:nth-last-child(-n+4) {
  border-bottom: none;
}

@media (max-width: 720px) {
  .footer-region-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-region-grid a { border-bottom: 1px solid rgba(162, 115, 73, 0.16); }
  .footer-region-grid a:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 460px) {
  .footer-region-grid { grid-template-columns: 1fr; }
  .footer-region-grid a { border-bottom: 1px solid rgba(162, 115, 73, 0.16); }
  .footer-region-grid a:nth-last-child(-n+1) { border-bottom: none; }
}

.footer-bottom {
  padding-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.footer-bottom a:hover {
  color: var(--bronze);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}

.footer-credit-logo {
  display: inline-block;
  width: 82px;
  height: 16px;
  background-color: var(--ink-soft);
  -webkit-mask-image: url('../img/adeststudio.svg');
  mask-image: url('../img/adeststudio.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.3s var(--ease);
}

.footer-credit:hover {
  color: var(--bronze);
}

.footer-credit:hover .footer-credit-logo {
  background-color: var(--bronze);
}

@media (max-width: 640px) {
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

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

/* ---------------------------------------------------------------------- */
/* Treatment landing pages (simpler, SEO-focused)                          */
/* ---------------------------------------------------------------------- */
.breadcrumb {
  padding-block: 18px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(162, 115, 73, 0.16);
}

.breadcrumb a {
  color: var(--ink-soft);
}

.breadcrumb a:hover {
  color: var(--bronze);
}

.breadcrumb .sep {
  margin: 0 8px;
  color: var(--tan);
}

.breadcrumb .current {
  color: var(--bronze-dark);
  font-weight: 700;
}

.page-hero {
  padding-block: clamp(48px, 7vw, 88px) clamp(40px, 6vw, 64px);
}
.page-hero-centered .inner { max-width: 720px; margin-inline: auto; text-align: center; }
.page-hero-centered .hero-cta-row { justify-content: center; }
.page-hero-centered .hero-disclaimer { margin-inline: auto; text-align: left; display: inline-flex; }

.page-hero .inner { max-width: 760px; }
.page-hero h1 { margin-top: 14px; margin-bottom: 20px; }
.page-hero .lede { max-width: 62ch; margin-bottom: 32px; }
.page-hero-centered .lede { margin-inline: auto; }

/* ---------------------------------------------------------------------- */
/* Legal pages (privacy policy, terms of use)                              */
/* ---------------------------------------------------------------------- */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content > p {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content .legal-intro {
  font-size: 1.05rem;
  padding-bottom: 32px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(162, 115, 73, 0.16);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--ink);
  margin: 44px 0 14px;
}

.legal-content ul {
  margin: 0 0 20px;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 8px;
}

/* 3 placeholder social-proof images below hero */
.proof-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}
.proof-slot {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 30% 20%, rgba(217,191,169,0.35), transparent 60%),
    var(--cream-deep);
  border: 1px dashed rgba(162,115,73,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-slot span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze);
  opacity: 0.7;
}

/* "O que é X" — text + large square image */
.whatis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 860px) {
  .whatis-grid { grid-template-columns: 1.1fr 1fr; gap: 56px; }
}
.whatis-copy p { margin-bottom: 20px; max-width: 60ch; }
.whatis-copy .excerpt {
  border-left: 2px solid var(--bronze);
  padding-left: 20px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
}
.whatis-media {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-deep);
}
.whatis-media img { width: 100%; height: 100%; object-fit: cover; }
.whatis-media.is-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(162,115,73,0.35);
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(217,191,169,0.35), transparent 60%),
    var(--cream-deep);
}
.whatis-media.is-signature .mono {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 auto 16px;
}
.whatis-media.is-signature .label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--bronze-dark);
}

.related-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}
.related-card {
  display: block;
  border: 1px solid rgba(162,115,73,0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.related-card:hover { border-color: var(--bronze); transform: translateY(-3px); }
.related-media { aspect-ratio: 4 / 3; background: var(--cream-deep); }
.related-media img { width: 100%; height: 100%; object-fit: cover; }
.related-signature { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--cream-deep); }
.related-signature .mono {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.related-card h3 { font-size: 1.1rem; padding: 18px 20px; }

/* ---------------------------------------------------------------------- */
/* Scroll reveal                                                           */
/* ---------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------------- */
/* Utility                                                                  */
/* ---------------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 0.25s var(--ease);
}

.skip-link:focus {
  top: 12px;
}