:root {
  --primary: #12372a;
  --accent: #d6a84f;
  --background: #fbf7ef;
  --card: #ffffff;
  --text: #0f241d;
  --muted: color-mix(in srgb, var(--text), transparent 36%);
  --border: color-mix(in srgb, var(--text), transparent 84%);
  --radius: 8px;
  --shadow: 0 24px 70px color-mix(in srgb, var(--primary), transparent 84%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--background);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; background: var(--background); color: var(--text); font-weight: 400; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.header { position: sticky; top: 0; z-index: 10; background: color-mix(in srgb, var(--background), transparent 6%); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); }
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--primary); min-width: max-content; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--primary); color: var(--accent); font-family: Georgia, serif; font-size: 1rem; font-weight: 800; letter-spacing: .04em; box-shadow: 0 12px 28px color-mix(in srgb, var(--primary), transparent 82%); }
.brand-copy { display: grid; line-height: 1; }
.brand-name { font-family: Georgia, serif; font-size: 1.45rem; font-weight: 800; color: var(--primary); }
.brand-tagline { margin-top: 6px; color: var(--muted); font-size: .64rem; text-transform: uppercase; letter-spacing: .2em; font-weight: 800; }
.nav-links { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: .86rem; font-weight: 700; }
.nav-links a:hover { color: var(--accent); }
.button { display: inline-flex; align-items: center; gap: 10px; background: var(--primary); color: white; border: 1px solid var(--primary); padding: 13px 20px; border-radius: var(--radius); font-weight: 700; }
.button.secondary { background: transparent; color: var(--primary); border-color: var(--border); }
.button:hover { transform: translateY(-1px); }
.hero { position: relative; min-height: 78vh; display: grid; align-items: center; overflow: hidden; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,55,42,.92), rgba(18,55,42,.22)); opacity: 1; }
.hero-content { position: relative; z-index: 1; color: white; padding: 92px 0; max-width: 760px; }
.hero-panel { min-height: auto; background: var(--background); padding: 72px 0 88px; }
.hero-panel::after { display: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .88fr); gap: 56px; align-items: center; }
.hero-copy { color: var(--text); }
.hero-copy h1 { color: var(--primary); }
.hero-copy .lead { color: var(--muted); }
.hero-copy .button.secondary { color: var(--primary); border-color: var(--border); background: var(--card); }
.hero-media { position: relative; }
.hero-media::before { content: ""; position: absolute; inset: -18px; z-index: 0; border-radius: 28px; background: color-mix(in srgb, var(--accent), transparent 78%); filter: blur(20px); }
.hero-media img { position: relative; inset: auto; z-index: 1; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; box-shadow: 0 30px 70px color-mix(in srgb, var(--primary), transparent 80%); border: 1px solid var(--border); }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .22em; font-size: .75rem; font-weight: 800; }
h1, h2, h3 { line-height: 1.05; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(3rem, 8vw, 6.8rem); }
h1 span { color: var(--accent); }
h2 { font-size: clamp(2.1rem, 5vw, 4.5rem); color: var(--primary); }
h3 { font-size: 1.45rem; color: var(--primary); }
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: color-mix(in srgb, currentColor, transparent 18%); max-width: 720px; }
.section { padding: 88px 0; }
.section.alt { background: color-mix(in srgb, var(--primary), transparent 94%); }
.grid { display: grid; gap: 24px; }
.grid.cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.card:hover { border-color: var(--accent); }
.page-hero { background: linear-gradient(180deg, color-mix(in srgb, var(--accent), transparent 92%), transparent); border-bottom: 1px solid var(--border); }
.page-hero h1 { color: var(--primary); max-width: 900px; font-size: clamp(2.75rem, 6vw, 5rem); }
.page-hero .lead { color: var(--muted); margin-top: 20px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.post-card { min-height: 280px; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.post-card:hover { transform: translateY(-5px); box-shadow: 0 26px 60px color-mix(in srgb, var(--primary), transparent 88%); }
.post-card h3 { margin-top: 18px; font-family: Georgia, serif; font-size: clamp(1.35rem, 2.2vw, 1.75rem); line-height: 1.16; }
.post-card p:not(.eyebrow) { color: var(--muted); }
.post-meta, .article-meta { margin-top: auto; color: var(--muted); text-transform: uppercase; letter-spacing: .13em; font-size: .68rem; }
.page-article { width: min(860px, calc(100% - 40px)); }
.page-article .lead { margin-top: 22px; color: var(--muted); }
.article-body { margin-top: 44px; padding-top: 40px; border-top: 1px solid var(--border); }
.article-body p, .article-body li { font-size: 1.06rem; line-height: 1.82; }
.article-body h2, .article-body h3 { font-family: Georgia, serif; }
.article-body a { color: var(--primary); border-bottom: 1px solid color-mix(in srgb, var(--primary), transparent 60%); }
.metric { font-size: clamp(2rem, 5vw, 4rem); color: var(--accent); font-weight: 800; line-height: 1; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.image-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.list { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.list li { padding-left: 28px; position: relative; }
.list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 10px; height: 10px; border-radius: 999px; background: var(--accent); }
.article { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0; }
.article h1 { color: var(--primary); font-size: clamp(2.4rem, 6vw, 4.8rem); }
.article h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); margin-top: 48px; }
.article p, .article li { color: var(--muted); }
.article blockquote { margin: 32px 0; padding: 22px 28px; border-left: 4px solid var(--accent); background: color-mix(in srgb, var(--accent), transparent 90%); }
.form { display: grid; gap: 16px; }
input, textarea, select { width: 100%; border: 1px solid var(--border); background: var(--card); color: var(--text); border-radius: var(--radius); padding: 14px 16px; font: inherit; }
label { color: var(--primary); font-weight: 800; font-size: .9rem; }
.footer { margin-top: auto; padding: 48px 0; background: var(--primary); color: white; }
.stats-band, .contact-band { background: var(--primary); color: white; padding: 28px 0; }
.stats-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); text-align: center; }
.stats-grid strong { display: block; color: var(--accent); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1; }
.stats-grid span { display: block; margin-top: 6px; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; opacity: .78; }
.quote-card { font-family: Georgia, serif; font-size: 1.35rem; color: var(--primary); }
.cta-panel { text-align: center; background: var(--primary); color: white; padding: 56px 28px; border-radius: var(--radius); }
.cta-panel h2 { color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .brand { min-width: 0; }
  .brand-name { font-size: 1.35rem; }
  .nav-links { gap: 12px; }
  .hero { min-height: 72vh; }
  .hero-panel { padding-top: 42px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { min-width: 0; }
  .hero-copy h1 { font-size: clamp(3rem, 14vw, 4.2rem); overflow-wrap: normal; }
  .button { margin-bottom: 8px; max-width: 100%; }
  .split, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .post-card { min-height: auto; }
}
