/* ============================================================
   COLOR PALETTE — change these to recolor the whole page
   ============================================================ */
:root {
  --cream:        #EBE9DF;   /* page background */
  --forest:       #2E3A2C;   /* darkest green */
  --forest-soft:  #424E36;   /* secondary green — CTA band */
  --moss:         #5E603E;   /* muted green */
  --gold:         #D4B87C;   /* warm gold (use on dark bg) */
  --gold-deep:    #A88E54;   /* darker gold (use on light bg — readable) */
  --terracotta:   #E9A65D;   /* warm orange */
  --sand:         #D3C3A8;   /* muted sand */
 
  --ink:          #2E3A2C;   /* body text color */
  --ink-soft:     #5E603E;   /* secondary text color */
  --line:         rgba(46, 58, 44, 0.15);
 
  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --body:    'Lato', system-ui, sans-serif;
 
  --max:     1100px;
  --pad:     clamp(1.25rem, 4vw, 3rem);
}
 
/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--forest); text-decoration: none; }
a:hover { text-decoration: underline; }
 
/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.01em;
  margin: 0 0 0.4em;
  line-height: 1.1;
}
h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 0.2em;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
}
 
/* Eyebrow = small uppercase text above headings.
   Default uses gold-deep for readability on light backgrounds.
   Sections with dark backgrounds override below. */
.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-deep);
  text-align: center;
  margin-bottom: 0.75rem;
}
/* Eyebrows on dark backgrounds keep the lighter gold */
.hero .eyebrow,
.cta-band .eyebrow,
.vendors .eyebrow {
  color: var(--gold);
}
 
/* Decorative diamond divider between titles and content */
.divider {
  text-align: center;
  margin: 0 auto 1.75rem;
  color: var(--terracotta);
  font-size: 0.95rem;
}
.cta-band .divider,
.vendors .divider {
  color: var(--gold);
}
.divider::before,
.divider::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin: 0 0.85rem;
  opacity: 0.5;
}
 
/* ============================================================
   LAYOUT — controls vertical spacing of every section
   Lower the clamp values to make the page more compact
   ============================================================ */
section {
  padding: clamp(2.25rem, 5vw, 4rem) var(--pad);
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
}
 
/* ============================================================
   HERO  —  the big top banner
   ============================================================ */
.hero {
  position: relative;
  min-height: 75vh;
  padding: var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Hero background image. To use a local image, replace the URL with: images/beachyoga.jpg */
background:
    linear-gradient(180deg,
      rgba(46, 58, 44, 0.70) 0%,
      rgba(46, 58, 44, 0.55) 40%,
      rgba(46, 58, 44, 0.90) 100%),
    url('https://rockypointholisticfair.phoenixhorizonaz.com/images/1_DSC02785.jpeg') 50% 80%/cover,
    var(--forest-soft);
  z-index: -1;
}
.hero-inner { max-width: 800px; }
.hero .lotus {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: block;
}
.hero .location-tag {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.85rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.75rem, 8vw, 5.75rem);
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0 0 0.75rem;
}
.hero .tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.hero .meta {
  font-family: var(--body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--cream);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(212, 184, 124, 0.4);
}
.hero .meta strong {
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}
 
/* ============================================================
   OVERVIEW  —  "Come as you are" + 4 audience tiles
   ============================================================ */
.overview { background: var(--cream); }
.overview .lead {
  text-align: center;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-family: var(--display);
  font-style: italic;
  color: var(--forest-soft);
  max-width: 720px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}
.overview-item { text-align: center; }
.overview-item .icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.overview-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.overview-item p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
}
 
/* ============================================================
   CTA BAND  —  Attendee / Vendor / Facilitator cards
   3 columns on desktop, stacked on mobile
   ============================================================ */
.cta-band {
  background: var(--forest-soft);
  position: relative;
  padding-top: clamp(1.25rem, 3vw, 2rem);
}
.cta-band h2 {
  color: var(--cream);
  font-family: var(--display);
}
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (max-width: 820px) {
  .cta-grid { grid-template-columns: 1fr; gap: 1rem; }
}
.cta-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(46, 58, 44, 0.15);
}
/* Image-based card icon (replaces the old "A"/"V"/"F" letters) */
.cta-card .card-icon {
  width: 120px;       /* Set the size of the circle here */
  height: 120px;      /* Keep width and height equal for a perfect circle */
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--forest);
  border: 2px solid var(--gold);
}
 
