@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-300.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-300-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-500.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/outfit-300.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/outfit-400.woff2") format("woff2");
}

:root {
  --void: #120509;
  --wine-deep: #240810;
  --wine: #6e1830;
  --wine-lit: #a32646;
  --gold: #c9a36a;
  --gold-soft: #d8bc8a;
  --champagne: #ead7b8;
  --ivory: #f4eadc;
  --muted: rgba(234, 215, 184, 0.64);
  --hairline: rgba(201, 163, 106, 0.48);
  --frame-inset: clamp(1rem, 3.2vw, 2.25rem);
  --px: 0;
  --py: 0;
  --serif: "Cormorant Garamond", "Times New Roman", Times, serif;
  --sans: "Outfit", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  background: var(--void);
  color-scheme: dark;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--champagne);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overscroll-behavior: none;
}

::selection {
  background: #5c1828;
  color: var(--ivory);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 6px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0;
  z-index: 40;
  transform: translateY(-140%);
  padding: 0.7rem 1rem;
  background: var(--wine-deep);
  color: var(--ivory);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(1rem);
}

.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;
}

.atmosphere,
.atmosphere__wash,
.atmosphere__orb,
.atmosphere__horizon,
.atmosphere__light,
.atmosphere__vignette,
.atmosphere__grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.atmosphere {
  z-index: 0;
}

.atmosphere__wash {
  background:
    radial-gradient(95% 78% at 50% 108%, rgba(168, 36, 62, 0.72) 0%, rgba(110, 22, 42, 0.38) 34%, transparent 60%),
    radial-gradient(90% 60% at 80% 0%, rgba(42, 10, 20, 0.82) 0%, transparent 50%),
    linear-gradient(180deg, #18060b 0%, var(--void) 42%, #1c0710 100%);
}

.atmosphere__orb {
  width: 78vmax;
  height: 78vmax;
  left: 50%;
  top: 50%;
  margin: 0;
  border-radius: 50%;
}

.atmosphere__orb--wine {
  background: radial-gradient(circle at 45% 45%, rgba(176, 38, 66, 0.62) 0%, rgba(110, 22, 42, 0.3) 38%, transparent 68%);
  transform: translate(calc(-54% + var(--px) * 18px), calc(-28% + var(--py) * 14px));
  animation: drift-wine 28s var(--ease-out) infinite alternate;
}

.atmosphere__orb--ember {
  width: 52vmax;
  height: 52vmax;
  background: radial-gradient(circle at 50% 50%, rgba(196, 48, 76, 0.5) 0%, rgba(128, 26, 50, 0.22) 42%, transparent 70%);
  transform: translate(calc(-42% + var(--px) * 28px), calc(8% + var(--py) * 22px));
  animation: drift-ember 34s ease-in-out infinite alternate;
}

.atmosphere__orb--gold {
  width: 36vmax;
  height: 36vmax;
  background: radial-gradient(circle at 50% 50%, rgba(201, 163, 106, 0.14) 0%, rgba(201, 163, 106, 0.04) 40%, transparent 70%);
  transform: translate(calc(8% + var(--px) * 12px), calc(-62% + var(--py) * 10px));
  animation: drift-gold 22s ease-in-out infinite alternate;
}

.atmosphere__horizon {
  top: auto;
  height: 42%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(36, 8, 16, 0.22) 40%, rgba(18, 5, 10, 0.55) 100%),
    radial-gradient(80% 90% at 50% 100%, rgba(168, 36, 62, 0.22) 0%, transparent 58%);
}


.atmosphere__light {
  background: radial-gradient(
    520px 360px at calc(50% + var(--px) * 90px) calc(42% + var(--py) * 70px),
    rgba(201, 163, 106, 0.09),
    transparent 58%
  );
  mix-blend-mode: screen;
}

.atmosphere__vignette {
  background:
    radial-gradient(90% 80% at 50% 45%, transparent 46%, rgba(16, 5, 9, 0.4) 100%),
    linear-gradient(180deg, rgba(16, 5, 9, 0.22) 0%, transparent 18%, transparent 78%, rgba(16, 5, 9, 0.4) 100%);
}

.atmosphere__grain {
  z-index: 12;
  opacity: 0.1;
  mix-blend-mode: overlay;
  background-image: url("../img/grain.png");
  background-repeat: repeat;
  background-size: 180px 180px;
  animation: grain-shift 1.6s steps(2) infinite;
}

