
/* ─── Schenkini SEO Site CSS ─── */
:root {
  --accent: #C75239;
  --accent-soft: rgba(199,82,57,0.07);
  --accent-hover: #a8412d;
  --gold: #B8860B;
  --bg: #FAF7F4;
  --surface: #FFFFFF;
  --surface-2: #F4F0EB;
  --border: #E4DDD4;
  --text: #2C2419;
  --text-2: #5C5347;
  --muted: #9C9488;
  --fn-head: 'Fraunces', Georgia, serif;
  --fn-body: 'Nunito Sans', -apple-system, sans-serif;
  --max-w: 780px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fn-body); background: var(--bg); color: var(--text); line-height: 1.7; font-size: 17px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── HEADER ─── */
.site-header { background: var(--surface); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.logo-text { font-family: var(--fn-head); font-size: 22px; font-weight: 800; }
.logo-text em { color: var(--accent); font-style: italic; }
.site-nav { display: flex; gap: 6px; }
.site-nav a { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; color: var(--text-2); text-decoration: none; transition: all 0.2s; }
.site-nav a:hover, .site-nav a.active { background: var(--surface-2); color: var(--text); text-decoration: none; }
.site-nav .nav-cta { background: var(--accent); color: #fff; }
.site-nav .nav-cta:hover { background: var(--accent-hover); color: #fff; }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text); }

@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 16px; border-radius: 12px; }
  .menu-toggle { display: block; }
}

/* ─── BREADCRUMB ─── */
.breadcrumb { max-width: var(--max-w); margin: 0 auto; padding: 20px 24px 0; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }

/* ─── HERO ─── */
.hero { max-width: var(--max-w); margin: 0 auto; padding: 48px 24px 40px; text-align: center; }
.hero h1 { font-family: var(--fn-head); font-size: clamp(28px, 5vw, 44px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px; }
.hero .intro { font-size: 18px; line-height: 1.7; color: var(--text-2); max-width: 600px; margin: 0 auto; }
.hero-cta { display: inline-block; margin-top: 28px; padding: 16px 36px; background: var(--accent); color: #fff; border-radius: 16px; font-family: var(--fn-head); font-size: 17px; font-weight: 700; text-decoration: none; transition: background 0.2s, transform 0.15s; box-shadow: 0 6px 24px rgba(199,82,57,0.25); }
.hero-cta:hover { background: var(--accent-hover); transform: translateY(-2px); text-decoration: none; }

/* ─── CONTENT ─── */
.page-content { max-width: var(--max-w); margin: 0 auto; }
.content-section { padding: 0 24px; margin-bottom: 36px; }
.content-section h2 { font-family: var(--fn-head); font-size: 24px; font-weight: 700; margin-bottom: 14px; color: var(--text); line-height: 1.3; }
.content-section p { color: var(--text-2); font-size: 17px; line-height: 1.75; }

/* ─── MID CTA ─── */
.mid-cta { text-align: center; padding: 20px 24px 36px; }
.mid-cta-btn { display: inline-block; padding: 14px 32px; background: var(--accent-soft); color: var(--accent); border: 2px solid var(--accent); border-radius: 14px; font-family: var(--fn-head); font-size: 16px; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.mid-cta-btn:hover { background: var(--accent); color: #fff; text-decoration: none; }

/* ─── CTA SECTION ─── */
.cta-section { padding: 24px; margin-bottom: 48px; }
.cta-box { background: var(--surface); border: 2px solid var(--accent); border-radius: 24px; padding: 48px 36px; text-align: center; }
.cta-box h2 { font-family: var(--fn-head); font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.cta-box p { color: var(--text-2); font-size: 17px; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-button { display: inline-block; padding: 18px 40px; background: var(--accent); color: #fff; border-radius: 16px; font-family: var(--fn-head); font-size: 18px; font-weight: 700; text-decoration: none; transition: all 0.2s; box-shadow: 0 6px 24px rgba(199,82,57,0.25); }
.cta-button:hover { background: var(--accent-hover); transform: translateY(-2px); text-decoration: none; }
.cta-note { display: block; margin-top: 14px; font-size: 13px; color: var(--muted); }

/* ─── RELATED ─── */
.related-section { padding: 0 24px; margin-bottom: 48px; }
.related-section h2 { font-family: var(--fn-head); font-size: 22px; font-weight: 700; margin-bottom: 18px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.related-card { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; text-decoration: none; color: var(--text); transition: all 0.2s; }
.related-card:hover { border-color: var(--accent); transform: translateY(-2px); text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.related-title { font-size: 14px; font-weight: 600; line-height: 1.35; }
.related-arrow { font-size: 18px; color: var(--accent); flex-shrink: 0; margin-left: 8px; }

/* ─── FOOTER ─── */
.site-footer { background: var(--text); color: #b8b0a6; margin-top: 48px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 48px 24px 32px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .footer-logo { font-family: var(--fn-head); font-size: 24px; font-weight: 800; color: #fff; display: block; margin-bottom: 10px; }
.footer-brand .footer-logo em { color: var(--accent); font-style: italic; }
.footer-brand p { font-size: 14px; line-height: 1.6; }
.footer-links h4 { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.footer-links a { display: block; font-size: 14px; color: #b8b0a6; margin-bottom: 8px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #3d352b; max-width: 1100px; margin: 0 auto; padding: 20px 24px; }
.footer-bottom p { font-size: 12px; color: #7a7268; }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero { padding: 32px 20px 28px; }
  .cta-box { padding: 32px 20px; }
  .content-section { padding: 0 20px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
