:root {
  color-scheme: light;
  --red: #d71920;
  --red-dark: #a70f16;
  --ink: #151515;
  --muted: #676767;
  --line: #e9e4e2;
  --paper: #fffafa;
  --white: #ffffff;
  --soft: #f6f0ee;
  --shadow: 0 22px 60px rgba(39, 20, 18, 0.15);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.nav-visible {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(215, 25, 32, 0.1);
  outline: none;
}

.nav-action {
  background: var(--red);
  color: var(--white);
}

.site-nav .nav-action:hover,
.site-nav .nav-action:focus-visible {
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #2a1715;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 12, 11, 0.86) 0%, rgba(20, 12, 11, 0.58) 44%, rgba(20, 12, 11, 0.16) 100%),
    linear-gradient(0deg, rgba(20, 12, 11, 0.72) 0%, rgba(20, 12, 11, 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin: 0 0 clamp(48px, 8vw, 96px) clamp(18px, 6vw, 84px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff8c8f;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 8vw, 7.25rem);
}

.motto {
  margin: 12px 0 0;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-actions,
.form-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.split h2,
.page-hero h1,
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.section-heading p,
.split p,
.page-hero p {
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.profile-list article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(39, 20, 18, 0.06);
}

.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.feature-card h3,
.profile-list h3,
.feature-card h2 {
  font-size: 1.35rem;
}

.feature-card p,
.profile-list p,
.legal-page p,
.legal-page li {
  color: var(--muted);
}

.band {
  background: var(--soft);
}

.split {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.facts {
  display: grid;
  gap: 12px;
  margin: 0;
}

.facts div {
  padding: 18px;
  border: 1px solid rgba(215, 25, 32, 0.16);
  border-radius: 8px;
  background: var(--white);
}

.facts dt {
  color: var(--red);
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
}

.facts dd {
  margin: 4px 0 0;
  font-weight: 850;
}

.profile-list {
  display: grid;
  max-width: 1060px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-section {
  background: var(--white);
}

.contact-form {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.88rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8d0ce;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(215, 25, 32, 0.14);
}

.website-field {
  display: none;
}

.form-footer {
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-top: 6px;
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.page-main {
  padding-top: 86px;
}

.page-hero {
  padding: clamp(80px, 9vw, 132px) clamp(18px, 5vw, 72px) clamp(48px, 7vw, 84px);
  background: var(--soft);
}

.page-hero > * {
  max-width: 760px;
}

.legal-page {
  padding: 132px clamp(18px, 5vw, 72px) 80px;
}

.legal-page article {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-page h2 {
  margin-top: 32px;
  font-size: 1.3rem;
}

.updated {
  margin-top: 8px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #161111;
}

.site-footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer a {
  color: inherit;
  font-weight: 750;
  text-decoration: none;
}

.footer-brand .brand-mark {
  border-color: var(--white);
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: min(100% - 36px, 620px);
    margin: 0 auto 42px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .feature-grid,
  .support-grid,
  .profile-list,
  .split,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .profile-list article {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .button {
    width: 100%;
  }

  .form-footer {
    align-items: stretch;
  }
}
