:root {
  color-scheme: dark;
  --bg: #060708;
  --text: #f4f5f1;
  --muted: #a8adb2;
  --quiet: #777e86;
  --gold: #c6a66a;
  --panel: #0c0e11;
  --max: 1160px;
  --copy: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Montserrat, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

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

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

.page-shell {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: clamp(160px, 15vw, 180px);
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.site-nav a {
  transition: color 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  display: grid;
  min-height: calc(100svh - 104px);
  place-items: center;
  padding: clamp(72px, 10vw, 120px) 0;
  text-align: center;
}

.hero-copy {
  width: min(100%, 980px);
  margin: 0 auto;
}

h1 {
  font-size: clamp(3.7rem, 9vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.hero-subtext {
  max-width: 660px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  font-weight: 450;
}

.content-section {
  padding: clamp(84px, 10vw, 120px) 0;
}

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

.section-inner.narrow {
  width: min(100%, 820px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

h2 {
  max-width: 420px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

h3 {
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.section-copy {
  display: grid;
  gap: 24px;
  max-width: var(--copy);
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.plain-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  color: var(--text);
  font-weight: 650;
  list-style: none;
}

.plain-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 999px;
  background: var(--gold);
  vertical-align: 0.12em;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0 16px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 750;
}

.strong-line {
  color: var(--text);
  font-weight: 750;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 36px);
  margin-top: clamp(34px, 5vw, 54px);
}

.product-list article {
  min-height: 220px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--panel);
}

.product-list p {
  max-width: 430px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
}

.philosophy {
  text-align: center;
}

.philosophy p {
  color: var(--muted);
  font-size: clamp(1.28rem, 2.7vw, 2.15rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.philosophy p + p {
  margin-top: 28px;
  color: var(--text);
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 72px 0 44px;
  color: var(--quiet);
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

.site-footer p:first-child {
  color: var(--text);
  font-weight: 700;
}

.legal-page {
  width: min(100%, 860px);
  padding: clamp(44px, 7vw, 76px) 0 clamp(64px, 9vw, 96px);
}

.legal-hero {
  width: min(100%, 720px);
}

.kicker {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-hero h1 {
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.legal-hero p:last-child {
  max-width: 660px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

.legal-content {
  display: grid;
  gap: 24px;
  width: min(100%, 760px);
  margin-top: clamp(34px, 5vw, 54px);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content h2 {
  max-width: none;
  margin-top: 18px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2rem;
}

.legal-content a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(198, 166, 106, 0.7);
  text-underline-offset: 4px;
}

.support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(198, 166, 106, 0.22);
  background: var(--panel);
  padding: clamp(24px, 3vw, 34px);
}

.support-card h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.support-card p {
  margin-top: 10px;
}

.support-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(198, 166, 106, 0.5);
  background: rgba(198, 166, 106, 0.12);
  padding: 0 18px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none !important;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }

  .brand-logo {
    width: clamp(120px, 42vw, 140px);
  }

  .site-nav {
    justify-content: flex-start;
    gap: 10px 12px;
  }

  .hero {
    min-height: auto;
    padding: 84px 0 92px;
    text-align: left;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5.5rem);
  }

  .hero-subtext {
    margin-left: 0;
  }

  .content-section {
    padding: 82px 0;
  }

  .two-column,
  .product-list {
    grid-template-columns: 1fr;
  }

  h2 {
    max-width: 100%;
  }

  .product-list article {
    min-height: 0;
  }

  .philosophy {
    text-align: left;
  }

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

  .email-button {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 22px, var(--max));
  }

  .site-nav {
    font-size: 0.8rem;
  }

  .hero {
    padding: 68px 0 78px;
  }

  .content-section {
    padding: 72px 0;
  }
}
