/* Great Lakes Dock Works — Shared Stylesheet */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Lato',sans-serif;color:#020617;background:#F8FAFC;line-height:1.65;-webkit-font-smoothing:antialiased}
:root{
    --navy:#0F172A;--navy-mid:#1E3A5F;--blue:#0369A1;
    --amber:#D97706;--amber-light:#F59E0B;--amber-pale:#FEF3C7;
    --white:#FFFFFF;--bg:#F8FAFC;--bg-alt:#F1F5F9;
    --text:#020617;--text-muted:#475569;--border:#E2E8F0;
    --radius:8px;
    --shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);
    --shadow-lg:0 10px 15px -3px rgba(0,0,0,.15),0 4px 6px -4px rgba(0,0,0,.1);
    --t:200ms ease
}
h1,h2,h3{font-family:'EB Garamond',Georgia,serif;line-height:1.2}
a{text-decoration:none;color:inherit}
p{line-height:1.65}

/* Layout */
.container{max-width:1200px;margin:0 auto;padding:0 1.25rem}
@media(min-width:640px){.container{padding:0 1.5rem}}
@media(min-width:1024px){.container{padding:0 2rem}}
.section{padding:5rem 0}
.section-header{text-align:center;margin-bottom:3rem}
.section-tag{display:inline-block;background:var(--amber-pale);color:var(--amber);font-size:.8125rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:.3rem .875rem;border-radius:999px;margin-bottom:.75rem}
.section-title{font-size:clamp(1.75rem,4vw,2.75rem);color:var(--navy);margin-bottom:.75rem}
.section-subtitle{font-size:1.0625rem;color:var(--text-muted);max-width:580px;margin:0 auto;line-height:1.7}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.8125rem 1.75rem;border-radius:var(--radius);font-family:'Lato',sans-serif;font-weight:700;font-size:1rem;cursor:pointer;transition:all var(--t);border:2px solid transparent;line-height:1;white-space:nowrap}
.btn:focus-visible{outline:3px solid var(--amber);outline-offset:3px}
.btn-amber{background:var(--amber);color:var(--navy);border-color:var(--amber)}
.btn-amber:hover{background:var(--amber-light);border-color:var(--amber-light);transform:translateY(-2px);box-shadow:var(--shadow-lg)}
.btn-outline-white{background:transparent;color:var(--white);border-color:rgba(255,255,255,.7)}
.btn-outline-white:hover{background:var(--white);color:var(--navy);border-color:var(--white)}
.btn-navy{background:var(--navy);color:var(--white);border-color:var(--navy)}
.btn-navy:hover{background:var(--navy-mid);border-color:var(--navy-mid);transform:translateY(-2px);box-shadow:var(--shadow-lg)}

/* Header */
.header{position:fixed;top:0;left:0;right:0;z-index:100;background:var(--white);border-bottom:1px solid var(--border);transition:box-shadow var(--t)}
.header.scrolled{box-shadow:var(--shadow-lg)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:72px;gap:1rem}
.logo{display:flex;flex-direction:row;align-items:center;gap:.625rem;line-height:1;flex-shrink:0;cursor:pointer}
.logo-mark{height:40px;width:auto;display:block;flex-shrink:0}
.logo-text{display:flex;flex-direction:column}
.logo-main{font-family:'EB Garamond',serif;font-size:1.25rem;font-weight:700;color:var(--navy)}
.logo-sub{font-size:.6875rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--amber);margin-top:.15rem}
.nav{display:none;gap:.125rem}
@media(min-width:768px){.nav{display:flex}}
.nav a{font-size:.9375rem;font-weight:700;color:var(--text-muted);padding:.5rem .75rem;border-radius:var(--radius);transition:color var(--t),background var(--t)}
.nav a:hover,.nav a[aria-current="page"]{color:var(--navy);background:var(--bg-alt)}
.header-phone{display:none}
@media(min-width:600px){.header-phone{display:flex}}
.header-phone a{display:inline-flex;align-items:center;gap:.5rem;background:var(--amber);color:var(--navy);font-weight:700;font-size:.9375rem;padding:.625rem 1.25rem;border-radius:var(--radius);transition:all var(--t);cursor:pointer}
.header-phone a:hover{background:var(--amber-light);transform:translateY(-1px);box-shadow:var(--shadow)}
.header-phone a:focus-visible{outline:3px solid var(--navy);outline-offset:3px}
.menu-btn{display:flex;align-items:center;justify-content:center;width:44px;height:44px;border:none;background:var(--bg-alt);border-radius:var(--radius);cursor:pointer;color:var(--navy);flex-shrink:0}
@media(min-width:768px){.menu-btn{display:none}}
.menu-btn:focus-visible{outline:3px solid var(--amber);outline-offset:3px}
.mobile-nav{display:none;border-top:1px solid var(--border);padding:1rem 0;background:var(--white)}
.mobile-nav.open{display:block}
.mobile-nav a{display:flex;align-items:center;padding:.75rem 1.25rem;font-weight:700;color:var(--navy);border-radius:var(--radius);margin:0 .5rem;transition:background var(--t)}
.mobile-nav a:hover{background:var(--bg-alt)}
.mobile-cta{margin:.75rem 1rem 0}
.mobile-cta a{display:flex;align-items:center;justify-content:center;gap:.5rem;background:var(--amber);color:var(--navy);font-weight:700;padding:.875rem;border-radius:var(--radius)}

