/* Glamology Lounge — Southlands color-lab. Night ink, teal-to-magenta melt, Fraunces + Outfit. */
:root {
  --ink: #120c14;
  --lounge: #1b1222;
  --paper: #f6f0e8;
  --foam: #fffaf4;
  --mute: #5a5360;
  --line: #e4d8cc;
  --teal: #1aaea3;
  --teal-deep: #0d6f68;
  --magenta: #e43a7a;
  --violet: #7a3dcc;
  --gold: #e4c36a;
  --cream: #f3e6d2;
  --wrap: min(68rem, calc(100% - 1.6rem));
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --melt: linear-gradient(120deg, var(--teal), var(--violet) 48%, var(--magenta));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); }
a:hover { color: var(--magenta); }
h1, h2, h3, .wordmark {
  font-family: var(--display);
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 8vw, 4.4rem); font-style: italic; font-weight: 500; }
h2 { font-size: clamp(1.7rem, 4vw, 2.55rem); }
h3 { font-size: 1.25rem; font-style: italic; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.skip {
  position: absolute; left: 0.75rem; top: -4rem; z-index: 1000;
  background: var(--gold); color: var(--ink); padding: 0.5rem 0.8rem; font-weight: 650;
}
.skip:focus { top: 0.75rem; }
.wrap { width: var(--wrap); margin-inline: auto; }
.lede { font-size: 1.15rem; max-width: 40rem; color: var(--mute); }
.eyebrow, .kicker {
  font-family: var(--sans);
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  margin: 0 0 0.6rem;
}
.eyebrow { color: var(--gold); }
.kicker { color: var(--magenta); }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(18, 12, 20, 0.94);
  backdrop-filter: blur(14px);
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: var(--melt);
}
.header-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem;
  min-height: 4.1rem; padding: 0.45rem 0;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  color: inherit; text-decoration: none; min-width: 0;
}
.brand img { width: 2.5rem; height: 2.5rem; }
.wordmark { font-size: 1.05rem; font-style: italic; display: block; color: var(--paper); margin: 0; }
.brand small { display: block; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: #c9b8c4; font-weight: 500; }
.header-call {
  margin-left: auto;
  color: var(--gold);
  font-weight: 650;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.header-call:hover { color: var(--teal); }
.nav-toggle {
  appearance: none; border: 0; cursor: pointer;
  background: var(--magenta); color: #fff;
  font: inherit; font-weight: 650; padding: 0.42rem 0.8rem;
}
#site-nav { width: 100%; }
#site-nav ul {
  list-style: none; margin: 0; padding: 0 0 0.85rem;
  display: flex; flex-direction: column; gap: 0.15rem;
}
#site-nav a {
  color: var(--paper); text-decoration: none; font-weight: 550;
  padding: 0.3rem 0; border-bottom: 2px solid transparent;
}
#site-nav a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }

