:root{
  --maroon-900:#4A0E22;
  --maroon-800:#7A1E3D;
  --maroon-700:#A41E43;
  --blush-300:#EFC7D1;
  --blush-100:#F7E3E7;
  --cream-50:#FAF7F5;
  --cream-100:#F4E1E6;
  --ink:#241A1D;
  --ink-600:#6B5257;
  --white:#FFFFFF;
  --line: rgba(42,33,31,0.12);
  --max: 1180px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--cream-50);
  color:var(--ink);
  font-family:'Public Sans', sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Fraunces', serif;
  font-weight:600;
  margin:0;
  color:var(--maroon-900);
  letter-spacing:-0.01em;
}
p{margin:0;}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
ul{margin:0;}
.wrap{max-width:var(--max); margin:0 auto; padding:0 32px;}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}
:focus-visible{outline:2px solid var(--maroon-700); outline-offset:3px;}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:13px 24px; border-radius:2px;
  font-size:13.5px; font-weight:700; letter-spacing:0.02em;
  border:1px solid transparent; cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-primary{
  background:var(--maroon-800); color:var(--white); border-color:var(--maroon-800);
  box-shadow:0 14px 30px -14px rgba(122,30,61,0.55);
}
.btn-primary:hover{background:var(--maroon-900); border-color:var(--maroon-900); transform:translateY(-1px);}
.btn-outline{
  background:transparent; color:var(--maroon-800); border-color:var(--maroon-800);
}
.btn-outline:hover{background:var(--maroon-800); color:var(--white);}
.btn-ghost{
  background:transparent; color:var(--white); border-color:rgba(255,255,255,0.55);
}
.btn-ghost:hover{background:rgba(255,255,255,0.12); border-color:var(--white);}