/* Page Hero (service pages) */
.page-hero{padding:8rem 0 3.5rem;background:radial-gradient(ellipse at 70% 30%,rgba(3,105,161,.35) 0%,transparent 60%),linear-gradient(160deg,#0F172A 0%,#1E3A5F 45%,#0C4A6E 100%);position:relative;overflow:hidden}
.page-hero::after{content:'';position:absolute;bottom:0;left:0;right:0;height:4px;background:var(--amber)}
.breadcrumb{display:flex;align-items:center;flex-wrap:wrap;gap:.375rem;margin-bottom:1.25rem;font-size:.875rem}
.breadcrumb a{color:rgba(255,255,255,.6);transition:color var(--t)}
.breadcrumb a:hover{color:var(--amber-light)}
.breadcrumb .sep{color:rgba(255,255,255,.35)}
.breadcrumb .crumb-cur{color:var(--amber-light);font-weight:700}
.page-hero h1{font-size:clamp(1.875rem,5vw,3rem);color:var(--white);margin-bottom:1rem;max-width:720px}
.page-hero .hero-sub{font-size:1.0625rem;color:rgba(255,255,255,.8);max-width:620px;margin-bottom:1.75rem;line-height:1.7}
.page-hero .hero-ctas{display:flex;flex-wrap:wrap;gap:.875rem}

/* Trust Bar */
.trust-bar{background:var(--white);padding:2.5rem 0;border-bottom:1px solid var(--border)}
.trust-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem 1rem}
@media(min-width:768px){.trust-grid{grid-template-columns:repeat(4,1fr)}}
.trust-item{display:flex;align-items:center;gap:1rem}
.trust-icon{width:52px;height:52px;background:var(--amber-pale);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--amber)}
.trust-num{font-family:'EB Garamond',serif;font-size:1.5rem;font-weight:700;color:var(--navy);line-height:1;display:block}
.trust-label{font-size:.8125rem;color:var(--text-muted);font-weight:700;display:block}

