:root {
  --red: #E5262C;
  --red-deep: #B31E23;
  --malva: #C79CC9;
  --malva-soft: #E7D4E8;
  --bordo: #3D1220;
  --bordo-deep: #260A13;
  --bordo-mid: #551A29;
  --gold: #B8935A;
  --gold-light: #E4C998;
  --gold-deep: #7A5726;
  --off-white: #FBF5F0;
  --cream: #F3E7DE;
  --ink: #201014;
  --ink-soft: #5A3F45;
  --white: #FFFFFF;

  --font-display: 'Cormorant', serif;
  --font-body: 'Jost', sans-serif;

  --max: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--bordo);
  margin: 0 0 .5em;
  line-height: 1.08;
  font-weight: 600;
}
h1 { font-size: clamp(2.5rem, 7vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.6vw, 1.6rem); }
p { line-height: 1.65; margin: 0 0 1em; color: var(--ink-soft); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.section { padding: 5.5rem 0; }
.section-tight { padding: 3.5rem 0; }
@media (max-width: 720px) {
  .section { padding: 3.75rem 0; }
}

.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head p { max-width: 560px; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  min-height: 48px;
}
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 10px 30px -12px rgba(229,38,44,.55); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(229,38,44,.6); }
.btn-ghost { background: transparent; color: var(--off-white); border-color: rgba(251,245,240,.4); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-outline-dark { background: transparent; color: var(--bordo); border-color: var(--bordo); }
.btn-outline-dark:hover { background: var(--bordo); color: var(--off-white); }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bordo-deep);
  border-bottom: 1px solid rgba(184,147,90,.25);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .85rem 1.5rem; }
.wordmark { display: flex; align-items: center; gap: .55rem; flex-shrink: 0; }
.wordmark svg { width: 30px; height: 30px; }
.wordmark span { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--off-white); letter-spacing: .01em; }
.wordmark span em { font-style: italic; color: var(--malva); }

.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a { font-size: .82rem; font-weight: 600; color: var(--malva-soft); letter-spacing: .01em; transition: color .2s; white-space: nowrap; }
.nav a:hover, .nav a.is-active { color: var(--gold-light); }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: transparent; border: 1px solid rgba(251,245,240,.3); border-radius: 10px;
  cursor: pointer; padding: 0; align-items: center;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--off-white); transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-cta { display: none; }

@media (min-width: 920px) {
  .header-row { padding: 1.1rem 1.5rem; }
  .nav { display: flex; }
  .nav .btn { display: none; }
  .nav-toggle { display: none; }
  .header-cta { display: inline-flex; }
}

@media (max-width: 919px) {
  .nav {
    position: fixed; inset: 68px 0 0 0; background: var(--bordo-deep);
    flex-direction: column; padding: 2rem 1.5rem; gap: 1.4rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { font-size: 1.15rem; }
  .nav .btn { margin-top: .5rem; }
}

/* Hero */
.hero {
  background: radial-gradient(120% 140% at 15% 0%, var(--bordo-mid) 0%, var(--bordo) 42%, var(--bordo-deep) 100%);
  position: relative; overflow: hidden;
  padding: 3.5rem 0 4rem;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 85% 15%, rgba(199,156,201,.18), transparent 70%);
}
.hero-grid { display: grid; gap: 2.75rem; align-items: center; position: relative; z-index: 1; }
.hero-copy .tag { color: var(--gold-light); }
.hero h1 { color: var(--off-white); }
.hero h1 em { font-style: italic; color: var(--malva); }
.hero .lead { color: var(--malva-soft); font-size: 1.08rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; margin-top: 1.6rem; }

.rating-badge {
  display: flex; align-items: center; gap: .6rem;
  background: rgba(251,245,240,.06); border: 1px solid rgba(184,147,90,.35);
  padding: .6rem 1rem; border-radius: 999px; color: var(--off-white);
}
.rating-badge strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-light); }
.rating-badge .stars { color: var(--gold); letter-spacing: 1px; font-size: .85rem; }
.rating-badge .rating-count { font-size: .74rem; color: var(--malva-soft); display: block; }

