:root {
  color-scheme: light;
  --ink: #06172f;
  --ink-2: #102a43;
  --blue: #202d85;
  --gold: #f0b429;
  --orange: #ff8c00;
  --range: #b8452f;
  --olive: #596743;
  --paper: #fff9eb;
  --paper-2: #f4ead7;
  --steel: #d9e2ec;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 23, 47, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 23, 47, 0.94);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 38px;
  height: 38px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

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

.nav-links a,
.nav-contact {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a[aria-current="page"] {
  background: rgba(255, 140, 0, 0.18);
  color: var(--gold);
}

.nav-links a:hover,
.nav-contact:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-contact {
  border: 1px solid rgba(240, 180, 41, 0.7);
  color: var(--gold);
}

.hero {
  min-height: calc(100svh - 68px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(6, 23, 47, 0.94), rgba(6, 23, 47, 0.74) 44%, rgba(6, 23, 47, 0.24)),
    url("assets/hoosier-daddy-mark.jpg") center / cover no-repeat;
  color: var(--white);
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: 84px 0 64px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  line-height: 0.86;
  text-transform: uppercase;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.6rem;
  line-height: 0.95;
  text-wrap: balance;
}

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

.lede {
  max-width: 700px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.35rem;
  line-height: 1.45;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  border: 2px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
}

.button.primary {
  background: var(--orange);
  color: var(--ink);
}

.button.secondary {
  border-color: var(--gold);
  color: var(--gold);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.button.light {
  border-color: rgba(16, 42, 67, 0.2);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
}

.notice {
  background: var(--ink);
  color: var(--white);
}

.notice .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.notice strong {
  color: var(--gold);
  text-transform: uppercase;
}

.notice p {
  margin: 0;
  line-height: 1.45;
}

.section {
  padding: 76px 0;
}

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

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

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

.section-heading p {
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.65;
}

.blue .section-heading p {
  color: rgba(255, 255, 255, 0.84);
}

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

.feature-card,
.product-card,
.asset-card {
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.feature-card img,
.asset-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-card .card-body,
.asset-card .card-body {
  padding: 20px;
}

.feature-card p,
.product-card p,
.asset-card p {
  color: #4a5d72;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.callout {
  padding: 28px;
  border-left: 6px solid var(--orange);
  background: #fff3d6;
}

.callout p {
  margin-bottom: 0;
  line-height: 1.65;
}

.product-page {
  background: var(--paper);
}

.page-hero {
  padding: 76px 0 50px;
  background:
    linear-gradient(135deg, rgba(6, 23, 47, 0.96), rgba(32, 45, 133, 0.82)),
    url("assets/hoosier-daddy-firearms-banner.png") center / cover no-repeat;
  color: var(--white);
}

.page-hero p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
  line-height: 1.6;
}

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

.product-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.product-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.price {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 1.18rem;
  font-weight: 900;
}

.product-card p {
  margin-bottom: 0;
}

.small-note {
  max-width: 780px;
  margin: 28px auto 0;
  color: #4a5d72;
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: center;
}

.about-copy {
  max-width: 820px;
  color: var(--ink-2);
  font-size: 1.1rem;
  line-height: 1.75;
}

.about-copy strong {
  color: var(--ink);
}

.contact-band {
  background: var(--ink);
  color: var(--white);
}

.contact-band .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.asset-card.wide {
  grid-column: span 3;
}

.asset-card.wide img {
  aspect-ratio: 16 / 9;
}

.site-footer {
  background: #06101f;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
  font-size: 0.92rem;
}

.footer-inner a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 980px) {
  h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 3rem;
  }
}

@media (max-width: 780px) {
  .nav {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links a,
  .nav-contact {
    width: 100%;
  }

  .hero {
    min-height: 760px;
    background:
      linear-gradient(180deg, rgba(6, 23, 47, 0.94), rgba(6, 23, 47, 0.76) 58%, rgba(6, 23, 47, 0.54)),
      url("assets/hoosier-daddy-mark.jpg") center / cover no-repeat;
  }

  .hero-inner {
    padding-top: 120px;
  }

  h1 {
    font-size: 3.2rem;
    line-height: 0.92;
  }

  h2 {
    font-size: 2.35rem;
  }

  .lede {
    font-size: 1.12rem;
  }

  .notice .section-inner,
  .contact-band .section-inner,
  .footer-inner,
  .split {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-grid,
  .product-grid,
  .asset-grid {
    grid-template-columns: 1fr;
  }

  .asset-card.wide {
    grid-column: span 1;
  }

  .product-card header {
    display: grid;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.8rem;
  }

  .page-hero h1 {
    font-size: 2.6rem;
  }
}