.frame {
  position: fixed;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.frame__corner {
  position: absolute;
  width: clamp(1.6rem, 4vw, 2.75rem);
  height: clamp(1.6rem, 4vw, 2.75rem);
  border: 0 solid var(--hairline);
}

.frame__corner--tl {
  top: calc(var(--frame-inset) + env(safe-area-inset-top));
  left: calc(var(--frame-inset) + env(safe-area-inset-left));
  border-top-width: 1px;
  border-left-width: 1px;
}

.frame__corner--tr {
  top: calc(var(--frame-inset) + env(safe-area-inset-top));
  right: calc(var(--frame-inset) + env(safe-area-inset-right));
  border-top-width: 1px;
  border-right-width: 1px;
}

.frame__corner--bl {
  bottom: calc(var(--frame-inset) + env(safe-area-inset-bottom));
  left: calc(var(--frame-inset) + env(safe-area-inset-left));
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.frame__corner--br {
  bottom: calc(var(--frame-inset) + env(safe-area-inset-bottom));
  right: calc(var(--frame-inset) + env(safe-area-inset-right));
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.rail {
  position: fixed;
  top: 50%;
  z-index: 7;
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.46em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.rail--left {
  left: calc(var(--frame-inset) + 0.85rem + env(safe-area-inset-left));
  transform: translateY(-50%) rotate(-180deg);
  writing-mode: vertical-rl;
}

.rail--right {
  right: calc(var(--frame-inset) + 0.85rem + env(safe-area-inset-right));
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

.stage {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding:
    calc(6.5rem + env(safe-area-inset-top))
    clamp(1.5rem, 6vw, 5rem)
    calc(7rem + env(safe-area-inset-bottom));
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 92vw;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 clamp(1.4rem, 3vh, 2.2rem);
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.46em;
  text-transform: uppercase;
}

.eyebrow__text {
  padding-left: 0.52em;
}

.eyebrow__rule {
  display: block;
  width: clamp(1.75rem, 6vw, 3.25rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline), transparent);
}

.wordmark {
  margin: 0;
  color: var(--ivory);
  line-height: 0;
}

.wordmark__svg {
  display: block;
  width: min(82vw, 38rem);
  height: auto;
  margin-inline: auto;
  overflow: visible;
}

.wordmark__svg path {
  fill: currentColor;
}

.js .wordmark__svg .letter {
  opacity: 0;
}

.js .wordmark__svg .letter.is-in {
  opacity: 1;
  transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.lockup-rule {
  display: block;
  width: 3.25rem;
  height: 1px;
  margin: clamp(1.35rem, 3vh, 2.1rem) 0 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: center;
}

.offerings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin: clamp(1.15rem, 2.4vh, 1.8rem) 0 0;
  color: var(--gold-soft);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.offerings__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem 0.9rem;
}

.offerings__sep {
  display: block;
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: var(--gold-soft);
  opacity: 0.72;
}

.location {
  margin: 1.05rem 0 0;
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  line-height: 1.35;
  color: var(--muted);
}

.location a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}

.location a:hover {
  color: var(--gold-soft);
}

.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--frame-inset) + 3.15rem + env(safe-area-inset-bottom));
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  text-align: center;
}

.footer__label {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.footer__mail {
  color: var(--gold-soft);
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-decoration: none;
  padding: 0.12rem 0.4rem 0.2rem;
  transition: color 0.4s ease;
}

.footer__mail:hover {
  color: var(--ivory);
}

.credit {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--frame-inset) + 0.38rem + env(safe-area-inset-bottom));
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.32em;
  margin: 0;
  padding-top: 0.95rem;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.45s ease;
}

.credit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline), transparent);
  transform: translateX(-50%);
}

.credit a {
  color: inherit;
  text-decoration: none;
  padding: 0.35rem 0.1rem;
}

.credit__heart {
  display: inline-flex;
  width: 0.95em;
  height: 0.95em;
  color: #c9a36a;
  transform-origin: center;
  animation: heart-pulse 2.4s ease-in-out infinite;
}

.credit__heart svg {
  display: block;
  width: 100%;
  height: 100%;
}

.credit:hover,
.credit:focus-within {
  opacity: 0.82;
}

