/* ═══════════════════════════════════════════════════════
   AURELIJA MED. KOSMETOLOGĖ — editorial medical-spa system
   Design: warm cream + bronze + sage. Asymmetric editorial.
   ═══════════════════════════════════════════════════════ */

:root {
  /* core palette */
  --bg: #FAF6F0;
  --bg-2: #F2EBE0;
  --bg-3: #EBE0D2;
  --ink: #1F1410;
  --ink-2: #3A2A22;
  --muted: #6B5D54;
  --line: rgba(31, 20, 16, 0.10);
  --line-2: rgba(31, 20, 16, 0.18);

  /* accents */
  --bronze: #B87644;
  --bronze-d: #8E5631;
  --sage: #5C7A6A;
  --sage-d: #3F5A4D;
  --gold: #D9A86C;
  --rose: #C7857A;

  /* surfaces */
  --card: #FFFFFF;
  --card-2: #FFFBF4;
  --shadow-sm: 0 1px 2px rgba(31, 20, 16, 0.04), 0 4px 12px rgba(31, 20, 16, 0.04);
  --shadow-md: 0 4px 16px rgba(31, 20, 16, 0.06), 0 16px 40px rgba(31, 20, 16, 0.08);
  --shadow-lg: 0 12px 40px rgba(31, 20, 16, 0.10), 0 32px 80px rgba(31, 20, 16, 0.12);

  --radius: 18px;
  --radius-lg: 28px;
  --max: 1240px;

  /* type */
  --serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

[data-theme="dark"] {
  --bg: #14100D;
  --bg-2: #1C1612;
  --bg-3: #251D17;
  --ink: #F4ECDF;
  --ink-2: #DFD2C0;
  --muted: #9A8E80;
  --line: rgba(244, 236, 223, 0.10);
  --line-2: rgba(244, 236, 223, 0.18);
  --card: #1F1814;
  --card-2: #261E18;
  --bronze: #D29770;
  --sage: #8FB1A0;
  --gold: #E8C28E;
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4), 0 16px 40px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5), 0 32px 80px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ═══════════ BACKGROUND ATMOSPHERE ═══════════ */
.mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.mesh .m {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: drift 30s ease-in-out infinite;
}
.mesh .m1 { width: 480px; height: 480px; background: var(--bronze); top: -100px; left: -120px; animation-delay: 0s; }
.mesh .m2 { width: 380px; height: 380px; background: var(--sage); top: 40%; right: -100px; animation-delay: -10s; }
.mesh .m3 { width: 420px; height: 420px; background: var(--rose); bottom: -120px; left: 30%; animation-delay: -20s; opacity: 0.25; }

[data-theme="dark"] .mesh .m { opacity: 0.18; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 118, 68, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
  mix-blend-mode: multiply;
}
[data-theme="dark"] .cursor-glow { mix-blend-mode: screen; opacity: 0; }