.hero-media { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid rgba(184,147,90,.35); aspect-ratio: 4/5; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero-media-badge {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  background: rgba(38,10,19,.72); backdrop-filter: blur(6px);
  border: 1px solid rgba(184,147,90,.35); border-radius: 14px;
  padding: .85rem 1.1rem; color: var(--off-white);
  display: flex; align-items: center; gap: .7rem;
}
.hero-media-badge svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--red); }
.hero-media-badge strong { display: block; font-size: .82rem; }
.hero-media-badge span { font-size: .74rem; color: var(--malva-soft); }

@media (min-width: 900px) {
  .hero { padding: 5.5rem 0 6.5rem; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
}

/* Stats band */
.stats-band { background: var(--bordo-deep); padding: 0 0 3.75rem; margin-top: -1px; position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.stat-card {
  background: linear-gradient(160deg, rgba(184,147,90,.14), rgba(251,245,240,.03));
  border: 1px solid rgba(184,147,90,.3); border-radius: var(--radius);
  padding: 1.5rem 1.1rem; text-align: center;
}
.stat-card strong { display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--off-white); line-height: 1; margin-bottom: .35rem; }
.stat-card span { font-size: .74rem; color: var(--malva-soft); letter-spacing: .02em; }
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* Spotlight (Harmonização Facial) */
.spotlight { background: var(--off-white); }
.spotlight-grid { display: grid; gap: 2.5rem; align-items: center; }
.spotlight-media { border-radius: 22px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(61,18,32,.35); aspect-ratio: 4/3; }
.spotlight-media img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-copy .tag { color: var(--red-deep); }
.spotlight ul { list-style: none; margin: 1.4rem 0 1.8rem; padding: 0; display: grid; gap: .7rem; }
.spotlight ul li { display: flex; align-items: flex-start; gap: .6rem; font-size: .95rem; color: var(--ink); font-weight: 600; }
.spotlight ul li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--red); margin-top: 1px; }
@media (min-width: 900px) { .spotlight-grid { grid-template-columns: 1fr 1fr; } }

/* Treatments */
.treatments { background: var(--cream); }
.treat-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.treat-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(61,18,32,.08); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.treat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -22px rgba(61,18,32,.25); }
.treat-card-img { aspect-ratio: 16/10; overflow: hidden; }
.treat-card-img img { width: 100%; height: 100%; object-fit: cover; }
.treat-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.treat-card-body h3 { margin-top: .3rem; }
.treat-list { list-style: none; margin: .8rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .45rem; }
.treat-list li {
  font-size: .76rem; font-weight: 600; color: var(--bordo);
  background: var(--malva-soft); padding: .32rem .65rem; border-radius: 999px;
}
@media (min-width: 720px) { .treat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .treat-grid { grid-template-columns: repeat(3, 1fr); } }

/* Social proof */
.proof { background: var(--bordo); color: var(--off-white); }
.proof .section-head h2 { color: var(--off-white); }
.proof .section-head p { color: var(--malva-soft); }
.proof .tag { color: var(--gold-light); }
.proof-grid { display: grid; gap: 1.25rem; }
.review-card {
  background: rgba(251,245,240,.05); border: 1px solid rgba(184,147,90,.28);
  border-radius: var(--radius); padding: 1.6rem;
}
.review-card .stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; display: block; margin-bottom: .7rem; }
.review-card p { color: var(--off-white); font-size: .95rem; margin-bottom: 1rem; }
.review-card .author { display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: var(--malva-soft); font-weight: 600; }
.review-card .author svg { width: 18px; height: 18px; color: var(--gold); }
.proof-fact { min-height: 210px; display: flex; flex-direction: column; justify-content: center; }
.proof-fact > strong { display: block; color: var(--gold-light); font-family: var(--font-display); font-size: clamp(2.7rem, 6vw, 4rem); line-height: .95; margin-bottom: .7rem; }
.proof-fact > strong span { color: var(--gold); font-size: .55em; }
.proof-fact p { max-width: 24ch; margin-bottom: .65rem; }
.proof-source { color: var(--malva-soft); font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
@media (min-width: 900px) { .proof-grid { grid-template-columns: repeat(3, 1fr); } }

.ig-banner {
  margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
  background: linear-gradient(120deg, rgba(199,156,201,.12), rgba(184,147,90,.12));
  border: 1px solid rgba(184,147,90,.3); border-radius: var(--radius); padding: 1.5rem 1.8rem;
}
.ig-banner strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-light); }
.ig-banner span { display: block; font-size: .82rem; color: var(--malva-soft); }

