:root {
  --red: #c40000;
  --red-dark: #760000;
  --ink: #111111;
  --ink-soft: #272727;
  --steel: #6f7578;
  --paper: #f7f8fa;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.11);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.026) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

a:hover {
  color: var(--red);
}

.skip-link,
.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;
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 248, 250, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  min-height: 68px;
  margin: 0 auto;
  padding: 0.35rem 1.25rem;
  gap: 1.5rem;
}

.brand img {
  width: clamp(126px, 13vw, 170px);
  height: auto;
  max-height: 66px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  min-height: 36px;
  padding: 0.48rem 0.78rem;
  border-bottom: 2px solid transparent;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--red-dark);
  border-color: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(540px, 76vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 44%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.54), transparent 52%);
}

.hero-content {
  position: relative;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 5rem;
}

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

.hero .eyebrow {
  color: #ff3b30;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
}

.lead {
  max-width: 640px;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-weight: 800;
}

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

.button.primary:hover {
  color: var(--white);
  background: #9e0000;
}

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

.button.secondary:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) 1.25rem;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 2.25rem;
}

.section-heading h2 {
  max-width: 1040px;
  font-size: clamp(2.05rem, 4.4vw, 3.9rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.intro-grid article {
  position: relative;
  min-height: 248px;
  padding: 1.45rem;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.intro-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
}

.intro-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 0, 0, 0.28);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
}

.intro-grid article h3 {
  margin-top: 2.1rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.intro-grid article p {
  color: #4b5563;
  font-size: 1rem;
}

.foundation {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
  max-width: none;
  padding-inline: max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(196, 0, 0, 0.12), transparent 34%),
    #111111;
}

.foundation-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
}

.foundation .coming-soon-note {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--red);
}

.coming-soon-note {
  display: inline-block;
  max-width: 680px;
  margin-top: 0.7rem;
  padding: 0.75rem 0.9rem;
  border-left: 4px solid var(--red);
  color: var(--ink-soft);
  background: rgba(196, 0, 0, 0.06);
  font-weight: 700;
}

.foundation-list {
  display: grid;
  gap: 0.7rem;
}

.foundation-list span {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--red);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.employment {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.employment p {
  max-width: 720px;
  color: #424242;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 2rem;
  align-items: start;
  padding-bottom: clamp(2.5rem, 4vw, 3.75rem);
}

.contact-card,
.policy-contact address {
  display: grid;
  gap: 0.35rem;
  padding: 1.4rem;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  font-style: normal;
}

.contact-card strong,
.policy-contact strong {
  font-size: 1.15rem;
}

.contact-card a,
.policy-contact a {
  color: var(--red-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.9rem 1.5rem;
  padding: 1.1rem max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem)) 0.85rem;
  color: #333333;
  background: #f1f3f6;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 118px;
  height: auto;
  margin-bottom: 0.35rem;
  max-height: 60px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.site-footer a {
  color: var(--ink);
  font-weight: 700;
}

.footer-notice {
  flex: 1 0 100%;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.copy-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  max-width: min(320px, calc(100vw - 2rem));
  padding: 0.78rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-left: 4px solid var(--red);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  font-size: 0.92rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.policy-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 1.25rem;
}

.policy-document {
  padding: clamp(1.4rem, 5vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
}

.policy-document h1 {
  color: var(--ink);
  font-size: clamp(2.35rem, 6vw, 4.5rem);
}

.policy-document p {
  color: #333333;
}

.policy-document section {
  margin-top: 1.8rem;
}

.policy-document section h2 {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.2;
}

.updated {
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-weight: 700;
}

.policy-contact {
  margin-top: 2rem;
}

.policy-contact h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

@media (max-width: 820px) {
  .nav-shell {
    min-height: 62px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 0.75rem 1.25rem 1rem;
    border-top: 1px solid var(--line);
    background: var(--paper);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 0.85rem 0;
  }

  .hero {
    min-height: 650px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.62)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 45%);
  }

  .intro-grid,
  .foundation,
  .employment,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro-grid article {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 520px) {
  .hero-content {
    padding-top: 3.5rem;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    flex: 1 1 100%;
  }
}