/* ═══════════ RIBBON ═══════════ */
.ribbon {
  position: relative;
  z-index: 10;
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  font-size: 13px;
  padding: 10px 20px;
  letter-spacing: 0.01em;
}
.ribbon a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.ribbon .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ═══════════ NAVIGATION ═══════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease, background 0.3s ease;
}
[data-theme="dark"] .nav {
  background: color-mix(in srgb, var(--bg) 85%, transparent);
}
.nav.scrolled { padding: 10px 40px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-text em {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-2);
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--bronze);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--bronze); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.theme-toggle, .menu-toggle {
  background: transparent;
  border: 1px solid var(--line-2);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.theme-toggle:hover, .menu-toggle:hover {
  background: var(--bg-3);
}
.menu-toggle { display: none; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  font-family: var(--sans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--bronze-d);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(142, 86, 49, 0.25);
}
.mezotix .btn-primary:hover,
.rsv-card .btn-primary:hover {
  background: var(--bg);
  box-shadow: 0 8px 24px rgba(217, 168, 108, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  background: var(--bg-3);
  border-color: var(--ink);
}
.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; gap: 4px; }

/* ═══════════ CONTAINER ═══════════ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.section-title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--bronze);
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  padding: 100px 0 120px;
  z-index: 2;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
[data-theme="dark"] .hero-eyebrow {
  background: rgba(255, 255, 255, 0.04);
}
.hero-eyebrow .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 0 var(--sage);
  animation: ring 2s infinite;
}
@keyframes ring {
  0% { box-shadow: 0 0 0 0 rgba(92, 122, 106, 0.6); }
  100% { box-shadow: 0 0 0 10px rgba(92, 122, 106, 0); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7.5vw, 92px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--bronze);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.title-accent {
  position: relative;
  display: inline-block;
}
.title-accent::after {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: -0.05em;
  right: -0.05em;
  height: 0.18em;
  background: linear-gradient(90deg, transparent, rgba(184, 118, 68, 0.25), transparent);
  z-index: -1;
}

.hero-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.hero-lead strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 540px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-num.stat-text {
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.005em;
  font-style: italic;
  color: var(--bronze);
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

/* hero card */
.hero-card-wrap {
  position: relative;
}
.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-card-ghost {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bronze), var(--sage));
  border-radius: var(--radius-lg);
  opacity: 0.15;
  transform: translate(20px, 20px);
  z-index: 1;
  filter: blur(2px);
}
.card-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 600;
}
.card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--ink);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px rgba(92, 122, 106, 0.18);
}
.status-dot.closed {
  background: var(--rose);
  box-shadow: 0 0 0 3px rgba(199, 133, 122, 0.18);
}
.card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
}
.card-label {
  color: var(--muted);
  letter-spacing: 0.02em;
}
.card-value {
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}
.card-divider {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}
.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: 12px;
  background: var(--bg-3);
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}
.card-cta:hover { background: var(--ink); color: var(--bg); }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  animation: bounceDown 2.5s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ═══════════ MARQUEE ═══════════ */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
  z-index: 2;
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 36px;
  animation: scroll-x 30s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--muted);
  letter-spacing: -0.01em;
}
.marquee-track span { flex-shrink: 0; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════ PHILOSOPHY ═══════════ */
.philosophy { padding: 140px 0; position: relative; z-index: 2; }
.phil-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}
.phil-aside { position: sticky; top: 100px; }
.phil-main { max-width: 760px; }
.phil-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 28px;
  max-width: 640px;
}
.phil-lead:first-of-type { margin-top: 40px; }

.phil-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.pillar {
  padding: 28px 24px;
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pillar-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--bronze);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}
.pillar p { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ═══════════ PROCEDURES ═══════════ */
.procedures {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  z-index: 2;
}
.proc-head { max-width: 720px; margin-bottom: 60px; }
.proc-head .section-title { margin-top: 0; }

.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proc-card {
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.proc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}

.proc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg-3);
  color: var(--bronze);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}
.proc-card:hover .proc-icon {
  background: var(--ink);
  color: var(--bg);
}

.proc-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.proc-card p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.proc-card p strong { color: var(--ink); font-weight: 600; }
.proc-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  gap: 10px;
}
.proc-price {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.proc-dur {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.proc-highlight .proc-meta { border-top-color: rgba(255,255,255,0.15); }
.proc-highlight .proc-price { color: var(--gold); }
.proc-highlight .proc-dur { color: rgba(244,236,223,0.55); }
.proc-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 8px;
}
.proc-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.proc-link:hover { color: var(--bronze); border-color: var(--bronze); }

.proc-highlight {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--bg);
  border-color: transparent;
}
.proc-highlight h3 { color: var(--bg); }
.proc-highlight .proc-tag { color: var(--gold); }
.proc-highlight p { color: rgba(244, 236, 223, 0.7); }
.proc-highlight .proc-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}
.proc-highlight:hover .proc-icon {
  background: var(--gold);
  color: var(--ink);
}
.proc-highlight .proc-link {
  color: var(--bg);
  border-color: var(--bg);
}