.cta-card .card-icon img {
  width: 100%;        /* Tell the image to be 100% of the 120px container */
  height: 100%;       /* Tell the image to be 100% of the 120px container */
  object-fit: cover;  /* Now this can properly center and crop the photo */
  display: block; 
}
.cta-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  min-height: 2.4em;          /* keeps button row aligned across cards */
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
 
/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  text-decoration: none;
}
.btn:hover {
  background: var(--gold-deep);
  color: var(--cream);
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}
.btn-secondary:hover {
  background: var(--forest);
  color: var(--cream);
}
 
/* ============================================================
   FACILITATORS  —  photo grid + modal
   ============================================================ */
.facilitators { background: var(--cream); }
.facil-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  justify-content: center;
  max-width: 1100px;
  margin: 1.5rem auto 0;
}
.facil-card {
  text-align: center;
  padding: 0.5rem;
  width: 100%;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.facil-card:hover { transform: translateY(-4px); }
.facil-card .avatar {
  width: 130px;
  height: 130px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: var(--forest);
  border: 3px solid var(--gold-deep);
  overflow: hidden;
  display: block;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.facil-card:hover .avatar {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,184,124,0.2);
}
.facil-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  color: transparent;
  font-size: 0;
  transition: transform 0.35s ease;
}
.facil-card:hover .avatar img { transform: scale(1.06); }
.facil-card h3 { font-size: 1.15rem; margin: 0 0 0.2rem; }
.facil-card .role {
  font-family: var(--body);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.facil-card p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }
.facil-card .facil-hint {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-deep);
  font-weight: 700;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.facil-card:hover .facil-hint { opacity: 1; transform: translateY(0); }

/* ── Facilitator — No Longer Attending ───────────────────── */
.facil-card.not-attending { cursor: default; }
.facil-card.not-attending:hover { transform: none; }
.facil-card.not-attending .avatar {
  filter: grayscale(1);
  border-color: var(--moss);
  opacity: 0.55;
}
.facil-card.not-attending:hover .avatar { border-color: var(--moss); box-shadow: none; }
.facil-card.not-attending:hover .avatar img { transform: none; }
.facil-card.not-attending h3 { opacity: 0.6; }
.facil-card.not-attending .role { opacity: 0.5; }
.facil-card .facil-status {
  display: inline-block;
  margin-top: 0.55rem;
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream);
  background: var(--moss);
  padding: 0.24rem 0.6rem;
  border-radius: 2px;
  opacity: 0.92;
}
 
