@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;800&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  --felt-deep: #153426;
  --felt: #1f5a3d;
  --felt-soft: #dbeadf;
  --brass: #c38a36;
  --brass-deep: #8a5c1a;
  --cream: #f7f2e7;
  --paper: #fcfaf4;
  --ink: #142118;
  --muted: #4d5b50;
  --border: rgba(20, 33, 24, 0.12);
  --shadow: 0 20px 60px rgba(18, 41, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(195, 138, 54, 0.16), transparent 34%),
    linear-gradient(180deg, #f6f0e5 0%, #fdfbf7 100%);
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-body {
  min-height: 100vh;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(252, 250, 244, 0.9);
  border-bottom: 1px solid var(--border);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-footer {
  margin-bottom: 0.7rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
}

.hero-section,
.section {
  padding: 4.5rem 0;
}

main > .hero-section:first-child,
main > .section:first-child {
  padding-top: 1.5rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(31, 90, 61, 0.05), rgba(31, 90, 61, 0.02));
  border-top: 1px solid rgba(21, 52, 38, 0.08);
  border-bottom: 1px solid rgba(21, 52, 38, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  padding: 2.4rem;
  border-radius: 2rem;
  background:
    linear-gradient(145deg, rgba(21, 52, 38, 0.98), rgba(23, 69, 47, 0.94)),
    linear-gradient(180deg, rgba(195, 138, 54, 0.25), transparent);
  color: white;
  box-shadow: 0 32px 70px rgba(16, 35, 24, 0.24);
}

.hero-copy h1,
.section-heading h1,
.section-heading h2,
.info-card h3,
.stack-item h3,
.faq-item h3,
.article-prose h2,
.article-prose h3,
.cta-banner h2 {
  font-family: "Orbitron", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.lead {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

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

.hero-copy .eyebrow {
  color: #efc98f;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 56px;
  padding: 0.95rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background 140ms ease;
}

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

.cta-row .button {
  min-width: 210px;
}

.button-primary {
  background: linear-gradient(135deg, var(--brass), #e6b970);
  color: #1b1409;
  box-shadow:
    0 16px 36px rgba(195, 138, 54, 0.28),
    inset 0 1px 0 rgba(255, 248, 235, 0.5);
}

.button-secondary {
  border-color: rgba(255, 248, 235, 0.26);
  color: #122015;
  background:
    linear-gradient(180deg, rgba(255, 251, 242, 0.98), rgba(241, 232, 214, 0.94));
  box-shadow:
    0 16px 34px rgba(7, 18, 12, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.72rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.feature-pills li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(239, 201, 143, 0.9);
  box-shadow: 0 0 0 3px rgba(239, 201, 143, 0.12);
}

.hero-shot {
  margin: 0;
  background: var(--paper);
  border-radius: 1.8rem;
  padding: 1rem;
  border: 1px solid rgba(20, 33, 24, 0.08);
  box-shadow: var(--shadow);
}

.hero-shot-link {
  display: block;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.hero-shot-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 66px rgba(18, 41, 28, 0.18);
}

.hero-shot-link:focus-visible {
  outline: 3px solid rgba(195, 138, 54, 0.45);
  outline-offset: 4px;
}

.hero-shot img {
  width: 100%;
  height: auto;
  border-radius: 1.15rem;
}

.hero-shot-caption {
  display: block;
  padding: 0.85rem 0.4rem 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.section-heading-left {
  margin-bottom: 2.1rem;
}

.section-heading h1,
.section-heading h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.info-card,
.stack-item,
.faq-item,
.article-shell,
.cta-banner {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 1.3rem;
  border-radius: 1.4rem;
}

.info-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 1.2rem;
  align-items: start;
}

.stacked-list {
  display: grid;
  gap: 1rem;
}

.stack-item {
  padding: 1.2rem;
  border-radius: 1.2rem;
}

.stack-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.stack-item p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 0.9rem;
}

.contact-link {
  color: var(--muted);
  font-weight: 500;
}

.contact-link:hover {
  color: var(--felt);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.2rem 1.3rem;
  border-radius: 1.2rem;
}

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.7rem;
}

.cta-banner h2 {
  margin: 0 0 0.45rem;
  font-size: 1.8rem;
}

.cta-banner p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 3rem 0 4rem;
  background: #f1eadc;
  border-top: 1px solid rgba(20, 33, 24, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(180px, 1fr));
  gap: 1.5rem;
}

.footer-grid-simple {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.site-footer h3 {
  margin: 0 0 0.8rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.site-footer a:hover,
.article-prose a:hover,
.breadcrumb a:hover {
  color: var(--felt);
}

.article-shell {
  padding: 2rem;
  border-radius: 1.7rem;
}

.breadcrumb {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-prose {
  max-width: 760px;
}

.article-prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.55rem;
}

.article-prose p,
.article-prose ul {
  margin: 0 0 1rem;
  color: var(--muted);
}

.article-prose ul {
  padding-left: 1.2rem;
}

.article-prose li + li {
  margin-top: 0.4rem;
}

.noscript-panel {
  max-width: 720px;
  margin: 3rem auto;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #ffffff;
  color: #102517;
  font-family: "Space Grotesk", sans-serif;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-panel,
  .card-grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid-simple,
  .cta-banner,
  .header-row {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 720px) {
  .hero-section,
  .section {
    padding: 3.5rem 0;
  }

  main > .hero-section:first-child,
  main > .section:first-child {
    padding-top: 1rem;
  }

  .hero-copy,
  .article-shell,
  .cta-banner {
    padding: 1.4rem;
  }

  .cta-row .button {
    width: 100%;
    min-width: 0;
  }

  .site-nav {
    gap: 0.7rem;
    font-size: 0.9rem;
  }

  .hero-copy h1,
  .section-heading h1,
  .section-heading h2 {
    font-size: 2rem;
  }
}
