/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Variables ── */
:root {
  --black:       #070707;
  --black-mid:   #0d0d0d;
  --black-card:  #111010;
  --black-hover: #171410;
  --gold:        #D4AF37;
  --gold-light:  #EDD97A;
  --gold-pale:   #F5EAB0;
  --gold-dark:   #B8962E;
  --gold-bg:     rgba(212,175,55,.06);
  --gold-line:   rgba(212,175,55,.2);
  --gold-glow:   rgba(212,175,55,.18);
  --white:       #FEFDF8;
  --white-dim:   rgba(254,253,248,.6);
  --white-faint: rgba(254,253,248,.05);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:     cubic-bezier(0.65, 0, 0.35, 1);
  --radius:      2px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 74px; }
img { display: block; max-width: 100%; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 74px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7,7,7,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gold-line);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--gold);
}

.logo-mp {
  font-family: var(--font-sans);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(212,175,55,.78);
  margin-top: 1px;
}

nav { display: flex; align-items: center; gap: 2.5rem; }

nav a {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color .25s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .32s var(--ease);
}

nav a:hover { color: var(--gold); }
nav a:hover::after { width: 100%; }

.nav-implantes {
  color: var(--gold) !important;
}
.nav-implantes::after { background: var(--gold); }

.nav-cta {
  border: 1px solid var(--gold-line) !important;
  padding: .42rem 1.3rem;
  color: var(--gold) !important;
  transition: background .25s, border-color .25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; border-color: var(--gold) !important; }

/* ── Burger ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold);
  transition: transform .3s, opacity .3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: rgba(7,7,7,.97);
  backdrop-filter: blur(18px);
  z-index: 99;
  flex-direction: column;
  padding: 2rem 2.5rem;
  gap: 1.6rem;
  border-bottom: 1px solid var(--gold-line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color .25s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

/* grid texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 75vmin; height: 75vmin;
  background: radial-gradient(ellipse, rgba(212,175,55,.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
}

/* Logo in hero */
.hero-logo {
  width: clamp(100px, 20vw, 155px);
  height: auto;
  margin-bottom: 2rem;
  border-radius: 50%;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .05s forwards;
  filter: drop-shadow(0 0 32px rgba(212,175,55,.22));
}

