/* [project]/src/styles/globals.css [client] (css) */
:root {
  --navy: #0f1d3a;
  --navy-deep: #0a1429;
  --burgundy: #7a1d2b;
  --burgundy-deep: #5a1320;
  --gold: #c9a44c;
  --gold-light: #e3c989;
  --cream: #f6f1e6;
  --cream-warm: #efe6d2;
  --ink: #1a1a1a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

body:before {
  content: "";
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(circle at 20% 30%, #c9a44c0a 0%, #0000 50%), radial-gradient(circle at 80% 70%, #7a1d2b08 0%, #0000 50%);
  position: fixed;
  inset: 0;
}

section {
  z-index: 2;
  padding: 7rem 3rem;
  position: relative;
}

.section-eyebrow {
  color: var(--burgundy);
  letter-spacing: .4em;
  text-transform: uppercase;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
  font-size: .75rem;
  font-weight: 500;
  display: flex;
}

.section-eyebrow:before {
  content: "";
  background: var(--burgundy);
  width: 30px;
  height: 1px;
}

.section-title {
  color: var(--navy);
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
  font-family: Fraunces, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
}

.section-title em {
  color: var(--burgundy);
  font-style: italic;
}

.btn-primary, .btn-secondary {
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 2px;
  padding: 1rem 2.2rem;
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px #c9a44c4d;
}

.btn-secondary {
  color: var(--cream);
  border-color: var(--cream);
  background: none;
}

.btn-secondary:hover {
  background: var(--cream);
  color: var(--navy-deep);
}

.help-cb {
  appearance: none;
  border: 1.5px solid var(--navy);
  background: var(--cream);
  cursor: pointer;
  width: 16px;
  min-width: 16px;
  height: 16px;
  transition: all .2s;
  position: relative;
}

.help-cb:hover {
  border-color: var(--gold);
}

.help-cb:checked {
  background: var(--navy);
  border-color: var(--navy);
}

.help-cb:checked:after {
  content: "✓";
  color: var(--cream);
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.consent-cb {
  appearance: none;
  border: 1.5px solid var(--burgundy);
  background: var(--cream);
  cursor: pointer;
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  transition: all .2s;
  position: relative;
}

.consent-cb:hover {
  border-color: var(--gold);
}

.consent-cb:checked {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.consent-cb:checked:after {
  content: "✓";
  color: var(--cream);
  font-size: .85rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 960px) {
  section {
    padding: 4rem 1.5rem;
  }

  .site-nav {
    padding: 1rem 1.5rem !important;
  }

  .nav-links {
    gap: 1.2rem !important;
  }

  .nav-item {
    display: none;
  }

  .brand-text {
    font-size: .9rem !important;
  }

  .hero {
    text-align: center !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 7rem 1.5rem 3rem !important;
  }

  .hero-line-left, .hero-line-right {
    display: none;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .crest-wrap {
    width: 280px !important;
    height: 280px !important;
  }

  .crest-wrap img {
    width: 180px !important;
    height: auto !important;
  }
}

/*# sourceMappingURL=src_styles_globals_0rqpain.css.map*/