:root {
  --blush:      #f3e2d8;
  --blush-deep: #e7cfc2;
  --rose:       #b98d7d;
  --rose-deep:  #a06f5f;
  --ink:        #2b2733;
  --gold:       #c99a6a;
  --cream:      #fbf3ec;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(120% 60% at 50% 0%, var(--cream) 0%, var(--blush) 45%, var(--blush-deep) 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 28px 0 80px;
}

.hero__logo {
  display: block;
  width: clamp(260px, 42vw, 420px);
  height: auto;
  margin: 0 auto 20px;
}

.hero__copy { max-width: 640px; margin: 0 auto; }

.hero__welcome {
  max-width: 640px;
  margin: 8px auto 40px;
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  line-height: 1.8;
}
.hero__welcome p { margin-bottom: 16px; }
.hero__welcome p:last-child { margin-bottom: 0; }
.hero__welcome-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--rose);
  margin-bottom: 20px;
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--rose-deep);
  margin-bottom: 18px;
}

.script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  color: var(--rose);
  line-height: 1.4;
  margin-bottom: 32px;
}

.lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  color: var(--ink);
  max-width: 34ch;
  margin: 0 auto 36px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  text-decoration: none;
  padding: 17px 40px;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  box-shadow: 0 14px 30px rgba(160, 111, 95, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(160, 111, 95, 0.45);
}

.btn--ghost {
  color: var(--rose-deep);
  border: 1.5px solid var(--rose);
  margin-left: 14px;
}
.btn--ghost:hover { background: rgba(185, 141, 125, 0.12); }

/* ---------- Sections ---------- */
section { padding: 64px 0; }

.band {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--cream);
  text-align: center;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 10px;
}

/* ---------- Curator photos ---------- */
.curator-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto 40px;
}
.curator-photos figure {
  margin: 0;
  text-align: center;
}
.curator-photos img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(160, 111, 95, 0.3);
  display: block;
}

/* ---------- Hosts ---------- */
.hosts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 760px;
  margin: 40px auto 0;
}
.host {
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(160, 111, 95, 0.18);
  border-radius: 18px;
  padding: 34px 24px;
  backdrop-filter: blur(4px);
}
.host__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 1.15rem;
  color: var(--ink);
}
.host__role {
  font-family: 'Dancing Script', cursive;
  font-size: 1.35rem;
  color: var(--rose-deep);
  margin-top: 6px;
}

.band .lede-center {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  max-width: 26ch;
  margin: 0 auto;
}

/* ---------- Offerings ---------- */
.offerings {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 820px;
  margin: 42px auto 0;
}
.offerings li {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(160, 111, 95, 0.2);
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--rose-deep);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.offerings li:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(160, 111, 95, 0.2);
}

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta p {
  max-width: 46ch;
  margin: 0 auto 34px;
  color: var(--rose-deep);
  font-size: 1.05rem;
}

/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 48px 24px 60px;
  background: linear-gradient(135deg, var(--rose-deep) 0%, #8f5f50 100%);
  color: var(--cream);
}
footer a { color: var(--cream); text-decoration: none; }
.footer__web {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 8px;
}
.footer__web:hover { text-decoration: underline; }
.footer__tag { letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.72rem; opacity: 0.85; }

/* ---------- Bio modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal.is-open { visibility: visible; opacity: 1; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 39, 51, 0.55);
  backdrop-filter: blur(3px);
}
.modal__dialog {
  position: relative;
  background: var(--cream);
  max-width: 560px;
  width: 100%;
  max-height: 84vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 40px 38px 38px;
  box-shadow: 0 30px 70px rgba(160, 111, 95, 0.4);
  transform: translateY(12px);
  transition: transform 0.25s ease;
}
.modal.is-open .modal__dialog { transform: translateY(0); }
.modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--rose-deep);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.modal__close:hover { background: rgba(185, 141, 125, 0.15); }
.modal__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 18px;
}
.modal__body { color: var(--ink); font-size: 1rem; line-height: 1.8; text-align: justify; }
.modal__body p { margin-bottom: 16px; }
.modal__body p:last-child { margin-bottom: 0; }

.host--clickable {
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.host--clickable:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(160, 111, 95, 0.18);
}
.host__bio-btn {
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--rose-deep);
  background: transparent;
  border: 1.5px solid var(--rose);
  border-radius: 999px;
  padding: 9px 22px;
  cursor: pointer;
  transition: background 0.16s ease;
}
.host__bio-btn:hover { background: rgba(185, 141, 125, 0.12); }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .hero { padding: 20px 0 56px; }
  .lede { max-width: none; }
  .btn--ghost { margin-left: 0; margin-top: 12px; }
  .hosts { grid-template-columns: 1fr; }
  .curator-photos { gap: 16px; }
}
