
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');
:root{
  --red:#C8102E;--dark:#9B0C22;--navy:#0F2D4A;--gold:#E8A020;
  --white:#fff;--off:#FFF8F0;--gray:#6B7280;--light:#E5E7EB;
  --font-head:'Oswald',sans-serif;--font-body:'Source Sans 3',sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{overflow-x:hidden;max-width:100%;scroll-behavior:smooth}
body{font-family:var(--font-body);background:#fff;color:var(--navy);line-height:1.65}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto}

/* TOPBAR */
.jh-top{background:var(--navy);padding:0}
.jh-top-in{max-width:1280px;margin:0 auto;padding:0 32px;display:flex;justify-content:space-between;align-items:center;height:38px}
.jh-top-l{display:flex;align-items:center;gap:22px}
.jh-top-l a{color:rgba(255,255,255,.72);font-size:12.5px;text-decoration:none;display:flex;align-items:center;gap:5px;transition:color .15s}
.jh-top-l a:hover{color:var(--gold)}
.jh-top-r{display:flex;align-items:center;gap:14px}
.jh-top-r a{color:rgba(255,255,255,.72);font-size:12.5px;text-decoration:none;transition:color .15s}
.jh-top-r a:hover{color:var(--gold)}
.jh-top-cta{background:var(--gold);color:var(--navy)!important;padding:4px 14px;border-radius:3px;font-weight:700!important;font-size:12px!important}
.jh-top-cta:hover{background:#d4920a!important}

/* HEADER */
.jh-hdr{background:#fff;border-bottom:4px solid var(--red);position:sticky;top:0;z-index:9999;box-shadow:0 2px 20px rgba(0,0,0,.08)}
.jh-hdr-in{max-width:1280px;margin:0 auto;padding:0 32px;display:grid;grid-template-columns:260px 1fr 260px;align-items:center;height:72px;gap:20px}
.jh-brand{display:flex;flex-direction:column}
.jh-brand-name{font-family:var(--font-head);font-size:18px;font-weight:700;color:var(--red);letter-spacing:.5px;line-height:1}
.jh-brand-sub{font-size:10px;font-weight:600;color:var(--gray);text-transform:uppercase;letter-spacing:1px;margin-top:3px}
.jh-search-wrap{position:relative;display:flex;align-items:center;justify-content:center}
.jh-search-form{display:flex;width:100%;max-width:520px;border:2px solid var(--light);border-radius:6px;overflow:hidden;height:44px;transition:border-color .2s}
.jh-search-form:focus-within{border-color:var(--red)}
.jh-search-form input{flex:1;border:none;padding:0 16px;font-size:14px;outline:none;background:#f8fafc;font-family:var(--font-body)}
.jh-search-form button{background:var(--navy);border:none;padding:0 22px;color:#fff;font-size:13.5px;font-weight:600;cursor:pointer;transition:background .15s;white-space:nowrap;font-family:var(--font-body)}
.jh-search-form button:hover{background:var(--red)}
.jh-hdr-right{display:flex;align-items:center;justify-content:flex-end;gap:8px}
.jh-loc-drop{position:relative}
.jh-loc-btn{display:flex;align-items:center;gap:6px;padding:9px 14px;background:none;border:1.5px solid var(--light);border-radius:5px;font-size:13px;font-weight:600;color:var(--navy);cursor:pointer;white-space:nowrap;transition:all .2s;font-family:var(--font-body)}
.jh-loc-btn:hover{border-color:var(--red);color:var(--red);background:#FFF5F5}
.jh-loc-arr{font-size:10px;color:var(--red);transition:transform .2s}
.jh-loc-drop.open .jh-loc-arr{transform:rotate(180deg)}
.jh-loc-menu{display:none;position:absolute;top:calc(100% + 6px);right:0;background:#fff;border:1px solid var(--light);border-radius:8px;box-shadow:0 8px 32px rgba(0,0,0,.12);min-width:200px;overflow:hidden;z-index:10000}
.jh-loc-drop.open .jh-loc-menu{display:block}
.jh-loc-menu-h{padding:9px 16px 7px;font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--gray);border-bottom:1px solid #F3F4F6}
.jh-loc-menu a{display:flex;align-items:center;gap:8px;padding:10px 16px;font-size:13.5px;color:var(--navy);transition:background .15s;border-bottom:1px solid #F9FAFB}
.jh-loc-menu a:last-child{border:none}
.jh-loc-menu a::before{content:'';width:5px;height:5px;background:var(--red);border-radius:50%;flex-shrink:0}
.jh-loc-menu a:hover{background:#FFF5F5;color:var(--red)}
.jh-reg-btn{display:inline-flex;align-items:center;gap:6px;padding:10px 20px;background:var(--red);color:#fff;font-size:13px;font-weight:700;border-radius:5px;white-space:nowrap;transition:background .15s;font-family:var(--font-body)}
.jh-reg-btn:hover{background:var(--dark)}
.jh-ham{display:none;background:none;border:2px solid var(--light);border-radius:5px;cursor:pointer;width:40px;height:40px;flex-direction:column;gap:5px;align-items:center;justify-content:center;margin-left:4px}
.jh-ham span{display:block;width:18px;height:2px;background:var(--navy);border-radius:2px;transition:all .25s}
.jh-ham.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.jh-ham.active span:nth-child(2){opacity:0}
.jh-ham.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* NAVBAR */
.jh-nav{background:var(--navy)}
.jh-nav-in{max-width:1280px;margin:0 auto;padding:0 32px}
.jh-nav-menu{display:flex;list-style:none}
.jh-nav-menu>li>a{display:block;color:rgba(255,255,255,.82);padding:13px 18px;font-size:14px;font-weight:600;border-bottom:3px solid transparent;transition:all .15s;font-family:var(--font-body);letter-spacing:.02em}
.jh-nav-menu>li>a:hover,.jh-nav-menu>li.current-menu-item>a{color:#fff;border-bottom-color:var(--gold)}

/* OVERLAY + DRAWER */
.jh-ov{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:10998;opacity:0;transition:opacity .3s}
.jh-ov.open{display:block;opacity:1}
.jh-dr{position:fixed;top:0;right:-320px;width:300px;height:100%;background:#fff;z-index:10999;box-shadow:-4px 0 40px rgba(0,0,0,.2);transition:right .3s cubic-bezier(.4,0,.2,1);display:flex;flex-direction:column;overflow:hidden}
.jh-dr.open{right:0}
.jh-dr-head{background:var(--navy);padding:18px 20px;display:flex;align-items:center;justify-content:space-between;flex-shrink:0}
.jh-dr-head .dn{font-family:var(--font-head);color:#fff;font-size:16px;font-weight:700;letter-spacing:.5px}
.jh-dr-head .dn span{color:var(--gold)}
.jh-dr-x{background:rgba(255,255,255,.12);border:none;color:#fff;width:32px;height:32px;border-radius:5px;cursor:pointer;font-size:18px;display:flex;align-items:center;justify-content:center}
.jh-dr-x:hover{background:rgba(255,255,255,.25)}
.jh-dr-contact{background:#F0F4F8;padding:12px 18px;border-bottom:1px solid var(--light);display:flex;flex-direction:column;gap:7px;flex-shrink:0}
.jh-dr-contact a{color:var(--navy);font-size:12.5px;font-weight:600;display:flex;align-items:center;gap:7px}
.jh-dr-search{padding:12px 16px;border-bottom:1px solid var(--light);flex-shrink:0}
.jh-dr-search form{display:flex;border:2px solid var(--light);border-radius:5px;overflow:hidden;height:38px}
.jh-dr-search input{flex:1;border:none;padding:0 12px;font-size:13px;outline:none;background:#f9fafb;font-family:var(--font-body)}
.jh-dr-search button{background:var(--navy);border:none;padding:0 14px;color:#fff;font-size:13px;cursor:pointer}
.jh-dr-cities{padding:12px 16px;border-bottom:1px solid var(--light);flex-shrink:0}
.jh-dr-cities-h{font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--gray);margin-bottom:10px}
.jh-dr-cities-grid{display:grid;grid-template-columns:1fr 1fr;gap:6px}
.jh-dr-cities-grid a{display:flex;align-items:center;gap:5px;padding:8px 10px;background:#F0F4F8;border:1px solid #d1dce8;border-radius:4px;font-size:12px;font-weight:600;color:var(--navy)}
.jh-dr-cities-grid a:hover{background:var(--red);color:#fff;border-color:var(--red)}
.jh-dr-body{flex:1;overflow-y:auto;padding:6px 0}
.jh-dr-body ul{list-style:none}
.jh-dr-body ul li a{display:flex;align-items:center;gap:10px;padding:13px 20px;color:var(--navy);font-size:14px;font-weight:600;border-bottom:1px solid #f3f4f6;border-left:3px solid transparent;transition:all .15s}
.jh-dr-body ul li a::before{content:'';width:4px;height:4px;background:var(--gold);border-radius:50%;flex-shrink:0}
.jh-dr-body ul li a:hover{background:#FFF5F5;color:var(--red);border-left-color:var(--red);padding-left:24px}
.jh-dr-foot{padding:14px 18px;border-top:1px solid var(--light);display:flex;flex-direction:column;gap:9px;flex-shrink:0}
.jh-dr-foot a{display:flex;align-items:center;justify-content:center;gap:8px;padding:12px;border-radius:5px;font-weight:700;font-size:14px;transition:all .15s;font-family:var(--font-body)}
.jh-dr-reg{background:var(--red);color:#fff}.jh-dr-reg:hover{background:var(--dark)}
.jh-dr-ph{background:var(--navy);color:#fff}.jh-dr-ph:hover{background:#1a3a5c}

/* FOOTER */
.jh-faq-sec{background:#fff;padding:72px 24px;border-top:4px solid var(--red)}
.jh-faq-wrap{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:290px 1fr;gap:56px;align-items:start}
.jh-faq-left{position:sticky;top:80px}
.jh-faq-eye{font-size:11px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:var(--red);margin-bottom:10px}
.jh-faq-h{font-family:var(--font-head);font-size:clamp(22px,3vw,32px);font-weight:600;color:var(--navy);line-height:1.1;margin-bottom:12px}
.jh-faq-h em{color:var(--red);font-style:normal}
.jh-faq-desc{color:var(--gray);font-size:14px;line-height:1.75;margin-bottom:22px}
.jh-faq-box{background:#F0F4F8;border:1px solid #d1dce8;border-left:4px solid var(--red);border-radius:6px;padding:18px}
.jh-faq-box p{font-size:13px;color:var(--gray);margin-bottom:12px;line-height:1.6}
.jh-faq-box .fb1{display:flex;align-items:center;gap:7px;padding:11px 14px;background:var(--red);color:#fff;border-radius:4px;font-weight:700;font-size:13px;margin-bottom:8px;transition:background .2s}
.jh-faq-box .fb1:hover{background:var(--dark)}
.jh-faq-box .fb2{display:flex;align-items:center;gap:7px;font-size:13px;font-weight:700;color:var(--navy);margin-top:6px}
.jh-faq-box .fb2:hover{color:var(--red)}
.jh-faq-list{display:flex;flex-direction:column}
.jh-faq-item{border-bottom:1px solid var(--light)}.jh-faq-item:first-child{border-top:1px solid var(--light)}
.jh-faq-btn{width:100%;background:none;border:none;text-align:left;padding:16px 0;font-size:14.5px;font-weight:600;color:var(--navy);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:14px;font-family:var(--font-body);transition:color .2s}
.jh-faq-btn:hover{color:var(--red)}
.jh-faq-ico{width:24px;height:24px;border-radius:50%;background:#F0F4F8;border:1.5px solid #d1dce8;display:flex;align-items:center;justify-content:center;color:var(--red);font-size:11px;flex-shrink:0;transition:transform .25s,background .2s}
.jh-faq-btn.on{color:var(--red)}.jh-faq-btn.on .jh-faq-ico{transform:rotate(180deg);background:var(--red);color:#fff;border-color:var(--red)}
.jh-faq-ans{display:none;padding:0 0 14px;color:var(--gray);font-size:14px;line-height:1.8;max-width:620px}
.jh-faq-ans.show{display:block}.jh-faq-ans strong{color:var(--navy)}.jh-faq-ans a{color:var(--red);font-weight:600}

.jh-city-strip{background:var(--red);padding:34px 24px}
.jh-city-strip-in{max-width:1100px;margin:0 auto}
.jh-city-strip-lbl{font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.55);margin-bottom:14px}
.jh-city-pills{display:flex;flex-wrap:wrap;gap:10px}
.jh-city-pill{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.22);color:#fff;padding:8px 18px;border-radius:100px;font-size:13px;font-weight:600;transition:background .2s;display:flex;align-items:center;gap:6px}
.jh-city-pill::before{content:'';width:5px;height:5px;background:rgba(255,255,255,.5);border-radius:50%}
.jh-city-pill:hover{background:rgba(255,255,255,.22)}

.jh-footer{background:var(--navy);padding:52px 24px 0}
.jh-footer-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1.6fr 1fr 1fr;gap:44px;padding-bottom:44px;border-bottom:1px solid rgba(255,255,255,.08)}
.jh-f-brand{font-family:var(--font-head);font-size:18px;font-weight:700;color:#fff;display:block;margin-bottom:10px;letter-spacing:.5px}
.jh-f-brand span{color:var(--gold)}
.jh-f-desc{color:#9CA3AF;font-size:13px;line-height:1.7;margin-bottom:18px;max-width:280px}
.jh-f-badges{display:flex;flex-wrap:wrap;gap:7px;margin-bottom:18px}
.jh-f-badge{background:rgba(200,16,46,.15);border:1px solid rgba(200,16,46,.3);color:#FCA5A5;padding:4px 11px;border-radius:100px;font-size:10.5px;font-weight:700}
.jh-f-cl{display:flex;flex-direction:column;gap:9px}
.jh-f-cl a{display:flex;align-items:center;gap:9px;color:#D1D5DB;font-size:13px;font-weight:600;transition:color .2s}
.jh-f-cl a:hover{color:#fff}
.jh-f-ci{width:27px;height:27px;background:rgba(255,255,255,.06);border-radius:4px;display:flex;align-items:center;justify-content:center;font-size:12px;flex-shrink:0}
.jh-f-col h5{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--gray);margin-bottom:14px}
.jh-f-ll{list-style:none;display:flex;flex-direction:column}
.jh-f-ll a{color:#9CA3AF;font-size:13px;padding:5px 0;display:flex;align-items:center;gap:7px;border-bottom:1px solid rgba(255,255,255,.04);transition:color .2s}
.jh-f-ll a::before{content:'';width:4px;height:4px;background:var(--red);border-radius:50%;flex-shrink:0}
.jh-f-ll a:hover{color:#fff}
.jh-f-cta{background:var(--red);border-radius:8px;padding:22px;text-align:center;align-self:start}
.jh-f-cta h3{font-family:var(--font-head);font-size:16px;font-weight:600;color:#fff;margin-bottom:7px;letter-spacing:.3px}
.jh-f-cta p{color:rgba(255,255,255,.8);font-size:12px;margin-bottom:14px;line-height:1.6}
.jh-f-cta .r1{display:block;background:#fff;color:var(--red);padding:11px;border-radius:4px;font-weight:700;font-size:13px;margin-bottom:7px;transition:opacity .2s}
.jh-f-cta .r1:hover{opacity:.9}
.jh-f-cta .r2{display:block;background:rgba(255,255,255,.12);color:#fff;padding:10px;border-radius:4px;font-weight:600;font-size:12.5px;transition:background .2s}
.jh-f-cta .r2:hover{background:rgba(255,255,255,.2)}
.jh-f-bot{max-width:1100px;margin:0 auto;padding:16px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px}
.jh-f-bot p{color:var(--gray);font-size:11.5px}
.jh-f-bot a{color:#9CA3AF;margin:0 4px}.jh-f-bot a:hover{color:#fff}
.jh-credit{color:#4B5563;font-size:11px;text-align:center;padding:10px 0;background:#0D1117}
.jh-credit a{color:var(--gold);font-weight:600}

/* PAGE COMPONENTS */
.jh-hero{background:var(--navy);padding:72px 24px 60px;position:relative;overflow:hidden}
.jh-hero::before{content:'';position:absolute;right:-80px;top:-80px;width:400px;height:400px;border-radius:50%;background:rgba(200,16,46,.08)}
.jh-hero::after{content:'';position:absolute;left:-40px;bottom:-60px;width:300px;height:300px;border-radius:50%;background:rgba(232,160,32,.05)}
.jh-hero-in{max-width:1080px;margin:0 auto;display:grid;grid-template-columns:1fr 300px;gap:44px;align-items:center;position:relative;z-index:1}
.jh-hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(200,16,46,.2);border:1px solid rgba(200,16,46,.4);color:#FCA5A5;padding:6px 14px;border-radius:100px;font-size:11px;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin-bottom:18px}
.jh-h1{font-family:var(--font-head);font-size:clamp(36px,5.5vw,58px);font-weight:700;color:#fff;line-height:1.05;letter-spacing:.5px;margin-bottom:16px}
.jh-h1 em{color:var(--gold);font-style:normal}
.jh-hero-sub{color:rgba(255,255,255,.82);font-size:16px;margin-bottom:28px;max-width:480px;line-height:1.7}
.jh-btns{display:flex;gap:12px;flex-wrap:wrap}
.jh-btn-gold{background:var(--gold);color:var(--navy);padding:14px 26px;border-radius:5px;font-weight:700;font-size:14px;display:inline-flex;align-items:center;gap:7px;transition:all .15s;white-space:nowrap;font-family:var(--font-body)}
.jh-btn-gold:hover{background:#d4920a;transform:translateY(-1px)}
.jh-btn-outline{background:transparent;color:#fff;padding:14px 26px;border-radius:5px;border:2px solid rgba(255,255,255,.35);font-weight:600;font-size:14px;display:inline-flex;align-items:center;gap:7px;transition:all .15s;white-space:nowrap}
.jh-btn-outline:hover{border-color:#fff;background:rgba(255,255,255,.07)}
.jh-card{background:#fff;border-radius:10px;padding:24px;box-shadow:0 24px 64px rgba(0,0,0,.3)}
.jh-card-title{font-family:var(--font-head);font-size:14px;font-weight:600;color:var(--navy);padding-bottom:12px;margin-bottom:4px;border-bottom:2px solid var(--light);letter-spacing:.3px;text-transform:uppercase}
.jh-row{display:flex;justify-content:space-between;padding:9px 0;border-bottom:1px solid var(--light);font-size:13.5px}
.jh-row:last-of-type{border:none}
.jh-row .l{color:var(--gray)}.jh-row .v{font-weight:700;color:var(--navy)}.jh-row .r{color:var(--red)}
.jh-reg-card{display:block;margin-top:16px;background:var(--red);color:#fff;padding:13px;border-radius:5px;text-align:center;font-weight:700;font-size:14px;transition:background .2s;font-family:var(--font-body)}
.jh-reg-card:hover{background:var(--dark)}
.jh-card-links{display:flex;justify-content:center;gap:16px;margin-top:10px;flex-wrap:wrap}
.jh-card-links a{color:var(--gray);font-size:12px;font-weight:600}
.jh-card-links a:hover{color:var(--red)}

.jh-trust{background:var(--off);border-bottom:1px solid #f0d8b0;padding:16px 24px}
.jh-trust-in{max-width:1080px;margin:0 auto;display:flex;justify-content:center;gap:24px;flex-wrap:wrap}
.jh-trust-item{display:flex;align-items:center;gap:7px;font-size:12.5px;font-weight:600;color:var(--navy)}
.jh-trust-item::before{content:'';width:7px;height:7px;background:var(--gold);border-radius:50%;flex-shrink:0}

.jh-section{padding:64px 24px}
.jh-section-in{max-width:1080px;margin:0 auto}
.jh-section.alt{background:#F8FAFC}
.jh-eyebrow{font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--red);margin-bottom:9px}
.jh-h2{font-family:var(--font-head);font-size:clamp(26px,4vw,40px);font-weight:600;color:var(--navy);line-height:1.08;margin-bottom:12px;letter-spacing:.3px}
.jh-lead{color:var(--gray);font-size:15px;max-width:560px;line-height:1.7}

.jh-modules{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;margin-top:36px}
.jh-module{background:#fff;border:1px solid var(--light);border-radius:8px;padding:22px;border-top:3px solid var(--navy);transition:box-shadow .2s}
.jh-module:hover{box-shadow:0 4px 20px rgba(0,0,0,.08)}
.jh-module-n{font-family:var(--font-head);font-size:32px;font-weight:700;color:var(--gold);line-height:1;margin-bottom:8px}
.jh-module h4{font-weight:700;font-size:14px;color:var(--navy);margin-bottom:6px}
.jh-module p{font-size:12.5px;color:var(--gray);line-height:1.6}

.jh-navy-sec{background:var(--navy);padding:64px 24px}
.jh-navy-sec .jh-eyebrow{color:var(--gold)}
.jh-navy-sec .jh-h2{color:#fff}
.jh-navy-sec .jh-lead{color:rgba(255,255,255,.75)}
.jh-who-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px;margin-top:32px}
.jh-who-card{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);border-radius:6px;padding:14px 16px;color:rgba(255,255,255,.88);font-size:13.5px;font-weight:600;display:flex;align-items:center;gap:10px}

.jh-checklist{list-style:none;margin-top:24px;max-width:640px}
.jh-checklist li{display:flex;gap:10px;align-items:flex-start;padding:10px 0;border-bottom:1px solid var(--light);font-size:14.5px}
.jh-checklist li:last-child{border:none}
.jh-checklist li::before{content:'✓';background:var(--navy);color:#fff;width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:700;flex-shrink:0;margin-top:2px}

.jh-city-grid-sec{background:var(--off);padding:52px 24px}
.jh-city-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:10px;margin-top:28px}
.jh-city-link{background:#fff;border:1px solid #f0d8b0;border-radius:6px;padding:12px 14px;color:var(--navy);font-weight:600;font-size:13.5px;display:flex;align-items:center;gap:7px;transition:all .15s}
.jh-city-link::before{content:'';width:6px;height:6px;background:var(--gold);border-radius:50%;flex-shrink:0}
.jh-city-link:hover{border-color:var(--red);color:var(--red)}
.jh-city-link.cur{background:var(--navy);color:#fff;border-color:var(--navy);pointer-events:none}
.jh-city-link.cur::before{background:var(--gold)}

.jh-cta-sec{background:var(--red);padding:64px 24px;text-align:center}
.jh-cta-sec h2{font-family:var(--font-head);font-size:clamp(28px,4.5vw,48px);font-weight:700;color:#fff;margin-bottom:12px;letter-spacing:.5px}
.jh-cta-sec p{color:rgba(255,255,255,.82);font-size:15px;margin-bottom:32px}
.jh-cta-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.jh-btn-white{background:#fff;color:var(--red);padding:15px 30px;border-radius:5px;font-weight:700;font-size:14px;display:inline-flex;align-items:center;gap:7px;transition:opacity .2s;white-space:nowrap;font-family:var(--font-body)}
.jh-btn-white:hover{opacity:.92}
.jh-btn-ghost{background:transparent;color:#fff;padding:15px 30px;border-radius:5px;border:2px solid rgba(255,255,255,.35);font-weight:600;font-size:14px;display:inline-flex;align-items:center;gap:7px;white-space:nowrap}
.jh-btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,.08)}

.jh-contact-sec{padding:52px 24px;border-top:1px solid var(--light)}
.jh-contact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px;margin-top:32px}
.jh-contact-card{background:var(--off);border:1px solid #f0d8b0;border-radius:8px;padding:22px;text-align:center}
.jh-contact-card .ico{font-size:24px;margin-bottom:8px}
.jh-contact-card h4{font-weight:700;font-size:13.5px;margin-bottom:7px;color:var(--navy)}
.jh-contact-card a{color:var(--red);font-weight:700;font-size:14px;display:block}
.jh-contact-card small{color:var(--gray);font-size:11.5px;display:block;margin-top:3px}
.jh-nearby{margin-top:16px;font-size:13px;color:var(--gray)}
.jh-nearby a{color:var(--red);font-weight:600}

/* BLOG */
.jh-blog-hero{background:var(--navy);padding:48px 24px;text-align:center}
.jh-blog-hero h1{font-family:var(--font-head);font-size:clamp(28px,4vw,44px);color:#fff;font-weight:700;letter-spacing:.5px;margin-bottom:10px}
.jh-blog-hero p{color:rgba(255,255,255,.75);font-size:15px}
.jh-blog-content{max-width:820px;margin:48px auto;padding:0 24px 64px}
.jh-blog-content h2{font-family:var(--font-head);font-size:26px;color:var(--navy);margin:32px 0 12px;letter-spacing:.3px}
.jh-blog-content h3{font-size:20px;font-weight:700;color:var(--navy);margin:24px 0 10px}
.jh-blog-content p{font-size:16px;color:#374151;line-height:1.8;margin-bottom:18px}
.jh-blog-content ul{margin:0 0 18px 24px}
.jh-blog-content ul li{font-size:15.5px;color:#374151;line-height:1.75;margin-bottom:6px}
.jh-blog-cta-box{background:var(--off);border:1px solid #f0d8b0;border-left:4px solid var(--red);border-radius:8px;padding:24px;margin:32px 0}
.jh-blog-cta-box h3{font-family:var(--font-head);font-size:20px;color:var(--navy);margin-bottom:10px;letter-spacing:.3px}
.jh-blog-cta-box p{font-size:14.5px;color:var(--gray);margin-bottom:16px}
.jh-blog-city-links{display:flex;flex-wrap:wrap;gap:8px;margin:24px 0}
.jh-blog-city-links a{background:var(--off);border:1px solid #f0d8b0;color:var(--red);padding:6px 14px;border-radius:100px;font-size:13px;font-weight:600;transition:all .15s}
.jh-blog-city-links a:hover{background:var(--red);color:#fff;border-color:var(--red)}

/* HOME PAGE */
.jh-home-intro{padding:72px 24px;background:#fff}
.jh-home-intro-in{max-width:1080px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.jh-home-intro h2{font-family:var(--font-head);font-size:clamp(28px,3.5vw,40px);color:var(--navy);font-weight:600;margin-bottom:16px;letter-spacing:.3px}
.jh-home-intro p{font-size:15.5px;color:var(--gray);line-height:1.75;margin-bottom:20px}
.jh-stat-boxes{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.jh-stat-box{background:var(--off);border:1px solid #f0d8b0;border-radius:8px;padding:20px;text-align:center}
.jh-stat-box .val{font-family:var(--font-head);font-size:32px;font-weight:700;color:var(--red);line-height:1;margin-bottom:4px}
.jh-stat-box .lbl{font-size:12px;font-weight:600;color:var(--gray)}

/* RESPONSIVE */
@media(max-width:1060px){.jh-hdr-in{grid-template-columns:200px 1fr 200px}}
@media(max-width:820px){.jh-search-wrap{display:none}}
@media(max-width:768px){
  .jh-top{display:none}
  .jh-hdr-in{grid-template-columns:1fr auto;height:60px;padding:0 16px;gap:8px}
  .jh-search-wrap{display:none}.jh-hdr-right{gap:4px}
  .jh-loc-drop,.jh-reg-btn{display:none}.jh-ham{display:flex}
  .jh-nav{display:none}
  .jh-hero-in{grid-template-columns:1fr;gap:28px}
  .jh-btns,.jh-cta-btns{flex-direction:column;width:100%}
  .jh-btn-gold,.jh-btn-outline,.jh-btn-white,.jh-btn-ghost{width:100%;justify-content:center}
  .jh-home-intro-in{grid-template-columns:1fr;gap:32px}
  .jh-faq-wrap{grid-template-columns:1fr;gap:28px}.jh-faq-left{position:static}
  .jh-footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
  .jh-footer-grid{grid-template-columns:1fr;gap:24px}
  .jh-faq-sec{padding:48px 20px}
  .jh-brand-name{font-size:14px}
}