/* Service Body (2-col layout) */
.svc-body{background:var(--white)}
.svc-grid{display:grid;grid-template-columns:1fr;gap:2.5rem}
@media(min-width:1024px){.svc-grid{grid-template-columns:1fr 320px}}
.svc-main h2{font-size:clamp(1.5rem,3vw,2rem);color:var(--navy);margin-bottom:1rem}
.svc-main h3{font-size:1.25rem;color:var(--navy);margin:1.75rem 0 .75rem;font-weight:600}
.svc-main p{font-size:1rem;color:var(--text-muted);line-height:1.75;margin-bottom:1rem}
.svc-main p:last-child{margin-bottom:0}
.check-list{list-style:none;display:flex;flex-direction:column;gap:.625rem;margin-bottom:.5rem}
.check-list li{display:flex;align-items:flex-start;gap:.75rem;font-size:.9375rem;color:var(--text-muted);line-height:1.55}
.check-list li::before{content:'';width:20px;height:20px;background:var(--amber-pale);border-radius:50%;flex-shrink:0;margin-top:1px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D97706' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center}
.svc-sidebar{}
.contact-box{background:var(--navy);border-radius:12px;padding:1.75rem;color:var(--white)}
@media(min-width:1024px){.contact-box{position:sticky;top:88px}}
.contact-box h3{font-size:1.375rem;color:var(--white);margin-bottom:.5rem}
.contact-box>p{font-size:.9375rem;color:rgba(255,255,255,.7);margin-bottom:1.25rem}
.contact-box .btn{width:100%;justify-content:center;margin-bottom:.75rem}
.contact-box .btn-outline-white{margin-bottom:1.5rem}
.contact-badges{display:flex;flex-direction:column;gap:.625rem;border-top:1px solid rgba(255,255,255,.1);padding-top:1.25rem;margin-top:.25rem}
.contact-badge{display:flex;align-items:center;gap:.625rem;font-size:.875rem;color:rgba(255,255,255,.75)}
.contact-badge svg{color:var(--amber-light);flex-shrink:0}

/* Process Steps */
.process{background:var(--bg-alt)}
.process-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:640px){.process-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.process-grid{grid-template-columns:repeat(4,1fr)}}
.process-step{background:var(--white);border-radius:12px;padding:1.75rem;border:1px solid var(--border);transition:all var(--t)}
.process-step:hover{box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.step-num{width:48px;height:48px;background:var(--amber);color:var(--navy);font-family:'EB Garamond',serif;font-size:1.5rem;font-weight:700;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.process-step h3{font-size:1.125rem;color:var(--navy);margin-bottom:.625rem;font-weight:600}
.process-step p{font-size:.9375rem;color:var(--text-muted);line-height:1.65}

/* Service Highlights */
.svc-highlights{background:var(--navy)}
.svc-highlights .section-tag{background:rgba(217,119,6,.15);color:var(--amber-light)}
.svc-highlights .section-title{color:var(--white)}
.svc-highlights .section-subtitle{color:rgba(255,255,255,.65)}
.highlights-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:768px){.highlights-grid{grid-template-columns:repeat(3,1fr)}}
.highlight-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:12px;padding:1.75rem;transition:background var(--t)}
.highlight-card:hover{background:rgba(255,255,255,.1)}
.highlight-icon{width:48px;height:48px;background:rgba(217,119,6,.15);border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--amber-light);margin-bottom:1.125rem}
.highlight-card h3{font-size:1.125rem;color:var(--white);margin-bottom:.625rem;font-weight:600}
.highlight-card p{font-size:.9375rem;color:rgba(255,255,255,.65);line-height:1.7}

/* Areas Band */
.areas-band{background:var(--bg-alt);padding:3.5rem 0;text-align:center}
.areas-band .section-tag{display:inline-block;margin-bottom:.75rem}
.areas-band h2{font-size:clamp(1.5rem,3vw,2rem);color:var(--navy);margin-bottom:.75rem}
.areas-band p{font-size:1rem;color:var(--text-muted);max-width:640px;margin:0 auto 1.5rem;line-height:1.7}