/* ── Facilitator Modal ───────────────────────────────────── */
#facil-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 28, 20, 0.88);
  z-index: 10000;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  backdrop-filter: blur(6px);
}
#facil-modal-overlay.visible { display: flex; }
#facil-modal {
  position: relative;
  background: var(--forest);
  color: var(--cream);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  border: none;
  animation: modal-rise 0.35s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
}
@keyframes modal-rise {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
#facil-modal-close {
  position: fixed;
  top: 1.25rem; right: 1.25rem;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(212,184,124,0.4);
  color: var(--gold);
  border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 22px; line-height: 38px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
#facil-modal-close:hover { background: rgba(0,0,0,0.8); }
.facil-modal-inner {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 0;
  flex: 1;
  min-height: 0;
}
@media (max-width: 700px) {
  .facil-modal-inner {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
}
.facil-modal-photo {
  background: var(--forest-soft);
  position: relative;
  overflow: hidden;
}
.facil-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 700px) {
  .facil-modal-photo { height: 55vw; min-height: 240px; }
  .facil-modal-photo img { height: 100%; }
}
.facil-modal-body {
  padding: 3rem 2.5rem;
  border-left: 1px solid rgba(212,184,124,0.2);
  overflow-y: auto;
}
@media (max-width: 700px) {
  .facil-modal-body {
    border-left: none;
    border-top: 1px solid rgba(212,184,124,0.2);
    padding: 1.75rem 1.25rem;
  }
}
.facil-modal-body .modal-role {
  font-family: var(--body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.facil-modal-body h2 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}
.facil-modal-body h2 span {
  display: inline;
}
.facil-modal-body .modal-bio {
  font-size: 0.95rem;
  color: rgba(235,233,223,0.85);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  max-width: 560px;
}
.facil-modal-body .modal-offering-label {
  font-family: var(--body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.facil-modal-body .modal-offering {
  font-size: 0.95rem;
  color: rgba(235,233,223,0.7);
  font-family: var(--display);
  font-style: italic;
  margin-bottom: 1.5rem;
}
/* Structured offering blocks (data-offerings-detail) */
.facil-modal-body .modal-offering-item {
  margin-bottom: 1.15rem;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(212,184,124,0.45);
}
.facil-modal-body .modal-offering-item:last-child { margin-bottom: 0; }
.facil-modal-body .modal-offering-item h4 {
  font-family: var(--display);
  font-style: normal;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--gold);
  margin: 0 0 0.25rem;
  line-height: 1.25;
}
.facil-modal-body .modal-offering-item p {
  font-family: var(--body);
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(235,233,223,0.78);
  line-height: 1.65;
  margin: 0;
  max-width: 540px;
}
.facil-modal-body .modal-link {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
}
.facil-modal-body .modal-link:hover { color: var(--cream); }
 
/* ============================================================
   GALACTIC HARMONY BAND BANNER
   ============================================================ */
.band-banner {
  background: var(--cream);
  padding: var(--pad);
}
.band-banner .eyebrow { text-align: center; }
.band-banner h2 { text-align: center; }
.band-banner .divider { text-align: center; }
.band-inner {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 1.5rem;
  align-items: center;
  max-width: 900px;
  margin: 1.5rem auto 0;
}
.band-photo {
  overflow: hidden;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  min-width: 180px;
  min-height: 180px;
  margin: 0 auto;
  border: 3px solid var(--gold-deep);
  transition: border-color 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
}
.band-photo:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,184,124,0.2);
}
.band-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}
.band-photo:hover img { transform: scale(1.06); }
.band-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.band-name {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.1;
}
.band-role {
  font-family: var(--body);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-deep);
  font-weight: 700;
}
.band-bio {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0.25rem 0 0.5rem;
}
.band-performing {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--moss);
  margin: 0;
}
.band-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.25rem;
}
.band-links a {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--forest);
  text-decoration: none;
}
.band-links a:hover { color: var(--gold-deep); }
@media (max-width: 680px) {
  .band-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .band-photo { width: 160px; height: 160px; }
  .band-photo-2 { display: none; }
}

/* ============================================================
   VENDORS  —  dark green background, gold-text cards
   ============================================================ */
.vendors {
  background: var(--forest);
  color: var(--cream);
}
.vendors h2 { color: var(--cream); }
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.vendor-card {
  background: rgba(212, 184, 124, 0.08);
  border: 1px solid rgba(212, 184, 124, 0.25);
  padding: 1.25rem;
  transition: background 0.25s ease;
}
.vendor-card:hover {
  background: rgba(212, 184, 124, 0.15);
}
.vendor-card h3 {
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.vendor-card .vendor-type {
  font-family: var(--body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.vendor-card p {
  font-size: 0.88rem;
  color: rgba(235, 233, 223, 0.8);
  margin: 0;
}
.vendors-note {
  text-align: center;
  font-style: italic;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.05rem;
  margin-top: 1.5rem;
}
 
/* ============================================================
   FACILITY  —  Casa Blanca + image carousel
   ============================================================ */
.facility { background: var(--cream); }
.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 1.5rem;
}
@media (max-width: 820px) {
  .facility-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
 
/* ----- CAROUSEL -----
   To add a slide: copy a <div class="carousel-slide">...</div> block
   inside .carousel-track. The dots and navigation update automatically.
*/
.carousel {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--sand);
}
.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background: var(--forest-soft);   /* fallback color when image missing */
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Hide the broken-image icon and alt text if file is missing */
  color: transparent;
  font-size: 0;
}
.carousel-slide .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(46, 58, 44, 0.75));
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(46, 58, 44, 0.7);
  color: var(--cream);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
  z-index: 2;
}
.carousel-btn:hover { background: var(--gold-deep); }
.carousel-btn.prev { left: 0.75rem; }
.carousel-btn.next { right: 0.75rem; }
.carousel-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(235, 233, 223, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease;
}
.carousel-dot.active { background: var(--gold); }
 
.facility-text h3 {
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}
.facility-text .address {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 1rem;
}
.facility-text ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.facility-text li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.facility-text li::before {
  content: "✦";
  color: var(--gold-deep);
  margin-right: 0.6rem;
}
 
/* ============================================================
   WHAT'S INCLUDED  —  two-column included / not-included
   ============================================================ */