/* ---------- HEADER ---------- */
header{
  position:sticky; top:0; z-index:60;
  background:rgba(250,246,240,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 32px;
}
.brand{display:flex; align-items:center; gap:12px;}
.brand img{height:44px; width:auto;}
.brand-word b{display:block; font-family:'Fraunces', serif; font-weight:600; font-size:15px; color:var(--maroon-900); line-height:1.2;}
.brand-word span{display:block; font-family:'Public Sans', sans-serif; font-weight:500; font-size:10.5px; letter-spacing:0.1em; color:var(--maroon-800); text-transform:uppercase; margin-top:2px;}

.menu ul{display:flex; gap:28px; align-items:center; list-style:none; padding:0; margin:0;}
.menu li{position:relative;}
.top-link{
  font-size:14px; font-weight:600; color:var(--ink);
  display:inline-flex; align-items:center; gap:5px;
  padding:8px 0; position:relative;
}
.top-link::after{
  content:""; position:absolute; left:0; right:0; bottom:2px; height:2px;
  background:var(--maroon-700); transform:scaleX(0); transform-origin:left;
  transition:transform .25s ease;
}
.top-link:hover::after{transform:scaleX(1);}
.caret{
  width:7px; height:7px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor;
  transform:rotate(45deg); margin-top:-3px;
}
.dropdown{
  /* top:100% with no gap + padding-top bridges the hover path all the way
     from the link into the panel, so the cursor never leaves a hoverable
     element (padding still counts as part of this box) while moving down. */
  position:absolute; top:100%; left:50%; transform:translateX(-50%);
  padding-top:14px;
  min-width:210px; opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .18s ease;
  z-index:120;
}
.menu li:hover .dropdown,
.menu li:focus-within .dropdown{opacity:1; visibility:visible; pointer-events:auto;}
.dropdown-inner{
  background:var(--white); border:1px solid var(--line); border-radius:6px;
  box-shadow:0 24px 48px -24px rgba(78,16,39,0.35);
  padding:10px; display:flex; flex-direction:column; gap:2px;
}
.dropdown-inner a{
  padding:9px 12px; border-radius:4px; font-size:13.5px; font-weight:600; color:var(--ink-600);
  white-space:nowrap; display:block;
}
.dropdown-inner a:hover{background:var(--cream-100); color:var(--maroon-800);}

.nav-cta{display:flex; align-items:center; gap:14px;}
.menu-toggle{
  display:none; background:none; border:none; cursor:pointer; padding:6px; flex-direction:column; gap:5px;
}
.menu-toggle span{display:block; width:22px; height:2px; background:var(--maroon-900);}

/* ---------- MOBILE PANEL ---------- */
.mobile-overlay{
  position:fixed; inset:0; background:rgba(42,33,31,0.45); z-index:70;
  opacity:0; visibility:hidden; transition:opacity .25s ease;
}
.mobile-overlay.open{opacity:1; visibility:visible;}
.mobile-panel{
  position:fixed; top:0; right:0; bottom:0; width:82%; max-width:340px; z-index:80;
  background:var(--cream-50); padding:28px 26px; overflow-y:auto;
  transform:translateX(100%); transition:transform .3s ease;
  box-shadow:-20px 0 50px -20px rgba(0,0,0,0.3);
}
.mobile-panel.open{transform:translateX(0);}
.close-btn{
  background:none; border:none; font-size:28px; line-height:1; color:var(--maroon-900);
  cursor:pointer; margin-bottom:18px; padding:4px;
}
.mobile-panel > ul{list-style:none; padding:0; margin:0; display:grid; gap:6px;}
.mobile-panel > ul > li > a{
  display:block; padding:11px 4px; font-size:15px; font-weight:600; color:var(--ink);
  border-bottom:1px solid var(--line);
}
.mobile-panel ul.sub{list-style:none; padding:0 0 0 14px; margin:4px 0 8px; display:grid; gap:2px;}
.mobile-panel ul.sub a{
  display:block; padding:8px 4px; font-size:13.5px; font-weight:500; color:var(--ink-600); border-bottom:none;
}

/* ---------- HERO ---------- */
.hero{
  position:relative; overflow:hidden;
  padding:110px 0 100px;
  background:
    radial-gradient(640px 360px at 88% -10%, rgba(122,30,61,0.10), transparent 70%),
    var(--cream-50);
  text-align:center;
}
.ring-deco{
  position:absolute; border:1px solid rgba(122,30,61,0.15); border-radius:50%;
  pointer-events:none;
}
.ring-1{ width:520px; height:520px; top:-220px; left:50%; transform:translateX(-50%); }
.ring-2{ width:760px; height:760px; top:-340px; left:50%; transform:translateX(-50%); border-color:rgba(184,134,46,0.16); }
.ring-3{ width:340px; height:340px; bottom:-200px; right:8%; border-color:rgba(122,30,61,0.12); }
.hero-arc-label{
  position:relative; z-index:1;
  font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--maroon-800); font-weight:600; margin-bottom:8px;
}
.hero-inner{position:relative; z-index:1; max-width:760px; margin:0 auto;}
.kicker{
  display:inline-block; font-size:13px; font-weight:600; letter-spacing:0.06em;
  color:var(--maroon-800); text-transform:uppercase;
}
.hero h1{
  font-size:clamp(36px, 6vw, 62px); line-height:1.05; margin-top:16px;
  letter-spacing:-0.01em;
}
.hero h1 .accent{color:var(--maroon-700);}
.lede{
  margin:22px auto 0; max-width:560px; font-size:17px; color:var(--ink-600);
}
.hero-actions{display:flex; gap:14px; justify-content:center; margin-top:34px; flex-wrap:wrap;}

/* ---------- SECTIONS ---------- */
.section{padding:96px 0;}
.section.tight{padding:64px 0;}
.section-head{max-width:660px; margin-bottom:52px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head h2{font-size:clamp(28px,3.2vw,40px); margin-top:14px; line-height:1.14;}
.section-head p{margin-top:16px; color:var(--ink-600); font-size:15.5px;}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
  font-weight:600; color:var(--maroon-800);
}
.eyebrow::before{content:""; width:16px; height:1px; background:var(--maroon-700); display:inline-block;}

/* ---------- INTRO ---------- */
.intro-grid{display:grid; grid-template-columns:1.05fr 0.95fr; gap:64px; align-items:center;}
.intro-visual{
  border:1px solid var(--line); border-radius:8px; background:var(--white);
  padding:48px 30px; display:flex; align-items:center; justify-content:center;
  box-shadow:0 30px 60px -34px rgba(78,16,39,0.28);
}
.intro-visual-inner{text-align:center;}
.intro-visual-inner img{height:110px; width:auto; margin:0 auto 20px;}
.intro-visual-inner b{display:block; font-family:'Fraunces', serif; font-size:22px; color:var(--maroon-900);}
.intro-visual-inner span{display:block; font-size:13px; color:var(--ink-600); margin-top:6px;}