/* FAQ */
.faq{background:var(--white)}
.faq-list{max-width:780px;margin:0 auto;display:flex;flex-direction:column;gap:.75rem}
.faq-item{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.faq-item summary{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.25rem 1.5rem;font-weight:700;font-size:1rem;color:var(--navy);cursor:pointer;list-style:none;transition:background var(--t)}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary:hover{background:var(--bg)}
.faq-item[open] summary{background:var(--bg);border-bottom:1px solid var(--border)}
.faq-icon{width:22px;height:22px;flex-shrink:0;color:var(--amber);transition:transform var(--t)}
.faq-item[open] .faq-icon{transform:rotate(45deg)}
.faq-a{padding:1.25rem 1.5rem}
.faq-a p{font-size:.9375rem;color:var(--text-muted);line-height:1.75;margin-bottom:.75rem}
.faq-a p:last-child{margin-bottom:0}
.faq-a a{color:var(--amber);font-weight:700}

/* Reviews (2-col) */
.svc-reviews{background:var(--bg-alt)}
.reviews-2{display:grid;grid-template-columns:1fr;gap:1.5rem;max-width:900px;margin:0 auto}
@media(min-width:768px){.reviews-2{grid-template-columns:repeat(2,1fr)}}
.testi-card{background:var(--white);border:1px solid var(--border);border-radius:12px;padding:1.75rem;display:flex;flex-direction:column;gap:1rem;transition:box-shadow var(--t)}
.testi-card:hover{box-shadow:var(--shadow-lg)}
.stars{display:flex;gap:2px;color:var(--amber)}
.testi-text{font-size:.9375rem;color:var(--text);line-height:1.7;flex:1;font-style:italic}
.testi-author{display:flex;align-items:center;gap:.875rem;padding-top:.75rem;border-top:1px solid var(--border)}
.author-avatar{width:44px;height:44px;border-radius:50%;background:var(--navy-mid);display:flex;align-items:center;justify-content:center;font-family:'EB Garamond',serif;font-size:1.125rem;font-weight:700;color:var(--white);flex-shrink:0}
.author-name{font-weight:700;font-size:.9375rem;color:var(--navy)}
.author-loc{font-size:.8125rem;color:var(--text-muted)}
.g-badge{display:flex;align-items:center;gap:.375rem;font-size:.75rem;color:var(--text-muted);font-weight:700;margin-left:auto}

/* CTA Band */
.cta-band{background:var(--amber);padding:4rem 0;text-align:center}
.cta-band h2{font-size:clamp(1.75rem,3.5vw,2.5rem);color:var(--navy);margin-bottom:.75rem}
.cta-band p{font-size:1.0625rem;color:rgba(15,23,42,.75);max-width:560px;margin:0 auto 2rem;line-height:1.65}

/* Form */
.form-section{background:var(--bg-alt)}
.form-wrap{background:var(--white);border-radius:16px;padding:3rem;box-shadow:var(--shadow-lg);max-width:800px;margin:0 auto}
@media(max-width:640px){.form-wrap{padding:1.75rem 1.25rem}}
.form-header{text-align:center;margin-bottom:2rem}
.form-header .section-title{margin-bottom:.5rem}
.form-header p{color:var(--text-muted);font-size:1rem}
.form-grid{display:grid;grid-template-columns:1fr;gap:1.25rem}
@media(min-width:600px){.form-grid{grid-template-columns:1fr 1fr}}
.form-group{display:flex;flex-direction:column;gap:.375rem}
.form-group.full{grid-column:1/-1}
.form-group label{font-size:.875rem;font-weight:700;color:var(--navy)}
.form-group label span.req{color:var(--amber)}
.form-control{padding:.75rem 1rem;border:1.5px solid var(--border);border-radius:var(--radius);font-family:'Lato',sans-serif;font-size:1rem;color:var(--text);background:var(--white);transition:border-color var(--t),box-shadow var(--t);width:100%}
.form-control:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 3px rgba(3,105,161,.12)}
.form-control::placeholder{color:#94A3B8}
textarea.form-control{resize:vertical;min-height:120px}
select.form-control{cursor:pointer}
.form-submit{text-align:center;margin-top:.75rem}
.form-submit .btn{font-size:1.0625rem;padding:.9375rem 2.5rem}
.form-note{text-align:center;margin-top:1rem;font-size:.8125rem;color:var(--text-muted);display:flex;align-items:center;justify-content:center;gap:.375rem}

/* Footer */
.footer{background:var(--navy);color:rgba(255,255,255,.75);padding:4rem 0 0}
.footer-grid{display:grid;grid-template-columns:1fr;gap:2.5rem}
@media(min-width:768px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem}}
.footer .logo-main{color:var(--white);font-size:1.4375rem}
.footer .logo-sub{display:block;margin-bottom:1.25rem}
.footer-desc{font-size:.9375rem;line-height:1.7;color:rgba(255,255,255,.6);margin-bottom:1.25rem;max-width:300px}
.footer-nap{display:flex;flex-direction:column;gap:.625rem}
.footer-nap-item{display:flex;align-items:flex-start;gap:.625rem;font-size:.9375rem}
.footer-nap-item svg{color:var(--amber);flex-shrink:0;margin-top:2px}
.footer-nap-item a{color:rgba(255,255,255,.85);transition:color var(--t)}
.footer-nap-item a:hover{color:var(--amber-light)}
.footer-col h4{font-family:'Lato',sans-serif;font-size:.8125rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase;color:var(--white);margin-bottom:1.25rem}
.footer-links{display:flex;flex-direction:column;gap:.625rem}
.footer-links a{font-size:.9375rem;color:rgba(255,255,255,.65);transition:color var(--t)}
.footer-links a:hover{color:var(--amber-light)}
.footer-bottom{margin-top:3rem;border-top:1px solid rgba(255,255,255,.1);padding:1.5rem 0}
.footer-bottom-inner{display:flex;flex-direction:column;gap:.5rem;align-items:center;text-align:center}
@media(min-width:768px){.footer-bottom-inner{flex-direction:row;justify-content:space-between;text-align:left}}
.footer-bottom p{font-size:.875rem;color:rgba(255,255,255,.4)}
.footer-bottom a{color:rgba(255,255,255,.55);transition:color var(--t)}
.footer-bottom a:hover{color:var(--amber-light)}

