:root {
  --terracotta: #8B5A3C;
  --terracotta-dark: #6f4830;
  --copper: #B97A4C;
  --sage: #5B7C5A;
  --sage-dark: #3F5B40;
  --cream: #F7F5F1;
  --cream-light: #FFFFFF;
  --ink: #1F1B17;
  --ink-soft: #4C4640;
  --muted: #8A8278;
  --line: #ECE9E3;
  --radius: 10px;
  --shadow: 0 4px 18px rgba(30, 25, 20, 0.05);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream-light);
  line-height: 1.55;
  font-size: 17px;
}
h1, h2, h3, h4 {
  font-family: 'Georgia', 'Cormorant Garamond', serif;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .5em;
}
a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }
em { font-style: normal; color: var(--terracotta); }
.muted { color: var(--muted); }
.small { font-size: .9em; }
sup { font-size: .55em; vertical-align: super; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 720px; }
.site-main { min-height: 60vh; padding-bottom: 80px; }

/* NAV */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-brand {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand .brand-logo {
  height: 46px; width: auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.15));
}
/* Default: white-nav pages (about/programs/venue/contact/register) show the
   logo with dark conference-title text. Home over green hero swaps to the
   white-text variant. */
.brand-logo-light { display: none; }
.brand-logo-dark { display: block; }
body.page-home .site-nav .brand-logo-light { display: block; }
body.page-home .site-nav .brand-logo-dark { display: none; }
body.page-home .site-nav.is-scrolled .brand-logo-light { display: none; }
body.page-home .site-nav.is-scrolled .brand-logo-dark { display: block; }
@media (max-width: 860px) {
  body.page-home .site-nav.is-open .brand-logo-light { display: block; }
  body.page-home .site-nav.is-open .brand-logo-dark { display: none; }
}
.nav-brand .brand-text { display: inline-flex; align-items: baseline; gap: 4px; line-height: 1; }
.nav-brand .brand-mark { font-weight: 700; }
.nav-brand .brand-year { color: var(--terracotta); font-weight: 700; }
@media (max-width: 520px) {
  .nav-brand .brand-logo { height: 38px; }
  .nav-brand { font-size: 1.15rem; gap: 8px; }
}
.nav-links { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.nav-links a { color: var(--ink-soft); font-size: .98rem; font-weight: 500; padding: 6px 0; }
.nav-links a.is-active { color: var(--terracotta); border-bottom: 2px solid var(--terracotta); }
.nav-links a.nav-cta {
  background: var(--terracotta); color: #fff;
  padding: 8px 18px; border-radius: 999px;
}
.nav-links a.nav-cta:hover { background: var(--terracotta-dark); text-decoration: none; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; padding: 0;
  position: relative; z-index: 110;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  border-radius: 2px;
  position: absolute; left: 50%; top: 50%;
  margin-left: -12px;
  transition: transform .25s ease, opacity .15s ease, background .15s ease;
}
.nav-toggle span:nth-child(1) { transform: translateY(-8px); }
.nav-toggle span:nth-child(2) { transform: translateY(0); }
.nav-toggle span:nth-child(3) { transform: translateY(8px); }
.nav-inner.is-open .nav-toggle span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.nav-inner.is-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-inner.is-open .nav-toggle span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 0; width: 100%;
    margin-top: 12px; padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  .nav-links a { padding: 14px 4px; }
  .nav-links a.nav-cta { padding: 12px 18px; margin-top: 6px; align-self: flex-start; }
  .nav-inner.is-open { flex-wrap: wrap; }
  .nav-inner.is-open .nav-links { display: flex; }
  /* Solid background when menu is open — no bleed-through with hero content */
  .site-nav.is-open { background: #ffffff; backdrop-filter: none; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  body.page-home .site-nav.is-open { background: #1d2e26; backdrop-filter: none; border-bottom-color: rgba(255,255,255,.15); }
  body.page-home .site-nav.is-open .nav-brand,
  body.page-home .site-nav.is-open .nav-brand .brand-mark { color: #fff; }
  body.page-home .site-nav.is-open .nav-brand .brand-year { color: #f6c89e; }
  body.page-home .site-nav.is-open .nav-links a { color: rgba(255,255,255,.92); }
  body.page-home .site-nav.is-open .nav-links a.nav-cta { background: transparent; border: 1.5px solid rgba(255,255,255,.85); color: #fff; }
  body.page-home .site-nav.is-open .nav-toggle span { background: #fff; }
}

/* HERO (legacy used on inner pages; new immersive hero on home below) */
.hero {
  position: relative;
  padding: 70px 24px 60px;
  text-align: center;
  background: #fff;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg::before, .hero-bg::after {
  content: ''; position: absolute; border-radius: 50%; opacity: .05; pointer-events: none;
}
.hero-bg::before { width: 480px; height: 480px; background: var(--terracotta); top: -160px; left: -120px; }
.hero-bg::after { width: 380px; height: 380px; background: var(--sage); bottom: -140px; right: -80px; }

/* IMMERSIVE HERO (home) */
.hero-immersive {
  position: relative;
  min-height: 100vh;
  padding: 120px 24px 110px;
  color: #fff;
  background: #1a2a24;
  overflow: hidden;
  border-bottom: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-immersive .hero-image {
  position: absolute; inset: 0; z-index: 0;
  background-color: #1d2e26;
  background-image:
    radial-gradient(ellipse 70% 50% at 70% 20%, rgba(91,124,90,.55), transparent 60%),
    radial-gradient(ellipse 60% 70% at 20% 80%, rgba(31,27,23,.65), transparent 70%),
    linear-gradient(180deg, #1d2e26 0%, #2c4438 45%, #3f5b40 70%, #2a3e34 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-immersive .hero-image.has-photo {
  background-color: #1f3328;
  background-image: var(--hero-photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-immersive .hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,30,25,.55) 0%, rgba(20,30,25,.35) 50%, rgba(20,30,25,.6) 100%);
}
.hero-immersive .hero-image.has-photo + .hero-overlay {
  background:
    linear-gradient(180deg,
      rgba(20, 35, 28, 0.70) 0%,
      rgba(45, 67, 55, 0.55) 30%,
      rgba(63, 91, 64, 0.45) 60%,
      rgba(20, 35, 28, 0.78) 100%);
  mix-blend-mode: multiply;
}
.hero-immersive .hero-image.has-photo ~ .hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 25, 20, 0.35) 0%, transparent 30%, rgba(15, 25, 20, 0.55) 100%);
}
.hero-immersive .hero-content {
  position: relative; z-index: 2;
  max-width: 1000px; margin: 0 auto; text-align: center;
  padding-bottom: 30px;
}
.hero-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.hero-chip {
  display: inline-block;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: .85rem; font-weight: 600; letter-spacing: .3px;
  backdrop-filter: blur(6px);
}
.hero-title-immersive {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin: 0 0 18px; color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.hero-tagline-immersive {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600; margin: 0 0 6px; color: #fff;
}
.hero-subtheme-immersive {
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  font-style: italic; opacity: .9; margin: 0 0 22px;
}
.hero-intro-immersive {
  font-size: 1rem; line-height: 1.6; opacity: .92;
  max-width: 720px; margin: 0 auto 36px;
}

/* CIRCULAR COUNTDOWN RINGS */
.cd-rings {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 18px; margin: 6px 0 30px;
}
.cd-ring {
  position: relative;
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.cd-ring svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.cd-ring svg circle {
  fill: transparent;
  stroke: rgba(255,255,255,.9);
  stroke-width: 1.5;
}
.cd-ring .cd-lbl {
  position: relative; z-index: 1;
  font-size: .68rem; letter-spacing: 2px;
  color: rgba(255,255,255,.85);
  font-weight: 700; margin-bottom: 4px;
  text-transform: uppercase;
}
.cd-ring .cd-num {
  position: relative; z-index: 1;
  font-family: Georgia, serif;
  font-size: 2.2rem; font-weight: 700;
  line-height: 1; color: #fff;
}

.hero-meta-line {
  font-size: 1rem; letter-spacing: 1px;
  margin: 8px 0 32px; color: rgba(255,255,255,.92);
  text-transform: uppercase; font-weight: 500;
}
.hero-meta-line .hero-sep { opacity: .5; margin: 0 14px; }

/* OUTLINED HERO CTA */
.btn-hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 36px; border-radius: 999px;
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.85);
  font-weight: 600; font-size: 1rem; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer;
  text-decoration: none; transition: background .2s ease, color .2s ease, transform .15s ease;
}
.btn-hero-cta:hover {
  background: #fff; color: var(--terracotta); text-decoration: none; transform: translateY(-1px);
}
.btn-hero-cta:disabled { opacity: .55; cursor: not-allowed; }

.cd-done { color: rgba(255,255,255,.92); margin-top: 22px; font-style: italic; min-height: 1.2em; }
.cd-done .countdown-done-text[hidden] { display: none; }
.cd-done .countdown-done-text { display: inline-block; }

/* WAVE DIVIDER */
.hero-wave {
  position: absolute; left: 0; bottom: -1px; width: 100%;
  height: 90px; z-index: 3;
  display: block;
}
@media (max-width: 720px) {
  .hero-immersive { padding: 100px 18px 100px; }
  .cd-ring { width: 92px; height: 92px; }
  .cd-ring .cd-num { font-size: 1.6rem; }
  .cd-ring .cd-lbl { font-size: .6rem; }
}

/* Nav becomes transparent overlay on home (page-home class set on body) */
body.page-home .site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(0);
}
body.page-home .site-nav .nav-brand,
body.page-home .site-nav .nav-brand .brand-mark { color: #fff; }
body.page-home .site-nav .nav-brand .brand-year { color: #f6c89e; }
body.page-home .site-nav .nav-links a { color: rgba(255,255,255,.92); }
body.page-home .site-nav .nav-links a.is-active { color: #fff; border-bottom-color: #fff; }
body.page-home .site-nav .nav-links a.nav-cta {
  background: transparent; border: 1.5px solid rgba(255,255,255,.85); color: #fff;
}
body.page-home .site-nav .nav-links a.nav-cta:hover { background: #fff; color: var(--terracotta); }
body.page-home .site-nav.is-scrolled {
  background: rgba(255,255,255,.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(8px);
}
body.page-home .site-nav.is-scrolled .nav-brand,
body.page-home .site-nav.is-scrolled .nav-brand .brand-mark { color: var(--ink); }
body.page-home .site-nav.is-scrolled .nav-brand .brand-year { color: var(--terracotta); }
body.page-home .site-nav.is-scrolled .nav-links a { color: var(--ink-soft); }
body.page-home .site-nav.is-scrolled .nav-links a.is-active { color: var(--terracotta); border-bottom-color: var(--terracotta); }
body.page-home .site-nav.is-scrolled .nav-links a.nav-cta { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
body.page-home .site-nav.is-scrolled .nav-links a.nav-cta:hover { background: var(--terracotta-dark); }
body.page-home .nav-toggle span { background: #fff; }
body.page-home .site-nav.is-scrolled .nav-toggle span { background: var(--ink); }

.hero-inner { position: relative; max-width: 1000px; margin: 0 auto; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 28px; }
.logo-chip {
  background: #fff; border: 1px solid var(--line);
  padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: .92rem;
  color: var(--ink-soft);
}
.logo-chip.is-accent { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.eyebrow { font-size: 1rem; color: var(--terracotta); text-transform: uppercase; letter-spacing: 2px; margin: 0 0 8px; font-weight: 700; }
.hero-title { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 14px; color: var(--ink); }
.hero-tagline { font-size: 1.25rem; color: var(--sage-dark); margin-bottom: 6px; font-style: italic; }
.hero-subtheme { font-size: 1rem; color: var(--ink-soft); margin-bottom: 28px; }
.hero-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 30px 0; }
.meta-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; display: flex; gap: 14px; align-items: flex-start; text-align: left;
  box-shadow: var(--shadow);
}
.meta-icon { font-size: 1.4rem; }
.meta-card strong { color: var(--terracotta); font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; }
.hero-intro { max-width: 720px; margin: 18px auto 0; font-size: 1.05rem; color: var(--ink-soft); }

/* COUNTDOWN */
.countdown-section { padding: 50px 24px; text-align: center; background: var(--cream); border-bottom: 1px solid var(--line); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 28px; color: var(--terracotta); }
.countdown { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; max-width: 700px; margin: 0 auto; }
.countdown-cell {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; min-width: 110px;
  box-shadow: var(--shadow);
}
.countdown-cell .num { display: block; font-family: Georgia, serif; font-size: 2.4rem; font-weight: 700; color: var(--terracotta); }
.countdown-cell .lbl { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: 2px; }
.countdown-caption { margin-top: 22px; color: var(--muted); }
.countdown-done-text { display: inline-block; font-size: 1.1rem; color: var(--sage-dark); }
.cta-row { margin-top: 32px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-block; padding: 12px 24px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 600; cursor: pointer;
  transition: transform .1s ease, background .15s ease, color .15s ease;
  text-decoration: none; font-size: 1rem; line-height: 1.1;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.btn-primary:hover { background: var(--terracotta-dark); color: #fff; }
.btn-primary:disabled, .btn-primary[disabled] { background: var(--muted); border-color: var(--muted); cursor: not-allowed; opacity: .7; }
.btn:disabled, .btn[disabled] { cursor: not-allowed; }
.btn-spinner {
  display: inline-block; width: 1em; height: 1em;
  margin-right: 6px; vertical-align: -0.15em;
  border: 2px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin .6s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
.btn-outline { background: transparent; color: var(--terracotta); border-color: var(--terracotta); }
.btn-outline:hover { background: var(--terracotta); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }

/* HIGHLIGHTS */
.highlights { padding: 60px 24px 70px; background: #fff; }
.highlights .section-title { text-align: center; margin-bottom: 36px; }

.hl-slider { position: relative; max-width: 1180px; margin: 0 auto; }
.hl-track {
  display: flex; gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hl-track::-webkit-scrollbar { display: none; }
.highlight {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  background: #fff; padding: 28px 22px; border-radius: var(--radius);
  border: 1px solid var(--line); text-align: center; box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  min-height: 220px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
}
.highlight:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(30,25,20,0.08); }
.highlight .hl-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.highlight h3 { font-size: 1.05rem; margin: 0 0 10px; color: var(--ink); }
.highlight p { font-size: .92rem; color: var(--muted); margin: 0; line-height: 1.5; }

.hl-arrow {
  position: absolute; top: 110px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  color: var(--terracotta);
  font-size: 1.6rem; line-height: 1;
  cursor: pointer; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.hl-arrow:hover { background: var(--terracotta); color: #fff; transform: scale(1.05); }
.hl-arrow:disabled { opacity: .35; cursor: default; transform: none; background: #fff; color: var(--muted); }
.hl-prev { left: -8px; }
.hl-next { right: -8px; }

.hl-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.hl-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--line); border: 0; padding: 0; cursor: pointer;
  transition: background .15s ease, width .15s ease;
}
.hl-dots button.is-active { background: var(--terracotta); width: 24px; border-radius: 999px; }

@media (max-width: 1024px) {
  .highlight { flex: 0 0 calc((100% - 18px) / 2); }
  .hl-prev { left: 4px; }
  .hl-next { right: 4px; }
}
@media (max-width: 640px) {
  .highlight { flex: 0 0 calc(100% - 8px); min-height: 200px; }
}

/* GENERIC PAGE-HERO */
/* GENERIC PAGE-HERO (green-tinted banner; optional admin photo blends) */
.page-hero {
  position: relative;
  padding: 90px 24px 70px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background-color: #1d2e26;
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(91,124,90,.45), transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(31,27,23,.55), transparent 70%),
    linear-gradient(180deg, #1d2e26 0%, #2c4438 50%, #3f5b40 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero.has-photo {
  background-color: #1f3328;
  background-image: var(--page-hero-photo);
}
.page-hero.has-photo::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg,
      rgba(20, 35, 28, 0.70) 0%,
      rgba(45, 67, 55, 0.55) 35%,
      rgba(63, 91, 64, 0.50) 65%,
      rgba(20, 35, 28, 0.75) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.page-hero.has-photo::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,25,20,0.30) 0%, transparent 30%, rgba(15,25,20,0.45) 100%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff; margin: 0 0 10px;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.page-hero .page-sub { color: rgba(255,255,255,.92); max-width: 760px; margin: 0 auto; }
.page-hero .page-sub a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.5); }
.page-hero .page-sub a:hover { border-bottom-color: #fff; text-decoration: none; }

/* SPLIT SECTION */
.split-section { padding: 50px 24px; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split-text { color: var(--ink-soft); font-size: 1.05rem; }
.split-text p { margin: 0 0 1em; }
.split-media .img-placeholder {
  background: linear-gradient(135deg, var(--copper), var(--sage));
  color: #fff; border-radius: var(--radius); min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 1.2rem; box-shadow: var(--shadow);
}
.split-media img { max-width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 740px) { .split-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ABOUT — theme + pillars */
.about-theme { padding: 70px 24px 60px; background: #fff; text-align: center; }
.about-theme .theme-title {
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink); margin: 0 auto 16px; max-width: 900px;
  line-height: 1.35;
}
.about-theme .theme-intro {
  color: var(--ink-soft); max-width: 800px; margin: 0 auto 48px;
  font-size: 1.05rem; line-height: 1.7;
}
.about-theme .theme-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  max-width: 980px; margin: 0 auto 48px;
  text-align: center;
}
.theme-pillar h3 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.15rem; font-weight: 600; color: var(--ink);
  margin: 0 0 14px; letter-spacing: .5px;
}
.theme-pillar p { color: var(--ink-soft); font-size: .98rem; line-height: 1.6; margin: 0; }
.about-theme .theme-closing {
  color: var(--ink-soft); font-size: 1.05rem; max-width: 880px; margin: 0 auto;
  line-height: 1.65;
}
@media (max-width: 740px) {
  .about-theme .theme-pillars { grid-template-columns: 1fr; gap: 28px; }
}

/* ABOUT — two-column section */
.about-twocol { padding: 70px 24px 80px; background: #FAF9F6; border-top: 1px solid var(--line); }
.about-twocol .twocol-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  position: relative;
}
.about-twocol .twocol-grid::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: var(--line);
}
.about-twocol .twocol-col { padding: 0 6px; }
.about-twocol .col-eyebrow {
  font-size: .9rem; color: var(--muted); margin: 0 0 6px;
  font-weight: 500;
}
.about-twocol .col-title {
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--ink); margin: 0 0 18px; line-height: 1.25;
}
.about-twocol .col-body { color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }
.about-twocol .col-body p { margin: 0 0 1em; }
.about-twocol .col-body h4 {
  font-size: 1.05rem; color: var(--ink);
  margin: 26px 0 10px; font-weight: 600;
}
.about-twocol .col-body ul { padding-left: 18px; margin: 0 0 1em; }
.about-twocol .col-body ul li { margin-bottom: 8px; }
.about-twocol .col-body a { color: var(--terracotta); }
.about-twocol .col-cta { margin: 20px 0 0; }
@media (max-width: 880px) {
  .about-twocol .twocol-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-twocol .twocol-grid::before { display: none; }
  .about-twocol .twocol-col + .twocol-col { padding-top: 30px; border-top: 1px solid var(--line); }
}

/* QUOTES */
.quotes-section { padding: 50px 24px; background: #fff; border-top: 1px solid var(--line); }
.quote-slider { position: relative; max-width: 800px; margin: 0 auto; text-align: center; }
.quote-slide { display: none; padding: 16px 12px 0; }
.quote-slide.is-active { display: block; }
.quote-slide blockquote {
  font-family: Georgia, serif; font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--ink); margin: 0 0 14px; font-style: italic; line-height: 1.5;
}
.quote-slide figcaption { color: var(--terracotta); font-weight: 600; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
.slider-prev, .slider-next {
  background: #fff; border: 1px solid var(--line); border-radius: 50%;
  width: 40px; height: 40px; font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--terracotta);
}
.slider-prev:hover, .slider-next:hover { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; padding: 0; }
.slider-dot.is-active { background: var(--terracotta); }

/* ACCORDION */
.accordion-section { padding: 30px 24px 60px; }
.accordion { max-width: 920px; margin: 0 auto; }
.accordion-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow);
}
.accordion-trigger {
  background: none; border: none; width: 100%; text-align: left;
  padding: 18px 22px; font-size: 1.15rem; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.accordion-trigger:hover { background: var(--cream-light); }
.accordion-trigger .chev { transition: transform .2s ease; color: var(--terracotta); }
.accordion-item.is-open .accordion-trigger .chev { transform: rotate(180deg); }
.accordion-panel { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
.accordion-item.is-open .accordion-panel { max-height: 4000px; padding: 4px 22px 22px; }

.programme-list { list-style: none; padding: 0; margin: 0; }
.programme-list li {
  display: grid; grid-template-columns: 110px 1fr; gap: 18px;
  padding: 12px 0; border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.programme-list li:last-child { border-bottom: 0; padding-bottom: 4px; }
.prog-time { font-family: Georgia, serif; color: var(--sage-dark); font-weight: 600; font-size: .98rem; }
.prog-body h4 { margin: 0 0 4px; font-size: 1.05rem; color: var(--ink); }
.prog-body p { margin: 0; color: var(--ink-soft); }

/* Day-group cards — one per unique day, color-cycled */
.day-group {
  border-radius: var(--radius);
  padding: 20px 26px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
}
.day-group .day-header {
  font-family: Georgia, serif; font-weight: 700;
  font-size: 1.2rem; margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  letter-spacing: .3px;
}
.day-group .programme-list li { border-bottom-color: rgba(0,0,0,.06); }
.day-group:last-child { margin-bottom: 0; }

/* 5-color rotation matching the brand palette */
.day-group-1 { background: #FDF4EE; border-color: #F0E1D2; }
.day-group-1 .day-header { color: var(--terracotta); }
.day-group-2 { background: #EFF4ED; border-color: #DDE6DA; }
.day-group-2 .day-header { color: var(--sage-dark); }
.day-group-3 { background: #FBF7EC; border-color: #ECE2C6; }
.day-group-3 .day-header { color: #8A6B2B; }
.day-group-4 { background: #F4EFEC; border-color: #E2D7CF; }
.day-group-4 .day-header { color: #6E4D38; }
.day-group-5 { background: #ECF1F2; border-color: #D5DEDF; }
.day-group-5 .day-header { color: #3F6266; }

@media (max-width: 720px) {
  .programme-list li { grid-template-columns: 1fr; gap: 4px; padding: 10px 0; }
  .prog-time { font-size: .9rem; }
  .day-group { padding: 16px 18px; }
  .day-group .day-header { font-size: 1.1rem; }
}

/* FORMS */
.form-section { padding: 30px 24px 60px; }
.card-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px;
}
.card-form label > span { display: block; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.card-form input[type=text], .card-form input[type=email], .card-form input[type=tel], .card-form input[type=url], .card-form textarea, .card-form select, .card-form input[type=file] {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 8px; font-size: 1rem;
  font-family: inherit; background: #fff;
}
.card-form input:focus, .card-form textarea:focus, .card-form select:focus {
  outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(139, 90, 60, .15);
}
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 16px; }
.alert-success { background: #E5F1E6; color: var(--sage-dark); border: 1px solid #B6D6B7; }
.alert-error { background: #F8E3DC; color: #743A22; border: 1px solid #E2B49E; }

/* REGISTER 3-STEP SHELL */
.reg-shell { padding: 30px 24px 80px; }
.reg-steps {
  display: flex; gap: 12px; list-style: none; padding: 0;
  margin: 10px 0 30px; flex-wrap: wrap; justify-content: center;
}
.reg-step-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); font-weight: 600; color: var(--muted);
  font-size: .95rem; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.reg-step-pill span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--line); color: var(--ink); font-size: .8rem;
}
.reg-step-pill.is-active { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.reg-step-pill.is-active span { background: rgba(255,255,255,.25); color: #fff; }

.reg-step { background: #fff; }

/* Ticket list (step 1) */
.ticket-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.ticket-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 24px;
  align-items: center; padding: 22px 18px; border-bottom: 1px solid var(--line);
}
.ticket-info h3 { margin: 0 0 4px; font-size: 1.15rem; color: var(--ink); }
.ticket-info p { margin: 0; color: var(--muted); font-size: .92rem; }
.ticket-price { text-align: right; min-width: 140px; }
.ticket-price .price-amt { display: block; font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.ticket-price .price-note { display: block; color: var(--muted); font-size: .82rem; margin-top: 2px; }
.ticket-qty {
  display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
}
.qty-btn {
  width: 36px; height: 38px; background: #fff; border: 0;
  font-size: 1.3rem; line-height: 1; color: var(--ink);
  cursor: pointer; transition: background .15s ease;
}
.qty-btn:hover { background: var(--cream); }
.qty-input {
  width: 60px; height: 38px; border: 0; text-align: center;
  font-size: 1.05rem; font-weight: 600; color: var(--ink);
  border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cart-totals {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  background: var(--cream); padding: 18px 22px; border-radius: var(--radius);
  margin-top: 18px;
}
.cart-totals .ct-label { color: var(--muted); font-size: .9rem; letter-spacing: .5px; text-transform: uppercase; margin-right: 6px; }
.cart-totals .ct-value { font-size: 1.15rem; color: var(--ink); }
.cart-totals .ct-cta { margin-left: auto; }
.cart-totals .btn-lg { padding: 14px 28px; }

/* Attendee blocks (step 2) */
.attendee-block {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 22px 18px; margin: 18px 0;
}
.attendee-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.attendee-num { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.attendee-cat {
  background: var(--terracotta); color: #fff; padding: 4px 12px;
  border-radius: 999px; font-size: .82rem; font-weight: 600; letter-spacing: .5px;
}
.att-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px;
  margin: 10px 0;
}
.att-field { display: flex; flex-direction: column; gap: 4px; }
.att-field.att-wide { grid-column: 1 / -1; }
.att-field span { font-size: .88rem; color: var(--ink-soft); font-weight: 600; }
.att-field input, .att-field select {
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 6px;
  font-size: .98rem; font-family: inherit; background: #fff;
}
.att-field input:focus, .att-field select:focus {
  outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(139,90,60,.12);
}
.size-chart-link {
  display: block; margin-top: 8px; text-decoration: none;
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  background: #fff;
}
.size-chart-link:hover { text-decoration: none; border-color: var(--terracotta); }
.size-chart-thumb { width: 100%; height: auto; display: block; }
.size-chart-caption {
  display: block; text-align: center; padding: 6px 8px;
  font-size: .82rem; color: var(--muted);
  border-top: 1px solid var(--line); background: var(--cream);
}

.att-events {
  border: 1px solid var(--line); border-radius: 6px;
  padding: 12px 14px; margin: 0;
}
.att-events legend { padding: 0 6px; font-size: .88rem; color: var(--ink-soft); font-weight: 600; }
.att-check { display: block; padding: 4px 0; color: var(--ink-soft); cursor: pointer; font-size: .95rem; }
.att-check input { margin-right: 8px; }

.att-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; margin: 12px 0;
  align-items: stretch;
}
.att-pair .att-events { height: 100%; }
.att-pair .att-needs textarea {
  width: 100%; min-height: 100%; resize: vertical;
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 6px;
  font-size: .98rem; font-family: inherit; background: #fff; line-height: 1.5;
}
.att-pair .att-needs textarea:focus {
  outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(139,90,60,.12);
}
@media (max-width: 720px) {
  .att-pair { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .ticket-row { grid-template-columns: 1fr; gap: 10px; }
  .ticket-price { text-align: left; }
  .att-grid { grid-template-columns: 1fr; }
}

/* Step navigation */
.step-nav {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 24px;
}

/* Order summary */
.order-summary {
  background: var(--cream); border-radius: var(--radius);
  padding: 18px 22px; margin: 20px 0;
}
.order-summary h3 { margin: 0 0 12px; font-size: 1.1rem; color: var(--ink); }
.sum-line { display: flex; justify-content: space-between; padding: 6px 0; color: var(--ink-soft); }
.summary-total { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 1.1rem; color: var(--ink); text-align: right; }

.category-fieldset, .paymethod-fieldset { border: 0; padding: 0; margin: 0; }
.category-fieldset legend, .paymethod-fieldset legend { font-weight: 600; padding: 0; margin-bottom: 8px; color: var(--ink-soft); }
.cat-card, .pm-card {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer; margin-bottom: 8px;
  background: #fff;
}
.cat-card input, .pm-card input { margin-top: 4px; }
.cat-card:has(input:checked), .pm-card:has(input:checked) { border-color: var(--terracotta); background: #FFF8F0; }
.cat-card h4, .pm-card h4 { margin: 0 0 2px; font-size: 1.05rem; color: var(--ink); }
.cat-card p, .pm-card p { margin: 0; color: var(--muted); }

.pm-details {
  background: var(--cream-light); border: 1px dashed var(--line);
  padding: 18px; border-radius: 8px; margin-top: 4px;
}
.pm-details h4 { color: var(--terracotta); margin-top: 0; }
.bank-list { padding-left: 18px; }
.bank-list li { margin-bottom: 8px; }
.payment-instructions { padding: 10px 12px; background: #fff; border: 1px solid var(--line); border-radius: 6px; margin: 10px 0; }

/* FOOTER */
.site-footer { background: var(--ink); color: #cfc7bd; padding: 50px 24px 20px; margin-top: 60px; }
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px;
}
.footer-block h3 { font-size: 1rem; color: #fff; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.footer-block p, .footer-block a { color: #d8c9b8; font-size: .92rem; line-height: 1.6; }
.footer-block ul { list-style: none; padding: 0; margin: 0; }
.footer-block ul li { margin-bottom: 6px; }
.footer-bottom { max-width: var(--max-width); margin: 30px auto 0; padding-top: 18px; border-top: 1px solid #3a2f26; text-align: center; }
.footer-bottom small { color: #8a7a6c; }
