:root {
  --ink: #050505;
  --ink-soft: #11100e;
  --paper: #fffaf0;
  --muted: rgba(255, 250, 240, 0.78);
  --dim: rgba(255, 250, 240, 0.58);
  --gold: #d6ad5c;
  --gold-deep: #9b7435;
  --line: rgba(214, 173, 92, 0.45);
  --shadow: rgba(0, 0, 0, 0.72);
  font-family: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 173, 92, 0.12), transparent 36rem),
    linear-gradient(180deg, #090908 0%, #050505 100%);
  color: var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 76rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.7) 27%, rgba(0, 0, 0, 0.08) 60%),
    radial-gradient(circle at 80% 50%, rgba(230, 159, 61, 0.58), transparent 16rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.7)),
    url("assets/hero.jpg");
  background-color: #151515;
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 36%, transparent 0%, rgba(0, 0, 0, 0.25) 48%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.9), transparent 34%);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 24%);
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.25rem 1.5rem 0;
}

.site-nav {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4rem);
  display: flex;
  gap: 1.5rem;
}

.site-nav a,
.site-footer a {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: #f1ca72;
  outline: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__image {
  display: block;
  width: min(26rem, 68vw);
  height: auto;
  max-height: 7.5rem;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.18));
}

.brand__image.is-missing {
  display: none;
}

.brand__fallback {
  display: none;
  align-items: center;
  gap: 0.55rem;
}

.brand__image.is-missing + .brand__fallback {
  display: inline-flex;
}

.brand__fallback--visible {
  display: inline-flex;
}

.brand__script {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  line-height: 0.9;
  color: #fff;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.18);
}

.brand__pulse {
  width: clamp(3.2rem, 8vw, 8rem);
  height: 1.1rem;
  background:
    linear-gradient(90deg, transparent 0 20%, #fff 20% 26%, transparent 26% 31%, #fff 31% 36%, transparent 36% 43%, #fff 43% 48%, transparent 48% 100%);
  clip-path: polygon(0 52%, 22% 52%, 26% 18%, 32% 82%, 38% 36%, 45% 64%, 50% 52%, 100% 52%, 100% 62%, 50% 62%, 45% 74%, 38% 48%, 32% 94%, 26% 30%, 22% 62%, 0 62%);
  opacity: 0.9;
}

.brand__pulse--right {
  transform: scaleX(-1);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(42rem, calc(100% - 2rem));
  margin-left: clamp(1.5rem, 5vw, 7rem);
  padding-top: clamp(11rem, 20vh, 17rem);
}

.kicker {
  width: 3.2rem;
  height: 0.16rem;
  margin: 0 0 2rem;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.mission h2,
.signup h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 2rem;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  line-height: 0.92;
  color: #fff;
  text-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.52);
}

h1 span {
  color: var(--gold);
}

.hero__copy {
  margin-bottom: 3.4rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.55;
}

.outline-button,
.signup-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  min-height: 4.3rem;
  border: 1px solid var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.outline-button {
  min-width: min(100%, 25.5rem);
  padding: 0 2rem;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.18);
}

.outline-button:hover,
.outline-button:focus-visible {
  transform: translateY(-2px);
  border-color: #f1ca72;
  background: rgba(214, 173, 92, 0.12);
  outline: none;
}

.mission {
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1.25rem, 4vw, 4rem) clamp(4.8rem, 8vw, 7.5rem);
  background:
    radial-gradient(circle at center top, rgba(214, 173, 92, 0.08), transparent 34rem),
    #080808;
  text-align: center;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 1.2rem;
}

.section-heading span {
  width: 4rem;
  height: 1px;
  background: var(--gold);
}

.section-heading p {
  margin: 0;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.mission h2 {
  margin-bottom: clamp(3.4rem, 6vw, 5.2rem);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 72rem;
  margin: 0 auto;
}

.mission-item {
  display: flex;
  min-height: 17.5rem;
  padding: 0 clamp(1.1rem, 2vw, 2.2rem);
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--line);
}

.mission-item:last-child {
  border-right: 0;
}

