:root {
  --bg: #f7f3ee;
  --bg-alt: #efe7dc;
  --ink: #33302e;
  --muted: #6f6863;
  --accent: #9c6f5b;
  --accent-deep: #7a543f;
  --line: #e2d8cc;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

a { color: var(--accent-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

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

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 238, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  flex-wrap: wrap;
}

.brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.brand .b-aloha { color: var(--ink); }
.brand .b-jacqueline { color: var(--accent); }
.brand:hover { color: inherit; }

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.main-nav a {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 400;
}
.main-nav a:hover,
.main-nav li.active > a { color: var(--accent); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown > .drop-toggle { cursor: pointer; }
.dropdown > .drop-toggle::after {
  content: "\25BE";
  font-size: 0.7em;
  margin-left: 6px;
  color: var(--muted);
}
.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(51, 48, 46, 0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.dropdown-menu li { width: 100%; }
.dropdown-menu a {
  display: block;
  padding: 9px 22px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--bg-alt); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
}
.btn-solid {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-solid:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-deep);
}
.btn-ghost:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-head h2 { font-size: 2.3rem; }
.section-head .subtitle,
.subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 100%);
  text-align: center;
  padding: 110px 0 96px;
}
.hero .eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 3.1rem;
  max-width: 880px;
  margin: 0 auto 22px;
}
.hero p.lead {
  max-width: 660px;
  margin: 0 auto 34px;
  font-size: 1.08rem;
  color: var(--muted);
}

/* Page header (lighter than hero) */
.page-head {
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 100%);
  text-align: center;
  padding: 92px 0 70px;
}
.page-head h1 { font-size: 2.9rem; margin-bottom: 12px; }
.page-head .subtitle { font-size: 1.3rem; }
.page-head p.note { color: var(--muted); margin-top: 10px; }

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px 30px;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(51, 48, 46, 0.10);
}
.card h3 { font-size: 1.55rem; margin-bottom: 6px; }
.card .platform {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}
.card p { color: var(--muted); margin-bottom: 22px; }
.card .card-link {
  margin-top: auto;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 600;
}

/* About */
.about-body { max-width: 760px; margin: 0 auto; text-align: center; }
.about-body p { margin-bottom: 20px; }
.about-body .btn { margin-top: 16px; }

/* Testimonials */
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 28px;
  break-inside: avoid;
}
.quote-card .quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 16px;
}
.quote-card .who {
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
}
.masonry {
  column-count: 3;
  column-gap: 28px;
}
.masonry .quote-card { margin-bottom: 28px; }

/* Streaming links row */
.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto;
}
.platform-row a {
  display: inline-block;
  padding: 11px 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--accent-deep);
}
.platform-row a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Generic centered intro / lead text */
.lead-block { max-width: 760px; margin: 0 auto; }
.lead-block p { margin-bottom: 20px; }
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-24 { margin-top: 24px; }
.small-note { font-size: 0.95rem; color: var(--muted); }

/* Image gallery */
.img-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.img-gallery img { border-radius: 4px; width: 100%; height: 100%; object-fit: cover; }

.banner-img {
  max-width: 760px;
  margin: 40px auto 0;
  border-radius: 4px;
  border: 1px solid var(--line);
}

/* Event card */
.event-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.event-card h3 { font-size: 1.7rem; margin-bottom: 8px; }
.event-card .details { color: var(--muted); margin-bottom: 22px; }

/* Contact form */
.contact-form {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px 14px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .btn { align-self: flex-start; border: none; }

.social-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-links a {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #d8cfc6;
  padding: 64px 0 32px;
}
.site-footer a { color: #d8cfc6; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.footer-grid .role {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: #b7aca2;
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; font-size: 0.95rem; }
.footer-bottom {
  text-align: center;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(216, 207, 198, 0.18);
}
.footer-bottom .copy { font-size: 0.95rem; margin-bottom: 8px; }
.footer-bottom .initiative {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #9b9189;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .site-header .wrap { min-height: auto; padding-top: 14px; padding-bottom: 14px; }
  .main-nav ul { gap: 16px 18px; justify-content: flex-start; }
  .hero h1 { font-size: 2.4rem; }
  .grid, .grid-2 { grid-template-columns: 1fr 1fr; }
  .masonry { column-count: 2; }
  .img-gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    min-width: 0;
    padding: 6px 0 0 14px;
  }
  .dropdown-menu a { padding: 5px 0; }
  .dropdown > .drop-toggle::after { content: ""; }
}

@media (max-width: 520px) {
  .wrap { padding: 0 18px; }
  .hero { padding: 72px 0 64px; }
  .hero h1 { font-size: 2rem; }
  .section-head h2 { font-size: 1.9rem; }
  .grid, .grid-2 { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .brand { font-size: 1.3rem; }
}
