/* Clinprime Odontologia - Landing */

:root {
  --gold: #b8923a;
  --gold-light: #d4b76a;
  --gold-dark: #8a6d28;
  --ink: #1a1814;
  --ink-soft: #3d3a34;
  --bg: #f7f4ef;
  --bg-alt: #ebe4d8;
  --bg-card: #fffcfa;
  --line: rgba(26, 24, 20, 0.1);
  --line-strong: rgba(26, 24, 20, 0.16);
  --muted: #6b6560;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 56px rgba(42, 35, 24, 0.14);
  --shadow-soft: 0 10px 36px rgba(42, 35, 24, 0.09);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Inter", system-ui, sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-badge,
  .hero h1,
  .hero-lead,
  .hero-cta-row,
  .hero-proof,
  .hero-media {
    animation: none;
    opacity: 1;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
.logo {
  font-family: var(--font-display);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 252, 250, 0.96);
  box-shadow: 0 8px 32px rgba(42, 35, 24, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo-img {
  height: clamp(40px, 8vw, 48px);
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 20px rgba(184, 146, 58, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--gold-dark);
  box-shadow: 0 8px 24px rgba(184, 146, 58, 0.35);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  background: rgba(184, 146, 58, 0.12);
  border-color: var(--gold);
  color: var(--ink);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  padding: 5.5rem 0 3.5rem;
  overflow: hidden;
}

.hero .container {
  position: relative;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 3rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  background: rgba(184, 146, 58, 0.1);
  border: 1px solid rgba(184, 146, 58, 0.22);
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  margin-bottom: 1.25rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-logo {
  width: min(220px, 70vw);
  height: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero h1 .accent {
  color: var(--gold-dark);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 42ch;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.hero-proof {
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--bg-alt);
}

.hero-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
}

.hero-media figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-card);
  border-top: 1px solid var(--line);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* Dr. Thiago */
.doctor-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .doctor-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.doctor-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--bg);
}

.doctor-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.doctor-text h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.doctor-text p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.doctor-text .about-list {
  margin: 1.25rem 0 1.5rem;
}

/* About (legacy) */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .about-img {
    justify-self: center;
  }
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  max-width: 420px;
  margin-inline: auto;
  background: var(--bg-alt);
}

.about-img img {
  width: 100%;
  max-height: 280px;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.about-text h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.about-text p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.about-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.about-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Procedimentos — vitrine quadrada */
.procedures-showcase {
  display: grid;
  gap: 1.25rem;
  margin: 0 auto 2.5rem;
  max-width: 960px;
}

@media (min-width: 768px) {
  .procedures-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

.procedure-media-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.procedure-media-card:hover {
  border-color: rgba(184, 146, 58, 0.4);
  box-shadow: var(--shadow-soft);
}

.procedure-media-square {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-alt);
}

.procedure-media-square > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.procedure-media-caption {
  padding: 1rem 1.15rem 1.15rem;
}

.procedure-media-caption h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.procedure-media-caption p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.before-after {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  --position: 50%;
}

.before-after-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.after-image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.after-image-wrapper .before-after-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.before-after-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(26, 24, 20, 0.15);
  transform: translateX(-1px);
  z-index: 2;
  pointer-events: none;
}

.before-after-divider::before {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(42, 35, 24, 0.2);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
}

.before-after-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
}

.before-after-label {
  position: absolute;
  top: 10px;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(26, 24, 20, 0.62);
  padding: 4px 10px;
  border-radius: 999px;
  pointer-events: none;
}

.before-after-label.before {
  left: 10px;
}

.before-after-label.after {
  right: 10px;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin-inline: auto;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.accordion-item.is-open {
  border-color: rgba(184, 146, 58, 0.45);
  box-shadow: var(--shadow-soft);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.accordion-trigger:hover {
  background: rgba(184, 146, 58, 0.08);
}

/* Procedimentos: capa no topo do card colapsável */
.accordion-trigger--with-cover {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  gap: 0;
}

.accordion-trigger--with-cover:hover {
  background: transparent;
}

.accordion-trigger--with-cover:hover .accordion-trigger-row {
  background: rgba(184, 146, 58, 0.08);
}

.accordion-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 2.2 / 1;
  max-height: 200px;
  overflow: hidden;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}

.accordion-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.accordion-trigger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  width: 100%;
  box-sizing: border-box;
}

.accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(184, 146, 58, 0.18);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  transition: transform var(--transition);
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.accordion-panel-inner {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid var(--line);
}

.accordion-panel p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.accordion-panel p:last-child {
  margin-bottom: 0;
}

.proc-bullets {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.proc-bullets li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.proc-bullets li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(184, 146, 58, 0.4);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.testimonial-quote {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

.testimonial-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Instagram embeds */
.instagram-grid {
  display: grid;
  gap: 1.75rem;
  justify-items: center;
  max-width: 1120px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

.instagram-embed-wrap {
  width: 100%;
  max-width: 540px;
}

.instagram-embed-wrap .instagram-media {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Differentials */
.diff-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .diff-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.diff-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: border-color var(--transition), transform var(--transition);
}

.diff-card:hover {
  border-color: rgba(184, 146, 58, 0.4);
  transform: translateY(-3px);
}

.diff-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(184, 146, 58, 0.14);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--gold-dark);
}

.diff-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.diff-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Galeria (somente visual - não clicável) */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

@media (min-width: 900px) {
  .social-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.social-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-alt);
}

.social-item img {
  width: 100%;
  height: clamp(140px, 28vw, 200px);
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Location */
.location-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.location-info {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.location-info h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: var(--ink);
}

.location-info p,
.location-info a {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: block;
}

.location-info a[href^="tel"] {
  color: var(--gold-dark);
  font-weight: 600;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .map-wrap iframe {
    height: 360px;
  }
}

/* Formulário WhatsApp */
.contact-form {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.contact-form .form-field {
  margin-bottom: 1.15rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}

.contact-form select {
  cursor: pointer;
  appearance: auto;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(107, 101, 96, 0.75);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 146, 58, 0.2);
}

.contact-form .form-notice {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
  text-align: center;
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.contact-form .form-legal {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  text-align: center;
}

.contact-form .form-legal a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form .form-legal a:hover {
  color: var(--gold-dark);
}

.contact-form .form-hint {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--bg);
}

.site-footer-credit {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Floating CTA */
.float-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent 0%, rgba(247, 244, 239, 0.97) 35%);
  pointer-events: none;
}

.float-cta .btn {
  pointer-events: auto;
  width: min(100%, 420px);
  margin: 0 auto;
  display: flex;
  box-shadow: 0 -4px 28px rgba(42, 35, 24, 0.12);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Body padding for float bar */
body {
  padding-bottom: 5.5rem;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 5rem;
  }
}

/* Página legal */
.legal-page {
  padding: 6rem 0 4rem;
}

.legal-inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.legal-inner h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.legal-inner h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.legal-inner p,
.legal-inner li {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-inner ul {
  margin: 0 0 0.9rem;
  padding-left: 1.25rem;
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem !important;
}

.legal-back {
  margin-bottom: 1.25rem !important;
}

.legal-back a {
  color: var(--gold-dark);
  font-weight: 600;
}

.legal-footer {
  padding-bottom: 2.5rem;
}
