

  /* ── RESET & VARIABLES ─────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy:        #0f1e35;
    --navy-mid:    #1a2f4a;
    --amber:       #c8922a;
    --amber-light: #e0a83a;
    --cream:       #f8f5ef;
    --white:       #ffffff;
    --text:        #1c2b3a;
    --text-muted:  #6b7f94;
    --border:      #dde4ed;
    --green:       #1a6b35;
    --serif:       'Playfair Display', Georgia, serif;
    --sans:        'DM Sans', system-ui, sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); background: var(--cream); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── ACCESSIBILITY ─────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--amber);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  z-index: 1000;
}
.skip-link:focus { left: 16px; }


  /* ── TOPBAR ─────────────────────────────────────────────── */
  .topbar { background: var(--navy); color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 500; letter-spacing: 0.04em; padding: 8px 40px; display: flex; justify-content: space-between; }
  .topbar a { color: var(--amber-light); text-decoration: none; }

  /* ── HEADER / NAV ───────────────────────────────────────── */
  header.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 12px rgba(15,30,53,0.06); }
  .header-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
  .logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
  .logo-main { font-family: var(--serif); font-size: 20px; color: var(--navy); font-weight: 700; }
  .logo-sub { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-top: 2px; }
  header.site-header nav { display: flex; gap: 32px; align-items: center; }
  nav { display: block; }
  nav a { font-size: 13.5px; font-weight: 500; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  header.site-header nav a { display: inline-flex; align-items: center; }
  nav a:hover, nav a.active { color: var(--navy); }
  .nav-cta { background: var(--amber); color: var(--white) !important; padding: 9px 20px; border-radius: 6px; font-weight: 600 !important; }
  .nav-cta:hover { background: var(--amber-light) !important; }

  /* ── HAMBURGER MENU ─────────────────────────────────────── */
  .nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: 12px; }
  .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.25s ease; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  /* Mobile drawer */
  .mobile-nav-drawer { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 200; }
  .mobile-nav-drawer.open { display: block; }
  .mobile-nav-overlay { position: absolute; inset: 0; background: rgba(15,30,53,0.5); }
  .mobile-nav-panel { position: absolute; top: 0; right: 0; width: min(300px, 85vw); height: 100%; background: var(--white); box-shadow: -4px 0 24px rgba(15,30,53,0.15); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.3s ease; }
  .mobile-nav-drawer.open .mobile-nav-panel { transform: translateX(0); }
  .mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
  .mobile-nav-logo { font-family: var(--serif); font-size: 18px; color: var(--navy); font-weight: 700; text-decoration: none; }
  .mobile-nav-close { background: none; border: none; font-size: 24px; color: var(--text-muted); cursor: pointer; line-height: 1; padding: 4px; }
  .mobile-nav-links { flex: 1; overflow-y: auto; padding: 12px 0; display: block !important; }
  .mobile-nav-links a { display: flex !important; width: 100%; align-items: center; justify-content: space-between; padding: 14px 20px; font-size: 15px; font-weight: 500; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border); transition: background 0.15s; gap: 0; }
  .mobile-nav-links a:hover { background: var(--cream); color: var(--navy); }
  .mobile-nav-links a.active { color: var(--amber); font-weight: 600; }
  .mobile-nav-links a::after { content: '›'; color: var(--text-muted); font-size: 18px; }
  .mobile-nav-footer { padding: 20px; border-top: 1px solid var(--border); }
  .mobile-nav-cta { display: block; background: var(--amber); color: var(--white); text-decoration: none; text-align: center; padding: 13px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: background 0.2s; }
  .mobile-nav-cta:hover { background: var(--amber-light); }

  /* ── PAGE HERO ───────────────────────────────────────────── */
  .page-hero { background: var(--navy); padding: 48px 40px; position: relative; overflow: hidden; }
  .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 100% at 90% 50%, rgba(200,146,42,0.1) 0%, transparent 70%); }
  .page-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 40px 40px; }
  .page-hero-inner { max-width: 1160px; margin: 0 auto; position: relative; z-index: 2; }
  .breadcrumb { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
  .breadcrumb a { color: var(--amber-light); text-decoration: none; }
  .breadcrumb span { margin: 0 6px; }
  .page-hero h1 { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 42px); color: var(--white); line-height: 1.2; margin-bottom: 12px; }
  .page-hero-desc { color: rgba(255,255,255,0.6); font-size: 15px; max-width: 600px; line-height: 1.65; }

  /* ── QUICK INFO STRIP ────────────────────────────────────── */
  .info-strip { background: var(--white); border-bottom: 1px solid var(--border); overflow: hidden; }
  .info-strip-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; display: flex; flex-wrap: wrap; }
  .info-item { display: flex; align-items: center; gap: 10px; font-size: 13px; padding: 16px 0; padding-right: 32px; margin-right: 32px; border-right: 1px solid var(--border); }
  .info-item:last-child { border-right: none; margin-right: 0; }
  .info-icon { font-size: 16px; }
  .info-label { font-weight: 600; color: var(--navy); }
  .info-value { color: var(--text-muted); }

  /* ── LAYOUT ──────────────────────────────────────────────── */
  .page-body { max-width: 1160px; margin: 0 auto; padding: 48px 40px; display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
  .main-content { min-width: 0; }

  /* ── CONTENT TYPOGRAPHY ──────────────────────────────────── */
  .section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
  .content-title { font-family: var(--serif); font-size: 26px; color: var(--navy); margin-bottom: 14px; }
  .content-body { font-size: 15px; color: var(--text); line-height: 1.75; }
  .content-body p { margin-bottom: 14px; }
  .content-body strong { color: var(--navy); font-weight: 600; }

  /* ── WARNING / INFO BOXES ───────────────────────────────── */
  .warning-box { background: #fff8ec; border: 1px solid #f0d89a; border-left: 4px solid var(--amber); border-radius: 8px; padding: 16px 20px; margin: 20px 0; font-size: 13.5px; color: var(--text); line-height: 1.6; }
  .warning-box strong { color: var(--navy); }
  .info-box { background: #f0f6ff; border: 1px solid #c2d8f5; border-left: 4px solid #3a7bd5; border-radius: 8px; padding: 16px 20px; margin: 20px 0; font-size: 13.5px; color: var(--text); line-height: 1.6; }

  /* ── FACILITY CARDS ──────────────────────────────────────── */
  .facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
  .facility-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 22px; }
  .facility-card.featured { border-color: var(--amber); background: #fffcf5; }
  .facility-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(200,146,42,0.12); color: var(--amber); font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; margin-bottom: 10px; }
  .facility-name { font-family: var(--serif); font-size: 17px; color: var(--navy); margin-bottom: 12px; font-weight: 700; }
  .facility-detail { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; display: flex; gap: 8px; }
  .facility-detail strong { color: var(--text); font-weight: 600; min-width: 90px; flex-shrink: 0; }
  .facility-phone { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: var(--white); font-size: 14px; font-weight: 600; padding: 11px 18px; border-radius: 8px; text-decoration: none; margin-top: 14px; transition: background 0.2s; letter-spacing: 0.01em; }
  .facility-phone:hover { background: var(--amber); }

  /* ── RULES SECTION ───────────────────────────────────────── */
  .rules-section { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; margin: 28px 0; }
  .rules-title, h2.rules-title { font-family: var(--serif); font-size: 20px; color: var(--navy); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
  .rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .rules-group h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
  .rules-list { list-style: none; }
  .rules-list li { font-size: 13.5px; color: var(--text); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
  .rules-list li:last-child { border-bottom: none; }
  .rules-list li::before { content: '•'; color: var(--amber); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .rules-list.allowed li::before { content: '✓'; color: var(--green); }
  .rules-list.not-allowed li::before { content: '✗'; color: #cc3333; }

  /* ── COMPARISON TABLE ────────────────────────────────────── */
  .comparison-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
  .comparison-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
  .comparison-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top; }
  .comparison-table tr:last-child td { border-bottom: none; }
  .comparison-table tr:nth-child(even) td { background: #fafbfc; }
  .tag-yes { display: inline-block; background: rgba(26,107,53,0.1); color: var(--green); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
  .tag-no { display: inline-block; background: rgba(204,51,51,0.1); color: #cc3333; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; }

  /* ── STEP CARDS ──────────────────────────────────────────── */
  .steps-section { margin: 28px 0; }
  .step-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; margin-bottom: 12px; display: flex; gap: 18px; align-items: flex-start; }
  .step-num { width: 34px; height: 34px; flex-shrink: 0; background: var(--navy); color: var(--white); border-radius: 50%; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; font-family: var(--serif); }
  .step-card-title, h3.step-card-title { font-family: var(--serif); font-size: 16px; color: var(--navy); margin-bottom: 5px; font-weight: 700; }
  .step-card-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
  .step-tip { display: inline-flex; align-items: center; gap: 6px; background: #fff8ec; border: 1px solid #f0d89a; color: #8a6010; font-size: 12px; font-weight: 500; padding: 5px 10px; border-radius: 6px; margin-top: 8px; }

  /* ── FAQ ─────────────────────────────────────────────────── */
  .faq-section { margin: 28px 0; }
  .faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 18px 22px; margin-bottom: 10px; }
  .faq-q, h3.faq-q { font-family: var(--serif); font-size: 15px; color: var(--navy); margin-bottom: 7px; font-weight: 600; }
  .faq-a { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
  .faq-a a { color: var(--amber); text-decoration: none; font-weight: 500; }

  /* ── AD BLOCKS (in-content) ──────────────────────────────── */
  .ad-block { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; margin: 28px 0; position: relative; }
  .ad-label { position: absolute; top: -10px; left: 16px; background: var(--cream); border: 1px solid var(--border); color: var(--text-muted); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 8px; border-radius: 4px; }
  .ad-block-title { font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; }
  .ad-unit { display: flex; align-items: center; gap: 14px; padding: 13px; background: var(--cream); border-radius: 8px; text-decoration: none; margin-bottom: 8px; border: 1px solid transparent; transition: border-color 0.2s, box-shadow 0.2s; }
  .ad-unit:last-child { margin-bottom: 0; }
  .ad-unit:hover { border-color: var(--amber); box-shadow: 0 2px 12px rgba(200,146,42,0.1); }
  .ad-unit-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--white); border-radius: 8px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; }
  .ad-unit-name { font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
  .ad-unit-desc { font-size: 12px; color: var(--text-muted); }
  .ad-unit-cta { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--amber); white-space: nowrap; }

  /* ── CTA BOX ─────────────────────────────────────────────── */
  .cta-box { background: var(--navy); border-radius: 12px; padding: 28px; margin: 28px 0; text-align: center; position: relative; overflow: hidden; }
  .cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(200,146,42,0.15) 0%, transparent 60%); }
  .cta-box-title { font-family: var(--serif); font-size: 20px; color: var(--white); margin-bottom: 7px; position: relative; }
  .cta-box-desc { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-bottom: 18px; position: relative; }
  .btn-primary { background: var(--amber); color: var(--white); font-family: var(--sans); font-size: 14px; font-weight: 600; padding: 12px 24px; border-radius: 8px; border: none; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s; position: relative; }
  .btn-primary:hover { background: var(--amber-light); }

  /* ── SIDEBAR ─────────────────────────────────────────────── */
  .sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
  .sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
  .sidebar-card-title { font-family: var(--serif); font-size: 16px; color: var(--navy); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
  .quick-links { list-style: none; }
  .quick-links li { border-bottom: 1px solid var(--border); }
  .quick-links li:last-child { border-bottom: none; }
  .quick-links li a { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; font-size: 13.5px; color: var(--text); text-decoration: none; font-weight: 500; transition: color 0.2s; }
  .quick-links li a:hover { color: var(--amber); }
  .quick-links li a span { color: var(--text-muted); font-size: 12px; }
  .sidebar-ad { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
  .sidebar-ad-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; display: block; }
  .sidebar-ad-unit { background: var(--cream); border: 1px solid var(--border); border-radius: 8px; padding: 13px; text-decoration: none; display: block; margin-bottom: 9px; transition: border-color 0.2s; }
  .sidebar-ad-unit:last-child { margin-bottom: 0; }
  .sidebar-ad-unit:hover { border-color: var(--amber); }
  .sidebar-ad-unit-name { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
  .sidebar-ad-unit-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 7px; }
  .sidebar-ad-unit-cta { font-size: 12px; font-weight: 600; color: var(--amber); }
  .help-box { background: #fff8ec; border: 1px solid #f0d89a; border-radius: 12px; padding: 18px; text-align: center; }
  .help-box-icon { font-size: 26px; margin-bottom: 9px; }
  .help-box-title { font-family: var(--serif); font-size: 15px; color: var(--navy); margin-bottom: 6px; }
  .help-box-desc { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.55; }
  .help-phone-row { margin-bottom: 10px; }
  .help-box-facility { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
  .help-box-phone { font-size: 16px; font-weight: 700; color: var(--navy); display: block; text-decoration: none; }
  .help-box-note { font-size: 11px; color: var(--text-muted); }

  /* ── FOOTER ──────────────────────────────────────────────── */
  footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 48px 40px 28px; margin-top: 40px; }
  .footer-inner { max-width: 1160px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
  .footer-logo { font-family: var(--serif); font-size: 20px; color: var(--white); margin-bottom: 10px; }
  .footer-tagline { font-size: 13px; line-height: 1.65; max-width: 260px; margin-bottom: 16px; }
  .footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 7px; }
  .footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--white); }
  .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; }
  .footer-bottom { display: flex; justify-content: space-between; font-size: 12px; }
  .disclaimer { background: rgba(200,146,42,0.1); border: 1px solid rgba(200,146,42,0.2); border-radius: 8px; padding: 12px 16px; font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 28px; }

  /* ── MOBILE STICKY BAR ───────────────────────────────────── */
  .mobile-call-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); border-top: 2px solid var(--amber); padding: 10px 16px; z-index: 200; gap: 8px; box-shadow: 0 -4px 24px rgba(15,30,53,0.3); }
  .mobile-call-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--amber); color: var(--white); text-decoration: none; border-radius: 8px; font-size: 13px; font-weight: 600; padding: 11px 10px; min-height: 48px; font-family: var(--sans); transition: background 0.2s; }
  .mobile-call-btn:hover { background: var(--amber-light); }
  .mobile-call-btn.secondary { background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.15); }
  .mobile-call-btn.secondary:hover { background: rgba(255,255,255,0.1); }
  .btn-label { display: flex; flex-direction: column; line-height: 1.2; }
  .btn-facility { font-size: 10px; font-weight: 500; opacity: 0.8; letter-spacing: 0.04em; text-transform: uppercase; }
  .btn-number { font-size: 14px; font-weight: 700; }

  /* ── RESPONSIVE: TABLET (≤ 900px) ───────────────────────── */
  @media (max-width: 900px) {
    .page-body { grid-template-columns: 1fr; }
    .sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }
    .help-box { grid-column: 1 / -1; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }

  /* ── RESPONSIVE: MOBILE (≤ 640px) ───────────────────────── */
  @media (max-width: 640px) {
    /* Topbar */
    .topbar { padding: 7px 16px; font-size: 11px; flex-direction: column; gap: 2px; text-align: center; }

    /* Header */
    .header-inner { padding: 0 16px; height: 60px; }
    .logo-main { font-size: 17px; }
    .logo-sub { font-size: 9px; }
    nav a:not(.nav-hamburger):not(.mobile-nav-links a):not(.mobile-nav-logo):not(.mobile-nav-cta) { display: none; }
    .nav-hamburger { display: flex; }

    /* Hero */
    .page-hero { padding: 28px 16px 32px; }
    .page-hero h1 { font-size: 22px; line-height: 1.25; }
    .page-hero-desc { font-size: 14px; }
    .breadcrumb { font-size: 11px; }

    /* Info strip */
    .info-strip-inner { padding: 0; display: grid; grid-template-columns: 1fr 1fr; }
    .info-item { width: auto; padding: 12px 14px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); font-size: 12px; flex-direction: column; align-items: flex-start; gap: 3px; }
    .info-item:nth-child(even) { border-right: none; }
    .info-item:nth-last-child(-n+2) { border-bottom: none; }
    .info-item:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: none; }

    /* Page body */
    .page-body { padding: 24px 16px 100px; }

    /* Section labels + titles */
    .section-label { font-size: 10px; }
    .content-title { font-size: 20px; }

    /* Facility cards */
    .facility-grid { grid-template-columns: 1fr; gap: 12px; }
    .facility-card { padding: 18px; }
    .facility-name { font-size: 16px; }
    .facility-phone { width: 100%; justify-content: center; font-size: 15px; padding: 13px; min-height: 48px; }

    /* Step cards */
    .step-card { padding: 16px; gap: 12px; }
    .step-num { width: 30px; height: 30px; font-size: 12px; flex-shrink: 0; }
    .step-card-title, h3.step-card-title { font-size: 14px; }
    .step-card-desc { font-size: 13px; }
    .step-tip { font-size: 11.5px; }

    /* Rules */
    .rules-grid { grid-template-columns: 1fr; }
    .rules-section { padding: 20px 16px; }
    .rules-title, h2.rules-title { font-size: 17px; }

    /* Comparison table */
    .comparison-table { font-size: 12px; }
    .comparison-table th, .comparison-table td { padding: 9px 10px; }

    /* FAQ */
    .faq-q, h3.faq-q { font-size: 14px; }

    /* Ad blocks */
    .ad-unit { flex-wrap: wrap; }
    .ad-unit-cta { margin-left: 0; }

    /* CTA box */
    .cta-box { padding: 24px 16px; border-radius: 10px; }
    .cta-box-title { font-size: 18px; }
    .cta-box-desc { font-size: 13px; }
    .btn-primary { font-size: 13px; padding: 12px 18px; width: 100%; justify-content: center; }

    /* Sidebar */
    .sidebar { grid-template-columns: 1fr; margin-top: 24px; padding-top: 24px; }
    .sidebar-card { padding: 16px; }
    .sidebar-card-title { font-size: 14px; margin-bottom: 10px; padding-bottom: 10px; }
    .quick-links li a { font-size: 13px; padding: 10px 0; min-height: 44px; }
    .help-box-phone { font-size: 18px; }
    .sidebar-ad { padding: 14px; }

    /* Footer */
    footer { padding: 32px 16px 20px; }
    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .footer-tagline { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
    .disclaimer { font-size: 11px; }

    /* Show mobile call bar */
    .mobile-call-bar { display: flex; }
  }

  /* ── VERY SMALL (≤ 380px) ───────────────────────────────── */
  @media (max-width: 380px) {
    .page-hero h1 { font-size: 20px; }
    .btn-number { font-size: 13px; }
    .facility-phone { font-size: 14px; }
  }


