/* TTFOH 2026 — prototype theme + multi-page layout */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap");

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

:root {
  --navy: #1a2d3d;
  --deep: #f3efe6;
  --surface: #fffcfa;
  --ink: #1c2834;
  --teal: #2a7060;
  --mint: #2d7a64;
  --gold: #b8892e;
  --cream: #faf6f0;
  --white: #fff;
  --red: #8b1a2f;
  /* Muted text on light surfaces */
  --dim: rgba(28, 40, 52, 0.62);
  --faint: rgba(46, 90, 78, 0.07);
  --line: rgba(28, 40, 52, 0.1);
  --whisper: rgba(28, 40, 52, 0.38);
  --whisper2: rgba(28, 40, 52, 0.28);
}

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100%;
  background-color: var(--cream);
  background-image:
    linear-gradient(
      165deg,
      rgba(255, 252, 247, 0.9) 0%,
      rgba(250, 245, 236, 0.86) 48%,
      rgba(245, 238, 225, 0.92) 100%
    ),
    url("Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 900px) {
  body {
    background-attachment: scroll;
  }
}

/* Home: poster via <img> — uniform scale only (no background-size stretch/crop quirks) */
body.page-home {
  background-color: #e8eceb;
  background-image: none;
}

.home-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  margin: 0;
  background: #e8eceb;
  display: grid;
  place-items: center;
  pointer-events: none;
  overflow: hidden;
}

.home-backdrop-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100vh;
  max-height: 100dvh;
  object-fit: contain;
  object-position: center center;
}

.page-home .site-shell {
  position: relative;
  z-index: 1;
}

/* Avoid teal/gold glow wash over the hero artwork */
.page-home .gb {
  opacity: 0;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--gold); }

.site-shell { position: relative; min-height: 100vh; }

/* Glow orbs */
.gb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.gb1 { width: 600px; height: 600px; top: -200px; left: -150px; background: rgba(45, 122, 100, 0.08); }
.gb2 { width: 500px; height: 500px; bottom: -200px; right: -100px; background: rgba(184, 137, 46, 0.09); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 16px;
  top: 12px;
  width: auto;
  height: auto;
  z-index: 200;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--gold);
  color: var(--ink);
  border-radius: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Sticky site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 252, 248, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-header-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
  flex-wrap: wrap;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.site-brand:hover { text-decoration: none; }

.site-brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px;
}

.site-brand-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}
.site-brand-text small {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.site-nav a {
  background: none;
  border: none;
  border-right: 1px solid var(--line);
  color: var(--whisper);
  font-family: "DM Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 0.85rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
  white-space: nowrap;
}
.site-nav a:last-of-type { border-right: none; }
.site-nav a:hover {
  color: var(--ink);
  background: var(--faint);
}
.site-nav a.active {
  color: var(--gold);
  background: rgba(184, 137, 46, 0.1);
}

.site-header-cta .btn-g {
  padding: 0.55rem 1.1rem;
  font-size: 0.56rem;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .site-header-inner {
    padding: 0.6rem 1rem;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .site-nav a {
    font-size: 0.52rem;
    padding: 0 0.65rem;
  }
  .site-header-cta {
    align-self: center;
  }
}

/* Layout */
.wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 4rem 2.2rem;
  position: relative;
  z-index: 1;
}

.wrap-top {
  padding-top: 2.5rem;
}

.section-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.body-text {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.88;
  color: var(--dim);
}

.gold-bar {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0;
}

.card {
  background: var(--faint);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 1.6rem;
}

/* Buttons */
.btn-g {
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: 1px;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn-g:hover { background: var(--white); color: var(--navy); }
.btn-g:disabled,
.btn-g[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-o {
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  border: 1px solid rgba(28, 40, 52, 0.18);
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: 1px;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn-o:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: var(--white);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

/* Hero (home) */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Home: key art in Background.png — CTAs only */
.hero--art {
  justify-content: flex-end;
  min-height: min(88vh, 960px);
  padding: 6rem 2rem clamp(3rem, 10vh, 7rem);
}

.hero--art .h-ctas {
  padding: 1rem 1.35rem;
  border-radius: 4px;
  background: rgba(255, 252, 247, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 137, 46, 0.15);
  box-shadow: 0 12px 40px rgba(28, 40, 52, 0.06);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-glow-c {
  position: absolute;
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(42, 112, 96, 0.18) 0%, transparent 70%);
}

.hero-leaf-svg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.h-eye {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1.5rem;
  animation: fu 0.7s 0.1s both;
}

.h-t1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 0.95;
  animation: fu 0.7s 0.18s both;
}

.h-t2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 0.95;
  display: block;
  animation: fu 0.7s 0.24s both;
}

.h-hope {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1em;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300;
  animation: fu 0.7s 0.3s both;
}

.h-cx {
  width: clamp(2.5rem, 4.8vw, 4.8rem);
  height: clamp(2.5rem, 4.8vw, 4.8rem);
  position: relative;
  top: -0.05em;
}

.h-rule {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 1.8rem auto;
  animation: fu 0.7s 0.35s both;
}

.h-date {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--whisper);
  margin-bottom: 0.25rem;
  animation: fu 0.7s 0.38s both;
}
.h-date strong { color: var(--ink); }

.h-theme {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--whisper2);
  margin: 1.4rem 0 2.4rem;
  max-width: 480px;
  line-height: 1.7;
  animation: fu 0.7s 0.42s both;
}

