/* ═══════════════════════════════════════════════
   SABLOK AYURVEDIC — Heritage Clinical Theme
   Palette: Crimson, Sage Olive, Champagne Gold,
            Antique Off-White, Charcoal Ink
   ═══════════════════════════════════════════════ */

:root {
  --crimson:     #6B1D2F;
  --crimson-dark:#541626;
  --sage:        #2C4A3E;
  --sage-light:  #3a5f50;
  --gold:        #D4AF37;
  --gold-light:  #e8c84a;
  --offwhite:    #FAF8F5;
  --charcoal:    #1E1E24;
  --charcoal-lt: #3d3d47;
  --muted:       #7a7a86;
  --card-bg:     #FFFFFF;
  --border:      rgba(107,29,47,0.12);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--offwhite);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* ── Section Rhythm ── */
.section-pad { padding: 90px 0; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#mainNav {
  background: var(--offwhite);
  border-bottom: 2px solid var(--crimson);
  padding: 12px 0;
  transition: box-shadow var(--transition);
  z-index: 1030;
}

#mainNav.scrolled {
  box-shadow: 0 4px 24px rgba(107,29,47,0.10);
}

/* Brand */
.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.brand-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--crimson);
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

/* Nav links */
.navbar-nav .nav-link {
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 14px !important;
  position: relative;
  transition: color var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.navbar-nav .nav-link:hover { color: var(--crimson); }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

/* Nav Buttons */
.btn-outline-login {
  border: 1.5px solid var(--crimson);
  color: var(--crimson);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 4px;
  background: transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline-login:hover {
  background: var(--crimson);
  color: #fff;
}

.btn-book {
  background: var(--crimson);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 4px;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.btn-book:hover {
  background: var(--crimson-dark);
  color: var(--gold-light);
}

/* Toggler */
.navbar-toggler {
  border: 1.5px solid var(--crimson);
  color: var(--crimson);
  font-size: 1.3rem;
}
.navbar-toggler:focus { box-shadow: none; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-section {
  background: var(--offwhite);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Soft diagonal tint on the right */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: rgba(44,74,62,0.06);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.min-vh-hero { min-height: 82vh; }

/* Eyebrow */
.eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}

/* Headline */
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--crimson);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
}

/* Gold divider */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.divider-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.divider-icon {
  color: var(--gold);
  font-size: 1rem;
}

.hero-sub {
  color: var(--charcoal-lt);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Hero buttons */
.btn-hero-primary {
  background: var(--crimson);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 4px;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.btn-hero-primary:hover {
  background: var(--crimson-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-hero-outline {
  border: 1.5px solid var(--sage);
  color: var(--sage);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  background: transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-hero-outline:hover {
  background: var(--sage);
  color: #fff;
}

/* Trust badges */
.hero-badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--charcoal-lt);
}
.badge-item i {
  color: var(--gold);
  font-size: 1rem;
}

/* Hero Image */
.hero-image-col {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-image-bg-shape {
  position: absolute;
  top: -24px; right: -24px;
  width: 88%;
  height: 88%;
  background: rgba(44,74,62,0.08);
  border-radius: 24px;
  z-index: 0;
}
.hero-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(107,29,47,0.18);
  position: relative;
  z-index: 1;
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: brightness(0.97) saturate(0.9);
}

/* Floating tag on image */
.hero-image-tag {
  position: absolute;
  bottom: 20px; left: -20px;
  background: var(--offwhite);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--crimson);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  z-index: 2;
}
.hero-image-tag i { color: var(--gold); font-size: 1rem; }

/* ══════════════════════════════════════
   SECTION HEADERS (shared)
══════════════════════════════════════ */
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.line-accent {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}
.section-sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 6px;
}

/* ══════════════════════════════════════
   SPECIALITIES
══════════════════════════════════════ */

/* Pills */
.spec-pill {
  border: 1.5px solid var(--border);
  background: var(--card-bg);
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 40px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.spec-pill i { font-size: 0.95rem; }
.spec-pill:hover {
  border-color: var(--crimson);
  color: var(--crimson);
}
.spec-pill.active {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
}
.spec-illustration img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:opacity .3s ease;
}

/* Card */
.spec-card-wrapper { position: relative; }
.spec-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 4px 24px rgba(107,29,47,0.07);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.spec-card.fading { opacity: 0; transform: translateY(8px); }

.spec-illustration {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdf9f0;
  border-right: 1px solid var(--border);
  padding: 32px;
  align-self: stretch;
}
.spec-illustration svg { width: 260px; height: 260px; }

.spec-content {
  padding: 40px 48px;
  flex: 1;
  position: relative;
}

.spec-number {
  position: absolute;
  top: 24px; right: 36px;
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(107,29,47,0.06);
  line-height: 1;
  user-select: none;
}

.spec-icon-lg {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.spec-name {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--crimson);
  margin-bottom: 10px;
}

.spec-desc {
  color: var(--charcoal-lt);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 420px;
}

.spec-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.spec-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.spec-features li i { color: var(--sage); font-size: 1rem; }



/* Dots */
.spec-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.spec-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  display: block;
}
.spec-dot.active {
  background: var(--crimson);
  border-color: var(--crimson);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════
   PRIVACY VAULT
══════════════════════════════════════ */
.privacy-section {
  background: var(--sage);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.privacy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.privacy-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.privacy-headline {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.gold-text { color: var(--gold); }

.privacy-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 36px 28px;
  height: 100%;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.privacy-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.4);
}
.privacy-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--gold);
}
.privacy-card h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.privacy-card p {
  color: rgba(255,255,255,0.70);
  font-size: 0.87rem;
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════
   BOOKING
══════════════════════════════════════ */
.booking-section { background: var(--offwhite); }

.booking-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(107,29,47,0.08);
  padding: 32px 24px;
  overflow: hidden;
}

.booking-step { padding: 0 24px; }

.step-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.step-label i { color: var(--crimson); }

.step-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--charcoal);
  cursor: pointer;
  font-weight: 500;
}
.step-radio.active { color: var(--crimson); font-weight: 600; }
.step-radio input { accent-color: var(--crimson); }

