:root {
  --black: #111111;
  --ivory: #f8f6f2;
  --ivory-deep: #f0e6df;
  --gold: #a2804a;
  --gold-light: #d4b17a;
  --purple: #470a69;
  --crimson: #6b0438;
  --ink-soft: #ded4c7;
  --shadow: 0 28px 70px rgba(17, 17, 17, 0.24);
  --radius: 14px;
  color-scheme: light dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--black);
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

::selection {
  background: var(--crimson);
  color: var(--ivory);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border: 3px solid var(--black);
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

button,
input,
select {
  font: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  top: 1rem;
  left: 1rem;
  margin: 0;
  padding: 0.75rem 1rem;
  color: var(--ivory);
  background: var(--crimson);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.no-script {
  padding: 5.8rem 0 1rem;
  color: var(--ivory);
  background: var(--black);
}

.no-script p {
  margin: 0;
  line-height: 1.55;
}

.no-script a {
  color: var(--gold-light);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem max(20px, 4vw);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.86), rgba(17, 17, 17, 0.16));
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--black);
  background: rgba(248, 246, 242, 0.94);
  box-shadow: 0 16px 44px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  width: clamp(138px, 15vw, 188px);
  display: inline-flex;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.24));
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  place-items: center;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  width: 18px;
  height: 1.5px;
  background: currentColor;
  margin: 2px 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  min-width: 0;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta {
  color: var(--ivory);
  background: rgba(107, 4, 56, 0.86);
  padding: 0.68rem 1.05rem;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(107, 4, 56, 0.22);
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--ivory);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 6.6rem 0 0;
  background: var(--black);
}

.hero-media,
.hero-shade,
.hero-arc {
  position: absolute;
}

.hero-media,
.hero-shade {
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.hero-shade {
  background:
    radial-gradient(circle at 84% 34%, rgba(107, 4, 56, 0.42), transparent 24%),
    linear-gradient(90deg, rgba(17, 17, 17, 0.96) 0%, rgba(17, 17, 17, 0.82) 48%, rgba(17, 17, 17, 0.42) 100%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.42) 72%, rgba(17, 17, 17, 0.94) 100%);
}