/* Float Phone */
.float-phone{position:fixed;bottom:1.25rem;right:1.25rem;z-index:90}
@media(min-width:768px){.float-phone{display:none}}
.float-phone a{display:inline-flex;align-items:center;gap:.5rem;background:var(--amber);color:var(--navy);font-weight:900;font-size:1rem;padding:.875rem 1.375rem;border-radius:999px;box-shadow:0 4px 20px rgba(217,119,6,.5);transition:all var(--t)}
.float-phone a:hover{background:var(--amber-light);transform:scale(1.04)}

/* Animations */
@media(prefers-reduced-motion:no-preference){
    .fade-in{opacity:0;transform:translateY(20px);transition:opacity 500ms ease,transform 500ms ease}
    .fade-in.visible{opacity:1;transform:none}
}

/* ── City/Service Page Components ── */

/* FAQ section heading */
.faq-section h2{text-align:center;font-size:clamp(1.5rem,3vw,2rem);color:var(--navy);margin-bottom:2rem}

/* Sidebar CTA box */
.sidebar-cta{background:var(--navy);border-radius:12px;padding:1.75rem;color:var(--white);margin-bottom:1.5rem}
@media(min-width:1024px){.sidebar-cta{position:sticky;top:88px}}
.sidebar-cta h3{font-size:1.375rem;color:var(--white);margin-bottom:.5rem}
.sidebar-cta>p{font-size:.9375rem;color:rgba(255,255,255,.7);margin-bottom:1.25rem}

/* Sidebar services list */
.sidebar-services{background:var(--bg-alt);border-radius:12px;padding:1.5rem;border:1px solid var(--border)}
.sidebar-services h4{font-family:'Lato',sans-serif;font-size:.8125rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase;color:var(--navy);margin-bottom:1rem}
.sidebar-services ul{list-style:none;display:flex;flex-direction:column;gap:.5rem}
.sidebar-services ul li a{font-size:.9375rem;color:var(--text-muted);transition:color var(--t)}
.sidebar-services ul li a:hover{color:var(--amber)}

/* Outline navy button */
.btn-outline-navy{background:transparent;color:var(--navy);border-color:var(--navy)}
.btn-outline-navy:hover{background:var(--navy);color:var(--white);transform:translateY(-2px);box-shadow:var(--shadow-lg)}

/* Inline review cards */
.review-block{display:flex;flex-direction:column;gap:1.25rem;margin-top:2rem}
@media(min-width:640px){.review-block{flex-direction:row}}
.review-card{background:var(--bg-alt);border:1px solid var(--border);border-radius:12px;padding:1.5rem;flex:1;transition:box-shadow var(--t)}
.review-card:hover{box-shadow:var(--shadow-lg)}
.review-stars{font-size:1.125rem;color:var(--amber);margin-bottom:.625rem}
.review-text{font-size:.9375rem;color:var(--text);line-height:1.7;font-style:italic;margin-bottom:.75rem}
.review-author{font-size:.875rem;font-weight:700;color:var(--navy);margin-bottom:0}

/* Bullet lists inside svc-main */
.svc-main ul:not(.check-list){list-style:disc;padding-left:1.25rem;display:flex;flex-direction:column;gap:.625rem;margin-bottom:1rem}
.svc-main ul:not(.check-list) li{font-size:.9375rem;color:var(--text-muted);line-height:1.65}
.svc-main ul:not(.check-list) li strong{color:var(--navy)}