.included { background: var(--forest); color: var(--cream); }
.included h2 { color: var(--cream); }
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.75rem;
}
@media (max-width: 820px) {
  .included-grid { grid-template-columns: 1fr; }
}
.included-col h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212,184,124,0.3);
}
.included-col.not-col h3 { color: var(--terracotta); }
.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.included-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(212,184,124,0.12);
  font-size: 0.93rem;
  color: rgba(235,233,223,0.9);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.included-list li:last-child { border-bottom: none; }
.included-list li .li-icon {
  flex-shrink: 0;
  margin-top: 0.1em;
}
.included-col .li-icon { color: var(--gold); }
.included-col.not-col .li-icon { color: var(--terracotta); }
.included-list li strong {
  display: block;
  color: var(--cream);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.1rem;
}
.included-list li span {
  font-size: 0.83rem;
  color: rgba(235,233,223,0.65);
  display: block;
}
 
/* ============================================================
   CONTACTS  —  key people attendees can reach
   ============================================================ */
.contacts { background: var(--sand); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.contact-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46,58,44,0.12);
}
.contact-card .contact-role {
  font-family: var(--body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.contact-card p {
  font-size: 0.87rem;
  color: var(--ink-soft);
  margin: 0 0 0.75rem;
}
.contact-card .contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact-card .contact-links a {
  font-size: 0.84rem;
  color: var(--forest);
  font-weight: 700;
}
.contacts-note {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--moss);
  font-size: 1rem;
  margin-top: 1.5rem;
}
 
/* ============================================================
   NEARBY HOTELS  —  walkable lodging options
   ============================================================ */
.hotels { background: var(--cream); }
.hotels-intro {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: var(--forest-soft);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.hotel-card {
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.hotel-card:hover { box-shadow: 0 8px 22px rgba(46,58,44,0.12); }
.hotel-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--sand);
  display: block;
}
.hotel-card-body { padding: 1.25rem; }
.hotel-card .hotel-distance {
  font-family: var(--body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.hotel-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.hotel-card p {
  font-size: 0.87rem;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}
.map-link-row {
  text-align: center;
  margin-top: 1.75rem;
}
.map-link-row p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}
 
/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule { background: var(--sand); }
.day-block {
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--gold-deep);
}
.day-block h3 {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.day-block h3 .date {
  font-family: var(--body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  font-weight: 700;
}
/* Column header row */
.schedule-header {
  display: grid;
  grid-template-columns: 120px 1fr 150px 130px 100px;
  gap: 0.75rem;
  padding: 0 0 0.5rem 0;
  border-bottom: 2px solid var(--gold-deep);
  margin-bottom: 0.25rem;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-deep);
}
.schedule-item {
  display: grid;
  grid-template-columns: 120px 1fr 150px 130px 100px;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  align-items: start;
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item .si-time {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--forest);
  letter-spacing: 0.03em;
  padding-top: 0.1rem;
}
.schedule-item .si-activity strong {
  color: var(--forest);
  font-weight: 700;
  display: block;
  margin-bottom: 0.1rem;
}
.schedule-item .si-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 46ch;
}
.schedule-item .si-facilitator {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.schedule-item .si-location {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}
.schedule-item .si-vibe {
  font-size: 0.78rem;
  font-family: var(--body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
}
.si-tbd {
  color: var(--moss);
  font-style: italic;
  font-size: 0.8rem;
  opacity: 0.6;
}
@media (max-width: 680px) {
  .schedule-header { display: none; }
  .schedule-item {
    display: block;
    padding: 0.85rem 0;
  }
  .schedule-item .si-time {
    font-size: 0.78rem;
    color: var(--gold-deep);
    font-weight: 700;
    margin-bottom: 0.15rem;
  }
  .schedule-item .si-activity { margin-bottom: 0.2rem; }
  .schedule-item .si-facilitator::before { content: "👤 "; }
  .schedule-item .si-location::before   { content: "📍 "; }
  .schedule-item .si-facilitator,
  .schedule-item .si-location { font-size: 0.82rem; }
  .schedule-item .si-vibe { display: none; }
}
.schedule-tba {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--moss);
  padding: 1.75rem;
  background: var(--cream);
  border: 1px dashed var(--gold-deep);
}
 
/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--forest);
  color: var(--cream);
  padding: 2.5rem var(--pad) 1.75rem;
  text-align: center;
}
footer .lotus {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
footer h3 {
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
footer .closing {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  margin: 0.5rem 0 1.5rem;
}
.social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.social a:hover {
  background: var(--gold);
  color: var(--forest);
  text-decoration: none;
}
.social svg { width: 17px; height: 17px; }
footer .contact {
  font-size: 0.88rem;
  color: rgba(235, 233, 223, 0.75);
  margin-bottom: 0.75rem;
}
footer .contact a { color: var(--gold); }
footer .copyright {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(235, 233, 223, 0.5);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(212, 184, 124, 0.2);
}
 
/* ============================================================
   PLACEHOLDER FLAG  —  the orange "PLACEHOLDER" badge
   To remove a single flag: remove "placeholder" from that element's class.
   To remove ALL flags at once: change content: "PLACEHOLDER" to content: ""
   ============================================================ */
.placeholder { position: relative; }
.placeholder::after {
  content: "PLACEHOLDER";
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  font-family: var(--body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--terracotta);
  color: var(--forest);
  padding: 0.18rem 0.45rem;
  pointer-events: none;
  opacity: 0.85;
  z-index: 3;
}
/* ============================================================
   SHAKY TICKET BUTTON  —  fixed bottom-right CTA
   ============================================================ */
#rp-ticket-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--forest);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(46,58,44,0.45);
  cursor: pointer;
  animation: rp-shake 4s infinite;
  text-decoration: none;
  transition: background 0.25s;
}
#rp-ticket-btn:hover {
  background: var(--gold-deep);
  animation: none;
  text-decoration: none;
}
#rp-ticket-btn svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--gold);
  color: var(--gold);   /* feeds currentColor to the head circle fill */
  display: block;
}
#rp-ticket-btn:hover svg { stroke: var(--cream); color: var(--cream); }
#rp-ticket-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 10px;
  height: 10px;
  background: var(--terracotta);
  border-radius: 50%;
  border: 1.5px solid var(--cream);
}
#rp-ticket-tooltip {
  position: fixed;
  bottom: 30px;
  right: 90px;
  background: var(--cream);
  color: var(--forest);
  padding: 7px 14px;
  border-radius: 20px;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  z-index: 9998;
  box-shadow: 0 2px 10px rgba(46,58,44,0.2);
  pointer-events: none;
}
@keyframes rp-shake {
  0%, 55%, 100% { transform: rotate(0deg); }
  60%  { transform: rotate(-12deg); }
  65%  { transform: rotate(12deg); }
  70%  { transform: rotate(-10deg); }
  75%  { transform: rotate(10deg); }
  80%  { transform: rotate(0deg); }
}
 
