:root {
  --gold: #c8a866;
  --gold-dim: rgba(200, 168, 102, 0.65);
  --gold-faint: rgba(200, 168, 102, 0.1);
  --dark: #0b0b0d;
  --bronze: #6f4f2b;
  --light: #f4f1ea;
  --muted: #b8b2a6;
  --border: rgba(244, 241, 234, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Cormorant Garamond", Georgia, serif;
  background-color: var(--dark);
  color: var(--light);
  margin: 0;
}

.font-display {
  font-family: "Montserrat", sans-serif;
}
.font-mono {
  font-family: "IBM Plex Mono", monospace;
}
.font-serif {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.headline-hero {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 0.92;
}
.headline-section {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 0.96;
}
.label-mono {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

.text-gold {
  color: var(--gold);
}
.text-muted {
  color: var(--muted);
}
.text-light {
  color: var(--light);
}
.bg-dark {
  background-color: var(--dark);
}
.bg-bronze {
  background-color: var(--bronze);
}
.hairline-gold {
  height: 1px;
  background-color: var(--gold-dim);
}

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.section-pinned {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.cta-underline {
  position: relative;
  display: inline-block;
}
.cta-underline::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.cta-underline:hover::after {
  transform: scaleX(1);
}
:focus-visible {
  outline: 2px solid var(--gold-dim);
  outline-offset: 3px;
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.5vh 4vw;
  background: linear-gradient(
    to bottom,
    rgba(11, 11, 13, 0.9) 0%,
    transparent 100%
  );
  backdrop-filter: blur(2px);
  transition:
    background 0.4s ease,
    padding 0.35s ease;
}
.site-nav.scrolled {
  background: rgba(11, 11, 13, 0.97);
  padding-top: 1.8vh;
  padding-bottom: 1.8vh;
  border-bottom: 1px solid rgba(244, 241, 234, 0.08);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background-color: var(--gold);
  color: #0b0b0d;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 10px 20px;
  border: 1px solid var(--gold);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn-primary-lg {
  padding: 13px 26px;
  font-size: 11px;
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 10px 20px;
  border: 1px solid rgba(200, 168, 102, 0.5);
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost-dark:hover {
  background: rgba(200, 168, 102, 0.1);
  border-color: var(--gold-dim);
}
.btn-ghost-dark-lg {
  padding: 13px 26px;
  font-size: 11px;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--light);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 10px 20px;
  border: 1px solid rgba(244, 241, 234, 0.4);
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost-light:hover {
  background: rgba(244, 241, 234, 0.1);
  border-color: rgba(244, 241, 234, 0.7);
}
.btn-ghost-light-lg {
  padding: 13px 26px;
  font-size: 11px;
}

/* Section Backgrounds */
.bg-about {
  background-color: #0d0c10;
  background-image:
    radial-gradient(
      ellipse at 85% 10%,
      rgba(200, 168, 102, 0.07) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 10% 90%,
      rgba(111, 79, 43, 0.12) 0%,
      transparent 55%
    );
}
.bg-about::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='36,4 68,36 36,68 4,36' fill='none' stroke='%23c8a866' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 72px 72px;
}

.bg-program {
  background-color: #100f0c;
  background-image:
    radial-gradient(
      ellipse at 5% 50%,
      rgba(111, 79, 43, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 95% 80%,
      rgba(200, 168, 102, 0.05) 0%,
      transparent 45%
    );
}
.bg-program::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c8a866' stroke-width='0.5'%3E%3Cline x1='0' y1='30' x2='60' y2='30'/%3E%3Cline x1='30' y1='0' x2='30' y2='60'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.bg-day1 {
  background-color: #0c0c12;
  background-image:
    linear-gradient(150deg, rgba(25, 24, 40, 0.95) 0%, rgba(12, 12, 18, 1) 65%),
    radial-gradient(
      ellipse at 90% 5%,
      rgba(200, 168, 102, 0.06) 0%,
      transparent 40%
    );
}
.bg-day1::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='0.9' fill='%23c8a866'/%3E%3C/svg%3E");
  background-size: 32px 32px;
}

.bg-day2 {
  background-color: #0f0b07;
  background-image:
    linear-gradient(140deg, rgba(55, 32, 8, 0.7) 0%, rgba(15, 11, 7, 1) 60%),
    radial-gradient(
      ellipse at 5% 95%,
      rgba(200, 168, 102, 0.05) 0%,
      transparent 45%
    );
}
.bg-day2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='44' x2='44' y2='0' fill='none' stroke='%23c8a866' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 44px 44px;
}

.bg-day3 {
  background-color: #100c09;
  background-image:
    radial-gradient(
      ellipse at 70% 25%,
      rgba(90, 35, 18, 0.4) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 10% 80%,
      rgba(200, 168, 102, 0.05) 0%,
      transparent 45%
    );
}
.bg-day3::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='8' y='8' width='64' height='64' fill='none' stroke='%23c8a866' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

/* Cards */
.info-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.pillar-item {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    background 0.35s ease;
}
.pillar-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillar-item:hover {
  border-color: rgba(200, 168, 102, 0.45);
  background: var(--gold-faint);
}
.pillar-item:hover::after {
  width: 100%;
}

.gold-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold-dim);
  padding: 6px 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.pull-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.45;
  color: var(--light);
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(200, 168, 102, 0.32);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 168, 102, 0.6);
}
::selection {
  background: rgba(200, 168, 102, 0.25);
  color: var(--light);
}

