:root {
  --bg: #faf7f1;
  --surface: #ffffff;
  --text: #171512;
  --muted: #5f5a52;
  --primary: #6d1f2f;
  --accent: #0d6b66;
  --gold: #b98832;
  --border: #e5ddd0;
  --ink: #101010;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--text); color: white; padding: 10px 14px; z-index: 20; }
.skip-link:focus { left: 8px; }
.site-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px clamp(18px, 4vw, 56px); background: rgba(250,247,241,.94); border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; letter-spacing: 0; }
.brand span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 8px; background: var(--primary); color: #fff; font-size: 13px; }
.site-nav { display: flex; align-items: center; gap: 18px; font-size: 15px; }
.site-nav a { text-decoration: none; color: var(--muted); font-weight: 700; }
.site-nav a:hover, .text-link:hover { color: var(--primary); }
.nav-cta, .button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; padding: 11px 18px; text-decoration: none; font-weight: 800; border: 1px solid transparent; }
.nav-cta, .button.primary { background: var(--primary); color: #fff !important; }
.button.secondary { border-color: var(--primary); color: var(--primary); background: transparent; }
.nav-toggle { display: none; min-height: 44px; border: 1px solid var(--border); border-radius: 8px; background: white; color: var(--text); font-weight: 800; padding: 0 14px; }
.hero { min-height: calc(100dvh - 72px); display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr); gap: clamp(28px, 6vw, 72px); align-items: center; padding: clamp(42px, 7vw, 88px) clamp(18px, 4vw, 56px); }
.hero h1, .page-hero h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 7vw, 86px); line-height: 1.02; margin: 0 0 20px; letter-spacing: 0; max-width: 920px; }
.hero p, .page-hero p { font-size: clamp(18px, 2vw, 22px); color: var(--muted); max-width: 760px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 12px; box-shadow: 0 20px 50px rgba(23, 21, 18, .12); }
.hero-panel img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: 6px; width: 100%; }
.panel-note { display: grid; gap: 3px; padding: 14px 4px 4px; }
.panel-note span { color: var(--muted); }
.kicker { color: var(--accent) !important; text-transform: uppercase; font-size: 13px !important; font-weight: 900; letter-spacing: .08em; margin: 0 0 12px; }
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-block: 1px solid var(--border); }
.trust-strip span { background: #1d1a16; color: #fff; padding: 18px; text-align: center; font-weight: 800; }
.split, .band, .faq-section, .blog-layout, .content-layout, .page-hero { padding: clamp(48px, 7vw, 92px) clamp(18px, 4vw, 56px); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split.reverse { background: #efe7da; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 52px); line-height: 1.1; margin: 0 0 18px; letter-spacing: 0; }
h3 { margin: 0 0 10px; font-size: 20px; }
p { margin-top: 0; }
.feature-list { display: grid; gap: 16px; }
.card-grid { display: grid; gap: 18px; margin-top: 28px; }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .post-row, .sidebar, .content-cta, .author-box { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 22px; }
.card p, .post-row p, .content-cta p { color: var(--muted); }
.text-link { display: inline-flex; margin-top: 8px; font-weight: 900; color: var(--accent); text-decoration: none; }
.band { background: var(--primary); color: #fff; }
.band .kicker, .band p { color: #f4dfc3 !important; }
.band.light { background: var(--bg); color: var(--text); }
.band.light .kicker { color: var(--accent) !important; }
.device-card { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); background: white; }
.steps { padding-left: 22px; color: var(--muted); }
.steps li { margin: 0 0 14px; }
.faq-section details { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 18px 20px; margin-bottom: 12px; }
.faq-section summary { cursor: pointer; font-weight: 900; }
.page-hero { background: #1d1a16; color: white; }
.page-hero p { color: #e5ddd0; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: #d8cab7; font-size: 14px; }
.breadcrumb a { color: #fff; text-decoration: none; }
.breadcrumb span::before { content: "/ "; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; align-items: start; }
.article-body { max-width: 860px; }
.article-block { padding-bottom: 24px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.article-block h2 { font-size: clamp(26px, 3vw, 38px); }
.lead { font-size: 20px; color: var(--muted); }
.content-cta, .sidebar { position: sticky; top: 96px; display: grid; gap: 10px; }
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; }
.post-row { margin-bottom: 18px; }
.post-row h2 { font-size: clamp(24px, 3vw, 36px); }
.post-row h2 a { text-decoration: none; }
.sidebar a { display: block; margin-bottom: 10px; text-decoration: none; color: var(--accent); font-weight: 800; }
.inline-band { background: transparent; color: var(--text); padding-inline: 0; }
.site-footer { background: #101010; color: white; padding: 48px clamp(18px, 4vw, 56px) 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 28px; }
.footer-grid p, .footer-bottom { color: #c8c1b8; }
.footer-grid a { display: block; color: #fff; text-decoration: none; margin: 0 0 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid #37322d; margin-top: 28px; padding-top: 18px; font-size: 14px; }
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .site-nav { position: absolute; inset: 72px 14px auto 14px; display: none; flex-direction: column; align-items: stretch; background: white; border: 1px solid var(--border); border-radius: 8px; padding: 14px; box-shadow: 0 20px 48px rgba(0,0,0,.15); }
  .site-nav.open { display: flex; }
  .hero, .split, .content-layout, .blog-layout, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .trust-strip, .card-grid.four, .card-grid.three, .card-grid.two { grid-template-columns: 1fr; }
  .content-cta, .sidebar { position: static; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 520px) {
  .site-header { padding: 12px 14px; }
  .brand { font-size: 14px; }
  .hero h1, .page-hero h1 { font-size: 42px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
}
