/* ============================================================
   ROOM FOR THE MOMENT — style.css
   Palette: cream #FAF6EE | deep plum #34223A | terracotta #D86245
            peach #F0B9A3 | moss #587052
   Type: Fraunces (serif display) + Karla (sans body)
   Feel: warm, editorial, joyful, grown-up. Rounded cards,
   generous whitespace, confetti accents. Nothing industrial.
   ============================================================ */

:root {
  --cream: #FAF6EE;
  --cream-deep: #F3ECDD;
  --plum: #34223A;
  --plum-soft: #4D3756;
  --terracotta: #D86245;
  --terracotta-deep: #B94A30;
  --peach: #F0B9A3;
  --peach-soft: #F7DACB;
  --moss: #587052;
  --moss-deep: #42573D;
  --ink: #3A2E40;
  --ink-soft: #7A6B80;
  --line: #E6DCC8;
  --white: #FFFFFF;
  --r-lg: 22px;
  --r-md: 14px;
  --shadow: 0 6px 24px rgba(52, 34, 58, 0.10);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Karla", -apple-system, "Segoe UI", sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
}

a { color: var(--terracotta-deep); }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 22px; }

/* ---------- header ---------- */
.top {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 40;
}
.top-inner {
  max-width: 1120px; margin: 0 auto; padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
}
.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--plum);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
}
.brand .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 18px -6px 0 -4px var(--moss), 10px 9px 0 -5px var(--peach);
  margin-right: 12px;
}
.brand em { font-style: italic; color: var(--terracotta); }
.nav { display: flex; gap: 2px; flex-wrap: wrap; align-items: center; }
.nav a {
  color: var(--plum-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 13px;
  border-radius: 999px;
  transition: all 0.15s;
}
.nav a:hover, .nav a.here { background: var(--peach-soft); color: var(--plum); }
.nav a.pill {
  background: var(--plum);
  color: var(--cream);
}
.nav a.pill:hover { background: var(--plum-soft); }

/* ---------- hero ---------- */
.hero {
  padding: 74px 22px 66px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero .confetti { position: absolute; border-radius: 50%; opacity: 0.85; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.3rem, 5.6vw, 4rem);
  line-height: 1.08;
  color: var(--plum);
  max-width: 820px;
  margin: 0 auto;
  letter-spacing: -0.015em;
}
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero .lede {
  color: var(--ink-soft);
  font-size: 1.14rem;
  max-width: 620px;
  margin: 18px auto 0;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 16px;
}

/* ---------- search card ---------- */
.finder {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 26px;
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}
.finder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.f-field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.f-field select, .f-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
}
.f-field select:focus, .f-field input:focus {
  outline: 2px solid var(--terracotta);
  border-color: var(--terracotta);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s;
}
.btn-main { background: var(--terracotta); color: var(--white); }
.btn-main:hover { background: var(--terracotta-deep); transform: translateY(-1px); }
.btn-plum { background: var(--plum); color: var(--cream); }
.btn-plum:hover { background: var(--plum-soft); }
.btn-line {
  background: transparent;
  color: var(--plum);
  border: 2px solid var(--plum);
}
.btn-line:hover { background: var(--plum); color: var(--cream); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- sections ---------- */
.band { padding: 64px 0; }
.band-white { background: var(--white); }
.band-plum { background: var(--plum); color: var(--cream); }
.band-head { text-align: center; max-width: 640px; margin: 0 auto 38px; }
.band-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  color: var(--plum);
  letter-spacing: -0.01em;
}
.band-plum .band-head h2 { color: var(--cream); }
.band-head p { color: var(--ink-soft); margin-top: 10px; }
.band-plum .band-head p { color: #C9BBD1; }

/* ---------- venue cards ---------- */
.v-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px;
}
.v-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
}
.v-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.v-card.featured { border: 2px solid var(--terracotta); }
.v-top {
  padding: 22px 22px 0;
}
.v-art {
  height: 96px;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.v-art::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(255,255,255,0.35) 0 8px, transparent 9px),
    radial-gradient(circle at 82% 24%, rgba(255,255,255,0.28) 0 6px, transparent 7px),
    radial-gradient(circle at 64% 74%, rgba(255,255,255,0.25) 0 10px, transparent 11px),
    radial-gradient(circle at 34% 78%, rgba(255,255,255,0.3) 0 5px, transparent 6px);
}
.v-art.a1 { background: linear-gradient(120deg, var(--peach), var(--terracotta)); }
.v-art.a2 { background: linear-gradient(120deg, #C9D6C4, var(--moss)); }
.v-art.a3 { background: linear-gradient(120deg, #CBB8D6, var(--plum-soft)); }
.v-badge-feat {
  position: absolute; top: 14px; right: 14px;
  background: var(--terracotta); color: var(--white);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
  z-index: 2;
}
.v-body { padding: 18px 22px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.v-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.28rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.v-body h3 a { color: var(--plum); text-decoration: none; }
.v-body h3 a:hover { color: var(--terracotta-deep); }
.v-where { color: var(--ink-soft); font-size: 0.88rem; font-weight: 700; }
.v-facts { display: flex; flex-wrap: wrap; gap: 7px; }
.pill-fact {
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--cream-deep);
  color: var(--plum-soft);
}
.pill-yes { background: #E4EDE1; color: var(--moss-deep); }
.pill-price { background: var(--peach-soft); color: #9C4A2E; }
.v-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.heart {
  background: none;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--sans);
}
.heart:hover { border-color: var(--terracotta); color: var(--terracotta); }
.heart.saved { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }
.sample-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9C6B12;
  background: #FBEED3;
  border: 1px dashed #D8A93F;
  padding: 2px 9px;
  border-radius: 999px;
}

/* ---------- occasion tiles ---------- */
.occasions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.occ {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 18px;
  text-align: center;
  text-decoration: none;
  color: var(--plum);
  transition: all 0.18s;
}
.occ:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--peach); }
.occ .ico { font-size: 2rem; display: block; margin-bottom: 10px; }
.occ .t { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; display: block; }
.occ .s { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- promise list ---------- */
.promises { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.promise {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 28px;
}
.band-plum .promise { background: var(--plum-soft); border-color: transparent; }
.promise .n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--terracotta);
}
.promise h3 { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; margin: 8px 0 6px; }
.band-plum .promise h3 { color: var(--cream); }
.promise p { font-size: 0.92rem; color: var(--ink-soft); }
.band-plum .promise p { color: #C9BBD1; }

/* ---------- filters bar (browse) ---------- */
.filter-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 26px;
}
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.85rem; font-weight: 800;
  color: var(--plum-soft);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  user-select: none;
}
.chip input { accent-color: var(--terracotta); cursor: pointer; }
.chip:has(input:checked) { background: var(--plum); border-color: var(--plum); color: var(--cream); }
.toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; margin: 18px 0; flex-wrap: wrap;
}
.count { font-weight: 800; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- venue profile ---------- */
.p-hero {
  background: var(--plum);
  color: var(--cream);
  padding: 52px 22px;
  text-align: center;
}
.p-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  letter-spacing: -0.01em;
}
.p-hero .where { color: #C9BBD1; margin-top: 8px; font-weight: 700; }
.p-grid { display: grid; grid-template-columns: 1fr 330px; gap: 28px; align-items: start; }
@media (max-width: 880px) { .p-grid { grid-template-columns: 1fr; } }
.p-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  margin-bottom: 20px;
}
.p-block h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--plum);
  margin-bottom: 14px;
}
.facts { list-style: none; }
.facts li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.94rem;
}
.facts li:last-child { border-bottom: none; }
.facts .k { color: var(--ink-soft); font-weight: 700; }
.facts .v { font-weight: 700; text-align: right; color: var(--plum); }
.v-ok { color: var(--moss-deep); }
.v-mut { color: var(--ink-soft); font-weight: 400; }
.side {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--terracotta);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.side h3 { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; margin-bottom: 14px; }
.side .btn { width: 100%; margin-bottom: 9px; }
.mini-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  background: var(--cream);
  border-radius: 10px;
  padding: 11px 13px;
  margin-top: 6px;
}