/* About */
.about { background: var(--off-white); }
.about-grid { display: grid; gap: 2.5rem; align-items: center; }
.about-media { border-radius: 22px; overflow: hidden; aspect-ratio: 4/3; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about blockquote { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.7rem); color: var(--bordo); font-style: italic; line-height: 1.4; margin: 0 0 1.3rem; position: relative; padding-top: .3rem; }
.about blockquote::before { content: '\201C'; display: block; font-family: var(--font-display); font-style: normal; font-size: 3.4rem; line-height: 1; color: var(--red); margin-bottom: -.6rem; }
.about cite { display: block; font-style: normal; font-size: .78rem; font-weight: 700; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1.1fr; } }

/* Units */
.units { background: var(--cream); }
.units-grid { display: grid; gap: 1.25rem; }
.unit-card {
  background: var(--white); border-radius: var(--radius); padding: 0 1.6rem 1.6rem; overflow: hidden;
  border: 1px solid rgba(61,18,32,.08); display: flex; flex-direction: column; gap: .7rem;
  position: relative;
}
.unit-card.is-featured { border-color: var(--red); box-shadow: 0 20px 45px -28px rgba(229,38,44,.4); }
.unit-card .badge-featured {
  position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--red); color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .32rem .7rem; border-radius: 999px;
}
.unit-card-img { margin: 0 -1.6rem; aspect-ratio: 16/10; overflow: hidden; }
.unit-card-img img { width: 100%; height: 100%; object-fit: cover; }
.unit-card h3 { margin-top: 1rem; }
.unit-card h3 { margin-bottom: .1rem; }
.unit-card .addr { font-size: .88rem; color: var(--ink-soft); display: flex; gap: .5rem; align-items: flex-start; }
.unit-card .addr svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.unit-card .phone { font-size: .85rem; color: var(--ink-soft); font-weight: 600; }
.unit-card .btn { margin-top: .3rem; }
@media (min-width: 720px) { .units-grid { grid-template-columns: repeat(2, 1fr); } }

/* Final CTA */
.final-cta {
  background: radial-gradient(120% 140% at 85% 100%, var(--bordo-mid) 0%, var(--bordo) 45%, var(--bordo-deep) 100%);
  color: var(--off-white); text-align: center; padding: 5rem 0;
}
.final-cta h2 { color: var(--off-white); max-width: 720px; margin-left: auto; margin-right: auto; }
.final-cta p { color: var(--malva-soft); max-width: 520px; margin: 0 auto 2rem; }
.final-cta .btn { font-size: 1.05rem; padding: 1.15rem 2.3rem; }

/* Footer */
.site-footer { background: var(--bordo-deep); color: var(--malva-soft); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; gap: 2.2rem; margin-bottom: 2.5rem; }
.footer-brand .wordmark { margin-bottom: .9rem; }
.footer-brand p { color: var(--malva-soft); font-size: .88rem; max-width: 34ch; }
.footer-col h3, .footer-col h4 { color: var(--gold-light); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-body); font-weight: 700; margin-bottom: .9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .88rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(184,147,90,.35); display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(184,147,90,.2); padding-top: 1.5rem; font-size: .76rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); } }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 999px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(229,38,44,.6);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; color: var(--white); }

/* Reveal animation: content stays visible when JavaScript is unavailable. */
[data-reveal], [data-reveal-onload] { opacity: 1; transform: none; }
[data-reveal-onload].reveal-ready { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal-onload].reveal-ready.is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .12s; }
[data-reveal-delay="2"] { transition-delay: .24s; }
[data-reveal-delay="3"] { transition-delay: .36s; }