/* Contact/estimate form section */
#contact.section{background:var(--bg-alt)}
.form-wrap h2{font-family:'EB Garamond',Georgia,serif;font-size:clamp(1.375rem,2.5vw,1.875rem);color:var(--navy);text-align:center;margin-bottom:.5rem}
.form-sub{text-align:center;color:var(--text-muted);font-size:1rem;margin-bottom:1.75rem}
.estimate-form{display:flex;flex-direction:column;gap:1.25rem}
.form-row{display:grid;grid-template-columns:1fr;gap:1.25rem}
@media(min-width:600px){.form-row{grid-template-columns:1fr 1fr}}
.estimate-form input,.estimate-form select,.estimate-form textarea{padding:.75rem 1rem;border:1.5px solid var(--border);border-radius:var(--radius);font-family:'Lato',sans-serif;font-size:1rem;color:var(--text);background:var(--white);transition:border-color var(--t),box-shadow var(--t);width:100%}
.estimate-form input:focus,.estimate-form select:focus,.estimate-form textarea:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 3px rgba(3,105,161,.12)}
.estimate-form input::placeholder,.estimate-form textarea::placeholder{color:#94A3B8}
.estimate-form textarea{resize:vertical;min-height:100px}
.estimate-form select{cursor:pointer}
.estimate-form .btn{align-self:flex-start;font-size:1.0625rem;padding:.9375rem 2.5rem}

/* Areas band navigation links */
.areas-band nav{display:flex;flex-wrap:wrap;justify-content:center;gap:.75rem;margin-top:.75rem}
.areas-band nav a{display:inline-flex;align-items:center;background:var(--white);border:1px solid var(--border);border-radius:999px;padding:.4375rem 1rem;font-size:.875rem;font-weight:700;color:var(--navy);transition:all var(--t)}
.areas-band nav a:hover{background:var(--navy);color:var(--white);border-color:var(--navy)}

/* ── Hub / Directory Pages ── */
.hub-intro{background:var(--white);padding:3.5rem 0}
.hub-intro p{font-size:1.0625rem;color:var(--text-muted);line-height:1.75;max-width:720px;margin-bottom:1rem}
.hub-intro p:last-child{margin-bottom:0}
.hub-section{background:var(--bg-alt);padding:4rem 0}
.hub-section-header{margin-bottom:2.5rem}
.hub-section-header h2{font-size:clamp(1.5rem,3vw,2.25rem);color:var(--navy);margin-bottom:.625rem}
.hub-section-header p{font-size:1rem;color:var(--text-muted);line-height:1.7;max-width:640px}
.hub-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:640px){.hub-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.hub-grid{grid-template-columns:repeat(3,1fr)}}
.hub-card{background:var(--white);border:1px solid var(--border);border-radius:12px;padding:1.75rem;display:flex;flex-direction:column;gap:1rem;transition:all var(--t)}
.hub-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-3px);border-color:var(--amber)}
.hub-card-top{display:flex;align-items:center;gap:.875rem}
.hub-card-icon{width:44px;height:44px;background:var(--amber-pale);border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--amber);flex-shrink:0}
.hub-card h3{font-size:1.1875rem;color:var(--navy);margin:0}
.hub-card p{font-size:.9375rem;color:var(--text-muted);line-height:1.7;flex:1;margin:0}
.hub-card-link{display:inline-flex;align-items:center;gap:.375rem;font-size:.9375rem;font-weight:700;color:var(--amber);transition:color var(--t)}
.hub-card-link:hover{color:var(--amber-light)}
.hub-card-link svg{transition:transform var(--t)}
.hub-card:hover .hub-card-link svg{transform:translateX(3px)}

/* Service Areas page — city sections */
.city-section{padding:3.5rem 0;border-bottom:1px solid var(--border)}
.city-section:last-child{border-bottom:none}
.city-section-inner{display:grid;grid-template-columns:1fr;gap:2rem}
@media(min-width:768px){.city-section-inner{grid-template-columns:220px 1fr}}
.city-label h2{font-size:1.75rem;color:var(--navy);margin-bottom:.375rem}
.city-label p{font-size:.9375rem;color:var(--text-muted);line-height:1.65}
.city-services{display:flex;flex-direction:column;gap:1rem}
.svc-row{display:flex;align-items:flex-start;gap:1.25rem;background:var(--white);border:1px solid var(--border);border-radius:10px;padding:1.25rem 1.5rem;transition:all var(--t)}
.svc-row:hover{box-shadow:var(--shadow);border-color:var(--amber)}
.svc-row-icon{width:38px;height:38px;background:var(--amber-pale);border-radius:8px;display:flex;align-items:center;justify-content:center;color:var(--amber);flex-shrink:0;margin-top:2px}
.svc-row-body{flex:1}
.svc-row-body strong{display:block;font-size:1rem;color:var(--navy);margin-bottom:.25rem}
.svc-row-body p{font-size:.875rem;color:var(--text-muted);margin:0;line-height:1.6}
.svc-row-link{display:inline-flex;align-items:center;gap:.3rem;font-size:.875rem;font-weight:700;color:var(--amber);white-space:nowrap;margin-top:.5rem;transition:color var(--t)}
.svc-row-link:hover{color:var(--amber-light)}