/* ---------- notices ---------- */
.note {
  background: var(--peach-soft);
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-size: 0.92rem;
  color: #7A3B24;
  margin: 20px 0;
}
.note-moss { background: #E4EDE1; color: var(--moss-deep); }

/* ---------- forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  max-width: 720px;
}
.form-card h2 { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--plum); margin-bottom: 16px; }
.frm-row { margin-bottom: 16px; }
.frm-row label {
  display: block;
  font-size: 0.76rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.frm-row input, .frm-row select, .frm-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--cream);
}
.frm-row textarea { min-height: 110px; resize: vertical; }
.frm-row input:focus, .frm-row select:focus, .frm-row textarea:focus {
  outline: 2px solid var(--terracotta);
  border-color: var(--terracotta);
}

/* ---------- price status pill ---------- */
.price-status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.ps-published { background: #E4EDE1; color: var(--moss-deep); }
.ps-range { background: var(--peach-soft); color: #9C4A2E; }
.ps-ask { background: var(--cream-deep); color: var(--ink-soft); }

/* ---------- content pages ---------- */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--serif); font-weight: 600; font-size: 1.55rem; color: var(--plum); margin: 32px 0 10px; }
.prose h3 { font-size: 1.08rem; margin: 20px 0 8px; color: var(--plum); }
.prose p, .prose li { color: #4A3D50; margin-bottom: 10px; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 14px; }

/* ---------- faq ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
  color: var(--plum);
  list-style: none;
  position: relative;
}
.faq-item summary::after { content: "+"; position: absolute; right: 22px; color: var(--terracotta); font-size: 1.3rem; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .a { padding: 0 22px 18px; color: var(--ink-soft); }

/* ---------- empty / misc ---------- */
.empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1.5px dashed var(--line);
  border-radius: var(--r-lg);
}
.hidden { display: none !important; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 18px; } .mt-3 { margin-top: 30px; }
.center { text-align: center; }

/* ---------- footer ---------- */
.foot {
  background: var(--plum);
  color: #C9BBD1;
  padding: 48px 22px 32px;
  font-size: 0.88rem;
  margin-top: 40px;
}
.foot-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot h4 { font-family: var(--serif); color: var(--cream); font-size: 1.05rem; margin-bottom: 12px; font-weight: 600; }
.foot a { color: #C9BBD1; text-decoration: none; display: block; padding: 3px 0; }
.foot a:hover { color: var(--peach); }
.foot-legal {
  max-width: 1120px; margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--plum-soft);
  font-size: 0.78rem;
  color: #9A88A3;
}
.skip-link {
  position: absolute; left: -9999px;
  background: var(--terracotta); color: var(--white);
  padding: 10px 16px; z-index: 100; font-weight: 800;
}
.skip-link:focus { left: 10px; top: 10px; }

@media (max-width: 640px) {
  .hero { padding: 50px 22px 46px; }
  .top-inner { justify-content: center; }
  .nav { justify-content: center; }
}
