/* ═══════════════════════════════════════════════════════════
   KIDDIO ENGINEERING — MASTER STYLESHEET
   Brand Style Guide V1.0 — Midnight Navy / Sage Teal / Amber
═══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --navy:    #151D2D;
  --sage:    #5F9385;
  --dteal:   #2E6060;
  --amber:   #DAA250;
  --copper:  #A35645;
  --warm:    #F7F3EC;
  --mist:    #7A8EA4;
  --white:   #FFFFFF;
  --border:  #E0DAD0;
  --shadow:  #DAD4C9;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'DM Sans', system-ui, sans-serif;
  --r:       8px;
  --trans:   .22s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--body); background: var(--warm); color: var(--navy); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5,h6 { font-family: var(--display); font-weight: 700; font-style: normal !important; line-height: 1.15; color: var(--navy); }
p    { line-height: 1.7; color: var(--mist); }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
img  { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--body); }

/* ── Layout ─────────────────────────────────────────────── */
.container   { max-width: 1380px; margin: 0 auto; padding: 0 56px; }
.section     { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-header { margin-bottom: 48px; }
.section-title  { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 14px; }
.section-sub    { font-size: .98rem; line-height: 1.75; max-width: 760px; color: var(--mist); }
.eyebrow {
  font-family: var(--body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::after { content: ''; display: block; width: 60px; height: 1px; background: var(--sage); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 700;
  font-size: .93rem;
  padding: 12px 26px;
  border-radius: 6px;
  border: none;
  transition: var(--trans);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn-amber   { background: var(--amber); color: var(--navy); }
.btn-amber:hover { background: #e8b55a; transform: translateY(-1px); }
.btn-navy    { background: var(--navy); color: var(--amber); }
.btn-navy:hover  { background: #1e2d47; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.btn-sm { font-size: .85rem; padding: 9px 18px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 22px 22px 26px;
  position: relative;
  box-shadow: 3px 3px 0 var(--shadow);
  transition: var(--trans);
}
.card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--copper);
  border-radius: var(--r) 0 0 var(--r);
}
.card.accent-amber::before { background: var(--amber); }
.card.accent-sage::before  { background: var(--sage); }
.card:hover { transform: translateY(-2px); }

/* ── Reveal animation ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── NAV ─────────────────────────────────────────────────── */
#kiddio-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--amber);
  box-shadow: 0 2px 12px rgba(21,29,45,.08);
  transition: box-shadow var(--trans);
}
.nav-inner {
  max-width: 1380px; margin: 0 auto; padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between; height: 76px;
}
.nav-logo img { height: 54px; width: auto; display: block; }
.nav-links    { display: flex; align-items: center; gap: 2px; }
.nav-links a  { padding: 8px 13px; font-size: .88rem; font-weight: 500; color: var(--white); border-radius: 5px; transition: var(--trans); }
.nav-links a:hover { background: rgba(255,255,255,.1); color: var(--amber); }
.nav-links .nav-cta-inquiry a { background: var(--sage); color: var(--white); font-weight: 700; padding: 10px 18px; margin-left: 6px; }
.nav-links .nav-cta-inquiry a:hover { background: #6fa895; }
.nav-links .nav-cta a { background: var(--amber); color: var(--navy); font-weight: 700; padding: 10px 18px; margin-left: 6px; }
.nav-links .nav-cta a:hover { background: #e8b55a; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--display); font-size: 1.6rem; font-weight: 700; color: var(--white); }
.mobile-menu .mob-cta-inquiry { color: var(--sage) !important; }
.mobile-menu .mob-cta { color: var(--amber) !important; }
.mobile-close { position: absolute; top: 24px; right: 28px; font-size: 2rem; background: none; border: none; color: var(--white); }

/* ── HOMEPAGE ────────────────────────────────────────────── */
.home-hero {
  margin-top: 76px;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 48px 0 52px;
  background: var(--warm);
}
.home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.home-left  { /* left hero column — no special styles needed, inherits grid */ }
.home-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.home-eyebrow::after { content: ''; flex: 0 0 48px; height: 1px; background: var(--sage); }
.home-h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 700; font-style: normal !important;
  color: var(--navy); line-height: 1.08;
  margin-bottom: 14px; white-space: nowrap;
}
.home-tagline { font-family: var(--display); font-size: 1.1rem; color: var(--dteal); font-style: italic; margin-bottom: 16px; }
.home-body    { font-size: .97rem; color: var(--mist); line-height: 1.72; max-width: 480px; margin-bottom: 26px; }
.home-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.home-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; background: var(--white);
  box-shadow: 2px 2px 0 var(--shadow);
}
.home-stat { padding: 13px 14px; border-right: 1px solid var(--border); text-align: center; position: relative; }
.home-stat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.home-stat:nth-child(1)::before { background: var(--sage); }
.home-stat:nth-child(2)::before { background: var(--amber); }
.home-stat:nth-child(3)::before { background: var(--copper); }
.home-stat:nth-child(4)::before { background: var(--dteal); }
.home-stat:last-child { border-right: none; }
.stat-v { font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-l { font-size: .7rem; color: var(--mist); margin-top: 4px; line-height: 1.3; }

/* Right column */
.home-right { display: flex; flex-direction: column; gap: 16px; }
.home-logo  { display: block; width: 320px; max-width: 100%; height: auto; margin: 0 auto; background: transparent !important; }
/* Services nav block */
.hsb {
  background: var(--navy); border-radius: var(--r);
  padding: 22px 24px 20px; position: relative; overflow: hidden;
  max-width: 75%; margin-left: auto; margin-right: auto; margin-bottom: 28px;
}
.hsb::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--amber); }
.hsb::after  { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 4px; background: var(--sage); }
.hsb-label { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); margin-bottom: 8px; }
.hsb-head  { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.35; }
.hsb-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 12px; margin-bottom: 16px; }
.hsb-link  { display: flex; align-items: center; gap: 7px; font-size: .84rem; color: rgba(255,255,255,.72); text-decoration: none; transition: color .15s; }
.hsb-link::before { content: '→'; color: var(--amber); font-size: .78rem; flex-shrink: 0; }
.hsb-link:hover { color: var(--amber); }
.hsb-btn { display: inline-block; background: var(--amber); color: var(--navy); font-size: .85rem; font-weight: 700; padding: 9px 18px; border-radius: 5px; text-decoration: none; }
/* PE credential card */
.pe-card-home {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 22px;
  box-shadow: 2px 2px 0 var(--shadow); position: relative;
  max-width: 75%; margin-left: auto; margin-right: auto;
}
.pe-card-home::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--amber));
  border-radius: var(--r) var(--r) 0 0;
}
.pe-name-h  { font-family: var(--display); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.pe-cred-h  { font-size: .82rem; color: var(--sage); margin-bottom: 8px; }
.pe-rule-h  { border: none; border-top: 1px solid var(--border); margin: 8px 0; }
.pe-firm-h  { font-size: .78rem; color: var(--mist); }

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-top: 3px solid var(--amber);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.trust-item  { font-size: .82rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 7px; }
.trust-item::before { content: '✓'; color: var(--sage); }
.trust-div   { width: 1px; height: 20px; background: var(--border); }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.bio-section { margin-bottom: 28px; }
.bio-section h3 {
  font-family: var(--display); font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.bio-section p {
  font-size: .92rem; line-height: 1.72; color: var(--mist); margin-bottom: 10px;
}
.bio-section p:last-child { margin-bottom: 0; }
.bio-section p.dark { color: var(--navy); font-weight: 500; margin-bottom: 10px; }
.community-item {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px;
}
.c-dash { color: var(--sage); font-size: 1.1rem; font-weight: 700; }
.c-title { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.c-desc { font-size: .85rem; color: var(--mist); line-height: 1.5; }
.about-right { display: flex; flex-direction: column; gap: 20px; margin-top: 3px; }
.about-logo {
  background: transparent; padding: 20px; border-radius: var(--r);
  display: flex; justify-content: center; align-items: center;
}
.about-logo img { max-width: 100%; height: auto; background: transparent !important; }
.pe-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 22px; position: relative;
  box-shadow: 2px 2px 0 var(--shadow);
}
.pe-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--amber));
  border-radius: var(--r) var(--r) 0 0;
}
.pe-name { font-family: var(--display); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.pe-title { font-size: .82rem; color: var(--sage); margin-bottom: 8px; }
.pe-divider { border: none; border-top: 1px solid var(--border); margin: 8px 0; }
.pe-firm { font-size: .78rem; color: var(--mist); }
.value-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.val-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 16px;
  border-left: 3px solid var(--copper);
}
.val-card h4 {
  font-family: var(--body); font-size: .88rem; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.val-card p { font-size: .82rem; color: var(--mist); line-height: 1.5; margin: 0; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px;
}
.step { text-align: center; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sage); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 1.2rem; font-weight: 700;
  margin: 0 auto 12px;
}
.step h3 {
  font-family: var(--body); font-size: .95rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.step p { font-size: .84rem; color: var(--mist); line-height: 1.5; margin: 0; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px 20px;
  box-shadow: 2px 2px 0 var(--shadow);
}
.ci-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 4px;
}
.ci-value { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.ci-value a { color: var(--navy); text-decoration: none; }
.ci-value a:hover { color: var(--sage); }
.ci-sub { font-size: .82rem; color: var(--mist); margin-top: 2px; }

/* ── SERVICES PAGE ───────────────────────────────────────── */
.featured-service {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px 22px;
  position: relative;
  box-shadow: 3px 3px 0 var(--shadow);
  margin-bottom: 8px;
}
.featured-service::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--amber); border-radius: var(--r) var(--r) 0 0;
}
.featured-meta { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; margin-top: 18px; border-top: 1px solid var(--border); padding-top: 16px; }
.featured-tier .t-lbl { font-size: .78rem; font-weight: 700; color: var(--mist); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.featured-tier .t-price { font-family: var(--display); font-size: 1.2rem; font-weight: 700; color: var(--copper); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 20px; margin-bottom: 8px; }
.calcs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.svc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  padding: 22px 22px 20px 26px; position: relative;
  box-shadow: 2px 2px 0 var(--shadow);
}
.svc-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--copper); border-radius: var(--r) 0 0 var(--r); }
.svc-card.sage::before { background: var(--sage); }
.svc-title { font-family: var(--body); font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.svc-desc  { font-size: .88rem; color: var(--mist); line-height: 1.65; margin-bottom: 12px; }
.svc-price { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--copper); margin-bottom: 4px; }
.svc-note  { font-size: .76rem; color: var(--sage); }
.pending-badge {
  display: inline-block; background: var(--amber); color: var(--navy);
  font-size: .64rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 12px; margin-bottom: 8px;
}
.cat-header { display: flex; align-items: center; gap: 18px; margin: 44px 0 18px; }
.cat-h { font-family: var(--body); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); white-space: nowrap; margin: 0; }
.cat-line { flex: 1; height: 1px; background: var(--border); }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band { background: var(--dteal); padding: 44px 0; border-top: 4px solid var(--amber); }
.cta-band-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-band-title { font-family: var(--display); font-size: 1.6rem; font-weight: 700; font-style: italic; color: var(--white); margin-bottom: 6px; }
.cta-band-sub   { font-size: .9rem; color: rgba(255,255,255,.65); margin: 0; }
.cta-band-btns  { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--navy); padding-top: 0; border-top: 4px solid var(--copper); }
.footer-grid {
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  gap: 40px;
  padding: 52px 0 40px;
}
/* Logo — strip any default WordPress border/shadow */
.footer-brand img {
  height: 52px; width: auto;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
}
.footer-tagline-text {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--sage);
  margin: 12px 0 4px;
  line-height: 1.3;
}
.footer-url-text { font-size: .78rem; color: rgba(255,255,255,.3); margin: 0; }
.footer-col-head {
  font-size: .85rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-top: 0;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.4; }