/* Scroll animation system */
[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal="up"] {
  transform: translateY(32px);
}
[data-reveal="left"] {
  transform: translateX(-38px);
}
[data-reveal="right"] {
  transform: translateX(38px);
}
[data-reveal="fade"] {
  transform: none;
}
[data-reveal="scale"] {
  transform: scale(0.93);
}
[data-reveal].is-visible {
  opacity: 1 !important;
  transform: none !important;
}
[data-delay="100"] {
  transition-delay: 0.1s;
}
[data-delay="150"] {
  transition-delay: 0.15s;
}
[data-delay="200"] {
  transition-delay: 0.22s;
}
[data-delay="250"] {
  transition-delay: 0.3s;
}
[data-delay="300"] {
  transition-delay: 0.4s;
}
[data-delay="400"] {
  transition-delay: 0.55s;
}
[data-delay="500"] {
  transition-delay: 0.68s;
}

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-in {
  animation: heroUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}
.hd-0 {
  animation-delay: 0.05s;
}
.hd-200 {
  animation-delay: 0.22s;
}
.hd-400 {
  animation-delay: 0.4s;
}
.hd-550 {
  animation-delay: 0.55s;
}
.hd-700 {
  animation-delay: 0.7s;
}

@keyframes caretPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(0.65);
  }
}
.scroll-caret {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: caretPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}

.line-grow {
  height: 1px;
  background: var(--gold-dim);
  width: 0;
  opacity: 0;
  transition:
    width 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
    opacity 0.4s ease 0.15s;
}
.line-grow.is-visible {
  width: 100%;
  opacity: 1;
}

#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(11, 11, 13, 0.98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
#mobile-menu.open {
  display: flex;
}

.sr-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-dim),
    transparent
  );
}

#hero-bg-fixed {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url(/assets/images/hero_portrait.jpg);
  background-size: cover;
  background-position: center 30%;
}

.section-pinned,
.section-pinned.bg-about,
.section-pinned.bg-program,
.section-pinned.bg-day1,
.section-pinned.bg-day2,
.section-pinned.bg-day3 {
  background-color: transparent;
  background-image: none;
}
.section-pinned.bg-about::before,
.section-pinned.bg-program::before,
.section-pinned.bg-day1::before,
.section-pinned.bg-day2::before,
.section-pinned.bg-day3::before {
  display: none;
}

.section-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.tint-hero {
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.22) 52%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 45%);
}
.tint-about {
  background:
    radial-gradient(
      ellipse at 85% 10%,
      rgba(200, 168, 102, 0.06) 0%,
      transparent 50%
    ),
    rgba(13, 12, 16, 0.88);
}
.tint-program {
  background:
    radial-gradient(
      ellipse at 5% 50%,
      rgba(111, 79, 43, 0.18) 0%,
      transparent 50%
    ),
    rgba(16, 15, 12, 0.9);
}
.tint-day1 {
  background:
    linear-gradient(150deg, rgba(25, 24, 40, 0.6) 0%, transparent 65%),
    rgba(12, 12, 18, 0.91);
}
.tint-day2 {
  background:
    linear-gradient(140deg, rgba(55, 32, 8, 0.55) 0%, transparent 60%),
    rgba(15, 11, 7, 0.91);
}
.tint-day3 {
  background:
    radial-gradient(
      ellipse at 70% 25%,
      rgba(90, 35, 18, 0.38) 0%,
      transparent 55%
    ),
    rgba(16, 12, 9, 0.91);
}

/* Page curtain */
#page-curtain {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  pointer-events: none;
}
#page-curtain img {
  width: 142px;
  height: auto;
}
#page-curtain .curtain-wordmark {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-size: clamp(10px, 1.5vw, 13px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  /* transform: translateY(10px); */
  animation: curtainWordmark 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
#page-curtain .curtain-line {
  width: 0;
  height: 1px;
  background: var(--gold-dim);
  animation: curtainLine 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
