:root {
  --bg: #1a051d;
  --surface: #210a23;
  --surface-2: #2e1730;
  --primary: #2d0a31;
  --accent: #e0b0ff;
  --gold: #d4af37;
  --text: #fcd7fa;
  --muted: #d0c3cc;
  --outline: #4d444c;
  --shell: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Hanken Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.15;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); font-weight: 900; letter-spacing: .01em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

a { color: var(--accent); }

.shell { width: min(var(--shell), calc(100% - 40px)); margin-inline: auto; }

/* ---------- top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(26, 5, 29, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--outline);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}

.brand img { width: 38px; height: 38px; border-radius: 10px; }

.links { display: flex; align-items: center; gap: 22px; }
.links a { color: var(--muted); text-decoration: none; font-size: .95rem; }
.links a:hover { color: var(--accent); }

.button {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--gold), #a9821c);
  color: #241a00;
  font-weight: 700;
  text-decoration: none;
  border: none;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.button.small { padding: 8px 18px; font-size: .9rem; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 96px 0 88px;
  overflow: hidden;
  border-bottom: 1px solid var(--outline);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/bg_temple_hall.webp") center/cover no-repeat;
  opacity: .5;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,5,29,.55), rgba(26,5,29,.95));
}

.hero .shell { position: relative; z-index: 1; }

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero p.lead {
  max-width: 620px;
  font-size: 1.12rem;
  color: var(--muted);
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.disclaimer-strip {
  margin-top: 34px;
  padding: 14px 18px;
  border: 1px solid var(--outline);
  border-radius: 12px;
  background: rgba(46, 23, 48, .7);
  font-size: .9rem;
  color: var(--muted);
  max-width: 640px;
}

/* ---------- sections ---------- */

section { padding: 76px 0; }
section + section { border-top: 1px solid var(--outline); }

.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head p { color: var(--muted); margin: 0; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--outline);
  border-radius: 12px;
  padding: 26px;
}

.card img { width: 64px; height: 64px; object-fit: contain; margin-bottom: 16px; }
.card h3 { margin-bottom: .4em; }
.card p { margin: 0; color: var(--muted); font-size: .96rem; }

.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.shots img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--outline);
  display: block;
}

.faq details {
  border: 1px solid var(--outline);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 12px;
  background: var(--surface);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
}

.faq p { color: var(--muted); margin: 12px 0 0; }

/* ---------- policy ---------- */

.policy { padding: 64px 0 96px; }
.policy .shell { max-width: 820px; }
.policy h2 { margin-top: 2em; }
.policy h3 { margin-top: 1.6em; }
.policy p, .policy li { color: var(--muted); }
.policy ul { padding-left: 22px; }
.policy .updated { color: var(--accent); font-size: .9rem; }

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--outline);
  padding: 40px 0;
  color: var(--muted);
  font-size: .9rem;
}

footer .foot {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

footer a { color: var(--muted); text-decoration: none; margin-right: 18px; }
footer a:hover { color: var(--accent); }

@media (max-width: 720px) {
  .links a:not(.button) { display: none; }
  .hero { padding: 64px 0 56px; }
  section { padding: 56px 0; }
}
