:root {
  --navy: #0a1f45;
  --navy-deep: #06132c;
  --gold: #c9a227;
  --gold-soft: #e6c86a;
  --sky: #6ba8d4;
  --cream: #f7f4ef;
  --white: #ffffff;
  --ink: #142033;
  --muted: rgba(255, 255, 255, 0.78);
  --red: #b22234;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy-deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
}

.brand-lockup img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.55);
}

.brand-lockup span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  animation: drift 18s var(--ease) infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 19, 44, 0.72) 0%, rgba(6, 19, 44, 0.55) 42%, rgba(6, 19, 44, 0.88) 100%),
    radial-gradient(ellipse at 50% 20%, rgba(107, 168, 212, 0.22), transparent 55%);
}

.hero-content {
  width: min(100% - 2.5rem, 760px);
  padding: 7rem 0 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.hero-logo {
  width: clamp(110px, 18vw, 150px);
  height: clamp(110px, 18vw, 150px);
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 3px rgba(201, 162, 39, 0.7),
    0 18px 40px rgba(0, 0, 0, 0.35);
  animation: rise 1s var(--ease) both;
}

.brand-name {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.02em;
  animation: rise 1s var(--ease) 0.12s both;
}

.coming-soon {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  animation: rise 1s var(--ease) 0.22s both;
}

.hero-lead {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
  animation: rise 1s var(--ease) 0.32s both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.75rem;
  animation: rise 1s var(--ease) 0.42s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-primary:hover {
  background: var(--gold-soft);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.section-brand .btn-secondary,
.content-panel .btn-secondary {
  color: var(--navy);
  border-color: rgba(10, 31, 69, 0.25);
}

.section-brand .btn-secondary:hover,
.content-panel .btn-secondary:hover {
  border-color: var(--navy);
  color: var(--navy-deep);
}

.section-brand .btn-primary,
.content-panel .btn-primary {
  background: var(--navy);
  color: var(--white);
}

.section-brand .btn-primary:hover,
.content-panel .btn-primary:hover {
  background: var(--navy-deep);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-launch {
  background:
    linear-gradient(160deg, #0d274f 0%, #0a1f45 55%, #081833 100%);
  color: var(--white);
}

.launch-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.launch-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  font-weight: 650;
}

.launch-copy p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 34rem;
}

.launch-meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.launch-meta strong {
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.banner-frame {
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.banner-frame img {
  width: 100%;
  display: block;
}

.section-flyer {
  background:
    linear-gradient(180deg, #f7fafc 0%, #eef3f8 100%);
  color: #142033;
}

.section-flyer-alt {
  background:
    linear-gradient(180deg, #0d274f 0%, #0a1f45 100%);
  color: #ffffff;
}

.flyer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.flyer-grid-reverse .flyer-frame {
  order: 2;
}

.flyer-frame {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(10, 31, 69, 0.18);
}

.section-flyer-alt .flyer-frame {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.flyer-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.flyer-copy {
  opacity: 1;
  min-width: 0;
  padding-top: 0.35rem;
}

.flyer-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  font-weight: 600;
  color: #142033;
}

.flyer-copy p {
  margin: 0 0 1rem;
  max-width: 36rem;
  color: rgba(20, 32, 51, 0.86);
  font-size: 1rem;
  line-height: 1.65;
}

.flyer-copy p:last-child {
  margin-bottom: 0;
}

.flyer-copy a {
  color: #0a1f45;
  font-weight: 600;
}

.flyer-list {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 36rem;
  text-align: left;
}

.flyer-list li {
  display: grid;
  gap: 0.15rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(201, 162, 39, 0.85);
}

.flyer-list strong {
  font-weight: 600;
  color: #0a1f45;
}

.flyer-list span {
  color: rgba(20, 32, 51, 0.78);
  font-size: 0.95rem;
  line-height: 1.45;
}

.section-flyer-alt .flyer-copy h2 {
  color: #ffffff;
}

.section-flyer-alt .flyer-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.section-flyer-alt .flyer-copy a {
  color: #e6c86a;
}

.section-flyer-alt .flyer-list li {
  border-left-color: rgba(230, 200, 106, 0.75);
}

.section-flyer-alt .flyer-list strong {
  color: #ffffff;
}

.section-flyer-alt .flyer-list span {
  color: rgba(255, 255, 255, 0.78);
}

.section-letter {
  background:
    linear-gradient(165deg, #f8f5ef 0%, #eef2f7 45%, #f4f7fb 100%);
  color: #142033;
  position: relative;
}

.section-letter::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #c9a227, #0a1f45);
}

.letter-intro {
  max-width: 40rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.letter-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a6d1d;
}

.letter-intro h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  font-weight: 650;
  color: #0a1f45;
}

.letter-intro p {
  margin: 0;
  color: rgba(20, 32, 51, 0.78);
  max-width: 36rem;
}

.letter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.letter-frame {
  margin: 0;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(10, 31, 69, 0.08),
    0 22px 50px rgba(10, 31, 69, 0.14);
}

.letter-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.letter-body {
  background: #ffffff;
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow:
    0 0 0 1px rgba(10, 31, 69, 0.08),
    0 22px 50px rgba(10, 31, 69, 0.1);
  font-family: "Fraunces", Georgia, serif;
}

.letter-meta {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(10, 31, 69, 0.12);
}

.letter-from {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a6d1d;
}

.letter-office {
  margin: 0.2rem 0 0;
  color: #0a1f45;
  font-size: 0.95rem;
}

.letter-date {
  margin: 0.65rem 0 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(20, 32, 51, 0.7);
}

.letter-salutation {
  font-style: italic;
}

.letter-body p {
  margin: 0 0 1rem;
  color: rgba(20, 32, 51, 0.88);
  font-size: 1.02rem;
  line-height: 1.7;
}

.letter-signoff {
  margin-top: 1.5rem;
}

.letter-signoff p {
  margin: 0;
}

.letter-name {
  margin-top: 1rem !important;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  color: #0a1f45;
}

.letter-title {
  margin-top: 0.15rem !important;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(20, 32, 51, 0.72);
}

.reveal {
  opacity: 0;
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translate3d(-48px, 28px, 0);
}

.reveal-right {
  transform: translate3d(48px, 28px, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.flyer-copy.reveal-right,
.flyer-frame.reveal-right {
  transition-delay: 0.12s;
}

.section-brand {
  background:
    linear-gradient(180deg, #f4f8fc 0%, #eef4fa 100%);
  color: var(--ink);
}

.brand-block {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.brand-block img {
  width: 100%;
  max-width: 240px;
  margin-inline: auto;
  border-radius: 0;
  box-shadow: 0 16px 40px rgba(10, 31, 69, 0.18);
}

.brand-block h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.2;
}

.brand-block p {
  margin: 0;
  color: rgba(20, 32, 51, 0.78);
  max-width: 38rem;
}

.site-footer {
  background: var(--navy-deep);
  color: var(--muted);
  padding: 2.25rem clamp(1.25rem, 4vw, 3rem);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  text-align: left;
}

.footer-banner {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-chapter {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.site-footer a {
  color: var(--gold-soft);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-sponsor {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
}

.page-hero {
  min-height: 52svh;
}

.page-hero .hero-content {
  padding-top: 8rem;
  padding-bottom: 3.5rem;
}

.content-panel {
  background: linear-gradient(180deg, #f7fafc, #eef3f8);
  color: var(--ink);
}

.content-card {
  max-width: 720px;
  margin: 0 auto;
}

.content-card h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.35rem);
}

.content-card p {
  margin: 0 0 1rem;
  color: rgba(20, 32, 51, 0.8);
}

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

@keyframes drift {
  from {
    transform: scale(1.04) translateY(0);
  }
  to {
    transform: scale(1.08) translateY(-1.5%);
  }
}

@media (max-width: 960px) {
  .launch-grid,
  .brand-block,
  .flyer-grid,
  .letter-grid {
    grid-template-columns: 1fr;
  }

  .launch-grid .banner-frame {
    order: -1;
  }

  .flyer-grid-reverse .flyer-frame {
    order: -1;
  }

  .letter-frame {
    order: -1;
  }

  .nav-links {
    display: none;
  }

  .brand-block,
  .flyer-copy {
    text-align: center;
  }

  .flyer-copy p,
  .flyer-list {
    margin-inline: auto;
  }

  .footer-brand {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