/* ---------- SERVICES ---------- */
.services-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; margin-top:8px;}
.service-card{
  background:var(--white); border:1px solid var(--line); border-radius:6px;
  padding:32px 28px; transition:transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{transform:translateY(-4px); box-shadow:0 24px 48px -28px rgba(78,16,39,0.35);}
.ring-badge{
  width:46px; height:46px; border-radius:50%; background:var(--cream-100);
  display:flex; align-items:center; justify-content:center; color:var(--maroon-800);
  margin-bottom:20px;
}
.ring-badge svg{width:20px; height:20px;}
.service-card h3{font-size:19px;}
.service-card p{margin-top:10px; font-size:14px; color:var(--ink-600);}

/* ---------- INDUSTRIES (dark) ---------- */
.industries{background:var(--maroon-900); color:var(--white);}
.industries .section-head p{color:#e0c6ce;}
.industries-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; margin-top:8px;}
.industry-card{
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.14); border-radius:6px;
  padding:28px 26px; transition:background .2s ease, border-color .2s ease;
}
.industry-card:hover{background:rgba(255,255,255,0.09); border-color:var(--blush-300);}
.industry-card h3{color:var(--white); font-size:18px;}
.industry-card p{margin-top:10px; font-size:14px; color:#d9c2ca;}
.industries-more{text-align:center; margin-top:32px;}
.industries-copy{max-width:700px; margin:44px auto 0; text-align:center; display:grid; gap:12px;}
.industries-copy p{color:#d9c2ca; font-size:14.5px;}

/* ---------- PILLS (serving locations teaser) ---------- */
.pill-grid{display:flex; flex-wrap:wrap; gap:12px;}
.pill{
  padding:10px 20px; border:1px solid var(--line); border-radius:30px;
  font-size:13.5px; font-weight:600; color:var(--maroon-800); background:var(--white);
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.pill:hover{background:var(--maroon-800); border-color:var(--maroon-800); color:var(--white);}

/* ---------- CTA BANNER ---------- */
.cta-banner{
  max-width:var(--max); margin:0 auto; padding:0 32px; text-align:center;
}
.cta-banner h2{font-size:clamp(26px,3vw,36px);}
.cta-banner .btn{margin-top:26px;}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:8px;}
.testimonial-card{
  background:var(--white); border:1px solid var(--line); border-radius:6px; padding:30px 26px;
  position:relative;
}
.quote-mark{
  font-family:'Fraunces', serif; font-size:44px; color:var(--blush-300); line-height:1; display:block; margin-bottom:6px;
}
.quote{font-family:'Fraunces', serif; font-size:16.5px; line-height:1.5; color:var(--maroon-900); font-weight:400;}
.testimonial-who{display:flex; align-items:center; gap:10px; margin-top:22px;}
.avatar-ring{
  width:36px; height:36px; border-radius:50%; background:var(--cream-100);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:700; color:var(--maroon-800);
  border:1px solid var(--line);
}
.testimonial-who b{display:block; font-size:13.5px;}
.testimonial-who span{font-size:12px; color:var(--ink-600);}

/* ---------- ABOUT ---------- */
.about{display:grid; grid-template-columns:1.05fr 0.95fr; gap:64px; align-items:center;}
.about-stats{display:flex; gap:30px; margin-top:30px; padding-top:24px; border-top:1px solid var(--line);}
.about-stats div b{display:block; font-family:'Fraunces', serif; font-size:20px; color:var(--maroon-800);}
.about-stats div span{font-size:12px; color:var(--ink-600);}
.about-frame{
  border:1px solid var(--line); border-radius:8px; background:var(--white);
  padding:40px 34px; text-align:center; box-shadow:0 30px 60px -34px rgba(78,16,39,0.28);
}
.about-frame img{height:90px; width:auto; margin:0 auto 20px;}

/* ---------- FINAL CTA ---------- */
.final-cta{
  background:linear-gradient(135deg, var(--maroon-800), var(--maroon-900));
  color:var(--white); padding:90px 0; text-align:center;
}
.final-cta .eyebrow{color:var(--blush-300);}
.final-cta .eyebrow::before{background:var(--blush-300);}
.final-cta h2{color:var(--white); margin-top:14px; font-size:clamp(28px,3.4vw,42px);}
.final-cta .btn{margin-top:28px;}

/* ---------- FOOTER ---------- */
footer{background:var(--maroon-900); color:#e9dde1; padding:64px 0 28px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;}
.footer-brand{display:flex; align-items:center; gap:10px; margin-bottom:16px;}
.logo-badge{
  width:38px; height:38px; border-radius:50%; background:var(--white);
  display:flex; align-items:center; justify-content:center; padding:4px;
}
.footer-brand b{font-family:'Fraunces', serif; color:var(--white); font-size:16px;}
footer p{color:#c9b3ba;}
footer h4{color:var(--white); font-size:13px; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:16px; font-family:'Public Sans', sans-serif; font-weight:700;}
.footer-col ul{list-style:none; padding:0; margin:0; display:grid; gap:10px;}
.footer-col ul a{color:#d9c6cc; font-size:14px; transition:color .2s ease;}
.footer-col ul a:hover{color:var(--white);}
.social-row{display:flex; gap:12px;}
.social-row a{
  width:30px; height:30px; border-radius:50%; border:1px solid rgba(255,255,255,0.25);
  display:flex; align-items:center; justify-content:center; font-size:12px; color:#e9dde1;
  transition:background .2s ease, border-color .2s ease, color .2s ease;
}
.social-row a:hover{background:var(--maroon-700); border-color:var(--maroon-700); color:var(--maroon-900);}
.footer-bottom{
  margin-top:52px; padding-top:24px; border-top:1px solid rgba(255,255,255,0.14);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  font-size:12.5px; color:#b79aa1;
}

/* ---------- REVEAL ---------- */
.reveal{opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease;}
.reveal.in{opacity:1; transform:translateY(0);}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  .intro-grid{grid-template-columns:1fr; gap:44px;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .industries-grid{grid-template-columns:repeat(2,1fr);}
  .testimonials-grid{grid-template-columns:1fr;}
  .about{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width: 860px){
  .menu{display:none;}
  .nav-cta .btn-outline{display:none;}
  .menu-toggle{display:flex;}
}
@media (max-width: 720px){
  .wrap{padding:0 20px;}
  .services-grid{grid-template-columns:1fr;}
  .industries-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr; gap:32px;}
  .section{padding:72px 0;}
  .hero{padding:88px 0 76px;}
}

/* ================= INTERIOR PAGES ================= */

/* Breadcrumb */
.breadcrumb{
  font-size:12.5px; color:var(--ink-600); margin-bottom:18px;
}
.breadcrumb a{color:var(--maroon-800); font-weight:600;}
.breadcrumb a:hover{text-decoration:underline;}
.breadcrumb span{margin:0 6px; color:var(--ink-600);}

/* Simple interior hero */
.page-hero{
  position:relative; overflow:hidden;
  padding:72px 0 64px;
  background:
    radial-gradient(560px 300px at 90% -10%, rgba(122,30,61,0.09), transparent 70%),
    var(--cream-50);
  border-bottom:1px solid var(--line);
}
.page-hero .wrap{max-width:900px;}
.page-hero h1{font-size:clamp(30px,4.2vw,46px); line-height:1.08; margin-top:14px;}
.page-hero p.lede{margin-top:18px; font-size:16.5px; color:var(--ink-600); max-width:640px;}
.page-hero .hero-actions{margin-top:28px;}

/* Article body */
.article{max-width:820px; margin:0 auto;}
.article > p{color:var(--ink-600); font-size:16px; margin-bottom:20px;}
.article h2{font-size:24px; margin-top:44px; margin-bottom:16px;}
.article h2:first-child{margin-top:0;}

/* Feature list within article (label: desc pairs) */
.feature-list{display:grid; gap:16px; margin:24px 0 32px;}
.feature-item{
  background:var(--white); border:1px solid var(--line); border-radius:6px;
  padding:22px 24px; display:flex; gap:16px; align-items:flex-start;
}
.feature-item .num{
  flex:none; width:34px; height:34px; border-radius:50%;
  background:var(--cream-100); color:var(--maroon-800);
  display:flex; align-items:center; justify-content:center;
  font-family:'Fraunces', serif; font-weight:600; font-size:14px;
}
.feature-item h4{font-size:15.5px; color:var(--maroon-900); margin-bottom:6px;}
.feature-item p{font-size:14.5px; color:var(--ink-600); margin:0;}

/* Content CTA box (inline, within article flow) */
.content-cta{
  background:linear-gradient(135deg, var(--maroon-800), var(--maroon-900));
  color:var(--white); border-radius:8px; padding:36px 34px; margin:44px 0 8px;
  text-align:center;
}
.content-cta p{color:var(--blush-100); font-size:15.5px; margin:0 auto 20px; max-width:520px;}
.content-cta .btn{background:var(--white); color:var(--maroon-900); border-color:var(--white);}
.content-cta .btn:hover{background:var(--blush-100); border-color:var(--blush-100);}

/* Sidebar stat / quick-fact card (used on location pages) */
.quick-facts{
  display:flex; gap:28px; flex-wrap:wrap; margin:28px 0 8px;
  padding:22px 26px; background:var(--white); border:1px solid var(--line); border-radius:6px;
}
.quick-facts div b{display:block; font-family:'Fraunces', serif; font-size:19px; color:var(--maroon-800);}
.quick-facts div span{font-size:12px; color:var(--ink-600);}

/* Badge grid (industries served on a location page) */
.badge-grid{display:flex; flex-wrap:wrap; gap:10px; margin:20px 0 8px;}
.badge{
  padding:9px 16px; border-radius:20px; font-size:13px; font-weight:600;
  border:1px solid var(--line); color:var(--ink-600); background:var(--white);
}
a.badge{color:var(--maroon-800); border-color:rgba(122,30,61,0.25); transition:background .2s ease,color .2s ease;}
a.badge:hover{background:var(--maroon-800); color:var(--white); border-color:var(--maroon-800);}

/* Hub grid (industries-we-serve.html / serving-locations.html) */
.hub-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; margin-top:8px;}
.hub-card{
  background:var(--white); border:1px solid var(--line); border-radius:6px;
  padding:26px 24px; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display:block;
}
.hub-card:hover{transform:translateY(-3px); box-shadow:0 24px 48px -30px rgba(78,16,39,0.35); border-color:rgba(122,30,61,0.3);}
.hub-card .tag{font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--maroon-700); font-weight:700;}
.hub-card h3{font-size:17.5px; margin-top:10px;}
.hub-card p{font-size:13.5px; color:var(--ink-600); margin-top:8px;}
.hub-card .arrow{margin-top:14px; font-size:13px; font-weight:700; color:var(--maroon-800);}

/* Related links row (bottom of interior pages) */
.related{background:var(--cream-100); padding:64px 0;}
.related-grid{display:grid; grid-template-columns:repeat(4, 1fr); gap:14px; margin-top:24px;}
.related-card{
  background:var(--white); border:1px solid var(--line); border-radius:6px;
  padding:18px 18px; font-size:13.5px; font-weight:600; color:var(--maroon-800);
  transition:border-color .2s ease, background .2s ease;
}
.related-card:hover{background:var(--maroon-800); color:var(--white); border-color:var(--maroon-800);}

@media (max-width: 980px){
  .hub-grid{grid-template-columns:repeat(2,1fr);}
  .related-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width: 640px){
  .hub-grid{grid-template-columns:1fr;}
  .related-grid{grid-template-columns:1fr;}
  .quick-facts{gap:20px;}
}

/* Mega dropdown for Industries / Locations nav items */
.dropdown.mega{
  min-width:600px;
}
.dropdown.mega .dropdown-inner{
  min-width:600px; max-height:70vh; overflow-y:auto;
}
.mega-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:2px 6px;
}
.mega-grid a{
  padding:8px 10px; border-radius:4px; font-size:13px; font-weight:600; color:var(--ink-600);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; display:block;
}
.mega-grid a:hover{background:var(--cream-100); color:var(--maroon-800);}
.dropdown-inner .view-all{
  margin-top:8px; padding-top:10px; border-top:1px solid var(--line);
  font-size:13px; font-weight:700; color:var(--maroon-800); text-align:center; display:block;
  padding-bottom:2px;
}
.dropdown-inner .view-all:hover{text-decoration:underline;}

/* Mobile accordion (Industries / Locations) */
.mobile-panel details{border-bottom:1px solid var(--line);}
.mobile-panel summary{
  padding:11px 4px; font-size:15px; font-weight:600; color:var(--ink); cursor:pointer;
  list-style:none; display:flex; justify-content:space-between; align-items:center;
}
.mobile-panel summary::-webkit-details-marker{display:none;}
.mobile-panel summary::after{content:"+"; color:var(--maroon-800); font-size:18px;}
.mobile-panel details[open] summary::after{content:"\2212";}
.mobile-panel details ul.sub{max-height:260px; overflow-y:auto;}

@media (max-width: 980px){
  .dropdown.mega{min-width:460px;}
  .mega-grid{grid-template-columns:repeat(2,1fr);}
}
