/* ===== Fonts (two only, chosen for readability) ===== */
:root{
  --ink:#12293D;
  --ink2:#1B3A55;
  --copper:#D97A34;
  --copper-dark:#B5601F;
  --paper:#FBF7EF;
  --paper2:#F3EBDC;
  --line: rgba(18,41,61,0.14);
  --shadow: 0 18px 40px -20px rgba(18,41,61,0.25);
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
img{ max-width:100%; height:auto; display:block; }
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Source Sans 3', Arial, sans-serif;
  font-size:21px;
  line-height:1.75;
}
h1,h2,h3,h4{
  font-family:'Merriweather', Georgia, serif;
  font-weight:900;
  line-height:1.28;
  margin:0;
  color:var(--ink);
  letter-spacing:-0.01em;
}
p{ margin:0 0 20px; font-size:21px; line-height:1.75; }
a{ color:inherit; text-decoration:none; }


.container-narrow{ max-width:1100px; margin:0 auto; padding:0 24px; }
.container-mid{ max-width:900px; margin:0 auto; padding:0 24px; }
.container-tight{ max-width:700px; margin:0 auto; padding:0 24px; }

/* ===== Utility ===== */
.eyebrow{ font-family:'Source Sans 3', sans-serif; font-size:19px; letter-spacing:0.06em; text-transform:uppercase; color:var(--copper-dark); font-weight:800; }
.text-center{ text-align:center; }
.section{ padding:70px 0; }
.section-tight{ padding:44px 0; }
.bg-paper{ background:var(--paper); }
.bg-paper2{ background:var(--paper2); }
.bg-ink{ background:var(--ink); color:#fff; }
.bg-ink h1,.bg-ink h2,.bg-ink h3{ color:#fff; }
.bg-white{ background:#fff; }
.text-copper{ color:var(--copper); }
.text-muted{ color:rgba(18,41,61,0.75); font-size:20px; }
.text-muted-light{ color:rgba(255,255,255,0.8); font-size:20px; }

/* ===== Buttons ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  font-family:'Source Sans 3', sans-serif; font-weight:800; font-size:21px;
  padding:18px 34px; border-radius:8px; border:2px solid transparent;
  cursor:pointer; text-decoration:none; transition:transform .15s ease, box-shadow .15s ease;
}
.btn-copper{ background:var(--copper); color:#fff; box-shadow:0 12px 26px -12px rgba(217,122,52,0.55); }
.btn-copper:hover{ background:var(--copper-dark); color:#fff; }
.btn-ink{ background:var(--ink); color:#fff; }
.btn-ink:hover{ background:var(--copper); color:#fff; }
.btn-outline{ border-color:var(--ink); color:var(--ink); background:transparent; }
.btn-outline:hover{ background:var(--ink); color:#fff; }
.btn-outline-light{ border-color:rgba(255,255,255,0.4); color:#fff; background:transparent; }
.btn-outline-light:hover{ background:rgba(255,255,255,0.12); }
.btn-block{ display:flex; width:100%; }

/* ===== Header / Nav ===== */
.topbar{ background:var(--ink); color:rgba(255,255,255,0.85); text-align:center; padding:12px 16px; font-size:18px; }
.topbar .text-copper{ font-weight:700; }
header.site-header{ position:sticky; top:0; z-index:50; background:rgba(251,247,239,0.95); backdrop-filter:blur(8px); border-bottom:1px solid var(--line); }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; padding:16px 0; }
.logo{ font-family:'Merriweather', serif; font-weight:900; font-size:28px; color:var(--ink); }
.logo .text-copper{ font-style:normal; }
.navlinks{ list-style:none; display:flex; gap:24px; margin:0; padding:0; font-size:18px; font-weight:600; text-transform:none; letter-spacing:0; color:rgba(18,41,61,0.8); }
.navlinks a:hover{ color:var(--copper); }
.nav-actions{ display:flex; align-items:center; gap:12px; }
.burger{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.burger span{ display:block; width:24px; height:2px; background:var(--ink); margin:5px 0; }
.mobile-menu{ display:none; background:var(--paper); border-bottom:1px solid var(--line); }
.mobile-menu.open{ display:block; }
.mobile-menu ul{ list-style:none; margin:0; padding:20px 24px; display:flex; flex-direction:column; gap:14px; font-size:17px; text-transform:uppercase; }

/* ===== Hero ===== */
.hero-grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:48px; align-items:start; }
.badge-pill{ display:inline-block; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.2); border-radius:999px; padding:10px 20px; font-size:18px; font-weight:600; color:#fff; }
.hero h1{ font-size:clamp(32px,4vw,46px); line-height:1.18; margin:22px 0; }
.callout-card{ background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:14px; padding:26px; margin:24px 0; }
.callout-card p{ color:rgba(255,255,255,0.75); margin-bottom:12px; }
.callout-card p:last-child{ margin-bottom:0; }
.chip-row{ display:flex; flex-wrap:wrap; gap:10px; margin:22px 0; }
.chip{ background:rgba(255,255,255,0.12); border-radius:999px; padding:10px 18px; font-size:19px; font-weight:600; }
.check-list{ margin:22px 0; }
.check-list p{ display:flex; gap:10px; color:rgba(255,255,255,0.8); margin-bottom:10px; }
.stat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; max-width:420px; margin:26px 0; }
.stat-grid .num{ font-family:'Merriweather', serif; font-weight:700; font-size:30px; color:var(--copper); }
.stat-grid .label{ font-size:16px; color:rgba(255,255,255,0.5); }
.cta-row{ display:flex; flex-wrap:wrap; gap:16px; margin-top:26px; }

/* ===== Grid card layouts ===== */
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.card{ background:#fff; border-radius:14px; padding:26px; box-shadow:var(--shadow); }
.card-flat{ background:#fff; border-radius:14px; padding:22px; }
.card h3{ font-size:22px; }
.icon-card{ text-align:center; }
.icon-card img{ height:48px; margin:0 auto 14px; }
.badge-num{ display:inline-flex; align-items:center; justify-content:center; width:32px; height:32px; border-radius:6px; background:var(--ink); color:#fff; font-weight:700; font-size:17px; }
.badge-num-circle{ border-radius:50%; background:var(--copper); }
.left-accent{ background:#fff; border-left:4px solid var(--copper); border-radius:6px; padding:20px; }

/* ===== Callouts ===== */
.callout-box{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:22px; }
.callout-warn{ background:#FDF2EA; border:1px solid rgba(217,122,52,0.3); border-radius:14px; padding:20px; }
.callout-danger{ background:#FBEAEA; border:1px solid rgba(200,60,60,0.3); border-radius:14px; padding:20px; }

/* ===== Reviews ===== */
.review-avatar{ width:44px; height:44px; border-radius:50%; object-fit:cover; }
.stars{ color:var(--copper); font-size:20px; }

/* ===== Pricing ===== */
.price-card{ background:#fff; border-radius:14px; padding:28px; text-align:center; box-shadow:var(--shadow); }
.price-card.featured{ border:2px solid var(--copper); position:relative; }
.price-tag{ font-family:'Merriweather', serif; font-weight:700; font-size:34px; color:var(--ink); }
.price-card.featured .price-tag{ color:var(--copper); font-size:40px; }
.price-badge{ position:absolute; top:-16px; left:50%; transform:translateX(-50%); background:var(--copper); color:#fff; font-size:15px; font-weight:700; padding:6px 18px; border-radius:999px; white-space:nowrap; }
.price-list{ list-style:none; margin:18px 0; padding:0; text-align:left; }
.price-list li{ display:flex; gap:8px; margin-bottom:8px; color:rgba(18,41,61,0.7); }

/* ===== FAQ accordion ===== */
.accordion-item{ border-bottom:1px solid var(--line); }
.accordion-btn{ width:100%; text-align:left; background:none; border:none; padding:20px 0; display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-family:'Merriweather', serif; font-weight:900; font-size:22px; color:var(--ink); }
.accordion-btn .icon{ color:var(--copper); font-size:24px; transition:transform .2s ease; flex-shrink:0; margin-left:14px; }
.accordion-item.open .icon{ transform:rotate(45deg); }
.accordion-body{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.accordion-item.open .accordion-body{ max-height:400px; }
.accordion-body p{ padding-bottom:20px; color:rgba(18,41,61,0.75); font-size:20px; }

/* ===== Footer ===== */
footer{ background:var(--ink); color:rgba(255,255,255,0.7); padding:56px 0 40px; }
.footer-links{ display:flex; flex-wrap:wrap; justify-content:center; gap:22px; font-size:19px; font-weight:600; }
.footer-legal{ font-size:17px; line-height:1.8; color:rgba(255,255,255,0.55); max-width:820px; margin:32px auto 0; text-align:left; }
.footer-legal p{ margin-bottom:12px; color:rgba(255,255,255,0.45); }

/* ===== Responsive ===== */
@media (max-width:980px){
  .hero-grid, .grid-2{ grid-template-columns:1fr; }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .navlinks{ display:none; }
  .burger{ display:block; }
  .nav-actions .btn{ display:none; }
}
@media (max-width:600px){
  .grid-4, .grid-3, .grid-2{ grid-template-columns:1fr; }
  .section{ padding:50px 0; }
  body{ font-size:18px; }
  p{ font-size:18px; }
  .hero h1{ font-size:30px; }
}