.proc-soft {
  background: linear-gradient(135deg, rgba(184, 118, 68, 0.10), rgba(92, 122, 106, 0.06));
  border-color: var(--line);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  grid-template-areas:
    "icon title meta link"
    "icon desc  meta link";
  align-items: center;
  column-gap: 28px;
  row-gap: 4px;
  padding: 28px 32px;
}
.proc-soft .proc-icon { grid-area: icon; margin-bottom: 0; }
.proc-soft h3 { grid-area: title; margin: 0; }
.proc-soft p { grid-area: desc; margin: 0; max-width: 540px; }
.proc-soft .proc-meta {
  grid-area: meta;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.proc-soft .proc-link {
  grid-area: link;
  margin-top: 0;
  white-space: nowrap;
}

.proc-foot {
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.proc-foot a { color: var(--bronze); border-bottom: 1px solid var(--bronze); padding-bottom: 1px; }

/* ═══════════ MEZOTIX FEATURE ═══════════ */
.mezotix {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--bg);
  z-index: 2;
}
.mezotix-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(184, 118, 68, 0.15), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(92, 122, 106, 0.12), transparent 60%);
  pointer-events: none;
}
.mezotix .section-tag { color: var(--gold); }
.mezotix .section-title { color: var(--bg); }
.mezotix .section-title em { color: var(--gold); }

.mz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mz-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
}
.mz-orb {
  width: 100%;
  height: 100%;
  animation: orbFloat 8s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.mz-dots { animation: orbSpin 30s linear infinite; transform-origin: center; }
@keyframes orbSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.mz-lead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(244, 236, 223, 0.75);
  margin: 28px 0 36px;
  max-width: 520px;
}
.mz-points {
  list-style: none;
  margin-bottom: 40px;
}
.mz-points li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(244, 236, 223, 0.12);
  font-size: 15px;
  line-height: 1.5;
}
.mz-points li:last-child { border-bottom: 1px solid rgba(244, 236, 223, 0.12); }
.mz-points strong {
  color: var(--bg);
  font-weight: 500;
  margin-right: 4px;
}
.mz-points li > div { color: rgba(244, 236, 223, 0.65); }
.mz-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  box-shadow: 0 0 0 3px rgba(217, 168, 108, 0.18);
}
.mezotix .btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.mezotix .btn-primary:hover {
  background: var(--bg);
}

/* ═══════════ PROBLEMS (accordion) ═══════════ */
.problems { padding: 120px 0; position: relative; z-index: 2; }
.prob-head { max-width: 720px; margin-bottom: 60px; }

.prob-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.prob-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.prob-item[open] {
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.prob-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  transition: background 0.2s ease;
}
.prob-item summary::-webkit-details-marker { display: none; }
.prob-item summary:hover { background: var(--bg-2); }

.prob-marker {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--bronze);
  flex-shrink: 0;
  font-style: italic;
}
.prob-item[open] .prob-marker {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold);
}
.prob-title { flex: 1; }
.prob-arrow {
  font-size: 20px;
  font-family: var(--sans);
  color: var(--muted);
  font-weight: 300;
  transition: transform 0.3s ease;
}
.prob-item[open] .prob-arrow { transform: rotate(45deg); color: var(--ink); }

.prob-body {
  padding: 0 28px 28px 84px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.prob-tags {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--bronze);
  letter-spacing: 0.04em;
  font-weight: 500;
}
.prob-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.prob-cta-alt {
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.prob-cta-alt:hover { color: var(--bronze); border-color: var(--bronze); }

/* ═══════════ PROCESS ═══════════ */
.process {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  z-index: 2;
}
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: start;
  margin-top: 60px;
}
.step {
  text-align: left;
  padding: 0 18px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--bronze);
  font-style: italic;
  font-variation-settings: "WONK" 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.step h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}
