/* ============================================================
   KSAS D' DURAN — Luxury Digital Guest Guide
   Premium Edition · Optimized for Netlify
   ============================================================ */

:root {
  /* Core Luxury Palette */
  --gold: #c9a227;
  --gold-light: #f0d78c;
  --gold-soft: rgba(201, 162, 39, 0.14);
  --gold-border: rgba(201, 162, 39, 0.28);
  --ink: #070708;
  --ink-soft: #0e0e10;
  --panel: rgba(18, 18, 20, 0.78);
  --panel-solid: #141416;
  --panel-elevated: rgba(24, 24, 27, 0.92);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-soft: #71717a;
  --success: #34d399;
  --danger: #f87171;
  --radius-lg: 1.75rem;
  --radius-md: 1.25rem;
  --radius-sm: 0.85rem;
  --shadow-luxury: 0 25px 80px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.28);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

h1, h2, h3, .serif { font-family: var(--font-serif); font-weight: 600; }

/* ---------- Luxury Background ---------- */
.luxury-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(201, 162, 39, 0.13), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(59, 130, 246, 0.06), transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(201, 162, 39, 0.05), transparent 50%),
    #070708;
}
.luxury-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}

/* ---------- Typography ---------- */
.luxury-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: linear-gradient(105deg, #f5e6b8 0%, #c9a227 45%, #f0d78c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.section-title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0.4rem 0 0;
}
.section-lead {
  max-width: 38rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 1rem;
}

/* ---------- Layout ---------- */
.section-shell {
  width: min(100%, 72rem);
  margin-inline: auto;
  padding: 5rem 1.25rem;
}
@media (max-width: 767px) {
  .section-shell { padding: 3.75rem 1.1rem; }
}

/* ---------- Glass & Cards ---------- */
.glass {
  background: var(--panel);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}
.card {
  background: var(--panel-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,162,39,0.08);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1.5px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, #e2c15a 0%, #c9a227 50%, #b8921f 100%);
  color: #0a0a0b;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #f0d078 0%, #d4af37 50%, #c9a227 100%);
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.38);
}
.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: var(--gold-soft);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 7, 8, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
}
.nav-link {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--gold-light); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background-color: #0a0a0b;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: -8%;
  background:
    linear-gradient(180deg, rgba(7,7,8,0.35) 0%, rgba(7,7,8,0.55) 40%, rgba(7,7,8,0.88) 100%),
    url("../assets/images/hero-pool-night.jpg") center/cover no-repeat;
  animation: kenBurns 28s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media::before { animation: none; }
}
.hero-content {
  text-align: center;
  padding: 2rem 1.25rem 4rem;
  max-width: 52rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gold-border);
  background: rgba(201, 162, 39, 0.08);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
  background: linear-gradient(115deg, #ffffff 10%, #f0d78c 55%, #c9a227 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin: 1.35rem auto 0;
  max-width: 32rem;
  font-size: 1.15rem;
  color: #d4d4d8;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.25rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}
.hero-stat span {
  font-size: 0.78rem;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Luxury Intro Overlay ---------- */
.luxury-intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 20% 15%, rgba(201,162,39,0.14), transparent 32%),
    radial-gradient(circle at 85% 80%, rgba(201,162,39,0.07), transparent 28%),
    linear-gradient(160deg, #050505 0%, #0c0b09 50%, #040404 100%);
  transition: opacity 0.85s ease, visibility 0.85s ease;
}
.luxury-intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.luxury-intro-panel {
  width: min(640px, 100%);
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.4rem, 4vw, 2.5rem);
  border-radius: 2rem;
  border: 1px solid var(--gold-border);
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: 0 40px 120px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.04);
}
.luxury-intro-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}
.luxury-intro-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  line-height: 1.02;
  margin: 0;
  background: linear-gradient(110deg, #fff8e0, #c9a227 50%, #fff1b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.luxury-intro-subtitle {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: #d4d4d8;
  font-weight: 500;
}
.luxury-intro-copy {
  margin: 1.5rem auto 0;
  max-width: 480px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.luxury-intro-emphasis {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-light);
  line-height: 1.45;
}
.luxury-intro-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 2rem;
}
@media (min-width: 480px) {
  .luxury-intro-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ---------- Feature Cards ---------- */
.feature-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--panel-elevated);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border);
}
.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
  letter-spacing: -0.01em;
}
.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Image feature cards (luxury) */
.feature-card-image {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feature-card-image .feature-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.feature-card-image .feature-body {
  padding: 1.25rem 1.4rem 1.5rem;
}
.feature-card-image h3 {
  margin-bottom: 0.4rem;
}
@media (min-width: 768px) {
  .feature-card-image .feature-img {
    height: 220px;
  }
}

/* Property showcase */
.property-showcase {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel-elevated);
}
.property-showcase img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
}
.property-caption {
  padding: 1.5rem 1.6rem 1.75rem;
}
.property-caption h3 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.015em;
}
.property-caption p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 42rem;
}

