/* ============================================================
   Hot Popsicle — shared design system
   Concept: the band's own name is a hot/cold collision (a sun-lit
   popsicle), so the site is built the same way — warm flame
   sections colliding with cold ice sections against a late-night
   ink background, the way a stage looks lit up after dark.
   ============================================================ */

:root {
  --ink: #14161f;
  --ink-soft: #1b1e2a;
  --ink-line: #2a2e3d;

  --flame: #f2622e;
  --flame-deep: #c94a1e;
  --ember: #ffb454;

  --ice: #46c8bd;
  --ice-deep: #1f8f88;

  --cream: #fbf3e7;
  --cream-dim: #c9c2b4;

  --font-display: "Anton", sans-serif;
  --font-body: "Work Sans", sans-serif;

  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  margin: 0;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1em; max-width: 62ch; }

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

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-flame {
  background: var(--flame);
  color: var(--ink);
}
.btn-flame:hover { background: var(--ember); }

.btn-outline {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.btn-outline:hover { border-color: var(--ice); color: var(--ice); }

.btn-ink {
  background: var(--ink);
  color: var(--cream);
}
.btn-ink:hover { background: var(--ink-soft); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 22, 31, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.brand span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}

nav.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav.primary-nav a {
  text-decoration: none;
  color: var(--cream-dim);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
nav.primary-nav a:hover,
nav.primary-nav a.active { color: var(--cream); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 780px) {
  /* The sticky header uses backdrop-filter, which makes it the containing
     block for position:fixed descendants. That collapsed this panel to a
     ~60px sliver with the page showing through it. Drop the filter only
     while the menu is open, so the panel measures against the viewport. */
  body.nav-open .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--ink);
  }

  /* stop the page behind the panel from scrolling */
  body.nav-open { overflow: hidden; }

  nav.primary-nav {
    position: fixed;
    top: var(--header-h, 75px);
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 10px 28px calc(36px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  nav.primary-nav.open { transform: translateX(0); }

  nav.primary-nav a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream);
    padding: 20px 2px;
    border-bottom: 1px solid var(--ink-line);
  }

  nav.primary-nav a.active { color: var(--flame); }

  nav.primary-nav a.btn {
    margin-top: 28px;
    padding: 17px 28px;
    font-size: 1rem;
    color: var(--ink);
    border-bottom: none;
    justify-content: center;
  }
  nav.primary-nav a.btn:hover { transform: none; }

  .nav-toggle { display: block; }
}

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

.hero {
  padding: 64px 0 84px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  color: var(--ice);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--cream);
}

.hero h1 em {
  font-style: normal;
  color: var(--flame);
}

.hero p.lede {
  margin-top: 22px;
  font-size: 1.15rem;
  color: var(--cream-dim);
  max-width: 46ch;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.92rem;
  color: var(--cream-dim);
}

.hero-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,22,31,0) 55%, rgba(20,22,31,0.55) 100%);
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-photo { order: -1; aspect-ratio: 16/10; }
}

/* ---------- placeholder strip (setlist etc) ---------- */

.strip {
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 26px 0;
  background: var(--ink-soft);
}

.strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.strip-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ice);
  white-space: nowrap;
}

.strip-note {
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- event panels ---------- */

.panels {
  padding: 90px 0;
}

.panels-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: left;
}

