* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
}

body {
  --bg: #111827;
  --panel: #172033;
  --text: #f7efe3;
  --muted: #d8c7af;
  --red: #9f1d2c;
  --red2: #c9303f;
  --blue: #0b4b75;
  --gold: #d2ad63;
  --cream: #f8efd9;
  --shadow: rgba(0, 0, 0, .45);

  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(159, 29, 44, .28), transparent 32rem),
    radial-gradient(circle at 80% 5%, rgba(11, 75, 117, .55), transparent 30rem),
    linear-gradient(135deg, #0b1020, #1d2435 52%, #1c1115);
  line-height: 1.65;
}

body.light {
  --bg: #f8efd9;
  --panel: #fff8ea;
  --text: #1b2433;
  --muted: #5b4b3a;
  --shadow: rgba(45, 29, 10, .18);

  color-scheme: light;
  background:
    radial-gradient(circle at 14% 8%, rgba(201, 48, 63, .18), transparent 28rem),
    radial-gradient(circle at 82% 5%, rgba(11, 75, 117, .14), transparent 30rem),
    linear-gradient(135deg, #fff9ea, #f2e5ca 55%, #f6ede0);
}

a,
button {
  font: inherit;
}

a {
  overflow-wrap: anywhere;
}

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

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: .9rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(210, 173, 99, .35);
  background: rgba(13, 19, 34, .82);
  backdrop-filter: blur(18px);
}

body.light .top {
  background: rgba(248, 239, 217, .9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
  color: var(--cream);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.bear {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--red);
  box-shadow: 0 0 2rem rgba(210, 173, 99, .28);
}

body.light .brand {
  color: var(--text);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .45rem .9rem;
  min-width: 0;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.25;
}

nav a:hover,
nav a:focus-visible {
  color: var(--gold);
}

.toggle,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 2.85rem;
  border: 1px solid var(--gold);
  border-radius: .75rem;
  padding: .75rem 1rem;
  background: linear-gradient(135deg, var(--red), #67131e);
  color: #fff8ea;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  box-shadow: 0 .9rem 2rem var(--shadow);
  cursor: pointer;
}

.toggle {
  min-width: 9.5rem;
  background: transparent;
  color: var(--gold);
  box-shadow: none;
  white-space: nowrap;
}

.button.alt {
  background: rgba(248, 239, 217, .08);
  color: var(--cream);
}

body.light .button.alt {
  color: var(--text);
}

body.light .heroActions .button.alt {
  color: var(--cream);
}

.hero {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.6vw, 2.25rem) clamp(1rem, 4vw, 3rem) clamp(2.25rem, 4vw, 3.5rem);
  background: #070d1a;
  overflow: clip;
}

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

.kicker,
.sectionTitle p {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
  font-weight: 900;
}

.heroPoster {
  display: block;
  width: min(100%, 100rem);
  margin: 0 auto;
  border: 1px solid rgba(210, 173, 99, .45);
  border-radius: 1rem;
  background: #101827;
  box-shadow: 0 1.4rem 3rem var(--shadow);
  overflow: hidden;
}

.heroPoster img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-top: .25rem;
}

.section {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 6vw, 5rem);
}

.lead {
  max-width: 78rem;
  margin: auto;
  font-size: 1.12rem;
}

.lead p {
  overflow-wrap: break-word;
}

.lead p:first-child {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.sectionTitle {
  max-width: 72rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.sectionTitle h2 {
  margin: .5rem 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1.08;
}

body.light .sectionTitle h2,
body.light .lead p:first-child {
  color: var(--text);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 76rem;
  margin: 0 auto;
  gap: 1.25rem;
}

.card,
blockquote,
.formEmbed,
.actionList {
  min-width: 0;
  border: 1px solid rgba(210, 173, 99, .34);
  border-radius: 1rem;
  padding: 1.3rem;
  background: linear-gradient(180deg, rgba(248, 239, 217, .08), rgba(248, 239, 217, .03));
  box-shadow: 0 1rem 2.6rem var(--shadow);
  overflow-wrap: break-word;
}

.card {
  display: grid;
  align-content: start;
  gap: 1.1rem;
}

body.light .card,
body.light blockquote,
body.light .formEmbed,
body.light .actionList {
  background: rgba(255, 248, 234, .78);
}

.card h3 {
  max-width: 18ch;
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.25vw, 2rem);
  line-height: 1.08;
  overflow-wrap: normal;
  hyphens: none;
}

.card p {
  margin-top: 0;
  margin-bottom: 0;
}

.formSection {
  background: linear-gradient(90deg, rgba(159, 29, 44, .2), rgba(11, 75, 117, .16));
}

.formEmbed {
  max-width: 54rem;
  margin: auto;
  padding: .8rem;
  background:
    linear-gradient(180deg, rgba(248, 239, 217, .12), rgba(248, 239, 217, .04)),
    rgba(13, 19, 34, .55);
}

.formEmbed iframe {
  display: block;
  width: 100%;
  min-height: 33.3125rem;
  border: 0;
  border-radius: .75rem;
  background: transparent;
}

.actions .actionList {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 58rem;
  margin: auto;
  gap: 1rem;
}

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

blockquote {
  margin: 0;
  border-left: 4px solid var(--red2);
  font-size: 1rem;
}

blockquote p:first-child {
  margin-top: 0;
}

blockquote p:last-child {
  margin-bottom: 0;
}

footer {
  position: relative;
  padding: 4rem clamp(1rem, 6vw, 5rem);
  overflow: hidden;
  border-top: 1px solid rgba(210, 173, 99, .35);
  background: #080d18;
  color: var(--cream);
  text-align: center;
}

body.light footer {
  background: #20151a;
}

.pattern {
  position: absolute;
  inset: 0;
  background: url(image-2.webp) center / cover;
  opacity: .16;
}

footer p {
  position: relative;
  margin: .2rem 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

@media (max-width: 1180px) {
  .top {
    grid-template-columns: auto auto;
  }

  nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }

  .hero {
    padding-inline: 1rem;
  }

}

@media (max-width: 760px) {
  .top {
    position: relative;
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 1rem;
  }

  .brand {
    justify-content: center;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
  }

  nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    border: 1px solid rgba(210, 173, 99, .25);
    border-radius: .65rem;
    padding: .45rem .55rem;
    background: rgba(248, 239, 217, .05);
    text-align: center;
  }

  .toggle {
    width: 100%;
  }

  .hero {
    padding: 1rem 1rem 2.5rem;
  }

  .kicker,
  .sectionTitle p {
    letter-spacing: .09em;
  }

  .heroActions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .heroPoster {
    border-radius: .75rem;
  }

  .sectionTitle {
    text-align: left;
  }

  .sectionTitle h2 {
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }

  .lead {
    font-size: 1rem;
  }

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

  .quotes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  body {
    line-height: 1.58;
  }

  .brand span:last-child {
    font-size: .9rem;
  }

  nav {
    grid-template-columns: 1fr;
  }

  .card,
  blockquote,
  .formEmbed,
  .actionList {
    padding: 1rem;
  }
}
