/* ---------- Tokens ---------- */
:root {
  --cream: #ede1d8;
  --cream-soft: #f4ece4;
  --cream-card: #faf5ef;
  --red: #cb102c;
  --red-dark: #970c20;
  --ink: #2a1a1a;
  --ink-soft: #5a4640;
  --line: #ddccbc;
  --max: 1120px;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 900;
  color: var(--red);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; }
h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

.script {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  color: var(--red);
  display: inline-block;
}

p { color: var(--ink-soft); }

a { color: var(--red); }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red-dark);
  margin-bottom: 0.8em;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}
.btn-outline:hover { background: var(--red); color: #fff; }

.btn-soft {
  background: var(--cream-card);
  color: var(--red-dark);
  border: 1px solid var(--line);
}
.btn-soft:hover { background: var(--red); color: #fff; border-color: var(--red); }

section { padding: 96px 0; }
section .container { position: relative; }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p { max-width: 560px; margin: 0 auto; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(237, 225, 216, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 16px;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--red);
  text-decoration: none;
  line-height: 1;
}
.logo .script { font-size: 1.5rem; margin-right: 2px; }

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.88rem;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--red); }

.nav-cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-cta .btn { gap: 0; }

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

@media (max-width: 1060px) {
  .nav-links { position: fixed; top: 68px; left: 0; right: 0; background: var(--cream-soft);
    flex-direction: column; padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--line);
    transform: translateY(-140%); transition: transform 0.25s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .nav-cta .btn span.long { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 90px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-art { order: -1; max-width: 320px; margin: 0 auto; }
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 460px;
  margin: 18px 0 30px;
}
@media (max-width: 900px) { .hero-sub { margin-left: auto; margin-right: auto; } }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 900px) { .hero-cta { justify-content: center; } }

.hero-art img { width: 100%; height: auto; }

/* ---------- Concept ---------- */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .concept-grid { grid-template-columns: 1fr; } }

.concept-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.concept-card h3 { margin-bottom: 10px; }
.concept-card .tag {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.tag-pill {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  color: var(--red-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  counter-reset: step;
}
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 30px 22px;
  background: var(--cream-card);
  border-radius: 18px;
  border: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--red);
  opacity: 0.35;
  display: block;
  margin-bottom: 10px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: 0.92rem; margin: 0; }

/* ---------- About ---------- */
.about {
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about .container {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) { .about .container { grid-template-columns: 1fr; } }

.about-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 100px;
}
@media (max-width: 800px) { .about-photo { position: static; } }

.about-intro {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
}

.avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 6px solid var(--cream-card);
  box-shadow: 0 10px 30px rgba(143, 23, 48, 0.18);
  overflow: hidden;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Events ---------- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}
@media (max-width: 640px) { .event-grid { grid-template-columns: 1fr; } }

.event-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.event-media {
  height: 140px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.event-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.event-date {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.event-body h3 { margin-bottom: 6px; }
.event-body p { font-size: 0.92rem; margin-bottom: 14px; }

blockquote.testimonial {
  margin: 0;
  padding: 14px 16px;
  background: var(--cream-soft);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink);
}
blockquote.testimonial cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--red-dark);
}

.testimonial-placeholder {
  margin: 0;
  padding: 14px 16px;
  background: #fff3e0;
  border-left: 3px dashed var(--red);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--red-dark);
}

/* ---------- Upcoming ---------- */
.upcoming { background: var(--cream-soft); border-top: 1px solid var(--line); }

.upcoming-list { display: flex; flex-direction: column; gap: 18px; }

.upcoming-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 24px;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 26px;
}
@media (max-width: 720px) {
  .upcoming-card { grid-template-columns: 1fr; text-align: center; }
}

.upcoming-date {
  font-family: 'Fraunces', serif;
  color: var(--red);
  text-align: center;
}
.upcoming-date .day { font-size: 2.2rem; font-weight: 700; display: block; line-height: 1; }
.upcoming-date .month { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red-dark); }

.upcoming-info h3 { margin-bottom: 4px; }
.upcoming-info .meta { font-size: 0.85rem; color: var(--ink-soft); }
.upcoming-info .venue-pending {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red-dark);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: 999px;
}
.upcoming-info .venue-pending::before {
  content: "🤫";
  font-size: 0.85em;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 4px 24px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-soft);
  color: var(--red);
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary { color: var(--red); }
.faq-item[open] summary::after { content: "−"; background: var(--red); color: #fff; }

.faq-item p {
  margin: 0;
  padding-bottom: 22px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ---------- Contact ---------- */
.contact {
  text-align: center;
}
.contact-box {
  background: var(--red);
  border-radius: 28px;
  padding: 64px 32px;
  color: #fff;
}
.contact-box h2 { color: #fff; }
.contact-box p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 26px; }
.contact-box .btn { background: #fff; color: var(--red); }
.contact-box .btn:hover { background: var(--cream-soft); }
.social-row {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  max-width: 120px;
  text-align: center;
}
.social-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}
.social-icon svg { width: 26px; height: 26px; }
.social-link:hover .social-icon { transform: translateY(-2px); background: var(--cream-soft); }

.contact-details {
  margin-top: 26px;
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}
.contact-details a { color: #fff; text-decoration: none; font-weight: 600; }
.contact-details a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
footer {
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 12px;
}
.footer-links {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a { color: var(--ink-soft); text-decoration: underline; }
.footer-links a:hover { color: var(--red); }

/* ---------- Legal pages ---------- */
.legal-page {
  padding: 60px 0 100px;
}
.legal-page .container {
  max-width: 760px;
}
.legal-back {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
}
.legal-back:hover { text-decoration: underline; }
.legal-page h1 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  color: var(--red);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--red);
  font-size: 1.3rem;
  margin: 40px 0 12px;
}
.legal-page p, .legal-page li {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-page ul { padding-left: 20px; }
.legal-page a { color: var(--red); }
.legal-page strong { color: var(--ink); }
.legal-page .tbd {
  font-style: italic;
  background: #fff3e0;
  color: var(--red-dark);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ---------- Reveal on scroll (preview) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
