:root {
  color-scheme: light;
  --ink: #15171c;
  --muted: #606775;
  --line: #d9dde5;
  --paper: #faf8f4;
  --white: #ffffff;
  --red: #b81524;
  --red-dark: #7f1019;
  --gold: #e7ae35;
  --navy: #172033;
  --green: #456b58;
  --shadow: 0 18px 48px rgba(21, 23, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  overflow-x: hidden;
}

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

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

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

.site-header.is-elevated,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(250, 248, 244, 0.94);
  box-shadow: 0 1px 0 rgba(21, 23, 28, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  font-size: 1rem;
  line-height: 1.05;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  opacity: 0.76;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.93rem;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 0;
}

.nav-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 18px !important;
}

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

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade,
.hero-content {
  grid-area: 1 / 1;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 16, 22, 0.9), rgba(14, 16, 22, 0.5) 48%, rgba(14, 16, 22, 0.15)),
    linear-gradient(0deg, rgba(14, 16, 22, 0.65), transparent 42%);
}

.hero-content {
  align-self: end;
  width: min(920px, 100%);
  padding: 150px clamp(20px, 6vw, 88px) 90px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8vw, 7.1rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  cursor: pointer;
}

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

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

.split-section,
.section,
.faq-section,
.contact-section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 88px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: clamp(36px, 6vw, 86px);
  background: var(--white);
}

.copy-stack {
  max-width: 620px;
  align-self: end;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.priority-card {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 46px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
}

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

.facebook-feed {
  display: grid;
  grid-template-columns: minmax(280px, 500px) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.facebook-feed iframe {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  background: #f0f2f5;
  box-shadow: var(--shadow);
}

.feed-fallback {
  max-width: 520px;
  border-top: 4px solid var(--red);
  padding-top: 24px;
}

.feed-fallback .button {
  margin-top: 12px;
}

.faq-section {
  background: #eef1f5;
}

.faq-list {
  max-width: 980px;
}

details {
  border-bottom: 1px solid #cdd3dc;
  padding: 22px 0;
}

summary {
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
}

details p {
  max-width: 760px;
  margin: 14px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 90px);
  background: var(--paper);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 900;
}

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

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px clamp(20px, 6vw, 88px);
  color: var(--white);
  background: var(--ink);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

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

  .nav-cta {
    border-color: var(--line);
    border-radius: 6px;
    padding: 14px 12px !important;
  }

  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .priority-grid,
  .facebook-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand strong {
    max-width: 150px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(14, 16, 22, 0.86), rgba(14, 16, 22, 0.4)),
      linear-gradient(90deg, rgba(14, 16, 22, 0.65), rgba(14, 16, 22, 0.2));
  }

  .hero-content {
    width: 100%;
    overflow: hidden;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 56px;
  }

  .hero-content .eyebrow {
    max-width: 280px;
  }

  .hero-content h1,
  .hero-content p:not(.eyebrow) {
    max-width: min(310px, calc(100vw - 72px));
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .hero-actions {
    max-width: min(320px, calc(100vw - 80px));
  }

  h1 {
    font-size: 2.95rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .priority-grid,
  .facebook-feed {
    grid-template-columns: 1fr;
  }

  .priority-card {
    min-height: auto;
  }

  .icon {
    margin-bottom: 32px;
  }

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