*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy:     #1e2e4a;
      --red:      #cc1f1f;
      --red-dark: #a81717;
      --gray-bg:  #f7f8fa;
      --gray-mid: #dde1e8;
      --white:    #ffffff;
      --off-white:#f0f2f5;
      --text-dark:#111827;
      --text-mid: #374151;
    }
    html { scroll-behavior: smooth; }
    body { font-family: "Barlow", sans-serif; background: var(--gray-bg); color: var(--text-dark); overflow-x: hidden; }
    /* Cracked polygon background pattern */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: 0.12;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cg fill='none' stroke='%231e2e4a' stroke-width='0.8'%3E%3Cpolygon points='120,0 280,40 310,180 180,260 40,200 20,60'/%3E%3Cpolygon points='280,40 420,10 500,120 430,220 310,180'/%3E%3Cpolygon points='420,10 580,50 600,180 500,120'/%3E%3Cpolygon points='500,120 600,180 570,320 430,340 310,180'/%3E%3Cpolygon points='310,180 430,340 380,460 200,480 180,260'/%3E%3Cpolygon points='430,340 570,320 600,440 520,540 380,460'/%3E%3Cpolygon points='180,260 380,460 200,480 60,420 40,200'/%3E%3Cpolygon points='200,480 380,460 520,540 440,600 100,600 60,420'/%3E%3Cpolygon points='0,200 40,200 60,420 0,500'/%3E%3Cpolygon points='520,540 600,440 600,600 440,600'/%3E%3Cpolygon points='0,0 120,0 20,60 0,60'/%3E%3Cpolygon points='580,50 600,0 600,180'/%3E%3C/g%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 600px 600px;
    }
    /* Ensure all content sits above the texture */
    nav, .topbar, .hero, .urgency, .badges, section, footer, .float-call { position: relative; z-index: 1; }

    /* TOP BAR */
    .topbar { background: var(--red); color: var(--white); text-align: center; padding: 9px 16px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }
    .topbar span { display: flex; align-items: center; gap: 6px; }
    .topbar .dot { color: white; opacity: 0.6; }

    /* NAV */
    nav { background: var(--navy); position: sticky; top: 0; z-index: 100; box-shadow: 0 3px 16px rgba(0,0,0,0.3); }
    .nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
    .nav-brand { text-decoration: none; display: flex; align-items: center; }
    .nav-brand img { height: 56px; width: auto; display: block; }
    .nav-links { display: flex; gap: 4px; list-style: none; }
    .nav-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-family: "Oswald", sans-serif; font-weight: 500; font-size: 0.9rem; letter-spacing: 0.06em; padding: 8px 13px; border-radius: 4px; transition: background 0.2s, color 0.2s; }
    .nav-links a:hover { background: rgba(255,255,255,0.1); color: white; }
    .nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 9px 20px !important; border-radius: 4px; font-weight: 700 !important; box-shadow: 0 2px 8px rgba(204,31,31,0.4); }
    .nav-cta:hover { background: var(--red-dark) !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { display: block; width: 26px; height: 2.5px; background: white; border-radius: 2px; }
    .mobile-menu { display: none; background: var(--navy); padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.1); }
    .mobile-menu a { display: block; padding: 12px 28px; color: rgba(255,255,255,0.85); text-decoration: none; font-family: "Oswald", sans-serif; font-size: 1rem; letter-spacing: 0.05em; transition: background 0.2s; }
    .mobile-menu a:hover { background: rgba(255,255,255,0.08); }
    .mobile-menu.open { display: block; }

    /* HERO — sunburst on gray */
    .hero {
      background-color: #f4f5f7;
      position: relative;
      overflow: hidden;
      padding: 72px 24px 100px;
      text-align: center;
    }
    /* Sunburst rays — like the flyer */
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: 1;
      background-image: repeating-linear-gradient(
        135deg,
        rgba(30,46,74,0.055) 0px,
        rgba(30,46,74,0.055) 1px,
        transparent 1px,
        transparent 32px
      );
    }
    .hero-watermark { display: none; }
    .hero-fade { display: none; }
    /* Bottom wave */
    .hero::after {
      content: "";
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 64px;
      background: var(--gray-bg);
      clip-path: ellipse(55% 100% at 50% 100%);
      pointer-events: none;
      z-index: 2;
    }
    .hero-logo { display: block; margin: 0 auto 28px; width: min(380px, 86vw); height: auto; animation: fadeDown 0.7s ease both; position: relative; z-index: 3; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45)) drop-shadow(0 0px 2px rgba(0,0,0,0.35)) contrast(1.08) saturate(0.82) hue-rotate(8deg); image-rendering: -webkit-optimize-contrast; }
    .hero-badge { display: inline-block; background: var(--red); color: white; font-family: "Oswald", sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 7px 20px; border-radius: 2px; margin-bottom: 18px; animation: fadeDown 0.6s 0.1s ease both; position: relative; z-index: 3; }
    .hero h1 { font-family: "Oswald", sans-serif; font-size: clamp(2.2rem, 6vw, 4.4rem); font-weight: 700; color: var(--navy); line-height: 1.05; text-transform: uppercase; animation: fadeDown 0.7s 0.15s ease both; max-width: 860px; margin: 0 auto 14px; position: relative; z-index: 3; }
    .hero h1 span { color: var(--red); }
    .hero-sub { font-size: clamp(0.97rem, 2.3vw, 1.12rem); color: var(--text-mid); max-width: 580px; margin: 0 auto 10px; line-height: 1.65; animation: fadeDown 0.7s 0.2s ease both; position: relative; z-index: 3; }
    .hero-phone-label { display: block; font-family: "Oswald", sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(30,46,74,0.55); margin-bottom: 6px; animation: fadeDown 0.7s 0.22s ease both; position: relative; z-index: 3; }
    .hero-phone { font-family: "Oswald", sans-serif; font-size: clamp(2.8rem, 7vw, 4.8rem); font-weight: 700; color: var(--navy); text-decoration: none; display: block; letter-spacing: 0.02em; line-height: 1; margin-bottom: 32px; animation: fadeDown 0.7s 0.25s ease both; transition: color 0.2s; position: relative; z-index: 3; }
    .hero-phone:hover { color: var(--red); }
    .hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeDown 0.7s 0.3s ease both; padding-bottom: 16px; position: relative; z-index: 3; }
    .btn-primary { background: var(--red); color: white; font-family: "Oswald", sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 16px 38px; border-radius: 4px; text-decoration: none; transition: transform 0.15s, background 0.2s; border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(204,31,31,0.4); }
    .btn-primary:hover { transform: translateY(-2px); background: var(--red-dark); }
    .btn-outline { border: 2px solid var(--navy); color: var(--navy); font-family: "Oswald", sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: 0.07em; text-transform: uppercase; padding: 14px 36px; border-radius: 4px; text-decoration: none; transition: border-color 0.2s, background 0.2s, transform 0.15s; }
    .btn-outline:hover { background: rgba(30,46,74,0.08); transform: translateY(-2px); }

    /* URGENCY */
    .urgency { background: var(--navy); color: white; text-align: center; padding: 13px 24px; font-family: "Oswald", sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

    /* BADGES */
    .badges { background: var(--white); border-bottom: 3px solid var(--red); }
    .badges-inner { max-width: 1200px; margin: 0 auto; padding: 28px 24px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; text-align: center; }
    @media(max-width:900px){ .badges-inner { grid-template-columns: repeat(4,1fr); } }
    @media(max-width:480px){ .badges-inner { grid-template-columns: repeat(2,1fr); } }
    .badge-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 8px; border-radius: 8px; transition: background 0.2s; }
    .badge-item:hover { background: var(--off-white); }
    .badge-icon { font-size: 1.9rem; line-height: 1; }
    .badge-label { font-family: "Oswald", sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.3; }

    /* SECTIONS */
    section { padding: 80px 24px; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-label { display: inline-block; font-family: "Oswald", sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
    .section-title { font-family: "Oswald", sans-serif; font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 700; color: var(--navy); text-transform: uppercase; line-height: 1.08; margin-bottom: 16px; }
    .section-desc { font-size: 1rem; color: #4b5563; line-height: 1.75; max-width: 640px; margin-bottom: 48px; }

    /* SERVICES — white */
    #services { background: var(--white); }
    .services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
    @media(max-width:1024px){ .services-grid { grid-template-columns: repeat(2,1fr); } }
    @media(max-width:580px){ .services-grid { grid-template-columns: 1fr; } }
    .service-card { background: var(--off-white); border-radius: 10px; padding: 28px 22px; border-left: 4px solid var(--red); box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
    .service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); border-left-color: var(--navy); }
    .service-card .icon { font-size: 2rem; margin-bottom: 12px; }
    .service-card h3 { font-family: "Oswald", sans-serif; font-size: 1.08rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
    .service-card p { font-size: 0.88rem; color: #4b5563; line-height: 1.65; }

    /* ABOUT — gray bg */
    #about { background: var(--gray-bg); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .about-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .about-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.97rem; color: var(--text-mid); line-height: 1.6; }
    .about-list li::before { content: "✔"; background: var(--red); color: white; font-size: 0.72rem; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-weight: 700; }
    .about-callout { background: var(--navy); border-radius: 12px; padding: 44px 36px; color: white; text-align: center; box-shadow: 0 8px 40px rgba(0,0,0,0.2); }
    .about-callout .big-num { font-family: "Oswald", sans-serif; font-size: 4rem; font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 4px; }
    .about-callout p { font-size: 0.93rem; color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.65; }
    .about-callout .divider { width: 48px; height: 3px; background: var(--red); margin: 16px auto; }
    .about-callout .stat { margin-bottom: 18px; }
    .about-callout .stat-num { font-family: "Oswald", sans-serif; font-size: 2rem; font-weight: 700; color: var(--white); }
    .about-callout .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }

    /* HOW IT WORKS — white */
    #how { background: var(--white); }
    .steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
    @media(max-width:900px){ .steps { grid-template-columns: repeat(2,1fr); } }
    @media(max-width:480px){ .steps { grid-template-columns: 1fr; } }
    .step { background: var(--off-white); border-radius: 10px; padding: 30px 22px; position: relative; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; border-top: 4px solid var(--navy); }
    .step:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); border-top-color: var(--red); }
    .step-num { font-family: "Oswald", sans-serif; font-size: 5rem; font-weight: 700; color: rgba(30,46,74,0.05); position: absolute; top: 6px; right: 12px; line-height: 1; }
    .step-icon { font-size: 2rem; margin-bottom: 14px; }
    .step h3 { font-family: "Oswald", sans-serif; font-size: 1.08rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
    .step p { font-size: 0.88rem; color: #4b5563; line-height: 1.65; }
    .step-cta-bar { margin-top: 44px; background: var(--navy); border-radius: 10px; padding: 28px 36px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
    .step-cta-bar p { color: rgba(255,255,255,0.85); font-size: 1rem; font-family: "Oswald", sans-serif; font-weight: 500; letter-spacing: 0.04em; }
    .step-cta-bar strong { color: white; }

    /* CONTACT — navy */
    #contact { background: var(--navy); }
    #contact .section-title { color: var(--white); }
    #contact .section-label { color: rgba(255,255,255,0.5); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
    .contact-info { color: rgba(255,255,255,0.8); }
    .contact-info p { margin-bottom: 28px; font-size: 0.97rem; line-height: 1.75; }
    .contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; font-size: 0.97rem; }
    .contact-detail .ci-icon { background: var(--red); color: white; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
    .contact-detail a { color: white; text-decoration: none; font-weight: 600; }
    .contact-detail a:hover { color: rgba(255,255,255,0.7); }
    .contact-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 36px 30px; }
    .contact-form h3 { font-family: "Oswald", sans-serif; font-size: 1.2rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 22px; }
    .form-group { margin-bottom: 16px; }
    .form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
    .form-group input, .form-group textarea, .form-group select { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; padding: 11px 14px; color: white; font-family: "Barlow", sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
    .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-group select option { background: var(--navy); color: white; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-submit { width: 100%; background: var(--red); color: white; font-family: "Oswald", sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 15px; border: none; border-radius: 6px; cursor: pointer; margin-top: 6px; transition: background 0.2s, transform 0.15s; box-shadow: 0 4px 14px rgba(204,31,31,0.4); }
    .form-submit:hover { background: var(--red-dark); transform: translateY(-1px); }
    .form-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-align: center; margin-top: 10px; line-height: 1.5; }

    /* FINANCING — gray bg */
    #financing { background: var(--gray-bg); }
    .financing-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    @media(max-width:768px){ .financing-cards { grid-template-columns: repeat(2,1fr); } }
    @media(max-width:480px){ .financing-cards { grid-template-columns: 1fr; } }
    .fin-card { background: var(--white); border-radius: 10px; padding: 28px 22px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border-bottom: 3px solid transparent; transition: transform 0.2s, box-shadow 0.2s; }
    .fin-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); border-bottom-color: var(--navy); }
    .fin-card .fin-icon { font-size: 2.2rem; margin-bottom: 12px; }
    .fin-card h3 { font-family: "Oswald", sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
    .fin-card p { font-size: 0.88rem; color: #6b7280; line-height: 1.65; }
    .fin-highlight { background: var(--red) !important; border-bottom-color: var(--navy) !important; }
    .fin-highlight h3 { color: white; }
    .fin-highlight p { color: rgba(255,255,255,0.88); }

    /* FAQ — navy */
    #faq { background: var(--navy); }
    #faq .section-title { color: var(--white); }
    #faq .section-label { color: rgba(255,255,255,0.5); }
    #faq .section-desc { color: rgba(255,255,255,0.6); }
    .faq-list { display: flex; flex-direction: column; gap: 0; max-width: 820px; }
    .faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 22px 0; }
    .faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
    .faq-q { font-family: "Oswald", sans-serif; font-size: 1.08rem; font-weight: 600; color: var(--white); letter-spacing: 0.03em; margin-bottom: 10px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
    .faq-q::after { content: "+"; font-size: 1.4rem; color: var(--red); flex-shrink: 0; transition: transform 0.2s; }
    .faq-item.open .faq-q::after { transform: rotate(45deg); }
    .faq-a { font-size: 0.94rem; color: rgba(255,255,255,0.68); line-height: 1.75; display: none; }
    .faq-item.open .faq-a { display: block; }

    /* AREAS — white */
    #areas { background: var(--white); }
    .areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
    @media(max-width:900px){ .areas-grid { grid-template-columns: repeat(2,1fr); } }
    .area-card { background: var(--off-white); border: 2px solid var(--gray-mid); border-radius: 8px; padding: 18px 14px; text-align: center; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
    .area-card:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.1); }
    .area-card .area-flag { font-size: 1.5rem; margin-bottom: 6px; }
    .area-card h4 { font-family: "Oswald", sans-serif; font-size: 0.88rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; }
    .area-card.featured { border-color: var(--red); background: #fff0f0; }
    .area-card.featured h4 { color: var(--red); }

    /* FOOTER */
    footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 40px 24px; text-align: center; border-top: 4px solid var(--red); }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-logo img { height: 68px; width: auto; margin-bottom: 12px; }
    footer p { font-size: 0.82rem; line-height: 1.8; margin-bottom: 5px; }
    .footer-lic { font-size: 0.76rem; color: rgba(255,255,255,0.28); margin-top: 16px; }

    /* FLOAT CALL */
    .float-call { position: fixed; bottom: 24px; right: 24px; z-index: 200; background: var(--red); color: white; font-family: "Oswald", sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.07em; text-transform: uppercase; padding: 14px 22px; border-radius: 50px; text-decoration: none; box-shadow: 0 4px 24px rgba(204,31,31,0.55); transition: transform 0.15s, background 0.2s; display: flex; align-items: center; gap: 8px; animation: pulse 2.5s infinite; }
    .float-call:hover { transform: scale(1.05); background: var(--red-dark); animation: none; }

    @keyframes pulse { 0%,100% { box-shadow: 0 4px 24px rgba(204,31,31,0.55); } 50% { box-shadow: 0 4px 36px rgba(204,31,31,0.85); } }
    @keyframes fadeDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }

    /* RESPONSIVE */
    @media(max-width:768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .about-grid, .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      section { padding: 56px 18px; }
      .float-call { bottom: 16px; right: 16px; font-size: 0.85rem; padding: 12px 18px; }
    }
    @media(max-width:480px) { .topbar { flex-direction: column; gap: 4px; font-size: 0.75rem; } }

/* ============================================================
   JAIL LANDING PAGE EXTENSIONS — same brand language as homepage
   ============================================================ */

/* Jail hero — themed gradient over location image */
.jail-hero {
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 100px 24px 110px;
  text-align: center;
  color: white;
  isolation: isolate;
}
.jail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(30,46,74,0.85) 0%, rgba(30,46,74,0.72) 55%, rgba(168,23,23,0.75) 100%);
  z-index: 1;
}
.jail-hero::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 64px;
  background: var(--gray-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}
