:root {
  --color-primary: #1E3A2E;
  --color-bg: #F3E9D2;
  --color-accent: #C2A14A;
  --color-secondary: #4A3522;
  --color-featured-bg: #173126;
  --shadow-soft: 0 8px 24px rgba(30, 58, 46, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  line-height: 1.65;
  color: var(--color-secondary);
  background: var(--color-bg);
}

h1,
h2,
.brand {
  font-family: "Cinzel", "Times New Roman", serif;
  line-height: 1.2;
  color: var(--color-primary);
}

h3 {
  font-family: "Cinzel", "Times New Roman", serif;
  line-height: 1.25;
  color: var(--color-primary);
}

a {
  color: var(--color-primary);
}

a:hover,
a:focus-visible {
  color: var(--color-secondary);
}

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(74, 53, 34, 0.22);
  backdrop-filter: blur(5px);
  background: rgba(243, 233, 210, 0.95);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  font-size: 1.35rem;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.2rem;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  border-color: var(--color-accent);
}

.hero {
  padding: 5rem 0 3rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--color-primary);
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.lead {
  font-size: 1.125rem;
}

.section {
  padding: 2rem 0 4rem;
}

.content-hero {
  padding-bottom: 2rem;
}

.prose-card {
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(74, 53, 34, 0.2);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 1.8rem;
}

.prose-card h2 {
  margin-top: 1.8rem;
}

.prose-card h2:first-of-type {
  margin-top: 0;
}

.prose-card h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.25rem;
}

.prose-card p {
  margin-top: 0.45rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.split article,
.split aside {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(74, 53, 34, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.expect-card {
  display: flex;
  flex-direction: column;
}

.card-cta-row {
  margin-top: auto;
  padding-top: 0.35rem;
  text-align: right;
}

.section-featured {
  padding-top: 0;
  padding-bottom: 5rem;
}

.featured-card {
  position: relative;
  overflow: hidden;
  background: var(--color-featured-bg);
  color: #f7f0df;
  border: 2px solid var(--color-accent);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 20%, #ffffff 0 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, #ffffff 0 1.5px, transparent 2.5px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.6), transparent 65%);
  background-size: 22px 22px, 18px 18px, cover;
}

.featured-label {
  margin: 0 0 0.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-accent);
}

.featured-card h2 {
  margin-top: 0;
  color: #f7f0df;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: 600;
  background: var(--color-accent);
  color: #2d1f12;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
}

.button:hover,
.button:focus-visible {
  background: #d2b25c;
  color: #24180f;
}

.button-small {
  padding: 0.55rem 0.95rem;
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid rgba(74, 53, 34, 0.22);
  padding: 1.4rem 0 2.2rem;
  background: rgba(30, 58, 46, 0.06);
}

.footer-inner p {
  margin: 0.35rem 0;
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-secondary {
  margin-top: 0.45rem;
  color: rgba(74, 53, 34, 0.95);
}

.footer-cta {
  margin: 0;
}

.footer-cta a {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(194, 161, 74, 0.75);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  background: rgba(194, 161, 74, 0.12);
}

.footer-cta a:hover,
.footer-cta a:focus-visible {
  background: rgba(194, 161, 74, 0.22);
}

@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem 0;
  }

  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .card-cta-row {
    text-align: left;
  }

  .footer-top-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }
}