.step-time {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 12px;
}
.step p { color: var(--muted); font-size: 14px; line-height: 1.5; }

.step-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
  margin: 0;
  align-self: start;
  margin-top: 18px;
  position: relative;
}
.step-line::after {
  content: '→';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-55%);
  color: var(--muted);
  font-size: 14px;
}

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials { padding: 120px 0; position: relative; z-index: 2; }
.testi-head { max-width: 720px; margin-bottom: 60px; }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.testi-card { display: flex; flex-direction: column; }
.testi-card blockquote { flex: 1; }
.testi-card {
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-feature {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--bg);
  border-color: transparent;
  grid-row: span 1;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.testi-feature::before {
  content: '"';
  position: absolute;
  font-family: var(--serif);
  font-size: 200px;
  color: var(--gold);
  opacity: 0.15;
  top: -40px;
  left: 16px;
  line-height: 1;
}
.stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.testi-card blockquote {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 24px;
  font-style: italic;
  letter-spacing: -0.005em;
}
.testi-card.testi-feature blockquote {
  color: var(--bg);
  font-size: 22px;
  line-height: 1.45;
}
.testi-card.testi-feature blockquote em { color: var(--gold); }
.testi-card.testi-feature figcaption strong { color: var(--bg); }

.testi-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-card figcaption strong {
  font-weight: 500;
  color: var(--ink);
  font-size: 14px;
}
.testi-card figcaption span {
  font-size: 12px;
  color: var(--muted);
}
.testi-feature figcaption span { color: rgba(244, 236, 223, 0.55); }

.testi-source {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.testi-source a { color: var(--bronze); border-bottom: 1px solid var(--bronze); padding-bottom: 1px; }

/* ═══════════ ABOUT ═══════════ */
.about {
  padding: 140px 0;
  background: var(--bg-2);
  position: relative;
  z-index: 2;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-portrait { position: relative; }
.portrait-frame {
  aspect-ratio: 3/4;
  border-radius: 200px 200px 24px 24px;
  background: linear-gradient(135deg, var(--bronze) 0%, var(--rose) 50%, var(--sage) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.3), transparent 50%),
    radial-gradient(circle at 50% 70%, rgba(31, 20, 16, 0.2), transparent 60%);
}
.portrait-initials {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 180px;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  font-variation-settings: "WONK" 1, "SOFT" 100;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 40px rgba(31, 20, 16, 0.3);
}
.portrait-glow {
  position: absolute;
  inset: -20px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(184, 118, 68, 0.4), transparent 70%);
  z-index: -1;
  filter: blur(40px);
}

.portrait-cred {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.cred-line {
  padding: 8px 0;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px dashed var(--line);
  position: relative;
  padding-left: 22px;
}
.cred-line:last-child { border-bottom: none; }
.cred-line::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--sage);
  font-weight: 700;
}

.about-text p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 24px;
  max-width: 600px;
}
.about-text p:first-of-type { margin-top: 36px; }
.about-text p em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 19px;
}

.about-brands { margin-top: 40px; }
.brands-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.brands-list span {
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink);
  background: var(--card);
}

/* ═══════════ FAQ ═══════════ */
.faq { padding: 120px 0; position: relative; z-index: 2; }
.faq-head { max-width: 720px; margin-bottom: 60px; }
.faq-list { max-width: 860px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--bronze); }
.faq summary span {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}
.faq details[open] summary span { transform: rotate(45deg); color: var(--bronze); }
.faq details > div {
  padding: 0 0 24px 0;
  max-width: 720px;
}
.faq details > div p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

