@font-face { font-family: system-ui-local; src: local(\"Segoe UI\"), local(\"Arial\"); }
:root {
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --radius: 14px;
  --glass: rgba(255, 255, 255, 0.22);
  --bg: #f5ecd9;
  --text: #2b231e;
  --muted: #5a524a;
  --primary: #d8c5a0;
}
*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.75) 0 25%, rgba(255,255,255,.25) 25% 50%, rgba(255,255,255,.75) 50% 75%, rgba(255,255,255,.25) 75% 100%),
    linear-gradient(#efe0cc, #f7f0e0);
  background-size: 60px 60px, 100% 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; outline: none; }

header.site-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border: 1px solid rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
header.site-header .brand {
  font-weight: 700;
  letter-spacing: .4px;
  text-align: center;
  padding: 6px 10px;
}
@media (min-width: 720px) {
  header.site-header { padding: 16px 28px; }
}

main { display: block; }
section.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
section.hero h1 {
  font-size: clamp(1.8rem, 3.5vw + 1rem, 3rem);
  line-height: 1.15;
  margin: 0 0 6px;
}
section.hero .subhead {
  font-size: clamp(1rem, 0.6vw + 0.8rem, 1.15rem);
  color: var(--muted);
  margin: 6px 0 14px;
}
.hero-media { width: 100%; display: flex; justify-content: center; padding: 4px 0 12px; }
.hero-media img {
  width: min(680px, 92%);
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.cta {
  display: inline-block;
  margin: 12px 0 0;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  color: #2b1e0a;
  background: linear-gradient(#f4e6c8, #e2d0a8);
  border: 1px solid rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.15); }
.cta:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(210,180,110,.6); }

article { max-width: 72ch; margin: 0 auto; padding: 0 var(--space-3) var(--space-4); line-height: 1.6; color: var(--text); }
article p { margin: 0 0 var(--space-3); }
article p:first-of-type::first-letter {
  float: left;
  font-weight: 700;
  line-height: 1;
  margin-right: var(--space-2);
  font-size: clamp(3rem, 6vw, 5rem);
  text-transform: uppercase;
}
@media (max-width: 360px) {
  article p:first-of-type::first-letter { font-size: clamp(2.4rem, 9vw, 3.5rem); }
}

section .anchor { display:block; height:0; margin-top:-6px; padding-top:6px; }

footer.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px;
  display: grid;
  gap: var(--space-3);
  justify-items: center;
}
footer .ad {
  width: 100%;
  max-width: 720px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
}
footer .ad a { font-weight: 600; color: var(--text); }
footer .closing { color: var(--muted); font-size: .95rem; margin: 0; }

@media (min-width: 900px) {
  section.hero { padding: 40px 20px; text-align: left; align-items: stretch; }
  section.hero { display: block; }
  footer.site-footer { align-items: center; }
  article { margin: 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}