:root {
  --bg: #f2ede2;
  --paper: rgba(255, 252, 247, 0.84);
  --ink: #1b1813;
  --muted: #645b51;
  --line: rgba(27, 24, 19, 0.12);
  --gold: #d5a84e;
  --gold-deep: #a77220;
  --berry: #7d3148;
  --navy: #1f365d;
  --shadow: 0 24px 80px rgba(36, 27, 14, 0.18);
  --radius: 28px;
  --content: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(213, 168, 78, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(125, 49, 72, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f0e7 0%, #efe4d4 100%);
}

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

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

.site-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 249, 240, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(45, 26, 17, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  justify-self: start;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.brand span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 14px;
  font: inherit;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  justify-self: center;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a.is-active,
.nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(213, 168, 78, 0.18);
  box-shadow: inset 0 0 0 1px rgba(213, 168, 78, 0.24);
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  justify-self: end;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  transition: transform 140ms ease, background 140ms ease, color 140ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: linear-gradient(135deg, rgba(125, 49, 72, 0.12), rgba(31, 54, 93, 0.12));
  color: var(--navy);
  transform: translateY(-1px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero,
.band,
.footer {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  filter: saturate(0.92) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 16, 10, 0.82) 0%, rgba(23, 16, 10, 0.5) 42%, rgba(23, 16, 10, 0.18) 68%, rgba(23, 16, 10, 0.04) 100%),
    linear-gradient(180deg, rgba(125, 49, 72, 0.25) 0%, rgba(31, 54, 93, 0.18) 100%);
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  max-width: 620px;
  padding: 72px 48px;
  color: #fff8ef;
}

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

h1,
h2,
h3,
.card strong,
.footer-title {
  font-family: "Arial Black", "Arial Narrow Bold", Arial, sans-serif;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.lede,
.intro-grid p,
.card span,
.footer p {
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), #efc16b);
  color: #2b1804;
}

.button-secondary {
  border: 1px solid rgba(255, 248, 239, 0.44);
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ef;
}

.band,
.footer {
  margin-top: 22px;
}

.band,
.footer {
  padding: 36px;
}

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

.footer-brand {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-copy {
  display: grid;
  gap: 4px;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links .social-link {
  width: 44px;
  height: 44px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

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

.intro-grid article,
.card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  padding: 22px;
}

.card {
  display: grid;
  gap: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(36, 27, 14, 0.12);
}

.card-kicker {
  color: var(--berry);
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card strong {
  font-size: 1.2rem;
}

.card span:last-child,
.intro-grid p,
.footer p {
  color: var(--muted);
}

.footer-title {
  margin: 0 0 10px;
  font-size: 1.4rem;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--content));
    padding-top: 12px;
  }

  .topbar {
    border-radius: 28px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    padding-top: 8px;
    justify-content: center;
  }

  .nav.is-open {
    display: flex;
  }

  .topbar-social {
    justify-self: end;
    gap: 8px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .hero-copy {
    max-width: none;
    padding: 72px 22px 28px;
  }

  .intro-grid,
  .cards,
  .footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer {
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .band,
  .footer {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .brand span {
    font-size: 0.82rem;
  }

  .hero-copy {
    padding-top: 64px;
  }

  .button,
  .nav a {
    width: 100%;
  }

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