/* ═══════════ RESERVATION CTA ═══════════ */
.reservation {
  padding: 60px 0 120px;
  position: relative;
  z-index: 2;
}
.rsv-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.rsv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 168, 108, 0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(92, 122, 106, 0.18), transparent 50%);
  pointer-events: none;
}
.rsv-left { position: relative; z-index: 2; }
.rsv-card .section-tag { color: var(--gold); }
.rsv-card .section-title { color: var(--bg); }
.rsv-card .section-title em { color: var(--gold); }
.rsv-card p {
  color: rgba(244, 236, 223, 0.75);
  font-size: 16px;
  line-height: 1.6;
  margin: 24px 0 32px;
  max-width: 480px;
}
.rsv-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.rsv-card .btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.rsv-card .btn-primary:hover { background: var(--bg); }
.rsv-card .btn-ghost {
  color: var(--bg);
  border-color: rgba(244, 236, 223, 0.3);
}
.rsv-card .btn-ghost:hover {
  background: rgba(244, 236, 223, 0.1);
  border-color: var(--bg);
}

.rsv-right {
  position: relative;
  z-index: 2;
}
.rsv-quick {
  background: rgba(244, 236, 223, 0.05);
  border: 1px solid rgba(244, 236, 223, 0.12);
  border-radius: var(--radius);
  padding: 8px 24px;
  backdrop-filter: blur(10px);
}
.quick-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(244, 236, 223, 0.12);
  font-size: 14px;
}
.quick-row:last-child { border-bottom: none; }
.quick-row span { color: rgba(244, 236, 223, 0.55); }
.quick-row strong {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--bg);
  font-size: 15px;
}

/* ═══════════ CONTACT ═══════════ */
.contact {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  z-index: 2;
}
.ct-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px 80px;
  align-items: start;
}
.ct-map {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--card);
  position: relative;
}
.ct-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
  filter: saturate(0.85) contrast(0.95);
}
.ct-map-cta {
  display: block;
  padding: 16px 24px;
  background: var(--card);
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.ct-map-cta:hover { background: var(--ink); color: var(--bg); }
.ct-lead {
  font-size: 18px;
  color: var(--muted);
  margin-top: 24px;
  max-width: 480px;
  line-height: 1.55;
}
.ct-rows { margin-top: 40px; }
.ct-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.ct-row:last-child { border-bottom: none; }
.ct-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.ct-row a {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  transition: color 0.2s ease;
  letter-spacing: -0.005em;
}
.ct-row a:hover { color: var(--bronze); }

.ct-hours {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.ct-hours h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--ink);
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
  color: var(--ink);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:last-child {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hours-list li.closed span { color: var(--muted); }
.ct-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  padding: 80px 0 40px;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  z-index: 2;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}
.ft-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ft-brand .brand-mark { margin-bottom: 8px; }
.ft-brand strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--bg);
}
.ft-brand em {
  font-style: italic;
  color: rgba(244, 236, 223, 0.55);
  font-family: var(--serif);
  font-size: 15px;
}
.ft-col h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.ft-col a, .ft-col span {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: rgba(244, 236, 223, 0.7);
  transition: color 0.2s ease;
}
.ft-col a:hover { color: var(--gold); }
.ft-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(244, 236, 223, 0.12);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(244, 236, 223, 0.45);
}
.ft-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.ft-links a {
  color: rgba(244, 236, 223, 0.55);
  transition: color 0.2s ease;
}
.ft-links a:hover { color: var(--gold); }
.ft-credit {
  font-size: 12px;
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.ft-credit em {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(244, 236, 223, 0.7);
}
.ft-credit:hover em { color: var(--gold); }

/* ═══════════ FLOATING CTA STACK ═══════════ */
.float-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.float-stack.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 8px 30px rgba(31, 20, 16, 0.25);
  transition: transform 0.2s ease;
}
.float-cta:active { transform: scale(0.96); }
.float-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
}
.float-wa:active { transform: scale(0.96); }