/* ============================================================
   INCENSE COUNTDOWN  —  hero wellness countdown bar
   ============================================================ */
.incense-band {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(212,184,124,0.35);
  border-radius: 4px;
  padding: 8px 14px;
  margin-top: 0;
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .incense-band {
    width: calc(100% - 2rem);
    gap: 8px;
    padding: 8px 10px;
  }
  .incense-num { font-size: 18px !important; }
  .incense-lbl { font-size: 8px !important; }
  .incense-unit { min-width: 30px !important; }
  .incense-sep { font-size: 11px !important; }
}
.incense-divider {
  width: 1px;
  height: 28px;
  background: rgba(212,184,124,0.22);
  flex-shrink: 0;
}
.incense-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(235,233,223,0.55);
  font-family: var(--body);
  white-space: normal;
  text-align: center;
  line-height: 1.6;
}
.incense-units {
  display: flex;
  align-items: center;
  gap: 4px;
}
.incense-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  min-width: 34px;
}
.incense-num {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.incense-lbl {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(235,233,223,0.4);
  font-family: var(--body);
}
.incense-sep {
  font-size: 13px;
  color: rgba(212,184,124,0.35);
  line-height: 1;
  padding-bottom: 8px;
  flex-shrink: 0;
}
 
/* ============================================================
   SCROLLING MARQUEE BANNER
   ============================================================ */
.marquee-band {
  background: var(--forest);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  border-top: 1px solid rgba(212,184,124,0.2);
  border-bottom: 1px solid rgba(212,184,124,0.2);
}
.marquee-band:hover .marquee-inner {
  animation-play-state: paused;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 35s linear infinite;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
 
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  .hero { min-height: 70vh; }
  .schedule-item { grid-template-columns: 80px 1fr; gap: 0.85rem; }
  .divider::before, .divider::after { width: 28px; }
}