.hero {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(122,61,204,0.28), transparent 46%),
    radial-gradient(ellipse at 10% 80%, rgba(26,174,163,0.18), transparent 42%),
    var(--ink);
  color: var(--paper);
  padding: 2.6rem 0 0;
  overflow: hidden;
}
.hero-grid { display: grid; gap: 1.8rem; align-items: end; }
.hero h1 { margin-bottom: 0.55rem; }
.hero .lede { color: #d8cdd6; }
.hero-photo {
  margin: 0;
  position: relative;
  justify-self: center;
  width: min(16rem, 78vw);
}
.hero-photo::before {
  content: "";
  position: absolute; inset: -8px;
  background: var(--melt);
  border-radius: 1.4rem 0.4rem 1.6rem 0.5rem;
  transform: rotate(-3.5deg);
}
.hero-photo img {
  position: relative;
  width: 100%;
  border-radius: 1.2rem 0.3rem 1.4rem 0.4rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.hero-photo figcaption {
  position: relative;
  padding: 0.7rem 0 1.6rem;
  color: #b9aeb8;
  font-size: 0.88rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 650;
  padding: 0.72rem 1.15rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}
.btn-melt { background: var(--melt); color: #fff; }
.btn-melt:hover { filter: brightness(1.08); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
}
.btn-ghost:hover { color: var(--gold); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--violet); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.2rem; }

.meltbar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 0.55rem;
}
.meltbar span:nth-child(1) { background: #0d6f68; }
.meltbar span:nth-child(2) { background: var(--teal); }
.meltbar span:nth-child(3) { background: var(--violet); }
.meltbar span:nth-child(4) { background: var(--magenta); }
.meltbar span:nth-child(5) { background: #f0a3c2; }

.section { padding: 2.6rem 0; }
.section-ink { background: var(--lounge); color: var(--paper); }
.section-ink .lede, .section-ink p { color: #d6cad4; }
.section-ink h2, .section-ink h3 { color: var(--paper); }
.section-ink a { color: var(--gold); }

.ticket {
  background: var(--foam);
  color: var(--ink);
  border: 1px dashed #c9b8a4;
  padding: 1.15rem 1.25rem;
  position: relative;
}
.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  width: 0.9rem; height: 0.9rem;
  background: var(--paper);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
}
.ticket::before { left: -0.45rem; }
.ticket::after { right: -0.45rem; }
.ticket strong { display: block; font-family: var(--display); font-size: 1.25rem; font-style: italic; margin-bottom: 0.3rem; }

.cards { display: grid; gap: 0.9rem; }
.card {
  background: var(--foam);
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--violet);
}
.card:nth-child(1) { border-top-color: #0d6f68; }
.card:nth-child(2) { border-top-color: var(--teal); }
.card:nth-child(3) { border-top-color: var(--violet); }
.card:nth-child(4) { border-top-color: var(--magenta); }
.card:nth-child(5) { border-top-color: var(--gold); }
.card .process {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--mute);
  margin-bottom: 0.35rem;
}
.card a { text-decoration: none; color: inherit; }
.card a:hover h3 { color: var(--magenta); }

.hours {
  list-style: none; margin: 0; padding: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 1.1rem 1.2rem;
}
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-variant-numeric: tabular-nums;
}
.hours li:last-child { border-bottom: 0; }
.hours .shut { color: #9a8d98; }
.hours .open { color: var(--gold); font-weight: 650; }

.locator {
  background: var(--foam);
  border: 1px solid var(--line);
  padding: 1.2rem 1.25rem;
}
.locator .pin {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.split { display: grid; gap: 1.5rem; }
.story p { font-family: var(--display); font-size: 1.12rem; font-weight: 400; line-height: 1.55; }

.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 2.4rem 0 2rem;
}
.page-hero .lede { color: #d4c8d2; }

.form {
  display: grid; gap: 0.75rem;
  background: var(--foam);
  border: 1px solid var(--line);
  padding: 1.2rem;
}
.form label { display: grid; gap: 0.3rem; font-weight: 650; font-size: 0.9rem; }
.form input, .form textarea, .form select {
  font: inherit; font-weight: 400;
  padding: 0.55rem 0.7rem;
  border: 2px solid var(--ink);
  background: var(--paper);
}
.form textarea { min-height: 8rem; }
.form .note { color: var(--mute); font-size: 0.92rem; }

.contact-list { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.contact-list li {
  display: grid; gap: 0.15rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list span {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 650; color: var(--mute);
}

.site-footer {
  background: var(--ink);
  color: #c9bdc8;
  padding: 2.2rem 0 5.5rem;
}
.site-footer a { color: var(--gold); }
.site-footer .wordmark { color: var(--paper); }
.footer-grid { display: grid; gap: 1.3rem; }

.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: flex;
  background: var(--ink);
  box-shadow: 0 -8px 24px rgba(18,12,20,0.35);
}
.dock a {
  flex: 1;
  text-align: center;
  padding: 0.85rem 0.4rem;
  color: var(--paper);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
}
.dock a:first-child { background: var(--magenta); color: #fff; }
.dock a:hover { filter: brightness(1.08); }

@media (min-width: 52rem) {
  .nav-toggle { display: none; }
  #site-nav { display: block !important; width: auto; margin-left: auto; }
  #site-nav ul { flex-direction: row; gap: 1.15rem; padding: 0; align-items: center; }
  .header-call { margin-left: 0; }
  .hero { padding-top: 3.2rem; }
  .hero-grid { grid-template-columns: 1.2fr 0.8fr; align-items: end; gap: 2.2rem; }
  .hero-photo { width: 17.5rem; justify-self: end; margin-bottom: 0.4rem; }
  .cards.cols-2 { grid-template-columns: 1fr 1fr; }
  .cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1.15fr 0.85fr; align-items: start; gap: 2rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .site-footer { padding-bottom: 2.2rem; }
  .dock { display: none; }
}
