/* =========================================================
   Gabriel Holbrook — site stylesheet
   Dark gothic / dark-fantasy theme
   ========================================================= */

:root {
  --bg: #0a0908;
  --bg-alt: #131110;
  --bg-card: #17140f;
  --line: rgba(201, 168, 106, 0.22);
  --line-bright: rgba(201, 168, 106, 0.5);
  --text: #e9e4d8;
  --text-muted: #a89f8f;
  --gold: #c9a86a;
  --gold-bright: #e6c988;
  --danger: #8a5a4a;
  --maxw: 1180px;
  --serif-display: 'Cinzel', 'Georgia', serif;
  --serif-body: 'Cormorant Garamond', 'Georgia', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif-body);
  font-size: 19px;
  line-height: 1.7;
  background-image:
    radial-gradient(ellipse at 20% -10%, rgba(201,168,106,0.06), transparent 45%),
    radial-gradient(ellipse at 100% 0%, rgba(120,90,160,0.05), transparent 40%);
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  font-family: var(--serif-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 0.6em;
}

h1 { font-size: 2.4rem; letter-spacing: 0.06em; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.2rem; }

p { color: var(--text-muted); }

a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--gold); }

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Top navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.nav .brand img {
  height: 34px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(201,168,106,0.15));
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  font-family: var(--serif-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

.nav-links a.active { color: var(--gold-bright); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-bright);
  color: var(--text);
  padding: 8px 12px;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 2px;
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-alt);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 16px 28px; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: inline-block; }
}

/* ---------- Buttons / badges ---------- */
.btn {
  display: inline-block;
  font-family: var(--serif-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--gold); color: #0a0908; }

.btn-solid {
  background: var(--gold);
  color: #0a0908;
}
.btn-solid:hover { background: var(--gold-bright); color: #0a0908; }

.btn[disabled], .btn.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.badge {
  display: inline-block;
  font-family: var(--serif-display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid var(--line-bright);
  color: var(--gold);
  border-radius: 2px;
  background: rgba(201,168,106,0.06);
}

.badge.soon {
  color: #b79b7a;
  border-color: rgba(201,168,106,0.35);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  filter: saturate(0.9) brightness(0.55);
}

.hero-bg::after { content: ''; }

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.35) 0%, rgba(10,9,8,0.55) 55%, rgba(10,9,8,0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-content .logo-mark {
  max-width: 560px;
  width: 90%;
  margin: 0 auto 22px;
}

.hero-tagline {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head .kicker {
  display: block;
  font-family: var(--serif-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ---------- Card grids ---------- */
.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--line-bright); transform: translateY(-3px); }

.card .thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #000;
}
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card .thumb.locked img { filter: grayscale(0.5) brightness(0.4) blur(1px); }

.card-body { padding: 18px 20px 22px; }
.card-body h3 { margin-bottom: 6px; }
.card-body .meta {
  font-family: var(--serif-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.card-body p { font-size: 0.95rem; margin: 0 0 14px; }

.card-links { display: flex; gap: 10px; flex-wrap: wrap; }
.card-links a {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line-bright);
  padding: 7px 12px;
  color: var(--text);
}
.card-links a:hover { border-color: var(--gold); color: var(--gold-bright); }

.price {
  font-family: var(--serif-display);
  color: var(--gold-bright);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

/* ---------- Divider / ornament ---------- */
.ornament {
  text-align: center;
  color: var(--gold);
  opacity: 0.6;
  margin: 0 auto 40px;
  font-size: 1.4rem;
  letter-spacing: 0.4em;
}

/* ---------- About page ---------- */
.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 800px) {
  .about-layout { grid-template-columns: 1fr; }
}

.about-portrait {
  border: 1px solid var(--line);
  padding: 10px;
  background: var(--bg-card);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-note {
  border-left: 3px solid var(--gold);
  background: rgba(201,168,106,0.06);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--serif-body);
  margin-top: 20px;
}
.placeholder-note strong { color: var(--gold-bright); }

/* ---------- Store notice banner ---------- */
.notice-banner {
  border: 1px solid var(--line-bright);
  background: rgba(201,168,106,0.05);
  padding: 20px 26px;
  margin-bottom: 50px;
  text-align: center;
}
.notice-banner p { margin: 0; color: var(--text); }
.notice-banner strong { color: var(--gold-bright); }

/* ---------- Contact / social ---------- */
.social-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 900px;
  margin: 0 auto;
}
.social-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  padding: 18px 22px;
  color: var(--text);
  font-family: var(--serif-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.social-list a:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(201,168,106,0.05); }
.social-list a span.arrow { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 50px 0 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.site-footer .logo-mark { max-width: 220px; margin: 0 auto 20px; opacity: 0.85; }
.footer-links { display: flex; justify-content: center; gap: 22px; margin-bottom: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-fine { opacity: 0.6; font-size: 0.78rem; }

/* ---------- Page hero (non-home pages) ---------- */
.page-hero {
  padding: 70px 0 50px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,106,0.08), transparent 60%);
}
.page-hero .kicker {
  display: block;
  font-family: var(--serif-display);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.page-hero p.lede {
  max-width: 620px;
  margin: 18px auto 0;
}

/* misc */
.center { text-align: center; }
.mt-lg { margin-top: 60px; }