/* ── STANDARD PAGE (single-column content with sidebar) ─── */
.page-body--single {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.page-body--single .main-content .content-body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
}
.page-body--single .main-content .content-body h2 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--navy);
  margin: 28px 0 14px;
}
.page-body--single .main-content .content-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  margin: 22px 0 10px;
}
.page-body--single .main-content .content-body p { margin-bottom: 14px; }
.page-body--single .main-content .content-body ul,
.page-body--single .main-content .content-body ol { margin: 0 0 14px 20px; }
.page-body--single .main-content .content-body li { margin-bottom: 6px; font-size: 15px; }
.page-body--single .main-content .content-body a { color: var(--amber); font-weight: 500; }
.page-body--single .main-content .content-body strong { color: var(--navy); font-weight: 600; }
.page-body--single .main-content .content-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0; }
.page-body--single .main-content .content-body table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.page-body--single .main-content .content-body th { background: var(--navy); color: var(--white); padding: 10px 14px; text-align: left; }
.page-body--single .main-content .content-body td { padding: 10px 14px; border-bottom: 1px solid var(--border); }

@media (max-width: 900px) {
  .page-body--single {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 32px 24px;
  }
}
@media (max-width: 640px) {
  .page-body--single { padding: 24px 16px 100px; }
}


  /* ══════════════════════════════════════════════════════════
     FACILITY LIST & CARDS (page-orange-county-jails)
     ══════════════════════════════════════════════════════════ */
  .facility-list { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }

  .facility-card-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    padding: 18px 22px; border-radius: 10px 10px 0 0;
    background: var(--navy); color: var(--white);
  }
  .facility-card-header.irc       { background: linear-gradient(135deg, #c8922a 0%, #a8721a 100%); }
  .facility-card-header.central   { background: linear-gradient(135deg, #1a2f4a 0%, #0f1e35 100%); }
  .facility-card-header.theolacy { background: linear-gradient(135deg, #243855 0%, #0f1e35 100%); }
  .facility-card-header.musick    { background: linear-gradient(135deg, #1a4a2f 0%, #0f3520 100%); }

  .facility-card-header .facility-name { color: var(--white) !important; font-family: var(--serif); font-size: 17px; font-weight: 700; margin-bottom: 0; }
  .facility-tag { font-size: 11.5px; color: rgba(255,255,255,0.65); margin-top: 4px; }
  .facility-capacity-badge {
    background: rgba(255,255,255,0.15); color: var(--white);
    font-size: 11px; font-weight: 600; padding: 4px 10px;
    border-radius: 20px; white-space: nowrap; margin-left: 12px; flex-shrink: 0;
  }

  .facility-body { padding: 18px 22px; }
  .facility-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin: 14px 0; border-top: 1px solid var(--border); padding-top: 12px; }

  .facility-phone-secondary {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--cream); color: var(--navy); border: 1px solid var(--border);
    font-size: 13px; font-weight: 600; padding: 8px 14px;
    border-radius: 8px; text-decoration: none; margin-top: 8px; margin-left: 8px;
    transition: border-color 0.2s;
  }
  .facility-phone-secondary:hover { border-color: var(--amber); color: var(--amber); }

  /* ── CITY JAIL CARDS ─────────────────────────────────────── */
  .city-jail-groups { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
  .city-jail-card {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; padding: 16px 20px;
  }
  .city-jail-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
  .city-jail-badge {
    display: inline-block; background: rgba(200,146,42,0.1); color: var(--amber);
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 4px; margin-bottom: 4px;
  }
  .city-jail-name { font-family: var(--serif); font-size: 15px; color: var(--navy); font-weight: 700; margin-bottom: 6px; }
  .city-jail-details { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }
  .city-jail-details strong { color: var(--text); }
  .city-jail-details a { color: var(--amber); font-weight: 500; }


  /* ══════════════════════════════════════════════════════════
     PHONE CARDS (page-jails-telephone-visiting-times)
     ══════════════════════════════════════════════════════════ */
  .phone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
  .phone-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 20px;
  }
  .phone-card.featured { border-color: var(--amber); background: #fffcf5; }
  .phone-card-facility {
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--amber); margin-bottom: 4px;
  }
  .phone-card-name {
    font-family: var(--serif); font-size: 16px; color: var(--navy);
    font-weight: 700; margin-bottom: 14px; padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }
  .phone-line {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 0; border-bottom: 1px solid var(--border); gap: 8px;
  }
  .phone-line:last-of-type { border-bottom: none; }
  .phone-line-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
  .phone-line-number {
    font-size: 14px; font-weight: 700; color: var(--navy);
    text-decoration: none; white-space: nowrap;
  }
  .phone-line-number:hover { color: var(--amber); }
  .phone-note {
    font-size: 12px; color: var(--text-muted); line-height: 1.5;
    margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border);
  }

  /* ── VISIT CARDS ─────────────────────────────────────────── */
  .visit-cards { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }
  .visit-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
  .visit-card.featured { border-color: var(--amber); }

  .visit-card-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    padding: 16px 20px; background: var(--navy); color: var(--white);
  }
  .visit-card-header.theo    { background: linear-gradient(135deg, #243855 0%, #0f1e35 100%); }
  .visit-card-header.central { background: linear-gradient(135deg, #1a2f4a 0%, #0f1e35 100%); }
  .visit-card-header.musick  { background: linear-gradient(135deg, #1a4a2f 0%, #0f3520 100%); }
  .visit-card-header.irc     { background: linear-gradient(135deg, #c8922a 0%, #a8721a 100%); }

  .visit-card-name { font-family: var(--serif); font-size: 16px; color: var(--white); font-weight: 700; }
  .visit-card-sub { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 3px; }
  .visit-hours-badge {
    background: rgba(255,255,255,0.15); color: var(--white);
    font-size: 11px; font-weight: 700; padding: 4px 10px;
    border-radius: 20px; white-space: nowrap; flex-shrink: 0; margin-left: 12px;
  }

  .visit-body { padding: 16px 20px; }
  .visit-detail {
    display: flex; gap: 10px; font-size: 13.5px; padding: 7px 0;
    border-bottom: 1px solid var(--border); color: var(--text);
  }
  .visit-detail:last-of-type { border-bottom: none; }
  .visit-detail strong { color: var(--navy); font-weight: 600; min-width: 130px; flex-shrink: 0; }
  .visit-note {
    background: #fff8ec; border: 1px solid #f0d89a;
    border-radius: 6px; padding: 10px 14px;
    font-size: 12.5px; color: var(--text); line-height: 1.6; margin: 10px 0;
  }
  .visit-call-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy); color: var(--white);
    font-size: 14px; font-weight: 600; padding: 10px 16px;
    border-radius: 8px; text-decoration: none; margin: 10px 0;
    transition: background 0.2s;
  }
  .visit-call-btn:hover { background: var(--amber); }

  /* ── RELEASE TIME GRID ───────────────────────────────────── */
  .release-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
  .release-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 18px 20px;
  }
  .release-facility {
    font-size: 11px; font-weight: 700; letter-spacing: 0.09em;
    text-transform: uppercase; color: var(--amber); margin-bottom: 6px;
  }
  .release-time {
    font-family: var(--serif); font-size: 26px; color: var(--navy);
    font-weight: 700; margin-bottom: 8px; line-height: 1.1;
  }
  .release-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

  /* ── MAIL SECTION ────────────────────────────────────────── */
  .mail-section {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 22px; margin: 20px 0;
  }
  .mail-address-block {
    background: var(--cream); border: 1px solid var(--border);
    border-radius: 8px; padding: 14px 18px; margin: 12px 0 16px;
    font-family: 'Courier New', Courier, monospace; font-size: 14px;
    color: var(--navy); line-height: 1.8;
  }


  /* ══════════════════════════════════════════════════════════
     RESPONSIVE ADDITIONS
     ══════════════════════════════════════════════════════════ */
  @media (max-width: 900px) {
    .phone-grid { grid-template-columns: 1fr; }
    .release-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .facility-card-header { flex-direction: column; gap: 8px; }
    .facility-capacity-badge { margin-left: 0; }
    .city-jail-card { flex-direction: column; gap: 10px; }
    .phone-grid { grid-template-columns: 1fr; }
    .release-grid { grid-template-columns: 1fr; }
    .visit-card-header { flex-direction: column; gap: 8px; }
    .visit-hours-badge { margin-left: 0; }
    .visit-detail { flex-direction: column; gap: 2px; }
    .visit-detail strong { min-width: unset; }
  }


  /* ══════════════════════════════════════════════════════════
     COURT LOCATOR (page-court-locator)
     ══════════════════════════════════════════════════════════ */

  /* Court cards grid */
  .court-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin: 20px 0;
  }
  .court-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 20px; display: flex; flex-direction: column; gap: 0;
  }
  .court-card.featured { border-color: var(--amber); background: #fffcf5; }

  .court-badge {
    display: inline-block; font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    background: rgba(200,146,42,0.12); color: var(--amber);
    padding: 3px 9px; border-radius: 4px; margin-bottom: 8px;
  }
  .court-badge.blue  { background: rgba(58,123,213,0.1); color: #2563a8; }
  .court-badge.green { background: rgba(26,107,53,0.1); color: var(--green); }

  .court-name {
    font-family: var(--serif); font-size: 17px; color: var(--navy);
    font-weight: 700; margin-bottom: 12px; padding-bottom: 10px;
    border-bottom: 1px solid var(--border); line-height: 1.3;
  }
  .court-detail {
    display: flex; gap: 8px; font-size: 13px; color: var(--text);
    padding: 5px 0; border-bottom: 1px solid var(--border);
  }
  .court-detail:last-of-type { border-bottom: none; }
  .court-detail strong { color: var(--navy); font-weight: 600; min-width: 80px; flex-shrink: 0; }

  .court-cities {
    background: var(--cream); border-radius: 6px;
    padding: 8px 12px; margin: 10px 0;
    font-size: 12.5px; color: var(--text-muted); line-height: 1.6;
  }
  .court-phone {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--navy); color: var(--white);
    font-size: 14px; font-weight: 600; padding: 9px 16px;
    border-radius: 8px; text-decoration: none; margin-top: 12px;
    transition: background 0.2s; align-self: flex-start;
  }
  .court-phone:hover { background: var(--amber); }

  /* CJ1 special card */
  .cj1-card {
    background: #fff8ec; border: 1px solid #f0d89a;
    border-left: 4px solid var(--amber);
    border-radius: 10px; padding: 20px 22px; margin: 20px 0;
  }
  .cj1-title {
    font-family: var(--serif); font-size: 18px; color: var(--navy);
    font-weight: 700; margin-bottom: 4px;
  }
  .cj1-subtitle {
    font-size: 12.5px; color: var(--text-muted); margin-bottom: 14px;
    padding-bottom: 12px; border-bottom: 1px solid #f0d89a;
  }
  .cj1-detail {
    display: flex; gap: 8px; font-size: 13.5px; color: var(--text);
    padding: 6px 0; border-bottom: 1px solid rgba(240,216,154,0.5);
  }
  .cj1-detail:last-child { border-bottom: none; }
  .cj1-detail strong { color: var(--navy); font-weight: 600; min-width: 90px; flex-shrink: 0; }

  /* City → courthouse lookup */
  .city-groups { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
  .city-group {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; overflow: hidden;
  }
  .city-group-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 18px; background: var(--navy);
  }
  .city-group-header.njc { background: linear-gradient(135deg, #243855 0%, #0f1e35 100%); }
  .city-group-header.hjc { background: linear-gradient(135deg, #1a4a2f 0%, #0f3520 100%); }
  .city-group-header.wjc { background: linear-gradient(135deg, #3a2855 0%, #1e1035 100%); }
  .city-group-header.cjc { background: linear-gradient(135deg, #a02020 0%, #6b1010 100%); }
  .city-group-header.ljc { background: linear-gradient(135deg, #1a3a5c 0%, #0f2040 100%); }

  .city-group-court {
    font-family: var(--serif); font-size: 15px; color: var(--white); font-weight: 700;
  }
  .city-group-location {
    font-size: 12px; color: rgba(255,255,255,0.65);
  }
  .city-group-cities {
    padding: 12px 18px; font-size: 13.5px; color: var(--text);
    line-height: 1.8;
  }

  /* Court responsive */
  @media (max-width: 900px) {
    .court-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .court-detail { flex-direction: column; gap: 2px; }
    .court-detail strong { min-width: unset; }
    .cj1-detail { flex-direction: column; gap: 2px; }
    .cj1-detail strong { min-width: unset; }
    .city-group-header { flex-direction: column; align-items: flex-start; gap: 2px; }
  }