.h-ctas {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fu 0.7s 0.48s both;
}

.h-pillars {
  display: flex;
  gap: 1rem 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  animation: fu 0.7s 0.54s both;
}

.h-pill {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--whisper2);
}
.h-pill::before { content: "† "; color: var(--mint); }

/* Countdown */
.cd-bar {
  background: linear-gradient(
    165deg,
    #fff9f0 0%,
    #f6e6c8 38%,
    #edd9a8 100%
  );
  border-top: 2px solid #c9a23a;
  border-bottom: 1px solid rgba(45, 122, 100, 0.28);
  padding: 1.5rem 1.75rem 1.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 2.25rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 6px 28px rgba(140, 100, 30, 0.12);
}

.cd-item {
  text-align: center;
  padding: 0.55rem 0.85rem 0.45rem;
  min-width: 4.75rem;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  border: 1px solid rgba(201, 162, 58, 0.45);
  box-shadow:
    0 2px 10px rgba(28, 40, 52, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.cd-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.85rem;
  font-weight: 600;
  line-height: 1;
  min-width: 64px;
  color: #8a6318;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 2px 14px rgba(201, 162, 58, 0.35);
}

.cd-label {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
  margin-top: 0.35rem;
}

.cd-sep {
  color: rgba(45, 122, 100, 0.42);
  font-size: 1.85rem;
  font-weight: 300;
  padding: 0 0.15rem;
  align-self: flex-start;
  margin-top: 0.65rem;
}

.cd-verse {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  max-width: 340px;
  line-height: 1.65;
  text-align: center;
  border-left: 3px solid var(--mint);
  padding-left: 1.35rem;
  margin-left: 0.75rem;
}

.cd-verse-ref {
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #6b5220;
}

@media (max-width: 720px) {
  .cd-verse {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 1rem;
  }
}

/* Action strip */
.action-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  position: relative;
  z-index: 1;
}

.ac {
  background: var(--surface);
  padding: 1.8rem 1.6rem;
  cursor: pointer;
  transition: background 0.22s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.ac::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.22s;
  transform-origin: left;
}
.ac:hover { background: rgba(45, 122, 100, 0.07); }
.ac:hover::after { transform: scaleX(1); }

.ac-icon { font-size: 1.5rem; margin-bottom: 0.7rem; }
.ac-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.ac-sub {
  font-size: 0.68rem;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}