.hero-arc {
  z-index: 1;
  right: min(-12vw, -40px);
  bottom: 3.2rem;
  width: min(54vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(212, 177, 122, 0.75);
  border-left-color: transparent;
  border-top-color: transparent;
  background: radial-gradient(circle at 100% 100%, rgba(107, 4, 56, 0.86) 0 32%, rgba(71, 10, 105, 0.5) 33% 48%, transparent 49%);
  transform: rotate(8deg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1010px, calc(100% - 40px));
  margin: 0 auto;
  padding: min(5vw, 2.6rem) 0 3.9rem;
}

.hero-kicker {
  margin: 0 0 1.7rem;
  color: rgba(248, 246, 242, 0.92);
  font-size: clamp(0.78rem, 1.25vw, 0.98rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-kicker::after {
  content: "";
  display: block;
  width: 110px;
  height: 2px;
  margin-top: 0.75rem;
  background: var(--gold);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin: 0 0 1.35rem;
  color: var(--gold-light);
  font-weight: 400;
  font-size: clamp(0.98rem, 2vw, 1.18rem);
  letter-spacing: 0.01em;
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.event-meta svg {
  width: 1.15em;
  height: 1.15em;
  stroke-width: 1.9;
}

.event-meta span + span::before {
  content: "";
  width: 1px;
  height: 1.2em;
  margin-right: 1rem;
  background: rgba(212, 177, 122, 0.7);
}

h1,
h2,
h3 {
  font-family: "Lora", Georgia, serif;
  margin: 0;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 790px;
  font-size: clamp(4.1rem, 9.2vw, 6.75rem);
  line-height: 0.96;
  font-weight: 400;
  text-wrap: balance;
  overflow-wrap: normal;
}

h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-copy {
  position: relative;
  max-width: 560px;
  margin: 1.8rem 0 0;
  padding-left: 1.55rem;
  color: rgba(248, 246, 242, 0.82);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.7;
  font-weight: 300;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 2px;
  background: var(--gold);
}

.hero-actions,
.signup-form {
  display: grid;
  gap: 0.9rem;
}

.hero-actions {
  width: 100%;
  max-width: 540px;
  margin-top: 2.2rem;
}

.button {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.2rem;
  border: 1px solid currentColor;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  text-align: center;
  overflow-wrap: anywhere;
}

.button svg {
  width: 22px;
  height: 22px;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.menu-button:focus-visible,
.faq button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.button-primary {
  color: var(--black);
  background: linear-gradient(135deg, #e7c673, #b99150);
  border-color: #d8b66a;
  box-shadow: 0 18px 40px rgba(162, 128, 74, 0.26);
}

.button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.78;
}

.button-secondary {
  color: var(--ivory);
  background: rgba(17, 17, 17, 0.28);
  border-color: var(--gold);
}

.button-dark {
  color: var(--ivory);
  background: var(--black);
  border-color: var(--black);
}

.faith-line {
  margin: 1rem 0 0;
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-proof {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: var(--black);
  background: var(--ivory);
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -18px 70px rgba(17, 17, 17, 0.2);
  overflow: hidden;
}

.hero-proof div {
  min-height: 154px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.35rem;
  padding: 1.3rem 0.8rem;
  text-align: center;
  border-right: 1px solid rgba(162, 128, 74, 0.25);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.hero-proof strong {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2.25rem, 6.2vw, 3.8rem);
  font-weight: 400;
  color: var(--crimson);
  line-height: 1;
}

.hero-proof span {
  max-width: 10ch;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.2;
}

.intro-band,
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.intro-band {
  background: var(--ivory);
}

.intro-grid,
.split,
.gala-layout,
.signup-grid,
.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.intro-grid > *,
.split > *,
.gala-layout > *,
.signup-grid > *,
.info-layout > *,
.prep-grid > *,
.speaker-grid > *,
.info-columns > *,
.schedule > * {
  min-width: 0;
}

.intro-grid h2,
.section-heading h2,
.gala-layout h2,
.signup-grid h2 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.98;
  font-weight: 400;
  text-wrap: balance;
}

.intro-grid p,
.section-heading p,
.gala-layout p,
.signup-grid p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
  font-weight: 300;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--crimson);
  font-weight: 500;
}

.section-ivory {
  background: var(--ivory-deep);
}

.section-dark {
  color: var(--ivory);
  background:
    radial-gradient(circle at 15% 0%, rgba(71, 10, 105, 0.42), transparent 34%),
    var(--black);
}

.section-royal {
  color: var(--ivory);
  background:
    linear-gradient(140deg, rgba(71, 10, 105, 0.94), rgba(17, 17, 17, 0.96)),
    var(--purple);
}

.section-signup {
  color: var(--ivory);
  background: linear-gradient(135deg, var(--crimson), var(--purple));
}

.section-heading {
  max-width: 830px;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading p {
  margin-top: 1.1rem;
}

.story-stack {
  display: grid;
  gap: 1rem;
}

.concept-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.concept-lead,
.mission-card {
  grid-column: 1 / -1;
}

.story-stack article,
.prep-grid article,
.speaker-grid article,
.info-columns article {
  background: rgba(248, 246, 242, 0.82);
  border: 1px solid rgba(162, 128, 74, 0.28);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
}

.story-stack h3,
.prep-grid h3,
.speaker-grid h3,
.info-columns h3,
.schedule h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.12;
  font-weight: 400;
}

.story-stack p,
.prep-grid p,
.speaker-grid p,
.info-columns p,
.schedule p,
.gala-panel li,
.notice {
  line-height: 1.58;
}

.mission-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.mission-list li {
  padding: 0.5rem 0.72rem;
  color: var(--ivory);
  background: var(--crimson);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1;
}

.section-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}

.section-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 52%, rgba(17, 17, 17, 0.58)),
    linear-gradient(90deg, rgba(17, 17, 17, 0.2), transparent 42%);
}

.section-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prep-layout,
.program-layout {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.prep-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.prep-photo {
  min-height: 430px;
  border-radius: 0 42px 0 42px;
}

.prep-photo img {
  object-position: 54% 50%;
}

.prep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.prep-grid article {
  color: var(--ivory);
  background: rgba(248, 246, 242, 0.08);
  border-color: rgba(212, 177, 122, 0.26);
  box-shadow: none;
}

.prep-grid span {
  display: inline-block;
  margin-bottom: 1.1rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(162, 128, 74, 0.3);
}

.program-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.78fr);
  align-items: start;
}

.program-photo {
  min-height: 560px;
  border-radius: 42px 0 42px 0;
}

