/* ==========================================================================
   TopUp RD — Royal Dream | Premium UI
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --gold-h: 43;
  --gold-h2: 35;
  --bg: #07080d;
  --bg-soft: #0e1018;
  --surface: #131722;
  --surface-2: #1a2030;
  --surface-hover: #222a3d;
  --border: rgba(255, 255, 255, 0.07);
  --border-gold: hsla(var(--gold-h), 90%, 55%, 0.35);
  --text: #f4f6fb;
  --muted: #8b95a8;
  --gold: hsl(var(--gold-h), 95%, 58%);
  --gold-2: hsl(var(--gold-h2), 90%, 48%);
  --gold-dim: hsla(var(--gold-h), 80%, 50%, 0.12);
  --green: #34d399;
  --purple: #7c5cff;
  --red: #f87171;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 32px hsla(var(--gold-h), 80%, 50%, 0.15);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1200px;
  --header: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 20px); }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

ul { list-style: none; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: #ffe9a8; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

/* ── Header ─────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header);
  background: rgba(7, 8, 13, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--gold), var(--gold-2));
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-gold);
}

.logo span small {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-desktop a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn:active { transform: scale(0.98); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1000;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  box-shadow: 0 12px 40px rgba(255, 200, 80, 0.3);
  color: #1a1000;
}

.btn-block { width: 100%; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header) 0 0 0;
  background: rgba(7, 8, 13, 0.98);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 199;
}

.nav-mobile.is-open { display: flex; }

.nav-mobile a {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--border);
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: calc(var(--header) + 2rem) 0 3.5rem;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 420px);
  gap: 2rem 2.5rem;
  align-items: start;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 0%, rgba(124, 92, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(255, 200, 80, 0.14), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(52, 211, 153, 0.06), transparent);
}

.hero-layout {
  position: relative;
}

/* Intro — full width, centered */
/* ─── Breadcrumb (visible + schema match) ─────────────────────────────────── */
.breadcrumb {
  padding: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 0.35rem;
  color: var(--muted);
  opacity: 0.7;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  color: var(--text);
}

.hero-intro {
  text-align: left;
  max-width: none;
  margin: 0;
  padding-top: 0.5rem;
}

.hero-intro h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-intro h1 .hl {
  background: linear-gradient(90deg, var(--gold), #fff0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.hero-desc strong { color: var(--text); font-weight: 600; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  max-width: 22rem;
}

.stat-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.stat-box span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-start;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-pill svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  flex-shrink: 0;
}

.hero-order {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: calc(var(--header) + 1rem);
}

.order-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.order-panel-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.game-thumb {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, #2a1f4e, #1a1530);
  border: 1px solid var(--border-gold);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.order-panel-head h2 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.order-panel-head p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.info-highlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  margin-bottom: 1.25rem;
}

.info-highlight-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.info-highlight-amount {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.info-highlight-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
}

.info-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.info-list li {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

.partner-strip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.partner-strip-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.partner-strip-text {
  flex: 1;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.partner-strip a {
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Sections ─────────────────────────────────────────────────────── */
.section {
  padding: 5rem 0;
}

.section-muted {
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}

.section-top {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.section-top h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-top p { color: var(--muted); font-size: 0.95rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Galeri WebP */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

.gallery-item {
  margin: 0;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s, border-color 0.25s;
}

.gallery-item:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
}

.gallery-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}

.gallery-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* About: Apa itu Royal Dream? */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.about-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  line-height: 1.3;
}

.about-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-text p:last-child { margin-bottom: 0; }

.about-text strong { color: var(--text); }

.about-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: calc(var(--header) + 20px);
}

.about-visual-suit { font-size: 3.5rem; margin-bottom: 0.75rem; }

.about-visual h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.about-visual p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.about-suits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.about-suits div { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.about-suits span { font-size: 1.6rem; color: var(--purple); }
.about-suits small { font-size: 0.72rem; color: var(--muted); }

.benefits-extra {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 56rem;
  margin-inline: auto;
}

/* Benefits */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.25s, border-color 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Price cards */
.price-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
  max-width: 40rem;
  margin-inline: auto;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1rem;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.price-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.price-card.popular {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--gold-dim), var(--surface));
  position: relative;
}

.price-card .tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1a1000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card .chip-name {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-card .chip-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
}

.price-card .chip-time {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.price-meta {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Steps timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  opacity: 0.35;
}

.tl-step {
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
}

.tl-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg-soft);
}

.section-muted .tl-num { box-shadow: 0 0 0 6px var(--bg-soft); }

.tl-step h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.tl-step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.info-banner {
  margin-top: 2.5rem;
  padding: 1.15rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.info-banner a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Payment */
.pay-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 52rem;
  margin: 0 auto;
}

.pay-badge {
  padding: 0.65rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}

.pay-badge:hover {
  border-color: var(--border-gold);
  color: var(--text);
}

/* FAQ */
.faq-wrap {
  max-width: 44rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq-item.is-open { border-color: var(--border-gold); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-q:hover { color: var(--gold); }

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item.is-open .faq-chevron { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 1.35rem 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.is-open .faq-a { display: block; }

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.testi-card .stars {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.testi-text {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.testi-author {
  font-weight: 700;
  font-size: 0.88rem;
}

.testi-role {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

/* Sister sites */
.sister-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 56rem;
  margin: 0 auto;
}

.sister-links a {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}

.sister-links a:hover {
  border-color: var(--border-gold);
  color: var(--gold);
}

/* SEO prose */
.prose-box {
  max-width: 44rem;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.prose-box h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.prose-box p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.prose-box p:last-child { margin-bottom: 0; }

.prose-box strong { color: var(--text); }

.prose-box a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 1rem;
  max-width: 22rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-col li { margin-bottom: 0.55rem; }

.footer-col a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 0.9rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-visual { position: static; }

  .hero-intro {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-row {
    justify-content: center;
  }

  .hero-order {
    position: static;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .features { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .timeline::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding-top: calc(var(--header) + 2rem); }
  .hero-stats { grid-template-columns: 1fr; max-width: 14rem; }
  .features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .prose-box { padding: 1.5rem; }
  .section { padding: 3.5rem 0; }
  .hero-order { max-width: 100%; }
}

@media (min-width: 769px) {
  .nav-mobile { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