.step-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 0.88rem;
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: var(--offwhite);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.step-input:focus { border-color: var(--crimson); }

.booking-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

.booking-cta-col {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.btn-book-secure {
  background: var(--crimson);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-book-secure:hover {
  background: var(--crimson-dark);
  transform: translateY(-1px);
}

.secure-note {
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}
.secure-note i { color: var(--sage); }

/* ══════════════════════════════════════
   LEGACY
══════════════════════════════════════ */
.legacy-section { background: var(--card-bg); }

.legacy-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 18px;
}
.year-highlight {
  color: var(--crimson);
  font-style: italic;
}

.legacy-body {
  color: var(--charcoal-lt);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Stats */
.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  text-align: center;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: block;
}

.btn-explore {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 4px;
  background: transparent;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-explore:hover {
  background: var(--charcoal);
  color: #fff;
}

/* Legacy Image */
.legacy-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.legacy-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 18px;
  filter: sepia(0.15) brightness(0.96);
}
.legacy-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(250,248,245,0.92);
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  backdrop-filter: blur(4px);
}
.lb-year {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.lb-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1;
}
.lb-name {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  text-align: center;
  line-height: 1.4;
  margin-top: 2px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 30px;
}

.footer-brand .brand-name { color: #fff; font-size: 1.3rem; }
.footer-brand .brand-sub  { color: rgba(255,255,255,0.45); }

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-addr {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.footer-addr i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-hr {
  border-color: rgba(255,255,255,0.08);
  margin: 36px 0 20px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   MOBILE DOCK
══════════════════════════════════════ */
.mobile-dock {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  z-index: 1050;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
}

.dock-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 12px;
  text-decoration: none;
  transition: filter var(--transition);
}
.dock-btn:hover { filter: brightness(1.1); }

.dock-btn i { font-size: 1.4rem; }

.dock-btn div {
  display: flex;
  flex-direction: column;
}
.dock-label {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
}
.dock-sub {
  font-size: 0.65rem;
  opacity: 0.8;
  line-height: 1;
  margin-top: 3px;
}

.dock-whatsapp {
  background: var(--sage);
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.dock-call {
  background: var(--crimson);
  color: #fff;
  flex: 1.2;
}

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
.toast {
  background: var(--card-bg);
  color: var(--charcoal);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-animate="fade-left"]  { transform: translateX(28px); }
[data-animate="fade-right"] { transform: translateX(-28px); }

[data-animate].visible {
  opacity: 1;
  transform: translate(0);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-section { padding: 48px 0 60px; }
  .hero-image-col { margin-top: 40px; }
  .hero-img { aspect-ratio: 3/2; }
  .hero-image-tag { left: 0; bottom: -16px; }
  .hero-image-bg-shape { display: none; }
  .section-pad { padding: 64px 0; }

  .spec-card { flex-direction: column; }
  .spec-illustration {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px;
  }
  .spec-illustration svg { width: 180px; height: 180px; }
  .spec-content { padding: 28px 24px; }
  .spec-number { font-size: 2.5rem; }

  .booking-step { padding: 16px 0; border-bottom: 1px solid var(--border); }
  .booking-step:last-of-type { border-bottom: none; }
  .booking-cta-col { padding: 20px 0 0; width: 100%; }
  .btn-book-secure { width: 100%; justify-content: center; }
}

@media (max-width: 576px) {
  .hero-headline { font-size: 2rem; }
  .hero-badges { gap: 16px; }
  .privacy-headline { font-size: 1.8rem; }
  .legacy-title { font-size: 1.7rem; }
  body { padding-bottom: 70px; } /* space for dock */
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}