.jail-hero .jh-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}
.jail-hero .crumbs {
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.jail-hero .crumbs a { color: rgba(255,255,255,0.85); text-decoration: none; }
.jail-hero .crumbs a:hover { color: var(--red); }
.jail-hero .jh-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.jail-hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.1rem, 5.6vw, 3.9rem);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  margin: 0 auto 14px;
  color: #fff;
  text-align: center;
}
.jail-hero h1 .accent {
  display: block;
  color: #ffb4b4;
  margin-top: 6px;
  text-align: center;
}
.jail-hero .jh-sub {
  font-size: clamp(1rem, 2.3vw, 1.16rem);
  color: rgba(255,255,255,0.86);
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.65;
}
.jail-hero .jh-phone-label {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.jail-hero .jh-phone {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: block;
  line-height: 1;
  margin-bottom: 26px;
}
.jail-hero .jh-phone:hover { color: #ffb4b4; }
.jail-hero .jh-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* Geo meta strip below hero */
.geo-strip {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  text-align: center;
  padding: 14px 18px;
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 3px solid var(--red);
}
.geo-strip span { margin: 0 10px; }
.geo-strip .geo-sep { color: rgba(255,255,255,0.3); }

/* Two-column content block */
.two-col {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start;
}
@media(max-width: 900px){ .two-col { grid-template-columns: 1fr; } }
.tc-text p { font-size: 1.02rem; line-height: 1.78; color: var(--text-mid); margin-bottom: 16px; }
.tc-text h3 { font-family: "Oswald", sans-serif; font-size: 1.3rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; margin: 24px 0 12px; }
.tc-side {
  background: var(--navy);
  color: white;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.tc-side h4 { font-family: "Oswald", sans-serif; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em; color: white; margin-bottom: 14px; }
.tc-side ul { list-style: none; }
.tc-side li { color: rgba(255,255,255,0.82); font-size: 0.95rem; line-height: 1.55; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; gap: 10px; align-items: flex-start; }
.tc-side li:last-child { border-bottom: 0; }
.tc-side li::before { content: "📍"; font-size: 0.9rem; }

/* Transfer warning callout */
.transfer-callout {
  background: linear-gradient(135deg, #fff8f8 0%, #fff 100%);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 28px 0;
  box-shadow: 0 4px 14px rgba(204,31,31,0.07);
}
.transfer-callout strong { color: var(--red); font-family: "Oswald", sans-serif; letter-spacing: 0.03em; }
.transfer-callout p { margin: 0; font-size: 0.97rem; line-height: 1.65; color: var(--text-mid); }

/* Emergency CTA strip (red) */
.emergency-strip {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 56px 24px;
}
.emergency-strip h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.emergency-strip p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 22px;
  max-width: 620px;
  margin-left: auto; margin-right: auto;
}
.emergency-strip .em-phone {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: white;
  text-decoration: none;
  margin-bottom: 18px;
}
.emergency-strip .em-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.emergency-strip .btn-light {
  background: white;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.15s, background 0.2s;
}
.emergency-strip .btn-light:hover { transform: translateY(-2px); background: #ffe9e9; }
.emergency-strip .btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid white;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.emergency-strip .btn-outline-light:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* Nearby jails grid */
.nearby-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media(max-width: 900px){ .nearby-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px){ .nearby-grid { grid-template-columns: 1fr; } }
.nearby-card {
  display: block;
  background: var(--off-white);
  border: 2px solid var(--gray-mid);
  border-radius: 8px;
  padding: 18px 16px;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nearby-card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.1); }
.nearby-card .icon { font-size: 1.5rem; margin-bottom: 6px; display: block; }
.nearby-card h4 { font-family: "Oswald", sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; }

/* Jails index page — primary card grid */
.jails-index-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media(max-width: 900px){ .jails-index-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 580px){ .jails-index-grid { grid-template-columns: 1fr; } }
.jail-card {
  display: block;
  background: var(--white);
  border-radius: 10px;
  padding: 26px 22px;
  border-left: 4px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.jail-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); border-left-color: var(--navy); }
.jail-card .jc-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.jail-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.jail-card p { font-size: 0.88rem; color: #4b5563; line-height: 1.55; margin: 0; }
.jail-card .arrow { display: inline-block; color: var(--red); font-family: "Oswald", sans-serif; font-weight: 700; letter-spacing: 0.04em; margin-top: 10px; font-size: 0.82rem; }

/* "Not all jails listed" disclaimer */
.disclaimer-note {
  background: var(--off-white);
  border: 1px dashed var(--gray-mid);
  border-radius: 8px;
  padding: 18px 22px;
  margin-top: 32px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.disclaimer-note strong { color: var(--navy); font-family: "Oswald", sans-serif; letter-spacing: 0.02em; }

/* Active nav-link state */
.nav-links a.active { color: white; background: rgba(255,255,255,0.12); }