.program-photo::after {
  background:
    linear-gradient(180deg, transparent 44%, rgba(17, 17, 17, 0.54)),
    linear-gradient(90deg, transparent, rgba(107, 4, 56, 0.22));
}

.program-photo img {
  object-position: 58% 50%;
}

.schedule article {
  display: grid;
  grid-template-columns: minmax(86px, 0.24fr) 1fr;
  gap: clamp(1rem, 4vw, 2.6rem);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(162, 128, 74, 0.3);
}

.schedule time {
  color: var(--crimson);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.speaker-grid article {
  color: var(--black);
}

.speaker-portrait {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  margin-bottom: 1rem;
  object-fit: cover;
  border-radius: 12px;
  background: var(--black);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.16);
}

.notice {
  margin: 2rem 0 0;
  color: var(--ink-soft);
}

.gala-panel {
  padding: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--ivory);
  background: var(--black);
  border-radius: 0 40px 0 40px;
  box-shadow: var(--shadow);
}

.gala-photo {
  aspect-ratio: 16 / 10;
  margin-bottom: 0.65rem;
  border-radius: 0 30px 0 30px;
  box-shadow: none;
}

.gala-photo::after {
  background:
    linear-gradient(180deg, transparent 42%, rgba(17, 17, 17, 0.55)),
    linear-gradient(90deg, rgba(17, 17, 17, 0.18), transparent 52%);
}

.gala-photo img {
  object-position: 52% 50%;
}

.gala-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gala-panel li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212, 177, 122, 0.28);
}

.gala-panel li:last-child {
  border-bottom: 0;
}

.info-layout {
  grid-template-columns: 0.82fr 1.18fr;
}

.info-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-columns article {
  color: var(--black);
}

.tag {
  color: var(--crimson);
  font-weight: 500;
}

.faq {
  grid-column: 2;
  margin-top: 1rem;
  border-top: 1px solid rgba(212, 177, 122, 0.28);
}

.faq button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  color: var(--ivory);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(212, 177, 122, 0.28);
  text-align: left;
  font-weight: 500;
  cursor: pointer;
}

.faq button::after {
  content: "+";
  color: var(--gold-light);
  font-size: 1.35rem;
}

.faq button[aria-expanded="true"]::after {
  content: "-";
}