.panels-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--cream);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel {
  position: relative;
  border-radius: 20px;
  padding: 40px 36px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.panel-ice::before { background: linear-gradient(155deg, var(--ice-deep), #163b3f 78%); }
.panel-flame::before { background: linear-gradient(155deg, var(--flame), var(--flame-deep) 78%); }

.panel-tag {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  opacity: 0.85;
}

.panel h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ink);
  margin-bottom: 12px;
}

.panel p {
  color: rgba(20,22,31,0.82);
  font-size: 1rem;
  max-width: 40ch;
}

.panel-cta {
  margin-top: 18px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 780px) {
  .panel-grid { grid-template-columns: 1fr; }
}

/* ---------- flex/duo section ---------- */

.flex-section {
  padding: 20px 0 90px;
}

.flex-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.flex-grid img {
  border-radius: 18px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.flex-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 18px;
}

.flex-copy p { color: var(--cream-dim); font-size: 1.05rem; }

@media (max-width: 900px) {
  .flex-grid { grid-template-columns: 1fr; }
}

/* ---------- gallery ---------- */

.gallery {
  padding: 20px 0 90px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid a:nth-child(4) { grid-column: span 2; }

@media (max-width: 780px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-grid a:nth-child(4) { grid-column: span 1; }
}

.gallery-grid a { display: block; overflow: hidden; border-radius: 14px; }

/* ---------- proof / testimonials ---------- */

.proof {
  padding: 20px 0 90px;
}

.proof-box {
  border: 1px solid var(--ink-line);
  border-radius: 20px;
  padding: 56px;
  text-align: center;
  background: var(--ink-soft);
}

.proof-box h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.proof-box p {
  margin: 0 auto;
  color: var(--cream-dim);
}

/* ---------- steps ---------- */

.steps {
  padding: 20px 0 90px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step;
}

.step {
  border-top: 3px solid var(--flame);
  padding-top: 18px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--flame);
  display: block;
  margin-bottom: 6px;
}

.step h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.step p { color: var(--cream-dim); font-size: 0.97rem; }

@media (max-width: 780px) {
  .steps-list { grid-template-columns: 1fr; }
}

/* ---------- contact / inquiry ---------- */

.contact {
  padding: 20px 0 100px;
}

.contact-box {
  background: linear-gradient(155deg, var(--flame) 0%, var(--ice-deep) 130%);
  border-radius: 24px;
  padding: 58px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
}

.contact-copy h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}

.contact-copy p { color: rgba(20,22,31,0.82); }

.contact-copy .direct {
  margin-top: 26px;
  font-weight: 700;
  color: var(--ink);
}

.contact-copy .direct a { text-decoration: underline; }

form.inquiry {
  background: var(--ink);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  gap: 16px;
}

form.inquiry .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

form.inquiry label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream-dim);
  margin-bottom: 6px;
}

form.inquiry input,
form.inquiry select,
form.inquiry textarea {
  width: 100%;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.98rem;
}

form.inquiry input:focus,
form.inquiry select:focus,
form.inquiry textarea:focus {
  outline: 2px solid var(--ice);
  outline-offset: 1px;
}

form.inquiry textarea { resize: vertical; min-height: 100px; }

form.inquiry button {
  justify-self: start;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .contact-box { grid-template-columns: 1fr; padding: 34px; }
  form.inquiry .row2 { grid-template-columns: 1fr; }
}

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

footer.site-footer {
  border-top: 1px solid var(--ink-line);
  padding: 40px 0;
}

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

footer.site-footer p {
  margin: 0;
  color: var(--cream-dim);
  font-size: 0.9rem;
}

.foot-links {
  display: flex;
  gap: 20px;
}

.foot-links a {
  text-decoration: none;
  color: var(--cream-dim);
  font-size: 0.9rem;
}
.foot-links a:hover { color: var(--ice); }

/* ---------- inner page hero (weddings / corporate) ---------- */

.page-hero {
  padding: 56px 0 70px;
  border-bottom: 1px solid var(--ink-line);
}

.page-hero .wrap { max-width: 760px; }

.page-hero .eyebrow {
  color: var(--ice);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  color: var(--cream);
}

.page-hero p.lede {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--cream-dim);
}

.page-hero .btn { margin-top: 26px; }

/* ---------- content section w/ image ---------- */

.split {
  padding: 80px 0;
}

.split .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.split.reverse .wrap { direction: rtl; }
.split.reverse .wrap > * { direction: ltr; }

.split img {
  border-radius: 18px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 16px;
}

.split p { color: var(--cream-dim); font-size: 1.05rem; }

@media (max-width: 900px) {
  .split .wrap,
  .split.reverse .wrap { grid-template-columns: 1fr; direction: ltr; }
}

/* ---------- utility ---------- */

.section-pad { padding: 90px 0; }
.center { text-align: center; }

/* ============================================================
   Additions for the venue/planner track
   ============================================================ */

/* Netlify honeypot — must never be visible or focusable by a human */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.inline-link {
  color: var(--ice);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.inline-link:hover { border-bottom-color: var(--ice); }

.section-lede {
  color: var(--cream-dim);
  margin-top: 14px;
  font-size: 1.02rem;
}

.panels-head .section-lede { margin-bottom: 0; }

/* ---------- FAQ ---------- */

.faq { padding: 20px 0 90px; }

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink-line);
}