/* Focus visibility for a11y */
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ===== Secondary page hero (A Clínica, Tratamentos, Unidades, Loja, Blog) ===== */
.page-hero {
  background: radial-gradient(120% 160% at 10% 0%, var(--bordo-mid) 0%, var(--bordo) 45%, var(--bordo-deep) 100%);
  padding: 3.5rem 0 3.25rem; text-align: center;
}
.page-hero .tag { color: var(--gold-light); justify-content: center; }
.page-hero h1 { color: var(--off-white); margin-top: .5rem; }
.page-hero h1 em { font-style: italic; color: var(--malva); }
.page-hero p { color: var(--malva-soft); max-width: 640px; margin: .8rem auto 0; }
.breadcrumb { display: flex; justify-content: center; gap: .5rem; font-size: .78rem; color: var(--malva-soft); margin-bottom: .6rem; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ===== Mission / Vision / Values ===== */
.mvv-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.mvv-card { background: var(--white); border: 1px solid rgba(61,18,32,.08); border-radius: var(--radius); padding: 2rem 1.6rem; text-align: center; }
.mvv-card img { width: 52px; height: 52px; margin: 0 auto 1rem; }
.mvv-card h3 { margin-bottom: .6rem; }
.mvv-card p { font-size: .92rem; }
@media (min-width: 780px) { .mvv-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== Treatment category rows (tratamentos.html) ===== */
.treat-row { display: grid; gap: 2.25rem; align-items: center; padding: 3rem 0; border-bottom: 1px solid rgba(61,18,32,.08); }
.treat-row:last-child { border-bottom: none; }
.treat-row-media { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 50px -28px rgba(61,18,32,.3); aspect-ratio: 4/3; }
.treat-row-media img { width: 100%; height: 100%; object-fit: cover; }
.treat-row-copy .tag { color: var(--red-deep); }
@media (min-width: 900px) {
  .treat-row { grid-template-columns: .9fr 1.1fr; }
  .treat-row.is-reverse .treat-row-media { order: 2; }
}

/* ===== Promo mini-cards (tratamentos.html) ===== */
.promo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.promo-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(61,18,32,.08); text-align: center; }
.promo-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.promo-card-body { padding: 1rem .9rem 1.2rem; }
.promo-card-body h4 { font-family: var(--font-display); color: var(--bordo); font-size: 1.15rem; margin: 0 0 .2rem; }
.promo-card-body span { display: block; font-size: .72rem; color: var(--gold-deep); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .6rem; }
@media (min-width: 720px) { .promo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .promo-grid { grid-template-columns: repeat(5, 1fr); } }

/* ===== Blog grid ===== */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(61,18,32,.08); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -22px rgba(61,18,32,.25); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-body time { font-size: .72rem; color: var(--gold-deep); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.blog-card-body h3 { margin: .5rem 0 .6rem; font-size: 1.3rem; }
.blog-card-body p { font-size: .9rem; flex: 1; }
.blog-card-body .teaser-link { margin-top: .8rem; font-size: .82rem; font-weight: 700; color: var(--red-deep); }
@media (min-width: 720px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== Loja honest CTA page ===== */
.loja-hero-media { border-radius: 22px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(61,18,32,.35); aspect-ratio: 4/3; }
.loja-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.loja-note { background: var(--cream); border-radius: var(--radius); padding: 1.5rem 1.7rem; border: 1px solid rgba(61,18,32,.08); }
.loja-note h3 { margin-bottom: .5rem; }

/* Generic teaser link (used across pages) */
.teaser-link { font-size: .85rem; font-weight: 700; color: var(--red-deep); display: inline-flex; align-items: center; gap: .3rem; }
.teaser-link:hover { color: var(--red); }

@media (max-width: 719px) {
  .wrap { padding-left: 1.15rem; padding-right: 1.15rem; }
  .hero { padding-top: 3rem; }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 3.45rem); }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .rating-badge { width: 100%; justify-content: center; border-radius: 16px; }
  .section-head { margin-bottom: 2.2rem; }
  .footer-col a, .teaser-link { min-height: 44px; display: inline-flex; align-items: center; }
  .nav a { min-height: 44px; display: inline-flex; align-items: center; }
}
