:root {
  --bg: #f6efe8;
  --card: #fffaf5;
  --text: #3e342f;
  --muted: #74655c;
  --accent: #c97858;
  --accent-soft: #ead5c5;
  --border: #eadfd5;
  --shadow: 0 18px 40px rgba(89, 61, 41, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, #fff7f0 0%, var(--bg) 55%),
    var(--bg);
  line-height: 1.6;
}

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

a:hover { color: var(--accent); }

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

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(246, 239, 232, 0.86);
  border-bottom: 1px solid rgba(234, 223, 213, 0.9);
  z-index: 20;
}

.site-header .wrap,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header .wrap { padding: 1rem 0; }

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a,
.footer-links a {
  color: var(--muted);
}

nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.hero {
  padding: 4.5rem 0 2rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--accent);
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  max-width: 12ch;
  margin-inline: auto;
}

h2 { font-size: clamp(1.5rem, 2vw, 2rem); }
h3 { font-size: 1.25rem; }

.intro,
.section-head p,
.card-copy p,
.page p,
.policy p {
  color: var(--muted);
}

.intro {
  max-width: 44rem;
  margin: 0.75rem auto 0;
  font-size: 1.08rem;
}

.featured,
.page,
.policy,
.wrap + .wrap {
  margin-top: 1.5rem;
}

.section-head {
  margin-bottom: 1rem;
}

.video-card,
.ad-box,
.page {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card,
.page {
  padding: 1rem;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  background: #ddd1c4;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.card-copy {
  padding: 1rem 0 0.25rem;
}

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

.ad-slot { margin-top: 1.5rem; }

.ad-box {
  min-height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  padding: 1rem;
  border-style: dashed;
}

.ad-box strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.page {
  max-width: 760px;
  padding: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.page h1 {
  margin-inline: 0;
  max-width: none;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.page h2,
.policy h2 {
  margin-top: 1.75rem;
}

.site-footer {
  padding: 2.5rem 0 3rem;
}

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

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .grid { grid-template-columns: 1fr; }
  .site-header .wrap,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero { padding-top: 3.25rem; }
}