.ac-cta {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.ac-cta::after { content: " →"; }

.ac-badge {
  display: inline-block;
  font-size: 0.52rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 1px;
  margin-bottom: 0.5rem;
}

.badge-free {
  background: rgba(91, 184, 160, 0.12);
  color: var(--mint);
  border: 1px solid rgba(91, 184, 160, 0.2);
}
.badge-paid {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.badge-soon {
  background: var(--faint);
  color: var(--whisper);
  border: 1px solid var(--line);
}

/* Stay updated — email + WhatsApp */
.mail-strip {
  background: linear-gradient(
    180deg,
    rgba(255, 252, 247, 0.97) 0%,
    rgba(245, 236, 218, 0.35) 55%,
    rgba(238, 228, 210, 0.45) 100%
  );
  border-top: 1px solid rgba(184, 137, 46, 0.2);
  border-bottom: 1px solid rgba(45, 122, 100, 0.12);
  padding: 2.75rem 1.35rem 3rem;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.mail-strip-inner {
  max-width: 920px;
  margin: 0 auto;
}

.mail-strip-intro {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.mail-strip-kicker {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.6rem;
}

.mail-strip-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.65rem;
}

.mail-strip-lead {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--dim);
  line-height: 1.65;
  margin: 0;
}

.mail-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.mail-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.45rem 1.35rem 1.5rem;
  box-shadow:
    0 2px 12px rgba(28, 40, 52, 0.05),
    0 12px 40px rgba(28, 40, 52, 0.04);
}

.mail-panel--whatsapp {
  border-color: rgba(45, 122, 100, 0.18);
  background: linear-gradient(165deg, #fffcfa 0%, #f4faf7 100%);
}

.mail-panel-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.mail-panel-head--center {
  justify-content: center;
}

.mail-panel-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.mail-panel-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.02em;
}

.mail-strip-text {
  font-size: 0.8rem;
  color: var(--dim);
  line-height: 1.65;
  margin: 0 0 1.1rem;
}

.mail-panel--email .mail-strip-text {
  margin-bottom: 1.15rem;
}

.mail-strip-text--whatsapp {
  text-align: center;
  margin-bottom: 1.15rem;
}

.mail-form {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  align-items: center;
}

.mail-input {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.68rem 1rem;
  font-size: 0.78rem;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  outline: none;
  flex: 1 1 160px;
  min-width: 0;
  max-width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mail-input:hover {
  border-color: rgba(45, 122, 100, 0.28);
}

.mail-input:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(45, 122, 100, 0.12);
}

.mail-input::placeholder {
  color: var(--whisper);
}

.mail-form .btn-g {
  padding: 0.68rem 1.35rem;
  white-space: nowrap;
  border: none;
  border-radius: 4px;
}

.mail-qr-wrap {
  margin: 0;
  padding: 1rem 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(28, 40, 52, 0.08);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mail-qr-img {
  display: block;
  width: min(100%, 200px);
  height: auto;
  border-radius: 4px;
}

.mail-qr-caption {
  margin-top: 0.75rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  text-align: center;
}

@media (max-width: 720px) {
  .mail-strip-grid {
    grid-template-columns: 1fr;
  }

  .mail-panel-head--center {
    justify-content: flex-start;
  }

  .mail-strip-text--whatsapp {
    text-align: left;
  }

  .mail-qr-wrap {
    align-self: center;
    max-width: 260px;
  }
}

/* About */
.about-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.aq {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dim);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.venue-card {
  background: var(--faint);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 1.2rem;
  margin-bottom: 0.7rem;
  border-left: 3px solid var(--gold);
}

.vc-day {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.2rem;
}

.vc-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.vc-loc { font-size: 0.67rem; color: var(--dim); }

.info-tbl {
  width: 100%;
  border-collapse: collapse;
}
.info-tbl td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
  vertical-align: top;
}
.info-tbl td:first-child {
  color: var(--whisper);
  min-width: 120px;
  padding-right: 1rem;
}

.community-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.ctag {
  background: var(--faint);
  border: 1px solid var(--line);
  border-radius: 1px;
  padding: 0.25rem 0.6rem;
  font-size: 0.62rem;
  color: var(--dim);
}
.ctag.h {
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

/* Register tabs */
.reg-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.rn-btn {
  background: var(--faint);
  border: 1px solid var(--line);
  border-radius: 1px;
  padding: 0.55rem 1.1rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  cursor: pointer;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}
.rn-btn:hover,
.rn-btn.active {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.28);
  color: var(--gold);
}

.rc { display: none; }
.rc.active { display: block; }

.reg-card {
  background: var(--faint);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 1.8rem;
  margin-bottom: 1rem;
}

.rc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.rc-desc {
  font-size: 0.78rem;
  color: var(--dim);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.rd {
  display: flex;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.74rem;
}

.rdl {
  color: var(--whisper);
  min-width: 130px;
  flex-shrink: 0;
}
.rdv { color: var(--ink); }

.coming-soon-box {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 2px;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cs-icon { font-size: 1.2rem; flex-shrink: 0; }
.cs-text {
  font-size: 0.72rem;
  color: var(--dim);
  line-height: 1.6;
}
.cs-text strong { color: var(--gold); }

.ticket-tbl { margin-top: 1rem; }

.tt-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
}

.tt-label { color: var(--dim); }
.tt-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}

.reg-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* Pillars */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 2rem;
}