/* Experience the Home */
.experience-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .experience-grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
  }
  .experience-card:first-child {
    grid-row: 1 / 3;
  }
}
.experience-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel-elevated);
  min-height: 240px;
  isolation: isolate;
}
.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.experience-card:hover img {
  transform: scale(1.06);
}
.experience-card .experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7,7,8,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem 1.5rem;
  z-index: 1;
}
.experience-card .experience-overlay h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.experience-card .experience-overlay p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.experience-card.tall {
  min-height: 420px;
}
@media (min-width: 768px) {
  .experience-card.tall {
    min-height: 100%;
  }
}

/* Fade-in on scroll helper */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* House rules & checklist */
.rules-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
}
.rule-block h4 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.65rem;
  font-size: 1rem;
  color: var(--gold-light);
}
.rule-block ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.rule-block li { margin-bottom: 0.35rem; }
.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.checklist li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: rgba(255,255,255,0.02);
  color: var(--text-muted);
  font-size: 0.92rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.05rem;
  height: 1.05rem;
  border: 1.5px solid var(--gold-border);
  border-radius: 0.3rem;
  background: rgba(201,162,39,0.08);
}

/* Wellness Journey steps */
.journey-steps {
  display: grid;
  gap: 0.85rem;
}
.journey-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255,255,255,0.02);
}
.journey-step .step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.85rem;
}
.journey-step strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
}
.journey-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Featured restaurant */
.featured-restaurant {
  border: 1px solid var(--gold-border);
  background: linear-gradient(145deg, rgba(201,162,39,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* ---------- Amenity / Info Cards ---------- */
.info-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (min-width: 700px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}
.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
}
.info-card i {
  flex-shrink: 0;
  width: 1.25rem;
  margin-top: 0.15rem;
  color: var(--gold);
}
.info-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.info-card span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Wellness Journey Launch ---------- */
.wellness-launch {
  margin-top: 2rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  background:
    radial-gradient(circle at 90% 15%, rgba(201,162,39,0.12), transparent 40%),
    linear-gradient(145deg, rgba(201,162,39,0.06), rgba(255,255,255,0.02));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.wellness-launch h3 {
  font-size: 1.45rem;
  margin: 0.25rem 0 0.4rem;
}
.wellness-launch p {
  margin: 0;
  color: var(--text-muted);
  max-width: 28rem;
  font-size: 0.95rem;
}

/* ---------- Map & Explore ---------- */
.map-shell {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111;
  margin-top: 1.5rem;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0;
}
.filter-chip {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-chip:hover,
.filter-chip.active {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold-light);
}

/* ---------- Contact / Essentials ---------- */
.contact-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (min-width: 640px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
.contact-card {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: var(--panel-elevated);
  border: 1px solid var(--border);
}
.contact-card .label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}
.contact-card .value {
  font-size: 1.1rem;
  font-weight: 600;
  word-break: break-all;
}
.contact-card .hint {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.25rem 6rem;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.85rem;
}
.site-footer .luxury-name {
  font-size: 1.35rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* ---------- Floating Mobile Bar ---------- */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(7,7,8,0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}
@media (min-width: 900px) {
  .mobile-bar { display: none; }
}
.mobile-bar .btn {
  flex: 1;
  min-height: 44px;
  font-size: 0.82rem;
  padding: 0.5rem 0.75rem;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(5.5rem + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(12px);
  z-index: 90;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: rgba(20,20,22,0.95);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Utility ---------- */
.gold { color: var(--gold); }
.gold-light { color: var(--gold-light); }
.text-muted { color: var(--text-muted); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-nav, .mobile-bar, .luxury-intro, .toast { display: none !important; }
  body { background: white; color: black; }
  .card, .glass { box-shadow: none; border: 1px solid #ccc; }
}
