:root {
  --bg: #080a0c;
  --bg-soft: #10161a;
  --bg-card: rgba(255, 255, 255, 0.075);
  --bg-card-strong: rgba(255, 255, 255, 0.12);
  --text: #f8f4ea;
  --muted: #cfc6b8;
  --dim: #928a7d;
  --accent: #f6c453;
  --accent-soft: rgba(246, 196, 83, 0.18);
  --green: #80cfa9;
  --green-soft: rgba(128, 207, 169, 0.16);
  --red: #df735f;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(246, 196, 83, 0.16),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(128, 207, 169, 0.16),
      transparent 34%
    ),
    linear-gradient(135deg, #080a0c, #11171b 52%, #07090a);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 10, 12, 0.78);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 32px, var(--max-width));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: 72px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-background-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/images/bryce.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(28px) saturate(0.95) brightness(0.42);
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(246, 196, 83, 0.18),
      transparent 28%
    ),
    linear-gradient(
      90deg,
      rgba(8, 10, 12, 0.96),
      rgba(8, 10, 12, 0.78) 50%,
      rgba(8, 10, 12, 0.88)
    );
}

.hero-content {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-text {
  max-width: 720px;
}

.eyebrow,
.section-label {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 9vw, 8.4rem);
  line-height: 0.86;
  letter-spacing: -0.085em;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 50px;
  padding: 0 23px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary-btn {
  color: #12100a;
  background: var(--accent);
}

.secondary-btn {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
}

.secondary-btn:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.hero-card {
  position: relative;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0.04)
    ),
    var(--bg-card);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "RARE OUTDOOR SIGHTING";
  position: absolute;
  top: 28px;
  left: -12px;
  z-index: 4;
  padding: 8px 14px;
  color: #130f08;
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  transform: rotate(-5deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.photo-frame {
  overflow: hidden;
  border-radius: 28px;
}

.hero-photo {
  height: clamp(460px, 66vh, 700px);
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.05);
  transition:
    transform 400ms ease,
    filter 400ms ease;
}

.hero-card:hover .hero-photo {
  transform: scale(1.035);
  filter: saturate(1.16) contrast(1.08);
}

figcaption {
  padding: 14px 10px 4px;
  color: var(--muted);
  font-size: 0.93rem;
  text-align: center;
}

.section {
  padding: 100px 0;
}

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

.center {
  text-align: center;
}

.section h2 {
  max-width: 860px;
  font-size: clamp(2.15rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.center.section-label + h2,
.section-label.center + h2 {
  margin-left: auto;
  margin-right: auto;
}

.evidence-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.evidence-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.evidence-card,
.stat-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.evidence-card {
  min-height: 310px;
  padding: 26px;
}

.evidence-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  bottom: -90px;
  border-radius: 50%;
  background: var(--green-soft);
}

.card-number {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.15em;
}

.evidence-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.evidence-card p {
  position: relative;
  z-index: 2;
  color: var(--muted);
}

.split-section {
  background:
    radial-gradient(circle at left, rgba(246, 196, 83, 0.08), transparent 34%),
    transparent;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: start;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-copy p + p {
  margin-top: 20px;
}

.stats-section {
  padding-top: 40px;
}

.stats-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  min-height: 230px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-card strong {
  display: block;
  color: var(--accent);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.stat-card span {
  color: var(--muted);
  font-weight: 700;
}

.family-section {
  background:
    linear-gradient(
      135deg,
      rgba(128, 207, 169, 0.08),
      rgba(246, 196, 83, 0.06)
    ),
    var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.family-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.family-image-wrap {
  overflow: hidden;
  border-radius: 28px;
}

.family-image {
  height: 540px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

.family-copy {
  padding: 24px 22px 24px 0;
}

.family-copy h2 {
  margin-bottom: 26px;
}

.family-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.family-copy p + p {
  margin-top: 18px;
}

.intervention-section {
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(223, 115, 95, 0.14),
      transparent 30%
    ),
    transparent;
}

.intervention-card {
  max-width: 920px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.045)
    ),
    var(--bg-card);
  box-shadow: var(--shadow);
}

.intervention-card h2 {
  margin-bottom: 28px;
}

.intervention-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intervention-card p + p {
  margin-top: 18px;
}

blockquote {
  position: relative;
  margin: 34px 0;
  padding: 30px;
  color: var(--text);
  border-left: 6px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: rgba(0, 0, 0, 0.22);
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.final-roast {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--text) !important;
  font-weight: 900;
}

.site-footer {
  padding: 34px 16px;
  color: var(--dim);
  text-align: center;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.28);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 58px 0 76px;
  }

  .hero-content,
  .split-layout,
  .family-card {
    grid-template-columns: 1fr;
  }

  .evidence-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .family-copy {
    padding: 10px 12px 18px;
  }

  .hero-photo,
  .family-image {
    height: 560px;
  }
}

@media (max-width: 680px) {
  .nav {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 42px 0 64px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 20vw, 5.5rem);
  }

  .hero-buttons {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 74px 0;
  }

  .evidence-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .evidence-card,
  .stat-card {
    min-height: auto;
  }

  .hero-photo,
  .family-image {
    height: 440px;
  }

  .hero-card::before {
    left: 12px;
    top: 18px;
    transform: rotate(-3deg);
  }

  blockquote {
    padding: 24px;
  }
}