.footer-links a { color: rgba(255,255,255,.42); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0 20px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom-inner a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-bottom-inner a:hover { color: var(--amber); }

/* ── COMCHECK PRICING ────────────────────────────────────── */
.price-tabs { display: flex; gap: 8px; margin-bottom: 4px; }
.price-tab  {
  padding: 11px 22px; border-radius: 6px; border: 2px solid var(--border);
  font-weight: 700; font-size: .9rem; cursor: pointer;
  background: var(--white); color: var(--navy); transition: var(--trans);
}
.price-tab.active { background: var(--navy); color: var(--amber); border-color: var(--navy); }
.price-panel { display: none; }
.price-panel.active { display: block; }
.order-step-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--sage); margin-bottom: 12px;
}
/* Tier buttons */
.tier-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 8px; }
.scope-tier-btn {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 16px 14px; background: var(--white);
  border: 2px solid var(--border); border-radius: var(--r);
  text-align: left; cursor: pointer; transition: var(--trans);
  box-shadow: 2px 2px 0 var(--shadow); position: relative;
}
.scope-tier-btn:hover { border-color: var(--sage); }
.scope-tier-btn.active { border-color: var(--sage); background: #ebf5f3; box-shadow: 2px 2px 0 rgba(95,147,133,.2); }
.scope-tier-btn.active::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--sage); border-radius: var(--r) var(--r) 0 0; }
.tier-name  { font-size: .88rem; font-weight: 700; color: var(--navy); }
.tier-desc  { font-size: .76rem; color: var(--mist); line-height: 1.4; }
.tier-range { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--copper); margin-top: 4px; }
.scope-tier-btn.active .tier-range { color: var(--sage); }
.tier-badge { display: inline-block; background: var(--amber); color: var(--navy); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 2px 8px; border-radius: 10px; margin-top: 4px; width: fit-content; }
/* Size buttons */
.size-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; }
.size-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px 10px; background: var(--white); border: 2px solid var(--border);
  border-radius: var(--r); cursor: pointer; transition: var(--trans); text-align: center;
  box-shadow: 2px 2px 0 var(--shadow);
}
.size-btn:hover { border-color: var(--sage); }
.size-btn.active { background: var(--navy); border-color: var(--navy); box-shadow: 2px 2px 0 rgba(21,29,45,.3); }
.s-range { font-size: .78rem; color: var(--mist); line-height: 1.3; }
.s-price { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--copper); }
.s-badge { font-size: .6rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--amber); color: var(--navy); padding: 1px 6px; border-radius: 8px; }
.size-btn.active .s-range { color: rgba(255,255,255,.65); }
.size-btn.active .s-price { color: var(--amber); }
.size-btn.active .s-badge { background: rgba(255,255,255,.2); color: var(--white); }
/* Residential buttons */
.res-btn {
  display: flex; flex-direction: column; gap: 4px; padding: 18px 16px;
  background: var(--white); border: 2px solid var(--border); border-radius: var(--r);
  cursor: pointer; transition: var(--trans); text-align: left; box-shadow: 2px 2px 0 var(--shadow);
  position: relative;
}
.res-btn:hover { border-color: var(--sage); }
.res-btn.active { border-color: var(--sage); background: #ebf5f3; box-shadow: 2px 2px 0 rgba(95,147,133,.2); }
.res-btn.active::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--sage); border-radius: var(--r) var(--r) 0 0; }
.r-price { font-family: var(--display); font-size: 1.4rem; font-weight: 700; color: var(--copper); }
.res-btn.active .r-price { color: var(--sage); }
/* Add-on buttons */
.addon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.addon-btn {
  display: flex; flex-direction: column; gap: 3px; padding: 14px 14px 12px;
  background: var(--white); border: 2px solid var(--border); border-radius: var(--r);
  cursor: pointer; transition: var(--trans); text-align: left; box-shadow: 2px 2px 0 var(--shadow);
}
.addon-btn:hover { border-color: var(--amber); }
.addon-btn.active { border-color: var(--amber); background: #fdf7ec; box-shadow: 2px 2px 0 rgba(218,162,80,.2); }
.addon-name { font-size: .88rem; font-weight: 700; color: var(--navy); }
.addon-sub  { font-size: .75rem; color: var(--mist); line-height: 1.35; }
.addon-price-tag { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--copper); margin-top: 4px; }
.addon-btn.active .addon-price-tag { color: var(--amber); }
/* Estimator */
.estimator {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--navy); border-radius: var(--r); padding: 18px 24px;
  margin-top: 4px;
}
.est-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.est-total { font-family: var(--display); font-size: 2.4rem; font-weight: 700; color: var(--amber); line-height: 1; }
.est-detail { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 4px; }
/* Order form */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 32px; box-shadow: 3px 3px 0 var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid.single { grid-template-columns: 1fr; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-size: .78rem; font-weight: 700; color: var(--navy); letter-spacing: .03em; }
.fg input, .fg select, .fg textarea {
  padding: 9px 12px; border: 1.5px solid var(--border); border-radius: 5px;
  font-family: var(--body); font-size: .92rem; color: var(--navy);
  background: var(--warm); transition: border-color .15s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--sage); }
