:root {
  color-scheme: light;
  --bg: #f7faf8;
  --ink: #18211f;
  --muted: #53615e;
  --accent: #0f766e;
  --accent-ink: #ffffff;
  --line: #d8e2df;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); line-height: 1.6; }
a { color: inherit; }
.site-header, .site-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px clamp(20px, 5vw, 72px); border-bottom: 1px solid var(--line); }
.site-footer { border-top: 1px solid var(--line); border-bottom: 0; margin-top: 56px; }
.brand { font-weight: 800; text-decoration: none; }
.nav { display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; }
.nav a, .site-footer a { text-decoration: none; color: var(--muted); }
.hero { min-height: 58vh; display: grid; align-items: end; padding: clamp(48px, 8vw, 112px) clamp(20px, 5vw, 72px); background-image: linear-gradient(90deg, color-mix(in srgb, var(--bg) 92%, transparent), color-mix(in srgb, var(--bg) 54%, transparent)), var(--hero-image); background-size: cover; background-position: center; }
.hero-copy { max-width: 760px; }
.eyebrow { color: var(--accent); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0; }
h1 { font-size: clamp(42px, 7vw, 88px); line-height: 1; margin: 0 0 22px; letter-spacing: 0; }
.hero p, .page-title p { color: var(--muted); font-size: 20px; max-width: 720px; }
.button { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border-radius: 6px; background: var(--accent); color: var(--accent-ink); text-decoration: none; font-weight: 700; }
.page-title, .content-band, .grid { padding: 48px clamp(20px, 5vw, 72px); }
.page-title { border-bottom: 1px solid var(--line); }
.page-title h1 { font-size: clamp(34px, 5vw, 64px); }
.prose { max-width: 820px; font-size: 18px; }
.prose h2 { font-size: 28px; line-height: 1.2; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.tile { min-height: 148px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; text-decoration: none; background: rgba(255, 255, 255, 0.55); }
.tile-image { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-bottom: 1px solid var(--line); }
.tile span, .tile p { display: block; padding-inline: 20px; }
.tile span { display: block; font-weight: 800; margin-top: 18px; margin-bottom: 10px; }
.tile p { color: var(--muted); margin: 0 0 20px; }
.theme-visual .site-header { position: absolute; inset: 0 0 auto; z-index: 2; border-bottom-color: transparent; }
.theme-visual .hero { min-height: 72vh; align-items: center; background-image: linear-gradient(90deg, rgba(0,0,0,0.68), rgba(0,0,0,0.16)), var(--hero-image); color: #fff; }
.theme-visual .hero p { color: rgba(255,255,255,0.84); }
.theme-visual .button { box-shadow: 0 16px 34px rgba(0,0,0,0.22); }

@media (max-width: 720px) {
  .site-header, .site-footer { align-items: flex-start; flex-direction: column; }
  .hero { min-height: 520px; }
  .theme-editorial .tile { display: block; }
  .theme-editorial .tile-image { border-right: 0; border-bottom: 1px solid var(--line); }
}