.faq-list details {
  border-bottom: 1px solid var(--ink-line);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 44px 20px 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cream);
  position: relative;
  transition: color 0.15s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--ice); }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--flame);
  line-height: 1;
}
.faq-list details[open] summary::after { content: "\2013"; }

.faq-list details p {
  color: var(--cream-dim);
  margin: 0 0 22px;
  max-width: 70ch;
  font-size: 1rem;
}

.faq-list details p a { color: var(--ice); text-decoration: underline; }

/* ---------- sizzle reel / media block ---------- */

.reel { padding: 20px 0 80px; }

.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

.reel-grid a { display: block; overflow: hidden; border-radius: 14px; }

.reel-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.reel-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.reel-grid a:nth-child(4) { grid-column: span 2; }

@media (max-width: 780px) {
  .reel-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .reel-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .reel-grid a:nth-child(4) { grid-column: span 1; }
}

/* ---------- configurations (duo / trio) ---------- */

.configs { padding: 20px 0 80px; }

.config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.config {
  border: 1px solid var(--ink-line);
  border-radius: 20px;
  padding: 36px 32px;
  background: var(--ink-soft);
}

.config-tag {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ice);
  margin-bottom: 10px;
}

.config h3 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  color: var(--cream);
  margin-bottom: 12px;
}

.config p { color: var(--cream-dim); font-size: 1rem; }

.ticks {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}

.ticks li {
  position: relative;
  padding-left: 26px;
  color: var(--cream-dim);
  font-size: 0.96rem;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--flame);
  border-bottom: 2px solid var(--flame);
  transform: rotate(-45deg);
}

@media (max-width: 780px) {
  .config-grid { grid-template-columns: 1fr; }
}

/* ---------- technical spec table ---------- */

.specs { padding: 20px 0 80px; }

.spec-table {
  border-top: 1px solid var(--ink-line);
}

.spec-row {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-line);
  align-items: baseline;
}

.spec-k {
  font-weight: 700;
  color: var(--cream);
  font-size: 0.95rem;
}

.spec-v {
  color: var(--cream-dim);
  font-size: 0.98rem;
}

@media (max-width: 700px) {
  .spec-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- why venues / rooms played ---------- */

.why-venues { padding: 20px 0 80px; }

.rooms { padding: 20px 0 80px; }

.room-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  border-radius: 14px;
  overflow: hidden;
}

.room-list li {
  background: var(--ink-soft);
  padding: 20px 22px;
  font-weight: 600;
  color: var(--cream);
  font-size: 0.98rem;
}

.room-list li span {
  display: block;
  font-weight: 400;
  color: var(--cream-dim);
  font-size: 0.86rem;
  margin-top: 4px;
}

/* ---------- press kit downloads ---------- */

.downloads { padding: 20px 0 90px; }

.download-box {
  border: 1px solid var(--ink-line);
  border-radius: 20px;
  background: var(--ink-soft);
  padding: 44px 40px;
}

.download-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 12px;
}

.download-box p { color: var(--cream-dim); }

.download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.download-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  padding: 11px 20px;
  text-decoration: none;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--ink);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.download-links a::before { content: "\2193"; color: var(--flame); font-weight: 700; }
.download-links a:hover { border-color: var(--ice); color: var(--ice); }

/* ---------- thanks page ---------- */

.thanks-hero { border-bottom: none; padding-bottom: 120px; }
.thanks-hero .lede a { color: var(--ice); text-decoration: underline; }

/* ---------- lead date field ----------
   "Check Your Date" is the site's primary CTA, so the form it scrolls to
   opens with the date and requires it. The flame left-rule matches the
   .step treatment used elsewhere. */

.date-lead {
  border-left: 3px solid var(--flame);
  padding-left: 16px;
}

.date-lead > label {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.date-lead input[type="date"] {
  font-size: 1.05rem;
  padding: 14px;
}

.req {
  color: var(--flame);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field-hint {
  color: var(--cream-dim);
  font-size: 0.83rem;
  line-height: 1.45;
  margin: 9px 0 0;
  max-width: 46ch;
}

/* Safari renders an empty date input as blank; keep the placeholder legible */
form.inquiry input[type="date"] { min-height: 46px; }