.fg textarea { resize: vertical; min-height: 80px; }
.success-msg { display: none; padding: 12px 16px; border-radius: 5px; font-size: .88rem; margin-top: 12px; border: 1px solid transparent; }
.success-msg.show { display: block; background: #f0f8f6; color: var(--dteal); border-color: rgba(95,147,133,.3); }
.form-section-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--sage); margin: 20px 0 12px; }

/* ── BLOG STYLES ─────────────────────────────────────────── */
.blog-archive { margin-top: 76px; background: var(--warm); min-height: 80vh; padding-bottom: 72px; }
.blog-archive-header {
  background: var(--navy); padding: 52px 0 44px; position: relative;
}
.blog-archive-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--sage) 0%, var(--amber) 100%);
}
.blog-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
.blog-archive-title { font-family: var(--display); font-size: 2.4rem; font-weight: 700; font-style: normal !important; color: var(--white); margin-bottom: 10px; }
.blog-archive-sub { font-size: .92rem; color: rgba(255,255,255,.55); max-width: 560px; line-height: 1.65; }
/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(21,29,45,.07); border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(21,29,45,.12); }
.blog-card-img-link { display: block; }
.blog-card-img { width: 100%; height: 220px; object-fit: cover; border-bottom: 3px solid var(--amber); display: block; }
.blog-card-img-placeholder {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--dteal) 100%);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 3px solid var(--amber);
}
.blog-card-img-placeholder span { font-family: var(--display); font-size: 1.4rem; font-weight: 700; color: rgba(255,255,255,.18); text-align: center; padding: 0 20px; }
.blog-card-body { padding: 22px 22px 18px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-card-cat  { font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--sage); background: rgba(95,147,133,.1); padding: 3px 10px; border-radius: 12px; }
.blog-card-date { font-size: .78rem; color: var(--mist); }
.blog-card-title {
  font-family: var(--display); font-size: 1.18rem; font-weight: 700;
  font-style: normal !important; color: var(--navy); line-height: 1.3;
  margin-bottom: 10px; text-decoration: none; display: block; transition: color .15s;
}
.blog-card-title:hover { color: var(--sage); }
.blog-card-excerpt {
  font-size: .88rem; color: var(--mist); line-height: 1.65; flex: 1; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.blog-card-read { font-size: .82rem; font-weight: 700; color: var(--sage); text-decoration: none; display: flex; align-items: center; gap: 4px; transition: gap .15s, color .15s; }
.blog-card-read:hover { color: var(--dteal); gap: 7px; }
.blog-card-read-time { font-size: .78rem; color: var(--mist); }
/* Blog promo */
.blog-promo {
  background: var(--navy); border-radius: 10px; padding: 28px 36px;
  margin-top: 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.blog-promo-text { font-family: var(--display); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.blog-promo-sub  { font-size: .88rem; color: rgba(255,255,255,.5); }
.blog-empty { text-align: center; padding: 80px 20px; }
.blog-empty-title { font-family: var(--display); font-size: 1.6rem; color: var(--navy); margin-bottom: 12px; }
/* Blog pagination */
.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 12px; border-radius: 6px;
  font-size: .88rem; font-weight: 600; color: var(--navy);
  background: var(--white); border: 1px solid var(--border); text-decoration: none; transition: var(--trans);
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current { background: var(--navy); color: var(--amber); border-color: var(--navy); }

/* ── BLOG SINGLE POST ─────────────────────────────────────── */
.kiddio-post-content { font-family: var(--body); }
.kiddio-post-content p      { font-size: 1rem; color: var(--mist); line-height: 1.78; margin-bottom: 18px; }
.kiddio-post-content h2     { font-family: var(--display); font-size: 1.5rem; font-weight: 700; font-style: normal !important; color: var(--navy); margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
.kiddio-post-content h3     { font-size: .82rem; font-weight: 700; color: var(--sage); margin: 22px 0 8px; text-transform: uppercase; letter-spacing: .07em; font-style: normal !important; }
.kiddio-post-content ul, .kiddio-post-content ol { padding-left: 24px; margin-bottom: 18px; }
.kiddio-post-content li     { font-size: .97rem; color: var(--mist); line-height: 1.7; margin-bottom: 6px; }
.kiddio-post-content strong { color: var(--navy); font-weight: 700; }
.kiddio-post-content a      { color: var(--sage); text-decoration: underline; }
.kiddio-post-content blockquote {
  border-left: 4px solid var(--sage); background: #f0f8f6;
  padding: 14px 18px; margin: 20px 0; border-radius: 0 6px 6px 0; color: var(--navy);
}
.kiddio-post-content img    { width: 100%; border-radius: var(--r); margin: 20px 0; }
.kiddio-post-content figcaption { font-size: .8rem; color: var(--mist); text-align: center; margin-top: -12px; margin-bottom: 16px; }

/* ── ORDER CONFIRMATION ──────────────────────────────────── */
@media print {
  #kiddio-nav, .cta-band, footer, .trust-strip { display: none !important; }
  body { background: white !important; }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .container    { padding: 0 48px; }
  .nav-inner    { padding: 0 48px; }
  .footer-grid  { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .home-grid    { gap: 40px; }
}
@media (max-width: 960px) {
  .home-grid    { grid-template-columns: 1fr; gap: 36px; }
  .home-h1      { white-space: normal; }
  .home-logo    { max-width: 200px; }
  .home-stats   { grid-template-columns: repeat(2, 1fr); }
  .home-stat:nth-child(2) { border-right: none; }
  .home-stat:nth-child(3) { border-top: 1px solid var(--border); }
  .home-stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .about-grid   { grid-template-columns: 1fr; gap: 32px; }
  .about-right  { margin-top: 0; }
  .blog-grid    { grid-template-columns: repeat(2, 1fr); }
  .tier-grid    { grid-template-columns: 1fr; }
  .size-grid    { grid-template-columns: repeat(2, 1fr); }
  .addon-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .container    { padding: 0 24px; }
  .nav-inner    { padding: 0 24px; }
  .nav-links    { display: none; }
  .hamburger    { display: flex; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .blog-grid    { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; }
  .hsb-grid     { grid-template-columns: 1fr; }
  .home-actions { flex-direction: column; }
  .trust-div    { display: none; }
  .trust-inner  { justify-content: flex-start; gap: 14px; }
  .form-grid    { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
}
