:root {
  color-scheme: light;
  --ink: #181716;
  --muted: #68615a;
  --paper: #f7f3ed;
  --surface: #ffffff;
  --soft: #eee6dc;
  --line: #ddd2c3;
  --accent: #b33f2f;
  --accent-2: #176b5f;
  --gold: #d4942b;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
img { display: block; max-width: 100%; height: auto; }
.site-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 12px clamp(18px, 5vw, 70px); border-bottom: 1px solid rgba(52, 43, 34, .12); background: rgba(247, 243, 237, .92); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 230px; }
.brand-logo { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; box-shadow: 0 10px 28px rgba(57, 36, 21, .12); }
.brand-mark { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: #fff; background: var(--accent); font-weight: 800; }
.brand strong { display: block; font-size: 19px; letter-spacing: .01em; }
.brand small { display: block; color: var(--muted); font-size: 12px; line-height: 1.2; }
nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 800; }
.site-header nav a { border: 1px solid transparent; border-radius: 999px; padding: 9px 14px; transition: background .18s ease, color .18s ease, border-color .18s ease; }
.site-header nav a:hover { color: var(--ink); border-color: var(--line); background: rgba(255, 255, 255, .72); }
.post-card h2 a:hover, .feature-card h2 a:hover { color: var(--accent); }
.hero { padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 70px) 18px; }
.hero-inner { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr); gap: clamp(30px, 5vw, 74px); align-items: end; max-width: 1320px; margin: 0 auto; }
.hero h1, .article h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 8vw, 112px); line-height: .93; letter-spacing: 0; }
.hero p { max-width: 760px; color: var(--muted); font-size: clamp(18px, 2vw, 23px); line-height: 1.55; }
.hero-panel { border-left: 4px solid var(--accent); padding: 24px 0 4px 24px; }
.section { max-width: 1320px; margin: 0 auto; padding: 36px clamp(18px, 5vw, 70px) 84px; }
.section-title { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; border-top: 1px solid var(--line); padding-top: 24px; }
.section-title h1, .section-title h2 { margin: 0; font-size: 28px; letter-spacing: 0; }
.section-title a, .read-link { color: var(--accent); font-weight: 800; }
.feature-card { display: grid; grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr); gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); box-shadow: 0 22px 70px rgba(46, 32, 20, .08); }
.feature-image { min-height: 100%; background: var(--soft); overflow: hidden; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy { align-self: center; padding: clamp(28px, 4vw, 54px); }
.feature-copy h2 { margin: 0 0 16px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 3.2vw, 46px); line-height: 1.04; letter-spacing: 0; }
.feature-copy p { color: var(--muted); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.post-card { display: flex; flex-direction: column; overflow: hidden; min-height: 100%; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); transition: transform .18s ease, box-shadow .18s ease; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(46, 32, 20, .08); }
.post-card > div { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.thumb { aspect-ratio: 16 / 9; max-height: 235px; background: var(--soft); overflow: hidden; }
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease; }
.post-card:hover .thumb img { transform: scale(1.03); }
.eyebrow { margin: 0 0 10px; color: var(--accent-2); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.post-card h2 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(22px, 2vw, 27px); line-height: 1.08; letter-spacing: 0; }
.post-card p { color: var(--muted); line-height: 1.55; }
.post-card .tags { margin-top: auto; padding-top: 10px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tags span { border: 1px solid var(--line); border-radius: 999px; padding: 5px 9px; color: var(--muted); font-size: 12px; }
.article { max-width: 980px; margin: 0 auto; padding: clamp(36px, 7vw, 84px) 18px; }
.article-header { margin-bottom: 32px; }
.article .dek { color: var(--muted); font-size: 20px; line-height: 1.5; }
.back-link { display: inline-block; margin-bottom: 22px; color: var(--accent); font-weight: 800; }
.hero-image { width: 100%; max-height: 560px; margin-top: 28px; object-fit: cover; border-radius: 8px; }
.article-body { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: clamp(24px, 5vw, 58px); font-family: Georgia, "Times New Roman", serif; font-size: 20px; line-height: 1.76; box-shadow: 0 16px 50px rgba(46, 32, 20, .06); }
.article-body h2, .article-body h3, .article-body h4 { font-family: ui-sans-serif, system-ui, sans-serif; line-height: 1.2; margin-top: 1.8em; }
.article-body a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-body figure { margin: 32px 0; }
.article-body figcaption { color: var(--muted); font-size: 14px; }
.article-body ul, .article-body ol { padding-left: 1.3em; }
.notfound { max-width: 720px; margin: 0 auto; padding: clamp(48px, 9vw, 120px) 18px; text-align: center; }
.notfound h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(56px, 10vw, 120px); margin: 0 0 12px; }
.notfound p { color: var(--muted); font-size: 18px; line-height: 1.6; }
.sponsor-card { max-width: 980px; margin: 0 auto clamp(40px, 8vw, 80px); display: grid; grid-template-columns: minmax(220px, 300px) minmax(0, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: 0 18px 50px rgba(46, 32, 20, .08); }
.sponsor-visual { display: grid; place-items: center; padding: clamp(28px, 4vw, 40px); background: linear-gradient(140deg, #f3ece0 0%, #ede2cf 100%); border-right: 1px solid var(--line); transition: opacity .2s ease; }
.sponsor-visual:hover { opacity: .9; }
.sponsor-visual img { width: 100%; max-width: 220px; height: auto; }
.sponsor-body { padding: clamp(24px, 4vw, 36px) clamp(24px, 4vw, 40px); }
.sponsor-label { margin: 0 0 14px; color: #b4683a; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.sponsor-card h3 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(22px, 2.3vw, 28px); line-height: 1.22; color: var(--ink); letter-spacing: -0.005em; }
.sponsor-card p { margin: 0 0 22px; color: var(--muted); font-size: 16px; line-height: 1.55; }
.sponsor-link { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px; background: #1f4d33; color: #fff !important; font-weight: 800; font-size: 14px; letter-spacing: .01em; transition: background .15s ease, transform .15s ease, box-shadow .15s ease; }
.sponsor-link:hover { background: #163a25; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(31, 77, 51, .25); }
.sponsor-link span { transition: transform .2s ease; }
.sponsor-link:hover span { transform: translateX(3px); }
@media (max-width: 640px) {
  .sponsor-card { grid-template-columns: 1fr; }
  .sponsor-visual { border-right: 0; border-bottom: 1px solid var(--line); padding: 32px; }
  .sponsor-visual img { max-width: 180px; }
}
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); padding: 24px clamp(18px, 5vw, 70px); color: var(--muted); font-size: 14px; }
.site-footer p { margin: 0; }
.site-footer nav { gap: 18px; }
.site-footer nav a { padding: 8px 0; font-weight: 800; }
.site-footer nav a:hover { color: var(--accent); }
@media (max-width: 760px) {
  .hero-inner, .feature-card { grid-template-columns: 1fr; }
  .feature-image { min-height: 320px; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .grid { grid-template-columns: 1fr; }
  .article-body { font-size: 18px; }
}