/* ═══════════ MOBILE MENU OVERLAY ═══════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--ink);
  cursor: pointer;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .nav { padding: 16px 24px; }
  .nav-links { gap: 20px; font-size: 13px; }
  .container { padding: 0 24px; }
  .hero-grid { padding: 0 24px; gap: 60px; }
  .hero { padding: 60px 0 80px; }
  .phil-grid { grid-template-columns: 1fr; gap: 40px; }
  .phil-aside { position: static; }
  .phil-pillars { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .mz-grid { grid-template-columns: 1fr; gap: 40px; }
  .mz-visual { max-width: 360px; margin: 0 auto; }
  .prob-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; gap: 24px; }
  .step-line { display: none; }
  .step { padding: 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .ct-grid { grid-template-columns: 1fr; gap: 40px; }
  .rsv-card { grid-template-columns: 1fr; gap: 40px; padding: 50px 40px; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; }
}

@media (max-width: 720px) {
  .ribbon { font-size: 12px; padding: 8px 16px; }
  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
  .hero-card-wrap { max-width: 420px; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .hero-scroll { display: none; }
  .nav-cta .btn-primary { display: none; }
  .container { padding: 0 20px; }
  .philosophy, .procedures, .mezotix, .problems, .process, .testimonials, .about, .faq, .reservation, .contact {
    padding: 70px 0;
  }
  .proc-grid { grid-template-columns: 1fr; }
  .rsv-card { padding: 40px 28px; }
  .prob-item summary { padding: 18px 20px; gap: 12px; font-size: 17px; }
  .prob-body { padding: 0 20px 20px 64px; }
  .ft-grid { grid-template-columns: 1fr; gap: 32px; }
  .ft-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .ct-map iframe { height: 280px; }
  .prob-cta-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-card-ghost { transform: translate(8px, 8px); }
  body { padding-bottom: 90px; }
  .float-stack { bottom: 16px; right: 16px; }
  .float-cta { padding: 12px 18px; font-size: 13px; }
  .float-wa { width: 46px; height: 46px; }
  .portrait-initials { font-size: 120px; }
  .ct-row { grid-template-columns: 1fr; gap: 4px; }
  .ct-row a { font-size: 17px; }
  .testi-feature { padding: 32px 24px; }
  .testi-feature blockquote { font-size: 18px; }
  .marquee-track { font-size: 18px; gap: 24px; }
  .hero-title { font-size: clamp(40px, 11vw, 64px); }
}

/* ═══════════ DARK MODE — fix inverting dark-surface sections ═══════════
   In dark mode, --ink becomes cream (#F4ECDF). Sections that hard-baked
   "dark by design" via background: var(--ink) invert and become unreadable.
   These overrides hardcode actual dark colors instead. */
[data-theme="dark"] .proc-highlight,
[data-theme="dark"] .testi-feature,
[data-theme="dark"] .rsv-card {
  background: linear-gradient(135deg, #0E0A08 0%, #1A130F 100%);
  color: #F4ECDF;
}
[data-theme="dark"] .proc-highlight h3,
[data-theme="dark"] .testi-feature blockquote,
[data-theme="dark"] .testi-feature figcaption strong,
[data-theme="dark"] .rsv-card .section-title {
  color: #F4ECDF;
}
[data-theme="dark"] .proc-highlight p,
[data-theme="dark"] .testi-feature figcaption span,
[data-theme="dark"] .rsv-card p {
  color: rgba(244, 236, 223, 0.7);
}
[data-theme="dark"] .mezotix {
  background: #0E0A08;
  color: #F4ECDF;
}
[data-theme="dark"] .mezotix .section-title { color: #F4ECDF; }
[data-theme="dark"] .mezotix .mz-lead,
[data-theme="dark"] .mezotix .mz-points li > div {
  color: rgba(244, 236, 223, 0.7);
}
[data-theme="dark"] .footer {
  background: #0E0A08;
  color: #F4ECDF;
}
[data-theme="dark"] .footer .ft-brand strong { color: #F4ECDF; }
[data-theme="dark"] .ribbon {
  background: #0E0A08;
  color: #F4ECDF;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