.mission-icon {
  display: grid;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.mission-icon svg {
  width: 3.4rem;
  height: 3.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.mission-item h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.mission-item p {
  max-width: 13.5rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.signup {
  padding: clamp(4rem, 8vw, 6.2rem) 1.25rem clamp(4.5rem, 8vw, 7rem);
  background:
    linear-gradient(90deg, transparent, rgba(214, 173, 92, 0.78), transparent) top center / min(72rem, calc(100% - 2rem)) 1px no-repeat,
    #080808;
  text-align: center;
}

.signup__inner {
  max-width: 54rem;
  margin: 0 auto;
}

.signup h2 {
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: clamp(3.3rem, 7vw, 5rem);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
}

.signup p {
  color: var(--paper);
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.42em;
  line-height: 1.8;
  text-transform: uppercase;
}

.signup-form {
  display: grid;
  grid-template-columns: minmax(9rem, 0.58fr) minmax(9rem, 0.58fr) minmax(12rem, 1fr) 12rem;
  max-width: 58rem;
  margin: 2.6rem auto 0;
  gap: 0;
}

.signup-form input,
.signup-form button {
  min-width: 0;
  font: inherit;
  text-transform: uppercase;
}

.signup-form input[type="text"],
.signup-form input[type="email"] {
  width: 100%;
  min-height: 4.2rem;
  padding: 0 1.8rem;
  border: 1px solid var(--gold);
  border-right: 0;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.34);
  letter-spacing: 0.16em;
  outline: none;
}

.signup-form input[type="text"]::placeholder,
.signup-form input[type="email"]::placeholder {
  color: rgba(255, 250, 240, 0.68);
}

.signup-form button {
  min-height: 100%;
  border: 1px solid var(--gold);
  color: #100d07;
  background: linear-gradient(135deg, #e3c274, #bc8f42);
  cursor: pointer;
}

.signup-form button:hover,
.signup-form button:focus-visible {
  background: linear-gradient(135deg, #f1cf82, #c99b4b);
  outline: none;
}

.consent-field {
  display: flex;
  grid-column: 1 / -1;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: left;
}

.consent-field input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.16rem;
  accent-color: var(--gold);
  flex: 0 0 auto;
}

.consent-field span {
  letter-spacing: 0.04em;
}

.form-message {
  min-height: 2rem;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.site-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--dim);
  background: #050505;
  text-align: center;
}

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

.site-footer a {
  margin-left: 0.85rem;
}

.site-footer__socials {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.site-footer .site-footer__social-link {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  margin: 0;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 0.75rem;
  color: var(--gold);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.site-footer .site-footer__social-link svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer .site-footer__social-link circle:last-child {
  fill: currentColor;
  stroke: none;
}

.site-footer .site-footer__social-link:hover,
.site-footer .site-footer__social-link:focus-visible {
  transform: translateY(-2px);
  border-color: #f1ca72;
  color: #f1ca72;
  background: rgba(214, 173, 92, 0.1);
  outline: none;
}

.message-page {
  display: grid;
  min-height: 100vh;
  padding: clamp(2rem, 6vw, 5rem) 1.25rem;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 70% 45%, rgba(214, 173, 92, 0.2), transparent 24rem),
    url("assets/hero.jpg") center / cover no-repeat;
}

.message-panel {
  width: min(48rem, 100%);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.78);
  text-align: center;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.46);
}

.message-panel .brand {
  margin-bottom: 2.5rem;
}

.message-heading {
  margin-bottom: 1.5rem;
}

.message-heading strong {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.message-panel h1 {
  margin-bottom: 1rem;
}

.message-panel p:not(.message-heading) {
  max-width: 33rem;
  margin: 0 auto 2.4rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.about-page {
  background:
    radial-gradient(circle at 74% 12%, rgba(214, 173, 92, 0.14), transparent 28rem),
    #070707;
}

.about-hero {
  position: relative;
  min-height: 43rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.46) 52%, rgba(0, 0, 0, 0.24)),
    radial-gradient(circle at 78% 45%, rgba(214, 173, 92, 0.24), transparent 18rem),
    url("assets/hero.jpg") center / cover no-repeat;
  transform: scale(1.01);
}

.about-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(5, 5, 5, 0.92)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), transparent 62%);
}

.about-header {
  padding-top: 2.4rem;
}

.about-hero__content {
  position: relative;
  z-index: 1;
  width: min(54rem, calc(100% - 2rem));
  margin: 0 auto;
  padding-top: clamp(8rem, 17vh, 12rem);
  text-align: center;
}

.about-heading {
  margin-bottom: 1.5rem;
}

.about-heading strong {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.about-hero h1 {
  margin-bottom: 1.4rem;
}

.about-hero__content > p:not(.section-heading) {
  max-width: 40rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.story-section {
  padding: clamp(4rem, 8vw, 7rem) 1.25rem;
  background:
    linear-gradient(90deg, transparent, rgba(214, 173, 92, 0.58), transparent) top center / min(62rem, calc(100% - 2rem)) 1px no-repeat,
    #080808;
}

.story-body {
  width: min(58rem, 100%);
  margin: 0 auto;
}

.story-body p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.9;
}

.story-body > p:first-child::first-letter {
  float: left;
  padding: 0.14rem 0.55rem 0 0;
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 5.6rem;
  line-height: 0.82;
}

.story-body blockquote {
  margin: clamp(3rem, 6vw, 4.6rem) 0;
  padding: clamp(1.8rem, 4vw, 2.6rem) 0 clamp(1.8rem, 4vw, 2.6rem) clamp(1.4rem, 4vw, 2.4rem);
  border-left: 3px solid var(--gold);
}

.story-body blockquote p {
  margin-bottom: 0.8rem;
  color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.story-body cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

@media (max-width: 900px) {
  .hero {
    min-height: 62rem;
  }

  .hero__image {
    background-position: 58% center;
  }

  .hero__content {
    padding-top: 9rem;
  }

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

  .mission-item:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 51rem;
  }

  .hero__image {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.95) 72%),
      radial-gradient(circle at 72% 35%, rgba(230, 159, 61, 0.46), transparent 11rem),
      url("assets/hero.jpg");
    background-color: #151515;
    background-position: 58% center;
    background-size: cover;
  }

  .site-header {
    padding-top: 2rem;
    flex-direction: column;
    gap: 1.2rem;
  }

  .site-nav {
    position: static;
  }

  .hero__content {
    width: calc(100% - 2rem);
    margin: 0 auto;
    padding-top: 14rem;
  }

  .outline-button {
    width: 100%;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .mission-item {
    min-height: 0;
    border-right: 0;
  }

  .signup h2 {
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }

  .signup p {
    letter-spacing: 0.2em;
  }

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

  .signup-form input[type="text"],
  .signup-form input[type="email"],
  .signup-form button {
    min-height: 4rem;
  }

  .signup-form input[type="text"],
  .signup-form input[type="email"] {
    border-right: 1px solid var(--gold);
    border-bottom: 0;
  }

  .site-footer a {
    display: block;
    margin: 0.8rem 0 0;
  }

  .about-hero {
    min-height: 39rem;
  }

  .about-hero__image {
    background-position: 58% center;
  }

  .about-hero__content {
    padding-top: 7rem;
  }

  .story-body > p:first-child::first-letter {
    float: none;
    padding: 0;
    font: inherit;
    color: inherit;
  }
}