.p-card {
  background: var(--surface);
  padding: 1.8rem 1.5rem;
  transition: background 0.22s;
}
.p-card:hover { background: rgba(45, 122, 100, 0.06); }

.p-symbol { font-size: 1.4rem; margin-bottom: 0.6rem; }
.p-name {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.p-text {
  font-size: 0.72rem;
  color: var(--dim);
  line-height: 1.65;
}

/* Schedule */
.sched-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.day-col {
  background: var(--faint);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}

.day-hdr {
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid var(--line);
}

.dh-num {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.15rem;
}

.dh-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}

.dh-date {
  font-size: 0.62rem;
  color: var(--whisper);
  margin-top: 0.1rem;
}

.dh-venue {
  font-size: 0.6rem;
  color: var(--whisper2);
  margin-top: 0.1rem;
  font-style: italic;
}

.tl { padding: 0.9rem 1.3rem; }

.tl-item {
  display: flex;
  gap: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.tl-item:last-child { border: none; }

.tl-t {
  font-size: 0.6rem;
  color: var(--mint);
  font-weight: 500;
  min-width: 52px;
  padding-top: 0.1rem;
}

.tl-ct {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.1rem;
}

.tl-cs {
  font-size: 0.63rem;
  color: var(--whisper);
  line-height: 1.5;
}

.tl-tbd {
  font-size: 0.62rem;
  color: var(--whisper2);
  font-style: italic;
  padding: 0.6rem 0;
}

.prog-notice {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(91, 184, 160, 0.05);
  border: 1px solid rgba(91, 184, 160, 0.18);
  border-radius: 2px;
}
.prog-notice p {
  font-size: 0.72rem;
  color: var(--dim);
  margin: 0;
}
.prog-notice strong { color: var(--mint); }
.prog-notice a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prog-notice a:hover { color: var(--gold); }

/* FAQ */
.faq-wrap { max-width: 740px; }

.faq-cat-title {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin: 2rem 0 0.8rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--line);
}
.faq-cat-title:first-child { margin-top: 0; }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  text-align: left;
  padding: 0.85rem 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.77rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }

.qi {
  font-size: 0.75rem;
  color: var(--mint);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(91, 184, 160, 0.3);
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.faq-a {
  font-size: 0.73rem;
  color: var(--dim);
  line-height: 1.82;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 420px;
  padding-bottom: 0.9rem;
}
.faq-item.open .faq-q { color: var(--gold); }
.faq-item.open .qi {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.faq-cta-box {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--faint);
  border: 1px solid var(--line);
  border-radius: 3px;
  text-align: center;
}

/* Journey page cards */
.journey-phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.phase-card-dark {
  background: var(--surface);
  padding: 1.6rem 1.4rem;
  transition: background 0.22s;
}
.phase-card-dark:hover { background: rgba(45, 122, 100, 0.06); }

.phase-pill-dark {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.5rem;
}

.phase-title-dark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.phase-card-dark p {
  font-size: 0.78rem;
  color: var(--dim);
  line-height: 1.65;
  margin: 0;
}

.congress-strip-dark {
  margin-top: 2rem;
  padding: 1.5rem 1.6rem;
  border-radius: 3px;
  border: 1px solid rgba(91, 184, 160, 0.22);
  background: rgba(42, 112, 96, 0.07);
}
.congress-strip-dark h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  margin: 0 0 0.6rem;
  color: var(--gold);
}
.congress-strip-dark p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
  line-height: 1.7;
}

.subtle-link {
  font-size: 0.82rem;
  color: var(--dim);
  margin-top: 1.5rem;
}
.subtle-link a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Site footer */
.site-footer {
  background: rgba(255, 252, 247, 0.97);
  border-top: 1px solid var(--line);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.site-footer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.site-footer-meta {
  font-size: 0.62rem;
  color: var(--whisper2);
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.site-footer-pillars {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.site-footer-pillars span {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--whisper2);
}

.site-footer-note {
  font-size: 0.6rem;
  color: var(--whisper2);
  max-width: 52rem;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-links {
  margin-top: 1rem;
  font-size: 0.68rem;
  color: var(--dim);
}
.footer-links a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-inline {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  color: var(--whisper);
}
.contact-inline a {
  color: var(--gold);
  text-decoration: none;
}
.contact-inline a:hover { text-decoration: underline; }

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .about-2col { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  body { background-attachment: scroll; }
}