.faq div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq div > p {
  overflow: hidden;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.faq button[aria-expanded="true"] + div {
  grid-template-rows: 1fr;
  padding: 0.9rem 0 1.2rem;
}

.signup-form {
  padding: clamp(1.2rem, 4vw, 2rem);
  color: var(--black);
  background: var(--ivory);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 500;
  min-width: 0;
}

input,
select {
  min-height: 52px;
  width: 100%;
  padding: 0.75rem 0.9rem;
  color: var(--black);
  background: #fffaf4;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 10px;
  font-size: 1rem;
}

form.was-validated input:invalid,
form.was-validated select:invalid,
form.was-validated .checkbox input:invalid + span {
  border-color: var(--crimson);
  color: var(--crimson);
}

.field-hint,
.form-fallback {
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.45;
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 500;
}

.checkbox input {
  width: 20px;
  min-height: 20px;
  margin-top: 0.15rem;
  accent-color: var(--crimson);
}

.form-state {
  min-height: 1.4em;
  margin: 0;
  color: var(--crimson);
  font-weight: 500;
  line-height: 1.45;
}

.form-state[data-state="success"] {
  color: #345124;
}

.form-state[data-state="error"] {
  color: var(--crimson);
}

.form-fallback {
  margin: -0.2rem 0 0;
}

.form-fallback a {
  color: var(--crimson);
  font-weight: 500;
}

.ticketing-status {
  display: grid;
  gap: 0.42rem;
  max-width: 520px;
  margin-top: 1.35rem;
  padding: 1rem 1.1rem;
  color: var(--ivory);
  background: rgba(17, 17, 17, 0.28);
  border: 1px solid rgba(212, 177, 122, 0.34);
  border-radius: 14px;
}

.ticketing-status span {
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticketing-status strong {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 400;
}

.ticketing-status p {
  margin: 0;
  color: rgba(248, 246, 242, 0.82);
  font-size: 0.96rem;
  line-height: 1.55;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0 2rem;
  color: var(--ivory);
  background:
    radial-gradient(circle at 82% 10%, rgba(107, 4, 56, 0.34), transparent 32%),
    linear-gradient(145deg, rgba(71, 10, 105, 0.28), transparent 46%),
    var(--black);
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -12vw;
  top: -18vw;
  width: min(52vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(212, 177, 122, 0.48);
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(18deg);
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
}

.footer-mark {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  padding-bottom: clamp(1.8rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(212, 177, 122, 0.28);
}

.footer-mark img {
  width: clamp(150px, 18vw, 230px);
  height: auto;
}

.footer-manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.58fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  padding: clamp(2rem, 5vw, 4.5rem) 0;
}

.footer-manifesto h2 {
  max-width: 880px;
  font-size: clamp(2.75rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: 400;
  text-wrap: balance;
}

.footer-manifesto p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  font-weight: 300;
  line-height: 1.65;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  border-top: 1px solid rgba(212, 177, 122, 0.18);
  border-bottom: 1px solid rgba(212, 177, 122, 0.18);
}

.footer-grid h3 {
  margin: 0 0 1rem;
  color: var(--gold-light);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer address {
  color: var(--ink-soft);
  line-height: 1.6;
  font-style: normal;
}

.footer-nav,
.footer-contact,
.footer-rendezvous {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.footer-nav a,
.footer-contact a,
.footer-bottom a {
  color: var(--ivory);
  text-decoration-color: rgba(212, 177, 122, 0.45);
  text-decoration-thickness: 1px;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--gold-light);
}

.footer-rendezvous p {
  margin: 0;
}

.footer-cta {
  width: fit-content;
  margin-top: 0.35rem;
  padding: 0.72rem 1rem;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 999px;
  font-weight: 400;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 1.4rem;
  color: rgba(248, 246, 242, 0.72);
  font-size: 0.92rem;
}

.footer-bottom p {
  max-width: 760px;
  margin: 0;
  color: rgba(248, 246, 242, 0.72);
}

@media (max-width: 900px) {
  .menu-button {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: grid;
    gap: 0;
    padding: 0.8rem;
    color: var(--black);
    background: var(--ivory);
    border: 1px solid rgba(162, 128, 74, 0.28);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 0.95rem 0.8rem;
    border-bottom: 1px solid rgba(162, 128, 74, 0.18);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .intro-grid,
  .split,
  .gala-layout,
  .signup-grid,
  .info-layout,
  .footer-manifesto,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .concept-stack {
    grid-template-columns: 1fr;
  }

  .prep-layout,
  .program-layout {
    grid-template-columns: 1fr;
  }

  .prep-photo,
  .program-photo {
    min-height: 360px;
  }

  .prep-grid,
  .speaker-grid,
  .info-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 0.8rem 14px;
  }

  .brand {
    width: 132px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 5.8rem;
  }

  .hero-media img {
    object-position: 62% 42%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(17, 17, 17, 0.24) 0%, rgba(17, 17, 17, 0.74) 42%, rgba(17, 17, 17, 0.96) 100%),
      linear-gradient(90deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.38));
  }

  .hero-arc {
    right: -120px;
    bottom: 8.8rem;
    width: 330px;
    opacity: 0.78;
  }

  .hero-content {
    width: calc(100vw - 44px);
    padding-bottom: 2rem;
  }

  .hero-kicker {
    margin-bottom: 1.2rem;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
  }

  .hero-copy {
    max-width: 29ch;
    padding-left: 1rem;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-actions {
    width: min(100%, 340px);
    max-width: none;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.25rem, 13.8vw, 4.25rem);
    line-height: 0.96;
    text-wrap: pretty;
  }

  .event-meta {
    display: grid;
    gap: 0.25rem;
  }

  .event-meta span + span::before {
    display: none;
  }

  .hero-proof {
    width: 100vw;
    grid-template-columns: 1fr;
    border-radius: 24px 24px 0 0;
  }

  .hero-proof div {
    min-height: 104px;
    padding: 1rem 0.45rem;
    border-right: 0;
    border-bottom: 1px solid rgba(162, 128, 74, 0.25);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .hero-proof strong {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .hero-proof span {
    font-size: 0.85rem;
  }

  .prep-grid,
  .speaker-grid,
  .info-columns {
    grid-template-columns: 1fr;
  }

  .prep-photo,
  .program-photo {
    min-height: 260px;
    border-radius: 0 28px 0 28px;
  }

  .gala-panel {
    border-radius: 0 30px 0 30px;
  }

  .schedule article {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