/* ornament */
.hero-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .2s forwards;
}
.ornament-line {
  height: 1px; width: 48px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.ornament-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.ornament-diamond {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-eyebrow {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .3s forwards;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 10vw, 7rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: .01em;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .45s forwards;
}

.hero h1 .dra {
  display: block;
  font-size: .42em;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: .08em;
  margin-bottom: .15em;
  font-weight: 300;
}

.hero h1 .last {
  display: block;
  background: linear-gradient(120deg, var(--gold-dark) 0%, var(--gold) 35%, var(--gold-pale) 60%, var(--gold) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear 1.5s infinite;
}

.hero-subtitle {
  margin-top: 1.4rem;
  font-size: clamp(.75rem, 1.6vw, .88rem);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0;
  animation: fadeUp .9s var(--ease) .65s forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .8rem;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold-line);
  padding: .3rem 1rem;
  border-radius: 30px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .8s forwards;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-actions {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .95s forwards;
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.hero-scroll-text {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(212,175,55,.45);
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .88rem 2.1rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .25s var(--ease), box-shadow .25s;
}

.btn:hover { transform: translateY(-3px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 45%, var(--gold-light) 100%);
  color: var(--black);
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(212,175,55,.28);
}
.btn-gold:hover { box-shadow: 0 10px 36px rgba(212,175,55,.48); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-line);
}
.btn-outline:hover { background: var(--gold-bg); border-color: rgba(212,175,55,.5); }

/* ─────────────────────────────────────────
   SECTION COMMONS
───────────────────────────────────────── */
section { padding: 7rem 2rem; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  font-family: var(--font-sans);
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: .8rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-rule {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 3.5rem;
}

.rule-short { width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.rule-diamond { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.rule-long { flex: 1; height: 1px; background: var(--gold-line); }

/* ─────────────────────────────────────────
   IMPLANTES DESTACADO
───────────────────────────────────────── */
.implants-feature {
  background: var(--black);
  padding: 6rem 2rem;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.implants-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.implants-tag {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: .3rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.4rem;
  font-weight: 500;
}

.implants-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.implants-title em {
  font-style: italic;
  color: var(--gold-light);
}

.implants-desc {
  font-size: 1rem;
  color: rgba(254,253,248,.78);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 1.8rem;
}

.implants-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 2.2rem;
}

.implants-benefits li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: rgba(254,253,248,.82);
}

.implants-benefits li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.implants-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.implants-icon-wrap {
  width: clamp(100px, 12vw, 160px);
  color: var(--gold);
  opacity: .85;
  filter: drop-shadow(0 0 24px rgba(212,175,55,.2));
}

.implants-icon-wrap svg { width: 100%; height: auto; }

.implants-stat {
  text-align: center;
  border: 1px solid var(--gold-line);
  padding: 1.2rem 1.8rem;
  background: var(--gold-bg);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}

.stat-label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* last card fills remaining columns when row is incomplete */
.services-grid .service-card:last-child:nth-child(3n-1) {
  grid-column: span 2;
}

/* card badge */
.service-card--featured {
  border: 1px solid rgba(212,175,55,.35);
  background: #141210;
}

.service-badge {
  display: inline-block;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: .2rem .7rem;
  border-radius: 2px;
  margin-bottom: .8rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .implants-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .implants-visual {
    flex-direction: row;
    justify-content: center;
  }
  .implants-icon-wrap { width: 80px; }
}

/* ─────────────────────────────────────────
   SERVICIOS
───────────────────────────────────────── */
#servicios { background: var(--black-mid); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
  margin-bottom: 1.5rem;
}

.service-card {
  background: var(--black-card);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background .35s var(--ease);
  cursor: default;
}

/* top shimmer bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .4s;
}

/* card glow on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: -60%; left: -20%;
  width: 90%; height: 90%;
  background: radial-gradient(ellipse at center, rgba(212,175,55,.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .5s, transform .5s var(--ease);
  transform: scale(.7);
  pointer-events: none;
}

.service-card:hover { background: var(--black-hover); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; transform: scale(1.3); }

.service-icon {
  width: 42px; height: 42px;
  margin-bottom: 1.4rem;
  color: var(--gold);
  transition: color .3s, transform .35s var(--ease);
  flex-shrink: 0;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card:hover .service-icon {
  color: var(--gold-light);
  transform: translateY(-3px) scale(1.05);
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: .5rem;
  letter-spacing: .015em;
}

.service-desc {
  font-size: .95rem;
  color: rgba(254,253,248,.8);
  line-height: 1.65;
  font-weight: 300;
}

.services-note {
  text-align: center;
  font-size: .8rem;
  font-weight: 300;
  color: var(--white-dim);
  border: 1px solid var(--gold-line);
  padding: 1.1rem 2rem;
  background: var(--gold-bg);
}

.services-note a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-line);
  transition: border-color .25s, color .25s;
}
.services-note a:hover { color: var(--gold-light); border-color: var(--gold); }

/* ─────────────────────────────────────────
   UBICACIÓN
───────────────────────────────────────── */
#ubicacion { background: var(--black); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 2.4rem; }

.info-label {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.info-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}

.info-sub {
  font-size: .95rem;
  color: rgba(254,253,248,.8);
  margin-top: .2rem;
  font-weight: 300;
}

.hours-grid { display: flex; flex-direction: column; gap: .65rem; }

.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .95rem;
  color: rgba(254,253,248,.82);
  padding-bottom: .55rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.hour-row .day {
  font-family: var(--font-serif);
  font-size: .92rem;
  color: var(--gold-light);
  font-weight: 500;
}

.map-wrap {
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

/* gold corner accents */

.map-wrap iframe {
  width: 100%; height: 100%;
  display: block;
}

/* ─────────────────────────────────────────
   FLOATING WHATSAPP
───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: .82rem 1.4rem .82rem 1rem;
  font-family: var(--font-sans);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .06em;
  box-shadow: 0 6px 22px rgba(37,211,102,.38);
  transition: transform .28s var(--ease), box-shadow .28s;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 38px rgba(37,211,102,.52);
}

.whatsapp-float svg { flex-shrink: 0; position: relative; z-index: 1; }
.whatsapp-label { position: relative; z-index: 1; white-space: nowrap; }

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: rgba(37,211,102,.3);
  animation: pulse 3s ease infinite;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--gold-line);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: .4rem;
}

.footer-copy {
  font-size: .78rem;
  color: rgba(254,253,248,.55);
  letter-spacing: .06em;
  font-weight: 300;
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.reveal.visible { opacity: 1; transform: none; }

/* stagger support */
.stagger .service-card:nth-child(1) { transition-delay: 0ms; }
.stagger .service-card:nth-child(2) { transition-delay: 60ms; }
.stagger .service-card:nth-child(3) { transition-delay: 120ms; }
.stagger .service-card:nth-child(4) { transition-delay: 180ms; }
.stagger .service-card:nth-child(5) { transition-delay: 240ms; }
.stagger .service-card:nth-child(6) { transition-delay: 300ms; }
.stagger .service-card:nth-child(7) { transition-delay: 360ms; }
.stagger .service-card:nth-child(8) { transition-delay: 420ms; }
.stagger .service-card:nth-child(9) { transition-delay: 480ms; }

/* ─────────────────────────────────────────
   KEYFRAMES
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .45; }
  50%       { transform: scale(1.12); opacity: 0; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.1); }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 921px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 68px; }
  header { padding: 0 1.5rem; height: 68px; }
  nav { display: none; }
  .burger { display: flex; }

  .services-grid {
    display: flex !important;
    flex-direction: column !important;
  }
  .service-card { width: 100%; }

  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .whatsapp-float { padding: .9rem; border-radius: 50%; }
  .whatsapp-label { display: none; }
  .whatsapp-float::before { border-radius: 50%; }

  section { padding: 5rem 1.5rem; }
}

@media (max-width: 540px) {
  .hero h1 { line-height: 1; }
}

/* ─────────────────────────────────────────
   FOCUS VISIBLE — navegación por teclado
───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ─────────────────────────────────────────
   REDUCIR MOVIMIENTO — usuarios sensibles
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero h1,
  .hero-logo,
  .hero-ornament,
  .hero-eyebrow,
  .hero-subtitle,
  .hero-badge,
  .hero-actions,
  .hero-scroll {
    opacity: 1;
    transform: none;
  }
}
