@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #0d0d0d;
  --surface: #161616;
  --surface-2: #1f1f1f;
  --accent: #c8a96e;
  --accent-dim: #a0864f;
  --text: #e8e6e1;
  --muted: #888;
  --border: #2a2a2a;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #e8c98a; }

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: .05em;
}
.nav-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--muted);
  font-size: .875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text); transition: all .3s;
}

/* ── PAGE WRAPPER ── */
.page-wrapper { padding-top: 64px; min-height: 100vh; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, #1a1208 0%, var(--bg) 70%);
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a96e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content { position: relative; max-width: 700px; }

.hero-eyebrow {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem; font-weight: 500;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.125rem; color: var(--muted);
  margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto;
}

.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: .875rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  transition: all .25s;
  font-family: 'Inter', sans-serif;
}
.btn:hover { background: var(--accent); color: var(--bg); }
.btn-fill { background: var(--accent); color: var(--bg); }
.btn-fill:hover { background: #e8c98a; border-color: #e8c98a; color: var(--bg); }

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--muted); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
}
.scroll-hint::after {
  content: ''; display: block; width: 1px; height: 40px; background: var(--border);
}

/* ── SECTIONS ── */
section { padding: 6rem 2rem; }

.container { max-width: var(--max-w); margin: 0 auto; }

.section-label {
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem; font-weight: 500;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted); max-width: 540px; margin-bottom: 3rem;
}

.divider {
  width: 48px; height: 2px; background: var(--accent); margin: 1.5rem 0 2.5rem;
}

/* ── HOME: ABOUT SNIPPET ── */
.about-snippet {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .875rem; letter-spacing: .1em;
  text-align: center; padding: 2rem;
}
.about-img-placeholder::after {
  content: 'Replace with\nyour photo';
  display: block; white-space: pre-line;
}

.about-img-wrap::before {
  content: '';
  position: absolute; top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1px solid var(--accent); opacity: .3; pointer-events: none;
}

/* ── STREAMING LINKS ── */
.stream-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem;
}

.stream-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}
.stream-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.stream-icon {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.stream-name { font-weight: 500; font-size: .9rem; }
.stream-action { font-size: .75rem; color: var(--muted); }

/* ── SHOWS ── */
.shows-table { width: 100%; border-collapse: collapse; }
.shows-table tr { border-bottom: 1px solid var(--border); }
.shows-table th {
  text-align: left; padding: 1rem 1.5rem;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; font-family: 'Inter', sans-serif;
}
.shows-table td { padding: 1.25rem 1.5rem; font-size: .9rem; }
.shows-table tr:hover td { background: var(--surface); }
.show-date { color: var(--accent); font-weight: 500; white-space: nowrap; }
.show-type {
  display: inline-block; padding: .2rem .6rem;
  border: 1px solid var(--border); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}
.show-type.public { border-color: var(--accent); color: var(--accent); }

/* ── BLOG CARDS ── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .2s;
  overflow: hidden;
}
.blog-card:hover { border-color: var(--accent); }

.blog-card-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .8rem;
}

.blog-card-body { padding: 1.5rem; }
.blog-card-date { font-size: .75rem; color: var(--accent); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .75rem; }
.blog-card h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.blog-card p { color: var(--muted); font-size: .9rem; margin-bottom: 1.25rem; }
.blog-card .read-more { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; }

/* ── BOOKING FORM ── */
.booking-layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start;
}

.booking-info h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.booking-info p { color: var(--muted); margin-bottom: 2rem; font-size: .9rem; }

.booking-feature {
  display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start;
}
.booking-feature-icon {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; color: var(--accent);
}
.booking-feature h4 { font-size: .9rem; margin-bottom: .25rem; font-family: 'Inter', sans-serif; font-weight: 500; }
.booking-feature p { color: var(--muted); font-size: .8rem; margin: 0; }

.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

label {
  display: block; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 500; color: var(--muted); margin-bottom: .5rem;
}

input, textarea, select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  transition: border-color .2s;
  outline: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
textarea { resize: vertical; min-height: 120px; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
input::placeholder, textarea::placeholder { color: var(--muted); }

.form-submit-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.form-note { font-size: .75rem; color: var(--muted); }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center;
}

.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; }
.footer-logo span { color: var(--accent); }

.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--muted); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }

.social-links { display: flex; gap: 1rem; }
.social-link {
  width: 40px; height: 40px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .85rem; font-weight: 600;
  transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }

.footer-copy { font-size: .75rem; color: var(--muted); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 7rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(to bottom, #130f07, var(--bg));
  border-bottom: 1px solid var(--border);
}
.page-hero .section-label { margin-bottom: .75rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
.page-hero p { color: var(--muted); margin-top: 1rem; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ── EMBED PLACEHOLDER ── */
.embed-placeholder {
  background: var(--surface);
  border: 1px dashed var(--border);
  padding: 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: .875rem;
  margin-bottom: 1rem;
}
.embed-placeholder strong { display: block; color: var(--text); margin-bottom: .5rem; font-family: 'Playfair Display', serif; font-size: 1.1rem; }

/* ── ABOUT PAGE ── */
.about-full { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.about-sidebar { position: sticky; top: 90px; }

/* ── BLOG POST PAGE ── */
.blog-post-header { text-align: center; padding: 6rem 2rem 3rem; border-bottom: 1px solid var(--border); }
.blog-post-meta { font-size: .8rem; color: var(--muted); margin-top: 1rem; }
.blog-post-body { max-width: 680px; margin: 4rem auto; padding: 0 2rem; }
.blog-post-body p { color: var(--muted); margin-bottom: 1.5rem; font-size: .95rem; }
.blog-post-body h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }

/* ── UTILS ── */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.accent { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; gap: 1.5rem; position: fixed; inset: 0; top: 64px; background: var(--bg); padding: 2rem; border-top: 1px solid var(--border); }
  .nav-hamburger { display: flex; }

  .about-snippet, .about-full, .booking-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 4rem 1.25rem; }
}
