/* ===== Smiley Spaces — DESIGN OPTION B: "After Dark" ===== */
/* Sophisticated: deep charcoal, cream, gold. Serif display (Fraunces) + Inter. */

:root {
  --bg: #15120e;
  --bg-2: #1e1911;
  --ink: #f4ede0;
  --muted: #a99c86;
  --accent: #d7a94a;       /* gold */
  --accent-2: #d7a94a;
  --accent-ink: #15120e;
  --line: #342c1f;
  --card: #1c170f;
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .hero__title, .book__title { font-family: 'Fraunces', Georgia, serif; font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }

.section__title { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.section__lead { color: var(--muted); font-size: 1.08rem; margin-bottom: 2.5rem; max-width: 60ch; }

/* Buttons */
.btn { display: inline-block; padding: 0.85rem 2rem; border-radius: 2px; font-weight: 600; font-size: 0.98rem; letter-spacing: 0.02em; border: 1px solid transparent; transition: all 0.18s ease; }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: #e6bd63; }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 1.05rem 2.6rem; font-size: 1.08rem; }
.btn--sm { padding: 0.55rem 1.3rem; font-size: 0.88rem; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(21,18,14,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; }
.nav__logo { display: flex; align-items: center; }
.nav__logo-text { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--ink); }
.nav__logo-img { height: 50px; width: auto; display: block; }        /* white logo reads directly on dark */
.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: 0.92rem; letter-spacing: 0.02em; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { background: var(--accent); color: var(--accent-ink) !important; padding: 0.5rem 1.2rem; border-radius: 2px; font-weight: 600; }

/* Hero */
.hero { position: relative; min-height: 80vh; display: flex; align-items: center; padding: 4rem 1.5rem; overflow: hidden; }
.hero__media { position: absolute; inset: 0; background: radial-gradient(80% 70% at 75% 15%, rgba(215,169,74,0.16) 0%, transparent 55%), radial-gradient(70% 60% at 15% 95%, rgba(215,169,74,0.08) 0%, transparent 55%), var(--bg); }
.hero__content { position: relative; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero__eyebrow { color: var(--accent); font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 1.4rem; }
.hero__title { font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 400; }
.hero__sub { max-width: 48ch; color: var(--muted); font-size: 1.18rem; margin: 1.6rem 0 2.4rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Sections */
.nights, .hire, .about, .reviews, .visit { max-width: var(--maxw); margin: 0 auto; padding: 5rem 1.5rem; }

/* Shows (poster cards) */
.shows__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.75rem; }
.show { display: flex; flex-direction: column; overflow: hidden; background: var(--card); border: 1px solid var(--line); border-radius: 4px; }
.show__poster { display: block; background: var(--bg-2); }
.show__poster img { width: 100%; height: auto; display: block; }
.poster-ph { aspect-ratio: 1 / 1.414; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: var(--muted); border-bottom: 1px solid var(--line); }
.poster-ph__day { font-family: 'Fraunces', serif; font-weight: 500; font-size: 2rem; color: var(--accent); }
.poster-ph__txt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; }
.show__meta { display: flex; flex-direction: column; align-items: flex-start; padding: 1.2rem 1.25rem 1.4rem; }
.show__venue { display: inline-block; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); border: 1px solid var(--accent); border-radius: 2px; padding: 0.2rem 0.7rem; }
.show__venue--radstock { color: var(--ink); border-color: var(--line); }
.show__when { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.15rem; margin: 0.7rem 0 0.2rem; }
.show__acts { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.1rem; }
.show__tickets { margin-top: auto; }

/* Hire */
.hire__inner { background: var(--bg-2); border: 1px solid var(--line); border-radius: 4px; padding: clamp(1.75rem, 4vw, 3.25rem); text-align: center; max-width: 800px; margin: 0 auto; }
.hire__lead { color: var(--ink); font-size: 1.15rem; max-width: 60ch; margin: 0.75rem auto 1.75rem; }
.hire__lead strong { color: var(--accent); }
.hire__list { list-style: none; text-align: left; max-width: 52ch; margin: 0 auto 1.75rem; }
.hire__list li { padding-left: 1.6rem; position: relative; margin-bottom: 0.8rem; color: var(--muted); }
.hire__list li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.hire__list strong { color: var(--ink); }
.hire__proof { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.9rem; }
.hire__note { margin-top: 1.2rem; color: var(--muted); font-size: 0.88rem; }

/* About */
.about__inner { max-width: 64ch; }
.about p { margin-bottom: 1.2rem; color: #d8cdb9; font-size: 1.1rem; }
.about strong { color: var(--ink); }

/* Reviews */
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: 4px; padding: 2rem; }
.quote__stars { color: var(--accent); font-size: 1rem; letter-spacing: 3px; margin-bottom: 0.9rem; }
.quote p { font-family: 'Fraunces', serif; font-size: 1.12rem; font-weight: 400; margin-bottom: 1rem; font-style: italic; }
.quote cite { color: var(--muted); font-style: normal; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em; }

/* Visit */
.visit__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2.75rem; align-items: center; }
.visit__name { font-size: 1.55rem; font-weight: 500; margin-bottom: 0.8rem; color: var(--ink); }
.visit__addr { font-size: 1.1rem; margin-bottom: 1.3rem; line-height: 1.7; color: var(--muted); }
.visit__addr strong { color: var(--ink); }
.visit__facts { list-style: none; margin-bottom: 1.6rem; }
.visit__facts li { padding-left: 1.5rem; position: relative; margin-bottom: 0.55rem; color: var(--muted); }
.visit__facts li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.visit__map iframe { width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--line); border-radius: 4px; display: block; filter: grayscale(0.3) brightness(0.9); }

/* Book (404 reuse) */
.book { text-align: center; }
.book__title { font-size: clamp(2.5rem, 6vw, 4rem); }
.book__lead { max-width: 46ch; margin: 1rem auto 2rem; color: var(--muted); font-size: 1.12rem; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 2.75rem 1.5rem; text-align: center; color: var(--muted); font-size: 0.88rem; }
.footer a { color: var(--accent); }
.footer__social { margin-top: 0.6rem; }

/* Responsive */
@media (max-width: 780px) {
  .nav__links { gap: 1rem; }
  .nav__links a:not(.nav__cta) { display: none; }
  .visit__inner { grid-template-columns: 1fr; }
  .btn--lg { font-size: clamp(0.8rem, 4.2vw, 1.08rem); padding: 1rem 1.4rem; max-width: 100%; overflow-wrap: anywhere; }
}
