/*
 * TriState Wildlife — Global Stylesheet
 * Extracted from homepage.html and armonk-test.html mockups.
 * Page-specific hero styles remain inline on each page.
 */

/* ─── VARIABLES & RESET ─── */
:root {
  --red:     #E11D48;
  --red-dk:  #BE123C;
  --red-lt:  #FDA4AF;
  --red-bg:  #FFF1F2;
  --slate:   #1E293B;
  --slate-md:#273549;
  --slate-lt:#334155;
  --bg:      #FFFFFF;
  --bg-alt:  #F1F5F9;
  --ink:     #0F172A;
  --ink-md:  #475569;
  --ink-lt:  #64748B;
  --rule:    #CBD5E1;
  --white:   #FFFFFF;
  --f:       'Inter', sans-serif;
  --r: 4px; --rl: 8px;
  --content-w: 1120px;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--f); font-size: 16px; line-height: 1.7; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.wrap { max-width: 1184px; margin: 0 auto; padding: 0 32px; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 13px 26px; border-radius: var(--r); cursor: pointer; border: none; transition: background .18s, box-shadow .18s, transform .12s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dk); box-shadow: 0 4px 18px rgba(225,29,72,.24); }

/* ─── NAV ─── */
.nav { position: sticky; top: 0; z-index: 200; overflow: visible; }
.nav > .wrap { position: relative; overflow: visible; }
.nav > .wrap::before { content:''; position:absolute; top:0; bottom:0; left:50%; transform:translateX(-50%); width:var(--content-w); max-width:100%; background:var(--slate); z-index:-1; }
.nav__in { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 32px; overflow: visible; }
.nav__logo { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; align-items: center; margin-left: 12px; }
.nav__logo-n { font-size: 33px; font-weight: 900; color: #fff; letter-spacing: -.025em; line-height: 1; }
.nav__logo-s { font-size: 16px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.nav__links { display: none; list-style: none; align-items: center; gap: 4px; flex: 1; justify-content: center; overflow: visible; }
.nav__links > li { position: relative; }
.nav__links li a { font-size: 16px; font-weight: 600; color: #fff; padding: 7px 14px; border-radius: var(--r); transition: color .15s, background .15s; white-space: nowrap; display: block; }
.nav__links li > button { font-family: inherit; font-size: 16px; font-weight: 600; color: #fff; padding: 7px 14px; border-radius: var(--r); transition: color .15s, background .15s; white-space: nowrap; background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 5px; }
.nav__links li a:hover, .nav__links li > button:hover, .nav__links > li.is-open > button { color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.nav__chev { width: 10px; height: 10px; stroke: currentColor; stroke-width: 2.5; fill: none; transition: transform .2s; }
.nav__links > li.is-open .nav__chev, .nav__links > li:hover .nav__chev { transform: rotate(180deg); }
.nav__dd { display: none; position: absolute; top: 100%; left: 0; padding-top: 8px; z-index: 500; }
.nav__dd-inner { background: var(--white); border: 1px solid var(--rule); border-radius: var(--rl); box-shadow: 0 12px 36px rgba(15,23,42,.12); padding: 6px; min-width: 240px; }
.nav__links > li.is-open .nav__dd { display: block; }
.nav__links > li:hover .nav__dd { display: block; }
.nav__links li .nav__dd a { display: block; font-size: 13px; font-weight: 600; color: var(--ink-md); padding: 9px 14px; border-radius: var(--r); transition: color .15s, background .15s; }
.nav__links li .nav__dd a:hover { color: var(--slate); background: var(--bg-alt); }
.nav__dd-div { height: 1px; background: var(--rule); margin: 5px 8px; }
.nav__right { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; overflow: visible; }
.nav__call { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-family: var(--f); font-size: 16px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 11px 16px; border-radius: var(--r); white-space: nowrap; transition: background .18s, box-shadow .18s; }
.nav__call:hover { background: var(--red-dk); box-shadow: 0 4px 18px rgba(225,29,72,.24); }
.nav__call svg { flex-shrink: 0; width: 18px; height: 18px; }
.nav__burger { display: flex; flex-direction: column; gap: 7px; cursor: pointer; padding: 10px; background: none; border: none; position: relative; z-index: 201; -webkit-tap-highlight-color: transparent; flex-shrink: 0; min-width: 42px; min-height: 42px; align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 28px; height: 3px; background: #fff; border-radius: 2px; flex-shrink: 0; }

/* ─── MOBILE MENU ─── */
.mob-menu { display: none; position: fixed; inset: 0; z-index: 300; }
.mob-menu__bg { position: absolute; inset: 0; background: rgba(15,23,42,.55); }
.mob-menu__panel { position: absolute; top: 0; left: 0; width: 300px; height: 100%; background: var(--slate); padding: 28px 32px; overflow-y: auto; }
.mob-menu__close { background: none; border: none; color: rgba(255,255,255,.55); font-size: 26px; cursor: pointer; margin-bottom: 32px; display: block; }
.mob-menu__links a { display: block; font-size: 15px; font-weight: 700; color: rgba(255,255,255,.82); padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.mob-sec-lbl { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.28); padding: 16px 0 6px; }
.mob-menu__links .sub { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.55); padding: 9px 0 9px 12px; }
.mob-menu__tel { display: block; font-size: 22px; font-weight: 800; color: #fff; margin-top: 28px; }
.mob-menu.is-open { display: block; }

/* ─── BREADCRUMB ─── */
.breadcrumb { padding: 0; background: transparent; }
.breadcrumb > .wrap { background: transparent; position: relative; }
.breadcrumb > .wrap::before { content:''; position:absolute; top:0; bottom:0; left:50%; transform:translateX(-50%); width:var(--content-w); max-width:100%; background:var(--white); z-index:-1; border-bottom: 1px solid var(--rule); }
.breadcrumb__in { padding: 10px 0; display: flex; align-items: center; gap: 0; font-size: 13px; font-weight: 500; color: var(--ink-lt); }
.breadcrumb__in a { color: var(--ink-lt); transition: color .15s; }
.breadcrumb__in a:hover { color: var(--red); }
.breadcrumb__sep { margin: 0 8px; font-size: 11px; color: var(--rule); user-select: none; }
.breadcrumb__current { color: var(--ink-md); }

/* ─── HERO (base — page-specific overrides inline) ─── */
.page-hero { position: relative; }
.page-hero > .wrap { position: relative; min-height: 460px; }
.page-hero > .wrap::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: var(--content-w); max-width: 100%;
  background: var(--slate); z-index: -2;
}
.hero-ey { font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red-lt); margin-bottom: 10px; text-shadow: 0 2px 6px rgba(0,0,0,.9), 0 0 16px rgba(0,0,0,.7), 0 0 30px rgba(0,0,0,.4); }
.hero-h1 { font-size: clamp(34px, 4.2vw, 50px); font-weight: 800; line-height: 1.04; letter-spacing: -.025em; color: #fff; margin-bottom: 12px; text-shadow: 0 2px 6px rgba(15,23,42,.7), 0 4px 18px rgba(15,23,42,.45), 0 0 40px rgba(15,23,42,.3); }
.hero-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: #fff; font-family: var(--f); font-size: 20px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 10px 24px; border-radius: var(--r); cursor: pointer; border: none; transition: background .18s, box-shadow .18s; }
.hero-cta-btn:hover { background: var(--red-dk); box-shadow: 0 4px 18px rgba(225,29,72,.24); }
.hero-cta-btn svg { flex-shrink: 0; }
.hero-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.hero-rating__stars { display: flex; gap: 2px; }
.hero-rating__stars svg { width: 18px; height: 15px; fill: #FCD34D; filter: drop-shadow(0 1px 3px rgba(15,23,42,.8)); }
.hero-rating__label { font-size: 18px; font-weight: 700; color: #fff; letter-spacing: .02em; white-space: nowrap; text-shadow: 0 1px 4px rgba(15,23,42,.9), 0 2px 10px rgba(15,23,42,.6); }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-sub { font-size: 23px; font-weight: 600; color: #fff; margin-bottom: 6px; text-shadow: 0 2px 6px rgba(0,0,0,.9), 0 0 16px rgba(0,0,0,.7), 0 0 30px rgba(0,0,0,.4); letter-spacing: .01em; }

/* ─── SUB-HERO STRIP ─── */
.subhero { padding: 0; }
.subhero > .wrap { background: transparent; position: relative; }
.subhero > .wrap::before { content:''; position:absolute; top:0; bottom:0; left:50%; transform:translateX(-50%); width:var(--content-w); max-width:100%; background:var(--bg-alt); z-index:-1; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.subhero__inner { padding: 1px 0; }
.subhero__text { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 700; line-height: 1.5; color: var(--slate); text-align: center; letter-spacing: .01em; }

/* ─── TRUST STRIP ─── */
.tstrip { padding: 0; background: transparent; }
.tstrip > .wrap { background: transparent; position: relative; }
.tstrip > .wrap::before { content:''; position:absolute; top:0; bottom:0; left:50%; transform:translateX(-50%); width:var(--content-w); max-width:100%; background:var(--white); z-index:-1; border-bottom: 1px solid var(--rule); }
.tstrip__wrap { padding: 12px 0; }
.tstrip__in { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.ti { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--ink-md); white-space: nowrap; }
.ti__mark { width: 14px; height: 14px; border-radius: 50%; background: var(--slate); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ti__mark svg { width: 8px; height: 8px; }
.ti__mark polyline { stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }

/* ─── EMERGENCY STRIP ─── */
.estrip { padding: 0; }
.estrip > .wrap { position: relative; }
.estrip > .wrap::before { content:''; position:absolute; top:0; bottom:0; left:50%; transform:translateX(-50%); width:var(--content-w); max-width:100%; background:var(--bg-alt); z-index:-1; border-bottom: 1px solid var(--rule); }
.estrip__in { padding: 1px 0; display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.estrip__text { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 700; line-height: 1.5; color: var(--slate); text-align: center; }

/* ─── MAIN LAYOUT ─── */
.page-body { padding: 40px 0 72px; }
.page-layout { display: grid; grid-template-columns: 1fr 296px; gap: 64px; align-items: start; }

/* Intro */
.intro { margin-bottom: 48px; padding: 24px 28px; background: var(--bg-alt); border-left: 3px solid var(--slate); border-right: 3px solid var(--slate); }
.intro p { font-size: 16.5px; line-height: 1.75; color: var(--ink-md); }
.intro p + p { margin-top: 12px; }

/* Section labels */
.eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 7px; display: block; }
.sec-title { font-size: 22px; font-weight: 800; color: var(--slate); letter-spacing: -.02em; margin-bottom: 22px; }

/* Body text blocks */
.body-text { margin-bottom: 42px; }
.body-text p { font-size: 15.5px; line-height: 1.75; color: var(--ink-md); margin-bottom: 14px; }
.body-text p:last-child { margin-bottom: 0; }

/* ─── SERVICE GRID ─── */
.svc-list { border: 1px solid var(--rule); border-radius: var(--rl); overflow: hidden; margin-bottom: 52px; }
.svc-row { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--rule); position: relative; transition: background .18s; }
.svc-row:last-child { border-bottom: none; }
.svc-row:nth-child(even) { background: var(--white); }
.svc-row:nth-child(odd) { background: var(--bg-alt); }
.svc-row:hover { background: var(--bg-alt); }
.svc-row:hover .svc-name { color: var(--red); }
.svc-name { font-size: 14px; font-weight: 700; color: var(--slate); padding: 17px 20px; display: flex; align-items: center; letter-spacing: -.01em; transition: color .18s; border-right: 1px solid var(--rule); }
.svc-desc { font-size: 13.5px; color: var(--ink-lt); padding: 17px 20px; line-height: 1.6; display: flex; align-items: center; }
.svc-link { position: absolute; inset: 0; }

/* ─── SERVICE AREA GRID ─── */
.sa-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 52px; }
.sa-card { background: var(--bg-alt); border: 1px solid var(--rule); border-radius: var(--rl); padding: 18px 20px; transition: border-color .18s, background .18s; position: relative; }
.sa-card:hover { border-color: var(--red); background: var(--red-bg); }
.sa-card:hover .sa-card__name { color: var(--red-dk); }
.sa-card__name { font-size: 14px; font-weight: 700; color: var(--slate); margin-bottom: 3px; transition: color .18s; }
.sa-card__state { font-size: 11.5px; font-weight: 600; color: var(--ink-lt); text-transform: uppercase; letter-spacing: .06em; }
.sa-card__link { position: absolute; inset: 0; }

/* ─── NEARBY TOWNS ─── */
.nearby-intro { font-size: 14px; color: var(--ink-lt); margin-bottom: 12px; line-height: 1.6; }
.nearby { display: flex; flex-wrap: wrap; gap: 8px; }
.nearby-town { font-size: 12.5px; font-weight: 600; color: var(--slate); background: var(--bg-alt); border: 1px solid var(--rule); padding: 6px 14px; border-radius: 20px; transition: border-color .15s, color .15s, background .15s; }
.nearby-town:hover { background: var(--red-bg); border-color: var(--red); color: var(--red-dk); }

/* ─── REVIEWS ─── */
.reviews-section { margin-bottom: 48px; }
.rating-summary { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding: 16px 20px; background: var(--bg-alt); border: 1px solid var(--rule); border-radius: var(--rl); }
.rating-summary__score { font-size: 40px; font-weight: 800; color: var(--slate); line-height: 1; }
.rating-summary__stars { display: flex; gap: 3px; margin-bottom: 3px; }
.rating-summary__stars svg { width: 16px; height: 16px; fill: #FCD34D; }
.rating-summary__label { font-size: 13px; color: var(--ink-lt); }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 52px; }
.review-card { background: var(--bg); border: 1px solid var(--rule); border-radius: var(--rl); padding: 18px 20px; }
.review-card__stars { display: flex; gap: 2px; margin-bottom: 10px; }
.review-card__stars svg { width: 12px; height: 12px; fill: #FCD34D; }
.review-card__text { font-size: 13.5px; color: var(--ink-md); line-height: 1.65; margin-bottom: 12px; font-style: italic; }
.review-card__text strong { font-style: normal; font-weight: 700; color: var(--ink); }
.review-card__name { font-size: 12px; font-weight: 700; color: var(--slate); }
.review-card__loc { font-size: 11.5px; color: var(--ink-lt); }

/* ─── PHOTO GALLERY ─── */
.gallery-section { margin-bottom: 52px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 52px; }
.gallery-item { position: relative; border-radius: var(--rl); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; background: var(--slate); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--placeholder { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="300" fill="none"><rect width="400" height="300" fill="%231E293B"/><path d="M170 170l20-30 25 20 30-40 35 50H120z" fill="%23334155"/><circle cx="280" cy="100" r="18" fill="%23334155"/><text x="200" y="200" text-anchor="middle" font-family="sans-serif" font-size="13" fill="%2364748B">Photo Placeholder</text></svg>'); background-size: cover; }
.gallery-item__caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 12px; background: linear-gradient(transparent, rgba(15,23,42,.7)); font-size: 11.5px; font-weight: 600; color: #fff; }
.gallery-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.gallery-full .gallery-item { aspect-ratio: 4/3; }
.gallery-full .gallery-item__caption { font-size: 10.5px; padding: 6px 10px; }
.gallery-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--red); margin-bottom: 52px; transition: color .15s; }
.gallery-more:hover { color: var(--red-dk); }
.gallery-more svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.5; fill: none; }

/* ─── LIGHTBOX ─── */
.lightbox { display:none; position:fixed; inset:0; z-index:9999; background:rgba(15,23,42,.88); align-items:center; justify-content:center; cursor:zoom-out; }
.lightbox.is-open { display:flex; }
.lightbox img { max-width:90vw; max-height:88vh; border-radius:var(--rl); box-shadow:0 12px 48px rgba(0,0,0,.5); object-fit:contain; }
.lightbox__close { position:absolute; top:24px; right:28px; background:none; border:none; color:#fff; font-size:32px; cursor:pointer; opacity:.7; transition:opacity .15s; }
.lightbox__close:hover { opacity:1; }
.lightbox__caption { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); font-size:14px; font-weight:600; color:rgba(255,255,255,.8); white-space:nowrap; }

/* ─── FAQ ─── */
.faq-section { margin-bottom: 48px; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:first-of-type { border-top: 1px solid var(--rule); }
.faq-q { width: 100%; background: none; border: none; padding: 16px 0; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-family: var(--f); font-size: 15px; font-weight: 700; color: var(--slate); transition: color .15s; }
.faq-q:hover { color: var(--red); }
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; stroke: currentColor; stroke-width: 2; fill: none; transition: transform .25s; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 16px; font-size: 14.5px; color: var(--ink-md); line-height: 1.7; }
.faq-item.is-open .faq-a { display: block; }

/* ─── SIDEBAR ─── */
.sidebar { position: sticky; top: 86px; }
.sb-gbp-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--rl); padding: 18px 20px; margin-bottom: 14px; }
.sb-gbp-card__header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.sb-gbp-card__glogo { width: 20px; height: 20px; flex-shrink: 0; }
.sb-gbp-card__name { font-size: 13.5px; font-weight: 700; color: var(--slate); }
.sb-gbp-card__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.sb-gbp-card__score { font-size: 22px; font-weight: 800; color: var(--slate); line-height: 1; }
.sb-gbp-card__stars { display: flex; gap: 2px; }
.sb-gbp-card__stars svg { width: 14px; height: 14px; fill: #FBBC04; }
.sb-gbp-card__count { font-size: 11.5px; color: var(--ink-lt); margin-bottom: 14px; }
.sb-gbp-card__divider { height: 1px; background: var(--rule); margin-bottom: 12px; }
.sb-gbp-card__quote { font-size: 12.5px; font-style: italic; color: var(--ink-md); line-height: 1.6; margin-bottom: 4px; }
.sb-gbp-card__author { font-size: 11px; font-weight: 600; color: var(--ink-lt); }
.sb-cbs { background: var(--slate); border-radius: var(--rl); overflow: hidden; margin-bottom: 14px; }
.sb-cbs__video { aspect-ratio: 16/9; background: #000; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); font-size: 12px; font-weight: 600; }
.sb-cbs__body { padding: 16px 20px; }
.sb-cbs__tag { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 4px; display: block; }
.sb-cbs__h { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 6px; }
.sb-cbs__p { font-size: 12.5px; color: rgba(255,255,255,.44); line-height: 1.55; }
.sb-links { background: var(--white); border: 1px solid var(--rule); border-radius: var(--rl); overflow: hidden; }
.sb-links__h { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-lt); padding: 13px 18px; border-bottom: 1px solid var(--rule); background: var(--bg-alt); }
.sb-links ul { padding: 6px; }
.sb-links ul li a { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 600; color: var(--ink-md); padding: 9px 12px; border-radius: var(--r); transition: color .15s, background .15s; }
.sb-links ul li a:hover { color: var(--slate); background: var(--bg-alt); }
.sb-links ul li a span { font-size: 12px; color: var(--ink-lt); opacity: .45; }

/* ─── PILLARS ─── */
.pillars-section { background: var(--slate); padding: 48px 0; }
.pillars-head { font-family: var(--f); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.38); text-align: center; margin-bottom: 8px; }
.pillars-title { font-family: var(--f); font-size: 22px; font-weight: 800; color: #fff; text-align: center; margin-bottom: 32px; }
.pillars-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
.pillar { background: rgba(255,255,255,.04); padding: 28px 22px; border: 1px solid rgba(255,255,255,.07); border-left: 3px solid var(--red); transition: background .18s; }
.pillar:hover { background: rgba(255,255,255,.07); }
.pillar__word { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
.pillar__body { font-size: 13.5px; color: rgba(255,255,255,.58); line-height: 1.65; }

/* ─── FOOTER ─── */
.footer { background: var(--slate); padding: 56px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer__brand-n { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.footer__brand-tag { font-size: 11.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 12px; }
.footer__brand-d { font-size: 13.5px; color: rgba(255,255,255,.38); line-height: 1.7; margin-bottom: 18px; }
.footer__tel { font-size: 18px; font-weight: 800; color: #fff; display: block; margin-bottom: 5px; }
.footer__hrs { font-size: 12px; color: rgba(255,255,255,.28); }
.footer__locations { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.07); }
.footer__loc-label { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 8px; }
.footer__addr { font-size: 12.5px; color: rgba(255,255,255,.4); line-height: 1.5; margin-bottom: 8px; }
.footer__addr:last-child { margin-bottom: 0; }
.footer__col h4 { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col a { font-size: 13.5px; color: rgba(255,255,255,.48); transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer__copy { font-size: 12.5px; color: rgba(255,255,255,.22); }
.footer__badges { display: flex; gap: 7px; flex-wrap: wrap; }
.footer__badge { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.28); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); padding: 4px 10px; border-radius: 3px; }

/* ─── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1120px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .page-hero__in { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .tstrip__in { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; justify-items: start; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .sa-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-name { border-right: none; border-bottom: 1px solid var(--rule); padding-bottom: 10px; }
  .wrap { padding: 0 20px; }
  .footer__grid { grid-template-columns: 1fr; }
  .page-hero > .wrap { min-height: 390px; display: flex; align-items: flex-end; justify-content: center; padding: 0 8px; }
  .page-hero > .wrap::after { background-position: center 55% !important; }
  .page-hero__in { padding: 0 0 10px; min-height: auto; }
  .hero-ey { text-align: center; font-size: 11px; }
  .hero-h1 { text-align: center; font-size: 32px; margin-bottom: 8px; }
  .hero-cta-btn { float: none; display: flex; width: fit-content; margin: 0 auto; font-size: 17px; padding: 12px 24px; }
  .hero-rating { float: none; display: flex; justify-content: center; }
  .hero-rating__stars svg { width: 14px; height: 12px; }
  .hero-rating__label { font-size: 13px; white-space: nowrap; }
  .estrip__text { font-size: 16px; line-height: 1.5; }
  .tstrip__in { grid-template-columns: 1fr; gap: 6px; }
  .subhero__inner { padding: 1px 0; }
  .subhero__text { font-size: 16px; line-height: 1.5; }
  .breadcrumb__in { font-size: 11px; padding: 6px 0; }
  .breadcrumb__sep { margin: 0 5px; font-size: 9px; }
  .nav__in { height: 72px; gap: 8px; }
  .nav__logo { margin-left: 0; }
  .nav__logo-n { font-size: 26px; }
  .nav__logo-s { font-size: 12px; }
  .nav__call { font-size: 14px; padding: 10px 12px; gap: 6px; }
  .nav__call svg { width: 16px; height: 16px; }
  .nav__right { gap: 6px; margin-right: 4px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-full { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .nav__links { display: flex; }
}