@keyframes curtainWordmark {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes curtainLine {
  to {
    width: clamp(80px, 12vw, 160px);
  }
}
@keyframes curtainRise {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
#page-curtain.rising {
  animation: curtainRise 0.9s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

/* EOI Form */
.eoi-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(244, 241, 234, 0.18);
  color: var(--light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
  padding: 11px 14px;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.eoi-input::placeholder {
  color: rgba(184, 178, 166, 0.4);
}
.eoi-input:focus {
  border-color: var(--gold-dim);
  background: rgba(200, 168, 102, 0.04);
}
select.eoi-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(200,168,102,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
select.eoi-input option {
  background: #1a1812;
  color: var(--light);
}
textarea.eoi-input {
  resize: vertical;
  min-height: 90px;
}
.eoi-type-btn {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 9px 18px;
  border: 1px solid rgba(244, 241, 234, 0.22);
  color: rgba(244, 241, 234, 0.55);
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    color 0.22s ease,
    background 0.22s ease;
  white-space: nowrap;
}
.eoi-type-btn:hover {
  border-color: rgba(200, 168, 102, 0.45);
  color: var(--gold);
}
.eoi-type-btn.active {
  border-color: var(--gold);
  color: var(--dark);
  background: var(--gold);
}

/* Inner page hero */
.page-hero {
  padding: 18vh 6vw 10vh;
  position: relative;
  overflow: hidden;
  background-color: #0b0b0d;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 80% 20%,
      rgba(200, 168, 102, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 10% 80%,
      rgba(111, 79, 43, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}

/* Award card */
.award-card {
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    background 0.35s ease;
}
.award-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.award-card:hover {
  border-color: rgba(200, 168, 102, 0.4);
  background: var(--gold-faint);
}
.award-card:hover::before {
  height: 100%;
}

/* Partner card */
.partner-card {
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  transition:
    border-color 0.35s ease,
    background 0.35s ease;
  text-align: center;
}
.partner-card:hover {
  border-color: rgba(200, 168, 102, 0.4);
  background: var(--gold-faint);
}

/* Sponsor tier card */
.sponsor-tier {
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease;
}
.sponsor-tier.featured {
  border-color: var(--gold-dim);
  background: rgba(200, 168, 102, 0.05);
}
.sponsor-tier::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.sponsor-tier:hover::after {
  width: 100%;
}
.sponsor-tier:hover {
  border-color: rgba(200, 168, 102, 0.5);
}

/* Agenda */
.agenda-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(244, 241, 234, 0.06);
}
.agenda-item:last-child {
  border-bottom: none;
}

/* Download card */
.download-card {
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  padding: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition:
    border-color 0.35s ease,
    background 0.35s ease;
  text-decoration: none;
  color: inherit;
}
.download-card:hover {
  border-color: rgba(200, 168, 102, 0.45);
  background: var(--gold-faint);
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid rgba(244, 241, 234, 0.08);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  color: var(--light);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.45;
  transition: color 0.25s ease;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s ease,
    background 0.25s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-faint);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.85;
}
.faq-item.open .faq-answer {
  max-height: 600px;
}

/* Contact */
.contact-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(244, 241, 234, 0.18);
  color: var(--light);
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
  border-radius: 0;
}
.contact-input::placeholder {
  color: rgba(184, 178, 166, 0.4);
}
.contact-input:focus {
  border-color: var(--gold-dim);
  background: rgba(200, 168, 102, 0.04);
}
textarea.contact-input {
  resize: vertical;
  min-height: 120px;
}

/* Mobile */
@media (max-width: 767px) {
  #hero-bg-fixed {
    display: none;
  }
  .section-pinned {
    background-color: var(--dark);
    background-image: none;
  }
  .section-pinned.bg-about {
    background-color: #0d0c10;
  }
  .section-pinned.bg-program {
    background-color: #100f0c;
  }
  .section-pinned.bg-day1 {
    background-color: #0c0c12;
  }
  .section-pinned.bg-day2 {
    background-color: #0f0b07;
  }
  .section-pinned.bg-day3 {
    background-color: #100c09;
  }
  .section-tint {
    display: none;
  }
  #hero-section {
    background-image: url(/assets/images/hero_portrait.jpg);
    background-size: cover;
    background-position: center 30%;
  }
  .site-nav {
    padding: 4vw 5vw;
  }
  .headline-hero {
    font-size: clamp(32px, 9vw, 52px) !important;
    line-height: 0.95;
  }
  .headline-section {
    font-size: clamp(26px, 8vw, 42px) !important;
  }
  .scroll-caret {
    display: none;
  }
  .btn-primary-lg,
  .btn-ghost-light-lg,
  .btn-ghost-dark-lg {
    width: 100%;
    justify-content: center;
  }
  .pull-quote {
    font-size: clamp(20px, 5.5vw, 30px);
  }
  .agenda-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .page-hero {
    padding: 16vh 6vw 8vh;
  }
}
@media (max-width: 400px) {
  .headline-hero {
    font-size: clamp(28px, 8.5vw, 38px) !important;
  }
  .headline-section {
    font-size: clamp(22px, 7vw, 32px) !important;
  }
  .btn-primary,
  .btn-ghost-dark,
  .btn-ghost-light {
    font-size: 9px;
    padding: 11px 16px;
  }
}