.js .credit {
  opacity: 0;
  transition: opacity 1.5s var(--ease-out) 1.9s;
}

.js.is-ready .credit {
  opacity: 0.5;
}

.js.is-ready .credit:hover,
.js.is-ready .credit:focus-within {
  opacity: 0.82;
  transition: opacity 0.45s ease;
}

.js .eyebrow,
.js .lockup-rule,
.js .offerings,
.js .location,
.js .footer,
.js .rail,
.js .frame__corner {
  opacity: 0;
}

.js.is-ready .eyebrow {
  animation: rise 1.15s var(--ease-out) 0.28s forwards;
}

.js.is-ready .lockup-rule {
  animation: draw-rule 1.15s var(--ease-out) 1.15s forwards;
}

.js.is-ready .offerings {
  animation: rise 1.15s var(--ease-out) 1.28s forwards;
}

.js.is-ready .location {
  animation: rise 1.15s var(--ease-out) 1.52s forwards;
}

.js.is-ready .footer {
  animation: rise 1.1s var(--ease-out) 1.5s forwards;
}

.js.is-ready .rail {
  animation: fade 1.4s var(--ease-out) 1.2s forwards;
}

.js.is-ready .frame__corner {
  animation: fade 1.6s var(--ease-out) 0.15s forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}



@keyframes draw-rule {
  from {
    opacity: 0;
    transform: scaleX(0.2);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes drift-wine {
  from { translate: 0 0; }
  to { translate: 3.5% -2%; }
}

@keyframes drift-ember {
  from { translate: 0 0; }
  to { translate: -4% 3%; }
}

@keyframes drift-gold {
  from { translate: 0 0; }
  to { translate: 2.5% 4%; }
}

@keyframes grain-shift {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-1.5%, -1.5%, 0); }
}

@keyframes heart-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@media (pointer: fine) {
  .atmosphere__orb {
    will-change: transform;
  }
}

@media (max-width: 720px) {
  .rail {
    display: none;
  }

  .wordmark__svg {
    width: min(86vw, 22rem);
  }

  .eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.34em;
  }

  .footer__mail {
    letter-spacing: 0.1em;
  }

  .location {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }

  .offerings {
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    gap: 0.42rem;
  }

  .offerings__row {
    gap: 0.5rem 0.65rem;
  }

  .credit {
    font-size: 0.64rem;
    letter-spacing: 0.07em;
    bottom: calc(var(--frame-inset) + 0.3rem + env(safe-area-inset-bottom));
    padding-top: 0.85rem;
  }
}

@media (max-width: 380px) {
  .stage {
    padding-inline: 1.1rem;
  }

  .eyebrow {
    letter-spacing: 0.28em;
    gap: 0.7rem;
  }

  .wordmark__svg {
    width: min(88vw, 18rem);
  }
}

@media (max-height: 560px) {
  .stage {
    min-height: auto;
    padding-block: 5.5rem;
  }

  .wordmark__svg {
    width: min(70vw, 20rem);
  }

  .footer {
    position: static;
    padding-bottom: 1.35rem;
  }

  .credit {
    position: relative;
    margin: 0 var(--frame-inset) calc(var(--frame-inset) + 0.35rem);
  }

  body {
    overflow-y: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atmosphere__orb,
  .atmosphere__grain,
  .js .eyebrow,
  .js .wordmark__svg .letter,
  .js .wordmark__svg .letter.is-in,
  .js .lockup-rule,
  .js .offerings,
  .js .location,
  .js .footer,
  .js .rail,
  .js .frame__corner,
  .js.is-ready .eyebrow,
  .js.is-ready .wordmark__svg .letter,
  .js.is-ready .lockup-rule,
  .js.is-ready .offerings,
  .js.is-ready .location,
  .js.is-ready .footer,
  .js.is-ready .rail,
  .js.is-ready .frame__corner {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    translate: 0;
  }

  .credit,
  .js .credit,
  .js.is-ready .credit {
    opacity: 0.5;
    transition: none;
  }

  .credit:hover,
  .credit:focus-within,
  .js.is-ready .credit:hover,
  .js.is-ready .credit:focus-within {
    opacity: 0.82;
  }

  .credit__heart {
    animation: none;
    opacity: 0.9;
    transform: none;
  }
}
