:root{
  --brand-blue:#2447b2;
  --brand-blue-deep:#1d3997;
  --brand-blue-light:#3b64e6;
  --navy:#173ea6;
  --navy-2:#2447b2;
  --navy-dark:#112b72;
  --red:#d81f2c;
  --red-dark:#c81824;
  --gold:#f3b323;
  --text:#1e2c47;
  --muted:#5d6678;
  --soft:#f6f6f9;
  --soft-2:#f2f2f7;
  --panel:#f0eeea;
  --white:#ffffff;
  --line:#dddfea;
  --shadow:0 18px 38px rgba(16,24,40,.12);
  --shadow-card:0 18px 42px rgba(18,30,57,.16);
  --container:1280px;
  --header-logo-space:240px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Poppins",system-ui,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.35;
  overflow-x:hidden;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

.container{
  width:min(calc(100% - 44px), var(--container));
  margin:0 auto;
}

.icon{
  width:20px;
  height:20px;
  stroke-width:2.2;
  flex:0 0 auto;
}

.icon-xs{
  width:16px;
  height:16px;
}

.icon-sm{
  width:18px;
  height:18px;
}

.icon-gold{
  color:#d7a21a;
}

.underline{
  text-decoration:underline;
  text-underline-offset:3px;
}

.section{
  position:relative;
}

/* =========================
   HEADER
   ========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid rgba(20,35,60,.08);
  box-shadow:0 4px 14px rgba(16,24,40,.04);
}

.header-top{
  display:grid;
  grid-template-columns:var(--header-logo-space) 1fr;
  align-items:center;
  min-height:78px;
  gap:0;
}

.brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-width:0;
  height:100%;
}

.brand img{
  height:82px;
  width:auto;
}

.header-top-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
  min-width:0;
}

.header-contact-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--brand-blue-deep);
  font-size:14px;
  font-weight:600;
}

.header-city{
  font-size:15px;
  font-weight:700;
  color:#2d3650;
  margin-left:2px;
}

.header-location-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--red);
  font-size:14px;
  font-weight:600;
}

.header-book-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:0 22px;
  border-radius:4px;
  background:linear-gradient(180deg,#ea2735 0%,#cf1826 100%);
  color:#fff;
  font-size:14px;
  font-weight:700;
  box-shadow:0 8px 14px rgba(216,31,44,.12);
  margin-left:8px;
}

.header-nav-row{
  width:min(calc(100% - 44px), var(--container));
  margin:0 auto;
  display:grid;
  grid-template-columns:var(--header-logo-space) 1fr;
  align-items:stretch;
}

.header-nav-row::before{
  content:"";
  display:block;
}

.desktop-nav{
  min-height:48px;
  border-top:1px solid rgba(20,35,60,.08);
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:42px;
  padding-left:0;
  min-width:0;
}

.nav-link{
  position:relative;
  font-size:15px;
  font-weight:600;
  color:#31405d;
  padding:4px 0;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-9px;
  width:0;
  height:3px;
  background:var(--brand-blue);
  transition:width .25s ease;
}

.nav-link:hover,
.nav-link.active{
  color:var(--brand-blue-deep);
}

.nav-link:hover::after,
.nav-link.active::after{
  width:100%;
}

.menu-toggle{
  display:none;
  width:42px;
  height:42px;
  border:none;
  background:transparent;
  cursor:pointer;
  flex:0 0 auto;
}

.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#1e2d49;
  margin:4px auto;
  border-radius:2px;
}

.mobile-menu{
  display:none;
  border-top:1px solid rgba(20,35,60,.08);
  background:#fff;
}

.mobile-menu.is-open{
  display:block;
}

.mobile-nav{
  padding:14px 20px 20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.mobile-nav a{
  font-size:15px;
  font-weight:500;
  color:#233454;
}

.mobile-menu-cta{
  margin-top:8px;
}

/* =========================
   BUTTONS
   ========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 24px;
  border-radius:4px;
  font-size:17px;
  font-weight:600;
  letter-spacing:.01em;
  transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  white-space:nowrap;
  border:none;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-red{
  color:#fff;
  background:linear-gradient(180deg,#ea2735 0%,#cf1826 100%);
  box-shadow:0 8px 18px rgba(216,31,44,.16);
}

.btn-white{
  color:#2a3855;
  background:#fff;
  border:1px solid rgba(31,46,79,.12);
  box-shadow:0 10px 22px rgba(19,31,58,.08);
}

.btn-yellow{
  min-height:58px;
  padding:0 28px;
  font-size:18px;
  font-weight:700;
  color:#213255;
  background:linear-gradient(180deg,#f8cb4c 0%,#efb321 100%);
  box-shadow:0 10px 20px rgba(243,179,35,.24);
}

/* =========================
   HERO
   ========================= */

.hero-split{
  background:#fff;
  padding:0 0 34px;
}

.hero-shell{
  width:100vw;
  margin-left:calc(50% - 50vw);
  position:relative;
}

.hero-main{
  display:grid;
  grid-template-columns:49% 51%;
  min-height:620px;
  width:100%;
  background:#fff;
}

.hero-panel{
  position:relative;
  min-height:620px;
}

.hero-panel-copy{
  background:var(--panel);
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:72px 56px 138px 90px;
}

.hero-copy-wrap{
  max-width:520px;
}

.hero-eyebrow{
  display:inline-block;
  margin-bottom:18px;
  font-size:14px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.hero-copy-wrap h1{
  font-size:68px;
  line-height:.96;
  letter-spacing:-.055em;
  color:var(--brand-blue);
  margin-bottom:18px;
  font-weight:700;
}

.hero-subtitle{
  font-size:24px;
  line-height:1.2;
  color:#2d3c59;
  font-weight:500;
  margin-bottom:28px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-panel-media{
  overflow:hidden;
}

.hero-media-slides{
  position:absolute;
  inset:0;
}

.hero-media-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1.1s ease, transform 6s ease;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  transform:scale(1.02);
}

.hero-media-slide.is-active{
  opacity:1;
  transform:scale(1);
}

.hero-info-card{
  width:980px;
  margin:-76px 0 0 0;
  display:grid;
  grid-template-columns:270px 320px 390px;
  background:#132b78;
  color:#fff;
  box-shadow:0 18px 42px rgba(15,35,97,.18);
  position:relative;
  z-index:12;
  margin-left:0;
}

.hero-info-col{
  min-height:186px;
}

.hero-info-brand{
  background:#2447b2;
}

.hero-info-brand-top{
  min-height:58px;
  background:#ffffff;
  display:flex;
  align-items:center;
  padding:0 28px;
}

.hero-info-brand-top span{
  font-size:14px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#2447b2;
}

.hero-info-brand-body{
  padding:24px 28px 28px;
}

.hero-info-brand-body h3{
  font-size:24px;
  line-height:1.18;
  font-weight:700;
  color:#fff;
}

.hero-info-main{
  background:#132b78;
  padding:24px 28px 26px;
}

.hero-info-main p,
.hero-info-hours p{
  font-size:16px;
  line-height:1.55;
  color:#e5ecff;
  margin-bottom:8px;
}

.hero-info-main strong{
  display:block;
  font-size:33px;
  line-height:1;
  margin:12px 0 18px;
  font-weight:800;
  color:#fff;
}

.hero-info-hours{
  background:#132b78;
  position:relative;
  padding:24px 28px 26px;
}

.hero-info-hours::before{
  content:"";
  position:absolute;
  left:0;
  top:28px;
  bottom:28px;
  width:1px;
  background:rgba(255,255,255,.16);
}

.hero-info-hours h4{
  font-size:22px;
  margin-bottom:14px;
  font-weight:700;
}

.hero-mini-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 20px;
  border-radius:4px;
  background:linear-gradient(180deg,#ea2735 0%,#cf1826 100%);
  color:#fff;
  font-size:15px;
  font-weight:700;
}

.hero-rating-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:12px;
  color:#fff;
}

.hero-rating-score{
  font-size:44px;
  line-height:1;
  font-weight:800;
  color:#ffb326;
}

.hero-stars{
  font-size:24px;
  letter-spacing:.04em;
  color:#ff9d16;
  line-height:1;
}

/* =========================
   TRUST
   ========================= */

.trust-strip{
  background:#f7f7fb;
  padding:14px 0 24px;
}

.trust-strip-alt{
  padding-top:24px;
}

.trust-grid{
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr;
  gap:26px;
  align-items:center;
}

.trust-item{
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
  min-height:70px;
}

.trust-item + .trust-item::before{
  content:"";
  position:absolute;
  left:-13px;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:34px;
  background:#d7dae4;
}

.trust-icon{
  width:48px;
  height:48px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#fff;
  border:1px solid #dde2ec;
  color:var(--brand-blue-deep);
  flex:0 0 auto;
}

.trust-content strong{
  display:block;
  font-size:16px;
  line-height:1.1;
  color:#1d2d4a;
  font-weight:600;
}

.trust-content span{
  display:block;
  margin-top:4px;
  font-size:12px;
  line-height:1.3;
  color:#6a7382;
  font-weight:400;
}

.trust-location-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:26px;
}

.trust-strip .location-card{
  background:#fff;
}

/* =========================
   WHY US
   ========================= */

.section-kicker{
  display:inline-block;
  margin-bottom:14px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.why-us{
  position:relative;
  background:#ffffff;
  padding:118px 0 118px;
  overflow:hidden;
}

.why-wave-top{
  position:absolute;
  top:-1px;
  left:0;
  right:0;
  line-height:0;
  z-index:2;
}

.why-wave-top svg{
  display:block;
  width:100%;
  height:92px;
}

.why-wave-top path{
  fill:#f7f7fb;
}

.why-wave-bottom{
  position:absolute;
  bottom:-1px;
  left:0;
  right:0;
  line-height:0;
  z-index:2;
}

.why-wave-bottom svg{
  display:block;
  width:100%;
  height:98px;
}

.why-wave-bottom path{
  fill:#f7f7fb;
}

.why-us-inner{
  position:relative;
  z-index:3;
}

.why-us-copy{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.why-us-copy h2{
  font-size:58px;
  line-height:1.03;
  letter-spacing:-.05em;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:800;
}

.why-us-lead{
  font-size:21px;
  line-height:1.6;
  color:#33425d;
  margin-bottom:18px;
}

.why-us-copy p{
  font-size:16px;
  line-height:1.75;
  color:#5a6476;
}

.why-feature-grid{
  margin-top:42px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  justify-items:stretch;
}

.why-feature-card{
  position:relative;
  min-height:290px;
  background:linear-gradient(180deg,#1d3997 0%,#17307f 100%);
  color:#fff;
  border-radius:0;
  padding:42px 28px 34px;
  box-shadow:0 24px 42px rgba(18,30,57,.18);
  text-align:center;
  overflow:hidden;
  transition:transform .28s ease, box-shadow .28s ease;
}

.why-feature-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:8px;
  background:linear-gradient(90deg,#f3b323 0%,#ffb000 100%);
}

.why-feature-card:hover{
  transform:translateY(-10px);
  box-shadow:0 34px 56px rgba(18,30,57,.24);
}

.why-feature-card-centered{
  grid-column:2 / 3;
}

.why-feature-icon{
  width:78px;
  height:78px;
  display:grid;
  place-items:center;
  margin:0 auto 26px;
  color:#fff;
}

.why-feature-icon .icon{
  width:54px;
  height:54px;
  stroke-width:1.9;
}

.why-feature-card h3{
  font-size:24px;
  line-height:1.3;
  color:#fff;
  font-weight:700;
  max-width:280px;
  margin:0 auto;
}

/* =========================
   SERVICES
   ========================= */

.services{
  background:#f7f7fb;
  padding:34px 0 0;
  overflow:visible;
  position:relative;
}

.services-grid{
  display:grid;
  grid-template-columns:1fr .94fr;
  gap:48px;
  align-items:center;
}

.services-copy h2{
  font-size:58px;
  line-height:1.02;
  letter-spacing:-.04em;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.section-lead{
  max-width:610px;
  font-size:22px;
  line-height:1.45;
  color:#384458;
  margin-bottom:28px;
  font-weight:400;
}

.section-lead strong{
  color:#273754;
  font-weight:700;
}

.service-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px 22px;
  max-width:620px;
}

.service-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.service-bullet{
  width:34px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid #d8dde8;
  background:#fff;
  color:#7b8392;
  flex:0 0 auto;
}

.service-item h3{
  font-size:18px;
  line-height:1.2;
  color:#1f2f4c;
  margin-bottom:7px;
  font-weight:600;
}

.service-item p{
  font-size:15px;
  line-height:1.55;
  color:#606a7b;
  font-weight:400;
}

.services-photo-wrap{
  display:flex;
  justify-content:flex-end;
}

.services-photo{
  width:100%;
  max-width:520px;
  border-radius:42px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.services-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio:.93 / 1;
}

.cta-card-wrap{
  position:relative;
  z-index:40;
  margin-top:-4px;
  margin-bottom:-94px;
}

.cta-card{
  width:min(100%, 620px);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:20px 22px 20px 28px;
  background:#fff;
  border:1px solid rgba(28,43,77,.08);
  border-radius:18px;
  box-shadow:0 18px 42px rgba(18,30,57,.18);
  transform:translateY(54px);
}

.cta-card-copy span{
  display:block;
  font-size:18px;
  font-weight:600;
  color:#243451;
  margin-bottom:4px;
}

.cta-card-copy strong{
  display:block;
  font-size:34px;
  line-height:1;
  letter-spacing:-.03em;
  color:var(--brand-blue-deep);
  font-weight:700;
}

.cta-card-btn{
  min-width:150px;
  min-height:50px;
  font-size:16px;
}

.services-wave-bottom{
  position:relative;
  z-index:10;
  line-height:0;
  margin-top:-10px;
}

.services-wave-bottom svg{
  display:block;
  width:100%;
  height:118px;
}

.services-wave-bottom path{
  fill:#ffffff;
}

/* =========================
   TIRE SECTION
   ========================= */

.tire-banner{
  position:relative;
  min-height:500px;
  overflow:hidden;
  color:#fff;
  isolation:isolate;
  padding-top:124px;
  background:
    radial-gradient(circle at 16% 44%, rgba(255,72,72,.16) 0%, rgba(255,72,72,0) 24%),
    radial-gradient(circle at 30% 60%, rgba(255,60,60,.12) 0%, rgba(255,60,60,0) 18%),
    linear-gradient(90deg,#b50b18 0%, #ca101e 22%, #ca1220 38%, #bf1c24 52%, #c03d42 68%, #dbb2b2 100%);
}

.tire-bg{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(circle at 10% 38%, rgba(255,255,255,.09) 0%, rgba(255,255,255,0) 18%),
    radial-gradient(circle at 18% 62%, rgba(0,0,0,.08) 0%, rgba(0,0,0,0) 26%);
}

.tire-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(
      90deg,
      rgba(185,10,24,.96) 0%,
      rgba(198,14,29,.94) 18%,
      rgba(204,18,31,.90) 36%,
      rgba(198,20,31,.82) 54%,
      rgba(184,18,28,.66) 72%,
      rgba(160,16,25,.42) 86%,
      rgba(120,18,26,.18) 100%
    ),
    radial-gradient(
      circle at 28% 52%,
      rgba(255,70,70,.18) 0%,
      rgba(255,70,70,0) 30%
    );
}

.tire-inner{
  position:relative;
  z-index:8;
  min-height:500px;
  display:flex;
  align-items:center;
}

.tire-copy{
  max-width:560px;
  padding:34px 0 88px 0;
  position:relative;
  z-index:10;
}

.tire-copy h2{
  font-size:58px;
  line-height:.95;
  letter-spacing:-.04em;
  margin-bottom:18px;
  font-weight:700;
  text-shadow:0 2px 12px rgba(0,0,0,.18);
}

.tire-subtitle{
  font-size:20px;
  line-height:1.3;
  margin-bottom:20px;
  font-weight:500;
  color:#fff;
}

.check-list{
  list-style:none;
  display:grid;
  gap:12px;
  margin-bottom:26px;
}

.check-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:18px;
  line-height:1.4;
  font-weight:500;
}

.icon-check{
  width:18px;
  height:18px;
  color:#f4bc2b;
  margin-top:4px;
  flex:0 0 auto;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.18));
}

.tire-cta-row{
  display:flex;
  align-items:flex-end;
  gap:18px;
  flex-wrap:wrap;
}

.tire-cta-row p{
  max-width:360px;
  font-size:16px;
  line-height:1.45;
  color:#fff5f5;
  font-weight:400;
}

.tire-media{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  width:100%;
  z-index:3;
  pointer-events:none;
  overflow:hidden;
}

.tire-media-card{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
  background:transparent;
}

.tire-media-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:72% center;
  transform:scale(1.04);
  filter:contrast(1.02) saturate(.94) brightness(.82);
}

.tire-media-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:3;
  background:
    linear-gradient(
      90deg,
      rgba(198,18,31,.92) 0%,
      rgba(198,18,31,.82) 16%,
      rgba(198,18,31,.70) 34%,
      rgba(198,18,31,.56) 52%,
      rgba(198,18,31,.38) 70%,
      rgba(198,18,31,.20) 86%,
      rgba(198,18,31,.08) 100%
    );
}

.tire-media-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:4;
  background:linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(0,0,0,.10) 100%);
}

.tire-banner::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-28px;
  height:88px;
  z-index:20;
  background:#fff;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
  opacity:.98;
  transform:rotate(-1.2deg);
}

.tire-wave-bottom{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  z-index:20;
  line-height:0;
}

.tire-wave-bottom svg{
  display:block;
  width:100%;
  height:104px;
}

.tire-wave-bottom path{
  fill:#ffffff;
}

/* =========================
   MAP
   ========================= */

.map-section{
  background:#fff;
  padding:12px 0 0;
}

.map-top{
  padding-bottom:16px;
}

.map-copy{
  max-width:580px;
}

.map-copy h2{
  font-size:52px;
  line-height:1.03;
  letter-spacing:-.04em;
  color:var(--brand-blue-deep);
  margin-bottom:14px;
  font-weight:700;
}

.map-copy p{
  font-size:21px;
  line-height:1.45;
  color:#586273;
}

.map-visual{
  position:relative;
  width:100%;
  height:470px;
  overflow:hidden;
  background:#eef1f7;
}

.map-embed-shell{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.map-embed-shell iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
  filter:saturate(.94) contrast(1.02) brightness(1.01);
}

.map-fade{
  position:absolute;
  pointer-events:none;
  z-index:2;
}

.map-fade-left{
  display:none;
}

.map-fade-right{
  top:0;
  right:0;
  bottom:0;
  width:12%;
  background:linear-gradient(
    270deg,
    rgba(255,255,255,.42) 0%,
    rgba(255,255,255,.14) 50%,
    rgba(255,255,255,0) 100%
  );
}

.map-fade-bottom{
  left:0;
  right:0;
  bottom:0;
  height:44px;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.18) 70%,
    rgba(255,255,255,.34) 100%
  );
}

/* =========================
   LOCATION CARDS
   ========================= */

.location-card{
  background:#fff;
  border:1px solid rgba(18,39,79,.10);
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(18,34,64,.08);
  display:flex;
  flex-direction:column;
  height:100%;
}

.location-image{
  height:130px;
  overflow:hidden;
  background:#dde4f1;
}

.location-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.location-body{
  padding:16px 16px 12px;
  flex:1 1 auto;
}

.location-body h3{
  font-size:18px;
  line-height:1.2;
  color:#1e2f4c;
  margin-bottom:8px;
  font-weight:600;
}

.location-body p{
  font-size:14px;
  line-height:1.45;
  color:#616b7c;
}

.location-address-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:6px;
}

.location-address-row img{
  width:26px;
  height:26px;
  object-fit:contain;
  opacity:.9;
  flex:0 0 auto;
}

.location-card-phone{
  display:inline-flex;
  align-items:center;
  margin-top:10px;
  font-size:16px;
  line-height:1.2;
  color:var(--brand-blue-deep);
  font-weight:700;
  transition:opacity .22s ease, transform .22s ease;
}

.location-card-phone:hover{
  opacity:.82;
  transform:translateY(-1px);
}

.location-google-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  transition:transform .22s ease, opacity .22s ease;
}

.location-google-link:hover{
  transform:translateY(-2px) scale(1.04);
  opacity:.9;
}

.location-google-link img{
  width:26px;
  height:26px;
  object-fit:contain;
}

.location-actions{
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 14px 14px;
}

.mini-btn{
  flex:1;
  min-height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:4px;
  font-size:14px;
  font-weight:600;
}

.mini-btn-light{
  background:#fff3f3;
  color:#d11d2b;
  border:1px solid #f1c6cb;
}

.mini-btn-blue{
  color:#fff;
  background:linear-gradient(180deg, #2f63ff 0%, #1f4ed8 100%);
}

/* =========================
   FAQ
   ========================= */

.faq-section{
  background:#f7f7fb;
  padding:64px 0 84px;
}

.faq-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.35fr) minmax(320px, .72fr);
  gap:54px;
  align-items:start;
}

.faq-main{
  min-width:0;
}

.faq-main h2{
  font-size:54px;
  line-height:1.02;
  letter-spacing:-.04em;
  color:var(--brand-blue-deep);
  margin-bottom:24px;
  font-weight:700;
}

.faq-list-clean{
  display:grid;
  gap:0;
}

.faq-item-clean{
  border-bottom:3px solid #f3b323;
  background:transparent;
  border-radius:0;
  box-shadow:none;
  overflow:hidden;
}

.faq-question-clean{
  width:100%;
  border:none;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  text-align:left;
  padding:26px 0 24px;
  color:#103b8c;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}

.faq-question-clean .icon{
  color:#103b8c;
  transition:transform .25s ease;
}

.faq-item-clean.is-open .faq-question-clean .icon{
  transform:rotate(90deg);
}

.faq-answer-clean{
  max-height:0;
  overflow:hidden;
  visibility:hidden;
  transition:max-height .32s ease, visibility 0s linear .32s;
}

.faq-item-clean.is-open .faq-answer-clean{
  max-height:260px;
  visibility:visible;
  transition:max-height .32s ease, visibility 0s linear 0s;
}

.faq-answer-clean p{
  padding:0 0 22px;
  font-size:16px;
  line-height:1.75;
  color:#5d6678;
  max-width:820px;
}

/* extra safety so closed FAQ content never shows */
.faq-item-clean:not(.is-open) .faq-answer-clean p{
  padding-bottom:0;
}

.faq-review-card{
  background:#f0eeea;
  padding:38px 38px 42px;
  box-shadow:0 18px 42px rgba(18,30,57,.08);
}

.faq-review-eyebrow{
  display:block;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
  margin-bottom:12px;
}

.faq-review-card h3{
  font-size:38px;
  line-height:1.14;
  letter-spacing:-.03em;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.faq-review-stars{
  font-size:28px;
  line-height:1;
  color:#f08f14;
  letter-spacing:.08em;
  margin-bottom:24px;
}

.faq-review-quote{
  font-size:17px;
  line-height:1.75;
  color:#1f2f4c;
  margin-bottom:20px;
  font-weight:500;
}

.faq-review-author{
  font-size:16px;
  line-height:1.4;
  color:var(--brand-blue-deep);
  font-weight:700;
  margin-bottom:26px;
}

.faq-review-btn{
  min-width:220px;
}

/* =========================
   HOME CONTACT
   ========================= */

.home-contact{
  background:#f7f7fb;
  padding:72px 0 84px;
}

.home-contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px;
  align-items:start;
}

.home-contact-copy h2{
  font-size:52px;
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--brand-blue-deep);
  margin-bottom:16px;
  font-weight:700;
}

.home-contact-copy p{
  font-size:18px;
  line-height:1.8;
  color:#5b6577;
  margin-bottom:14px;
}

.home-contact-card{
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 18px 38px rgba(18,30,57,.10);
  padding:28px 26px;
}

.home-contact-form{
  display:grid;
  gap:16px;
}

.home-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.home-form-field{
  display:grid;
  gap:8px;
}

.home-form-field label{
  font-size:14px;
  font-weight:600;
  color:#31405d;
}

.home-form-field input,
.home-form-field select,
.home-form-field textarea{
  width:100%;
  border:1px solid #d8deea;
  background:#fff;
  color:#22324f;
  border-radius:4px;
  padding:14px 14px;
  font:inherit;
  outline:none;
  transition:border-color .22s ease, box-shadow .22s ease;
}

.home-form-field input:focus,
.home-form-field select:focus,
.home-form-field textarea:focus{
  border-color:rgba(36,71,178,.45);
  box-shadow:0 0 0 4px rgba(36,71,178,.08);
}

.home-form-field textarea{
  resize:vertical;
  min-height:150px;
}

/* =========================
   FOOTER
   ========================= */

.site-footer{
  position:relative;
  color:#fff;
  background:#173ea6;
  overflow:hidden;
}

.footer-wave-top{
  position:relative;
  z-index:2;
  line-height:0;
}

.footer-wave-top svg{
  display:block;
  width:100%;
  height:92px;
}

.footer-wave-top path{
  fill:#fff;
}

.footer-texture{
  position:absolute;
  inset:60px 0 0 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 76% 36%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 24%),
    radial-gradient(circle at 40% 78%, rgba(255,255,255,.06) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(180deg, rgba(23,62,166,.96) 0%, rgba(13,31,82,.98) 100%);
}

.footer-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.2fr .8fr 1fr .95fr;
  gap:34px;
  padding:32px 0 34px;
}

.footer-logo{
  height:78px;
  width:auto;
  margin-bottom:14px;
}

.footer-brand p{
  font-size:17px;
  line-height:1.6;
  color:#dbe5ff;
  margin-bottom:8px;
}

.footer-col h4{
  font-size:19px;
  margin-bottom:14px;
  color:#fff;
  font-weight:600;
}

.footer-col ul{
  list-style:none;
  display:grid;
  gap:10px;
}

.footer-col li,
.footer-col a{
  font-size:17px;
  color:#dbe5ff;
}

.footer-location-list li{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.footer-location-list strong{
  font-size:17px;
  color:#fff;
  font-weight:600;
}

.footer-location-list span{
  font-size:15px;
  line-height:1.45;
  color:#dbe5ff;
}

.footer-contact-line{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}

.footer-hours-line{
  margin-bottom:18px;
}

.footer-phone{
  font-size:32px;
  font-weight:700;
  line-height:1;
}

.footer-hours{
  font-size:18px;
  color:#dbe5ff;
}

.socials{
  display:flex;
  gap:10px;
  margin-top:18px;
}

.socials a{
  width:34px;
  height:34px;
  border-radius:8px;
  background:rgba(255,255,255,.14);
  display:grid;
  place-items:center;
  color:#fff;
}

.footer-bottom{
  position:relative;
  z-index:2;
  border-top:1px solid rgba(255,255,255,.12);
  background:transparent;
}

.footer-bottom-inner{
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.footer-bottom p{
  font-size:14px;
  color:#dbe5ff;
}

.footer-bottom a{
  color:#ffffff;
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:3px;
}

.footer-bottom a:hover{
  opacity:.86;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width:1180px){
  :root{
    --header-logo-space:210px;
  }

  .header-top{
    min-height:74px;
  }

  .header-top-right{
    gap:10px;
  }

  .desktop-nav{
    gap:26px;
  }

  .brand img{
    height:74px;
  }

  .header-contact-item,
  .header-location-link{
    font-size:13px;
  }

  .header-book-btn{
    min-height:42px;
    padding:0 18px;
    font-size:13px;
  }

  .hero-copy-wrap h1{
    font-size:60px;
  }

  .hero-info-card{
    width:920px;
    grid-template-columns:250px 300px 370px;
  }

  .services-copy h2,
  .map-copy h2,
  .home-contact-copy h2{
    font-size:46px;
  }

  .tire-copy h2,
  .why-us-copy h2,
  .faq-main h2{
    font-size:46px;
  }

  .footer-grid{
    grid-template-columns:1.2fr .9fr 1fr;
  }

  .footer-contact{
    grid-column:1 / -1;
  }
}

@media (max-width:980px){
  .header-contact-item,
  .header-city,
  .header-location-link,
  .header-book-btn,
  .desktop-nav,
  .header-nav-row::before{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .header-top{
    grid-template-columns:auto 1fr auto;
    min-height:72px;
    padding:8px 0;
  }

  .brand img{
    height:56px;
  }

  .header-top-right{
    gap:0;
  }

  .header-nav-row{
    display:block;
    width:min(calc(100% - 44px), var(--container));
    margin:0 auto;
  }

  .hero-shell{
    width:100%;
    margin-left:0;
  }

  .hero-main{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .hero-panel{
    min-height:auto;
  }

  .hero-panel-copy{
    padding:52px 34px 42px;
  }

  .hero-copy-wrap{
    max-width:100%;
  }

  .hero-copy-wrap h1{
    font-size:48px;
  }

  .hero-subtitle{
    font-size:22px;
  }

  .hero-panel-media{
    min-height:420px;
  }

  .hero-media-slides{
    position:relative;
    min-height:420px;
  }

  .hero-info-card{
    width:100%;
    margin:-30px auto 0;
    grid-template-columns:1fr;
  }

  .hero-info-col{
    min-height:auto;
  }

  .hero-info-hours::before{
    display:none;
  }

  .trust-grid{
    grid-template-columns:1fr;
    gap:10px;
  }

  .trust-item + .trust-item::before{
    display:none;
  }

  .trust-location-cards{
    grid-template-columns:1fr;
    gap:18px;
    margin-top:18px;
  }

  .why-us{
    padding:92px 0;
  }

  .why-wave-top svg{
    height:66px;
  }

  .why-wave-bottom svg{
    height:68px;
  }

  .why-us-copy h2{
    font-size:42px;
  }

  .why-feature-grid{
    grid-template-columns:1fr 1fr;
    gap:20px;
  }

  .why-feature-card{
    min-height:250px;
    padding:34px 22px 28px;
  }

  .why-feature-card-centered{
    grid-column:auto;
  }

  .services-grid,
  .home-contact-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .services-photo-wrap{
    justify-content:flex-start;
  }

  .services-photo{
    max-width:100%;
  }

  .service-list{
    grid-template-columns:1fr 1fr;
  }

  .cta-card-wrap{
    margin-bottom:-34px;
  }

  .cta-card{
    width:100%;
    transform:translateY(24px);
  }

  .tire-banner{
    padding-top:0;
    min-height:auto;
    background:#b90f1d;
  }

  .tire-banner::before{
    display:none;
  }

  .tire-bg,
  .tire-overlay{
    display:none;
  }

  .tire-inner{
    min-height:auto;
    display:block;
    padding-top:0;
    padding-bottom:34px;
  }

  .tire-media{
    position:relative;
    top:auto;
    right:auto;
    bottom:auto;
    left:auto;
    width:100%;
    height:auto;
    overflow:visible;
    margin-bottom:22px;
  }

  .tire-media-card{
    border-radius:0 0 28px 28px;
    overflow:hidden;
  }

  .tire-media-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    object-position:center center;
    transform:none;
    filter:contrast(1.02) saturate(.94) brightness(.82);
  }

  .tire-media-card::before{
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.08) 0%,
        rgba(0,0,0,.04) 35%,
        rgba(200,18,31,.14) 72%,
        rgba(200,18,31,.34) 100%
      );
  }

  .tire-copy{
    max-width:none;
    padding:0 0 48px;
  }

  .tire-cta-row{
    flex-direction:column;
    align-items:stretch;
    gap:14px;
  }

  .tire-cta-row p{
    max-width:none;
    font-size:15px;
    line-height:1.45;
    margin-top:0;
  }

  .tire-wave-bottom{
    position:relative;
    bottom:auto;
    left:auto;
    right:auto;
    margin-top:-8px;
  }

  .tire-wave-bottom svg{
    height:60px;
  }

  .map-visual{
    height:380px;
  }

  .map-fade-right{
    width:10%;
  }

  .faq-layout{
    grid-template-columns:1fr;
    gap:30px;
  }

  .faq-main h2{
    font-size:44px;
  }

  .faq-review-card{
    padding:30px 26px 32px;
  }

  .faq-review-card h3{
    font-size:32px;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:720px){
  .container{
    width:min(calc(100% - 28px), var(--container));
  }

  .btn{
    width:100%;
  }

  .header-top{
    min-height:68px;
  }

  .brand img{
    height:52px;
  }

  .mobile-nav{
    padding:14px 0 20px;
  }

  .hero-split{
    padding:0 0 20px;
  }

  .hero-panel-copy{
    padding:38px 20px 28px;
  }

  .hero-copy-wrap h1{
    font-size:40px;
    line-height:1.02;
  }

  .hero-subtitle{
    font-size:19px;
    margin-bottom:16px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-panel-media,
  .hero-media-slides{
    min-height:300px;
  }

  .hero-info-card{
    margin:-18px auto 0;
  }

  .hero-info-brand-top{
    min-height:54px;
    padding:0 20px;
  }

  .hero-info-brand-body,
  .hero-info-main,
  .hero-info-hours{
    padding:22px 20px;
  }

  .hero-info-brand-body h3{
    font-size:22px;
  }

  .hero-info-main strong{
    font-size:28px;
  }

  .hero-rating-score{
    font-size:36px;
  }

  .hero-stars{
    font-size:20px;
  }

  .why-us{
    padding:82px 0;
  }

  .why-wave-top svg{
    height:54px;
  }

  .why-wave-bottom svg{
    height:56px;
  }

  .why-us-copy h2{
    font-size:34px;
  }

  .why-us-lead{
    font-size:18px;
  }

  .why-feature-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .why-feature-card{
    min-height:220px;
    padding:30px 18px 24px;
  }

  .why-feature-icon{
    margin-bottom:20px;
  }

  .why-feature-card h3{
    font-size:22px;
  }

  .services-copy h2,
  .map-copy h2,
  .home-contact-copy h2{
    font-size:36px;
  }

  .section-lead,
  .map-copy p,
  .home-contact-copy p{
    font-size:18px;
  }

  .service-list{
    grid-template-columns:1fr;
  }

  .cta-card{
    flex-direction:column;
    align-items:stretch;
    padding:18px;
    transform:translateY(16px);
  }

  .cta-card-copy strong{
    font-size:28px;
  }

  .tire-media-card img{
    height:250px;
  }

  .tire-copy{
    padding:0 0 46px;
  }

  .tire-copy h2{
    font-size:42px;
  }

  .tire-subtitle{
    font-size:18px;
  }

  .check-list li{
    font-size:17px;
  }

  .tire-wave-bottom svg,
  .services-wave-bottom svg{
    height:54px;
  }

  .map-visual{
    height:300px;
  }

  .map-fade-right{
    width:8%;
  }

  .map-fade-bottom{
    height:30px;
  }

  .location-image{
    height:160px;
  }

  .location-address-row{
    align-items:flex-start;
  }

  .location-address-row img{
    margin-top:4px;
  }

  .location-card-phone{
    font-size:15px;
  }

  .location-actions{
    flex-direction:column;
  }

  .mini-btn{
    width:100%;
  }

  .faq-section{
    padding:46px 0 60px;
  }

  .faq-main h2{
    font-size:34px;
    margin-bottom:18px;
  }

  .faq-question-clean{
    font-size:16px;
    padding:20px 0 18px;
  }

  .faq-answer-clean p{
    font-size:15px;
    padding:0 0 18px;
  }

  .faq-review-card h3{
    font-size:28px;
  }

  .faq-review-quote{
    font-size:16px;
  }

  .faq-review-btn{
    width:100%;
  }

  .home-contact{
    padding:52px 0 60px;
  }

  .home-form-row{
    grid-template-columns:1fr;
  }

  .home-contact-card{
    padding:22px 18px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .footer-phone{
    font-size:28px;
  }

  .footer-bottom-inner{
    min-height:auto;
    padding:16px 0;
  }
}

@media (max-width:460px){
  .brand img{
    height:50px;
  }

  .hero-panel-copy{
    padding:32px 16px 24px;
  }

  .hero-copy-wrap h1{
    font-size:34px;
  }

  .hero-subtitle{
    font-size:18px;
  }

  .hero-panel-media,
  .hero-media-slides{
    min-height:240px;
  }

  .hero-info-card{
    margin:-10px auto 0;
  }

  .hero-info-brand-top,
  .hero-info-brand-body,
  .hero-info-main,
  .hero-info-hours{
    padding-left:16px;
    padding-right:16px;
  }

  .hero-info-main strong{
    font-size:24px;
  }

  .services-copy h2,
  .map-copy h2,
  .home-contact-copy h2{
    font-size:31px;
  }

  .section-lead{
    font-size:17px;
  }

  .trust-content strong{
    font-size:15px;
  }

  .trust-content span{
    font-size:12px;
  }

  .why-us{
    padding:74px 0;
  }

  .why-wave-top svg{
    height:46px;
  }

  .why-wave-bottom svg{
    height:46px;
  }

  .why-us-copy h2{
    font-size:30px;
  }

  .why-us-copy p,
  .why-us-lead{
    font-size:16px;
  }

  .why-feature-card{
    min-height:200px;
    padding:28px 16px 22px;
  }

  .why-feature-card h3{
    font-size:20px;
  }

  .tire-media-card img{
    height:220px;
  }

  .tire-copy{
    padding:0 0 42px;
  }

  .tire-copy h2{
    font-size:38px;
  }

  .tire-cta-row p{
    font-size:14px;
  }

  .tire-wave-bottom svg{
    height:48px;
  }

  .faq-main h2{
    font-size:29px;
  }
}
/* =========================
   SERVICES PAGE
   ========================= */

.services-page{
  background:#fff;
}

/* hero */

.services-hero{
  position:relative;
  background:#173ea6;
  padding:0 0 96px;
  overflow:hidden;
}

.services-hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:82px;
  background:#173ea6;
  clip-path:path("M0,24 C172,66 394,84 720,56 C1026,28 1244,12 1440,30 L1440,120 L0,120 Z");
}

.services-hero-top-image{
  width:100%;
  height:320px;
  overflow:hidden;
  position:relative;
}

.services-hero-top-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.services-hero-inner{
  position:relative;
  z-index:3;
  margin-top:-74px;
}

.services-hero-grid{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:24px;
  align-items:stretch;
}

.services-hero-panel{
  position:relative;
  background:linear-gradient(135deg,#2447b2 0%, #173ea6 58%, #112b72 100%);
  color:#fff;
  padding:30px 30px 28px;
  box-shadow:0 18px 42px rgba(18,30,57,.18);
  z-index:2;
}

.services-hero-panel::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:#f3b323;
}

.services-hero-kicker{
  display:inline-block;
  margin-bottom:14px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#dce8ff;
}

.services-hero-panel h1{
  font-size:50px;
  line-height:.96;
  letter-spacing:-.05em;
  margin-bottom:18px;
  font-weight:800;
  color:#fff;
  max-width:600px;
}

.services-hero-text{
  font-size:19px;
  line-height:1.66;
  color:#edf3ff;
  margin-bottom:12px;
  max-width:560px;
}

.services-hero-subtext{
  font-size:16px;
  line-height:1.75;
  color:#d8e4ff;
  margin-bottom:24px;
  max-width:540px;
}

.services-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.services-hero-btn{
  min-width:220px;
  color:#1d3997;
  font-weight:700;
  box-shadow:0 14px 28px rgba(0,0,0,.12);
}

.services-hero-sidecard{
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 18px 38px rgba(18,30,57,.12);
  padding:28px 28px 30px;
  align-self:end;
}

.services-hero-side-kicker{
  display:inline-block;
  margin-bottom:10px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.services-hero-sidecard h2{
  font-size:34px;
  line-height:1.08;
  letter-spacing:-.03em;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.services-hero-side-list{
  list-style:none;
  display:grid;
  gap:12px;
  margin-bottom:24px;
}

.services-hero-side-list li{
  position:relative;
  padding-left:22px;
  font-size:16px;
  line-height:1.65;
  color:#5d6678;
}

.services-hero-side-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:8px;
  height:8px;
  border-radius:999px;
  background:#f3b323;
}

.services-hero-side-btn{
  width:100%;
}

/* popular section */

.services-popular{
  position:relative;
  background:#173ea6;
  padding:0 0 94px;
  overflow:hidden;
}

.services-popular::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:82px;
  background:#f0eeea;
  clip-path:path("M0,24 C180,68 396,84 720,56 C1032,28 1244,12 1440,30 L1440,120 L0,120 Z");
}

.services-popular-heading{
  position:relative;
  z-index:3;
  max-width:900px;
  margin:34px auto 34px;
  text-align:center;
}

.services-section-kicker-light{
  color:#dce8ff;
}

.services-popular-heading h2{
  font-size:56px;
  line-height:1.03;
  letter-spacing:-.04em;
  color:#fff;
  margin-bottom:12px;
  font-weight:700;
}

.services-popular-grid{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.popular-service-card{
  background:#fff;
  padding:34px 24px 26px;
  text-align:center;
  box-shadow:0 18px 38px rgba(0,0,0,.16);
  position:relative;
  min-height:330px;
  display:flex;
  flex-direction:column;
  align-items:center;
  transition:transform .28s ease, box-shadow .28s ease;
}

.popular-service-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:#f3b323;
}

.popular-service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 52px rgba(0,0,0,.22);
}

.popular-service-icon{
  width:72px;
  height:72px;
  display:grid;
  place-items:center;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
}

.popular-service-icon .icon{
  width:48px;
  height:48px;
  stroke-width:1.9;
}

.popular-service-card h3{
  font-size:28px;
  line-height:1.16;
  color:var(--brand-blue-deep);
  margin-bottom:14px;
  font-weight:700;
}

.popular-service-card p{
  font-size:16px;
  line-height:1.7;
  color:#4d596d;
  margin-bottom:20px;
}

.popular-service-card a{
  margin-top:auto;
  color:var(--red);
  font-size:18px;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:4px;
}

/* CTA strip */

.services-strip-cta{
  position:relative;
  background:#f0eeea;
  padding:78px 0 82px;
  overflow:hidden;
}

.services-strip-cta::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-1px;
  height:82px;
  background:#f0eeea;
  clip-path:path("M0,0 L1440,0 L1440,24 C1234,48 1012,58 720,36 C396,12 180,10 0,24 Z");
}

.services-strip-cta::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:82px;
  background:#f7f7fb;
  clip-path:path("M0,24 C180,68 396,84 720,56 C1032,28 1244,12 1440,30 L1440,120 L0,120 Z");
}

.services-strip-cta-wrap{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  padding:30px 34px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 18px 38px rgba(18,30,57,.10);
}

.services-strip-cta-copy{
  max-width:760px;
}

.services-strip-kicker{
  display:inline-block;
  margin-bottom:12px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.services-strip-cta-copy h2{
  font-size:38px;
  line-height:1.08;
  letter-spacing:-.03em;
  color:var(--brand-blue-deep);
  margin-bottom:10px;
  font-weight:700;
}

.services-strip-cta-copy p{
  font-size:17px;
  line-height:1.7;
  color:#5a6476;
}

.services-strip-cta-btn{
  min-width:250px;
}

/* all services */

.services-all{
  position:relative;
  background:#f7f7fb;
  padding:78px 0 86px;
  overflow:hidden;
}

.services-all::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-1px;
  height:78px;
  background:#f7f7fb;
  clip-path:path("M0,0 L1440,0 L1440,24 C1234,48 1012,58 720,36 C396,12 180,10 0,24 Z");
}

.services-all::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:82px;
  background:#fff;
  clip-path:path("M0,24 C180,68 396,84 720,56 C1032,28 1244,12 1440,30 L1440,120 L0,120 Z");
}

.services-all-heading{
  position:relative;
  z-index:3;
  max-width:900px;
  margin:0 auto 34px;
  text-align:center;
}

.services-all-heading h2{
  font-size:56px;
  line-height:1.03;
  letter-spacing:-.04em;
  color:var(--brand-blue-deep);
  margin-bottom:14px;
  font-weight:700;
}

.services-all-heading p{
  font-size:19px;
  line-height:1.7;
  color:#5a6476;
}

.services-all-grid{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.service-tile{
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  min-height:190px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:22px 18px;
  box-shadow:0 10px 24px rgba(18,30,57,.07);
  transition:transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.service-tile:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 38px rgba(18,30,57,.14);
  border-color:rgba(36,71,178,.18);
}

.service-tile-icon{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  color:var(--brand-blue-deep);
  margin-bottom:16px;
}

.service-tile-icon .icon{
  width:42px;
  height:42px;
  stroke-width:1.9;
}

.service-tile h3{
  font-size:18px;
  line-height:1.35;
  color:var(--brand-blue-deep);
  font-weight:700;
}

/* body content */

.services-content{
  position:relative;
  background:#fff;
  padding:78px 0 86px;
  overflow:hidden;
}

.services-content::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-1px;
  height:78px;
  background:#fff;
  clip-path:path("M0,0 L1440,0 L1440,24 C1234,48 1012,58 720,36 C396,12 180,10 0,24 Z");
}

.services-content-grid{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:44px;
  align-items:start;
}

.services-content-copy h2{
  font-size:52px;
  line-height:1.04;
  letter-spacing:-.04em;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.services-content-copy p{
  font-size:18px;
  line-height:1.8;
  color:#586274;
  margin-bottom:16px;
}

.services-content-panel{
  background:#f7f7fb;
  border:1px solid rgba(18,39,79,.08);
  padding:28px 28px 30px;
  box-shadow:0 14px 30px rgba(18,30,57,.08);
}

.services-content-panel h3{
  font-size:28px;
  line-height:1.2;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.services-content-list{
  list-style:none;
  display:grid;
  gap:12px;
  margin-bottom:24px;
}

.services-content-list li{
  position:relative;
  padding-left:22px;
  font-size:16px;
  line-height:1.65;
  color:#5d6678;
}

.services-content-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:8px;
  height:8px;
  border-radius:999px;
  background:#f3b323;
}

/* faq page spacing */
.services-faq{
  position:relative;
  background:#f7f7fb;
  padding:118px 0 84px;
  overflow:hidden;
}

.services-faq::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-1px;
  height:78px;
  background:#fff;
  clip-path:path("M0,0 L1440,0 L1440,24 C1234,48 1012,58 720,36 C396,12 180,10 0,24 Z");
}

.services-faq .faq-layout{
  position:relative;
  z-index:2;
}

/* footer match */

.services-page .site-footer{
  background:#173ea6;
}

.services-page .footer-texture{
  inset:60px 0 0 0;
  background:#173ea6;
}

.services-page .footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  background:transparent;
}

/* responsive */

@media (max-width:1180px){
  .services-hero-panel h1,
  .services-popular-heading h2,
  .services-all-heading h2{
    font-size:46px;
  }

  .services-content-copy h2{
    font-size:44px;
  }

  .services-hero-sidecard h2{
    font-size:30px;
  }

  .services-popular-grid,
  .services-all-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:980px){
  .services-hero{
    padding:0 0 64px;
  }

  .services-hero-top-image{
    height:280px;
  }

  .services-hero-inner{
    margin-top:-54px;
  }

  .services-hero-grid,
  .services-content-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .services-hero-panel{
    width:100%;
    padding:30px 24px 28px;
  }

  .services-hero-panel h1{
    font-size:40px;
  }

  .services-hero-text{
    font-size:17px;
  }

  .services-popular-heading{
    margin:28px auto 28px;
  }

  .services-popular-heading h2,
  .services-all-heading h2{
    font-size:42px;
  }

  .services-strip-cta::before,
  .services-strip-cta::after,
  .services-all::before,
  .services-all::after,
  .services-content::before,
  .services-faq::before{
    height:56px;
  }

  .services-strip-cta-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .services-strip-cta-btn{
    min-width:0;
  }

  .services-faq{
    padding:92px 0 72px;
  }
}

@media (max-width:720px){
  .services-hero{
    padding:0 0 48px;
  }

  .services-hero-top-image{
    height:220px;
  }

  .services-hero-inner{
    margin-top:-24px;
  }

  .services-hero-panel{
    padding:24px 20px 24px;
  }

  .services-hero-panel h1{
    font-size:32px;
  }

  .services-hero-text{
    font-size:16px;
  }

  .services-hero-subtext{
    font-size:14px;
  }

  .services-hero-btn{
    min-width:0;
    width:100%;
  }

  .services-hero-sidecard{
    padding:22px 20px 24px;
  }

  .services-hero-sidecard h2{
    font-size:28px;
  }

  .services-popular-heading{
    margin:24px auto 22px;
  }

  .services-popular-heading h2,
  .services-all-heading h2,
  .services-content-copy h2{
    font-size:34px;
  }

  .services-all-heading p,
  .services-content-copy p{
    font-size:17px;
  }

  .services-popular-grid,
  .services-all-grid{
    grid-template-columns:1fr;
  }

  .popular-service-card{
    min-height:0;
  }

  .services-strip-cta{
    padding:54px 0 58px;
  }

  .services-strip-cta::before,
  .services-strip-cta::after,
  .services-all::before,
  .services-all::after,
  .services-content::before,
  .services-faq::before{
    height:46px;
  }

  .services-strip-cta-wrap{
    padding:22px 20px;
  }

  .services-strip-cta-copy h2{
    font-size:30px;
  }

  .services-strip-cta-copy p{
    font-size:16px;
  }

  .service-tile{
    min-height:160px;
  }

  .services-content-panel{
    padding:22px 20px 24px;
  }

  .services-faq{
    padding:78px 0 60px;
  }
}

@media (max-width:460px){
  .services-hero-panel h1,
  .services-popular-heading h2,
  .services-all-heading h2,
  .services-content-copy h2{
    font-size:30px;
  }

  .services-hero-sidecard h2,
  .services-strip-cta-copy h2{
    font-size:27px;
  }

  .popular-service-card h3{
    font-size:25px;
  }
}
/* =========================
   ABOUT PAGE
   ========================= */

.about-page{
  background:#fff;
}

/* =========================
   HERO
   ========================= */

.about-hero{
  position:relative;
  background:#f7f7fb;
  padding:56px 0 96px;
  overflow:hidden;
}

.about-hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:42px;
  align-items:center;
}

.about-hero-copy{
  max-width:650px;
}

.about-hero-kicker{
  display:inline-block;
  margin-bottom:16px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.about-hero-copy h1{
  font-size:58px;
  line-height:.98;
  letter-spacing:-.055em;
  color:var(--brand-blue-deep);
  margin-bottom:20px;
  font-weight:800;
}

.about-hero-lead{
  font-size:19px;
  line-height:1.8;
  color:#576173;
  margin-bottom:28px;
}

.about-hero-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:28px;
}

.about-hero-point{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:54px;
  padding:0 14px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 10px 22px rgba(18,30,57,.06);
  font-size:14px;
  font-weight:700;
  color:var(--brand-blue-deep);
}

.about-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.about-hero-media{
  position:relative;
  min-height:580px;
}

.about-hero-photo-main{
  width:100%;
  min-height:580px;
  overflow:hidden;
  box-shadow:0 24px 46px rgba(18,30,57,.14);
}

.about-hero-photo-main img{
  width:100%;
  height:100%;
  min-height:580px;
  object-fit:cover;
  display:block;
}

.about-hero-badge-card{
  position:absolute;
  left:50%;
  bottom:-40px;
  transform:translateX(-50%);
  width:min(78%, 380px);
  padding:22px 22px 20px;
  background:linear-gradient(135deg,#2447b2 0%, #173ea6 58%, #112b72 100%);
  color:#fff;
  box-shadow:0 20px 38px rgba(18,30,57,.22);
  z-index:4;
}

.about-hero-badge-card::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:6px;
  background:#f3b323;
}

.about-badge-eyebrow{
  display:block;
  margin-bottom:8px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#dce8ff;
}

.about-hero-badge-card strong{
  display:block;
  font-size:22px;
  line-height:1.3;
  font-weight:700;
}

/* =========================
   STATEMENT
   ========================= */

.about-statement{
  position:relative;
  background:#fff;
  padding:118px 0 40px;
  overflow:hidden;
}

.about-statement::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-34px;
  height:92px;
  background:#f7f7fb;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
}

.about-statement-inner{
  position:relative;
  z-index:2;
  max-width:960px;
}

.about-statement-inner h2{
  font-size:52px;
  line-height:1.04;
  letter-spacing:-.04em;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.about-statement-inner p{
  font-size:18px;
  line-height:1.8;
  color:#586274;
}

/* =========================
   COLUMNS
   ========================= */

.about-columns{
  position:relative;
  background:#fff;
  padding:30px 0 120px;
  overflow:hidden;
}

.about-columns-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.about-column-card{
  background:#f7f7fb;
  border:1px solid rgba(18,39,79,.08);
  padding:30px;
  box-shadow:0 14px 30px rgba(18,30,57,.08);
}

.about-column-card h3{
  font-size:28px;
  line-height:1.2;
  color:var(--brand-blue-deep);
  margin-bottom:14px;
  font-weight:700;
}

.about-column-card p{
  font-size:16px;
  line-height:1.75;
  color:#586274;
}

/* =========================
   VALUES
   ========================= */

.about-values{
  position:relative;
  background:#173ea6;
  padding:72px 0 92px;
  overflow:hidden;
}

.about-columns::after{
  display:none;
}

.about-values::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-34px;
  height:92px;
  background:#fff;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
}

.about-values-heading{
  position:relative;
  z-index:2;
  text-align:center;
  margin-bottom:34px;
}

.about-values-kicker{
  color:#dce8ff;
}

.about-values-heading h2{
  font-size:52px;
  line-height:1.03;
  color:#fff;
  font-weight:700;
}

.about-values-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.about-value-card{
  background:#fff;
  padding:26px 24px 24px;
  box-shadow:0 18px 38px rgba(0,0,0,.16);
  position:relative;
}

.about-value-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:#f3b323;
}

.about-value-icon{
  width:60px;
  height:60px;
  display:grid;
  place-items:center;
  color:var(--brand-blue-deep);
  margin-bottom:16px;
}

.about-value-icon .icon{
  width:38px;
  height:38px;
  stroke-width:1.9;
}

.about-value-card h3{
  font-size:22px;
  line-height:1.2;
  color:var(--brand-blue-deep);
  margin-bottom:10px;
  font-weight:700;
}

.about-value-card p{
  font-size:15px;
  line-height:1.7;
  color:#586274;
}

/* =========================
   STORY STRIP
   ========================= */

.about-story-strip{
  position:relative;
  background:#f0eeea;
  padding:56px 0 58px;
  overflow:hidden;
}

.about-story-strip::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-34px;
  height:92px;
  background:#173ea6;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
}

.about-story-strip-wrap{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:28px 30px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 18px 38px rgba(18,30,57,.10);
}

.about-story-strip-copy{
  max-width:760px;
}

.about-story-strip-kicker{
  display:inline-block;
  margin-bottom:10px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.about-story-strip-copy h2{
  font-size:36px;
  line-height:1.08;
  letter-spacing:-.03em;
  color:var(--brand-blue-deep);
  margin-bottom:10px;
  font-weight:700;
}

.about-story-strip-copy p{
  font-size:17px;
  line-height:1.7;
  color:#5a6476;
}

.about-story-strip-btn{
  min-width:220px;
}

/* =========================
   PROCESS
   ========================= */

.about-process{
  position:relative;
  background:#fff;
  padding:92px 0 82px;
  overflow:hidden;
}

.about-process::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-34px;
  height:92px;
  background:#f0eeea;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
}

.about-process-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:start;
}

.about-process-copy h2{
  font-size:52px;
  line-height:1.04;
  letter-spacing:-.04em;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.about-process-copy p{
  font-size:18px;
  line-height:1.8;
  color:#586274;
  margin-bottom:16px;
}

.about-process-steps{
  display:grid;
  gap:18px;
}

.about-step-card{
  background:#f7f7fb;
  padding:24px 22px 22px;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 10px 24px rgba(18,30,57,.07);
}

.about-step-number{
  display:inline-block;
  margin-bottom:12px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  color:var(--red);
}

.about-step-card h3{
  font-size:24px;
  line-height:1.2;
  color:var(--brand-blue-deep);
  margin-bottom:10px;
  font-weight:700;
}

.about-step-card p{
  font-size:15px;
  line-height:1.7;
  color:#586274;
}

/* =========================
   DIVIDER
   ========================= */

.section-wave-divider{
  position:relative;
  height:110px;
  margin-top:-40px;
  background:#fff;
  overflow:hidden;
}

.section-wave-divider svg{
  display:block;
  width:100%;
  height:100%;
}

.section-wave-divider path{
  fill:#f7f7fb;
}

/* =========================
   SERVICE MIX
   ========================= */

.about-service-mix{
  position:relative;
  background:#f7f7fb;
  padding:72px 0 82px;
  overflow:hidden;
}

.about-service-mix-heading{
  max-width:900px;
  margin:0 auto 34px;
  text-align:center;
}

.about-service-mix-heading h2{
  font-size:52px;
  line-height:1.03;
  letter-spacing:-.04em;
  color:var(--brand-blue-deep);
  margin-bottom:12px;
  font-weight:700;
}

.about-service-mix-heading p{
  font-size:18px;
  line-height:1.75;
  color:#586274;
}

.about-service-mix-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.about-service-mix-card{
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  padding:28px 22px 24px;
  text-align:center;
  box-shadow:0 10px 24px rgba(18,30,57,.07);
  position:relative;
  min-height:180px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  transition:transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.about-service-mix-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:#f3b323;
}

.about-service-mix-card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 38px rgba(18,30,57,.14);
  border-color:rgba(36,71,178,.18);
}

.about-service-mix-icon{
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  color:var(--brand-blue-deep);
  margin-bottom:16px;
}

.about-service-mix-icon .icon{
  width:40px;
  height:40px;
  stroke-width:1.9;
}

.about-service-mix-card h3{
  font-size:21px;
  line-height:1.35;
  color:var(--brand-blue-deep);
  font-weight:700;
}

/* =========================
   FAQ
   ========================= */

.about-faq{
  position:relative;
  background:#f7f7fb;
  padding:118px 0 84px;
  overflow:hidden;
}

.about-faq::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-34px;
  height:92px;
  background:#f7f7fb;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
}

.about-faq .faq-layout{
  position:relative;
  z-index:2;
}

/* =========================
   FOOTER MATCH
   ========================= */

.about-page .site-footer{
  background:#173ea6;
}

.about-page .footer-texture{
  inset:60px 0 0 0;
  background:#173ea6;
}

.about-page .footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  background:transparent;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width:1180px){
  .about-hero-copy h1,
  .about-statement-inner h2,
  .about-values-heading h2,
  .about-process-copy h2,
  .about-service-mix-heading h2{
    font-size:46px;
  }
}

@media (max-width:980px){
  .about-hero-grid,
  .about-columns-grid,
  .about-process-grid{
    grid-template-columns:1fr;
  }

  .about-values-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .about-service-mix-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .about-hero-media{
    min-height:auto;
  }

  .about-hero-photo-main{
    min-height:420px;
  }

  .about-hero-photo-main img{
    min-height:420px;
  }

  .about-story-strip-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .about-story-strip-btn{
    min-width:0;
  }
}

@media (max-width:720px){
  .about-hero{
    padding:34px 0 66px;
  }

  .about-hero-copy h1,
  .about-statement-inner h2,
  .about-values-heading h2,
  .about-process-copy h2,
  .about-service-mix-heading h2{
    font-size:34px;
  }

  .about-hero-lead,
  .about-statement-inner p,
  .about-process-copy p,
  .about-service-mix-heading p{
    font-size:17px;
  }

  .about-hero-points{
    grid-template-columns:1fr;
  }

  .about-hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .about-hero-actions .btn{
    width:100%;
  }

  .about-hero-media{
    min-height:auto;
  }

  .about-hero-photo-main{
    min-height:300px;
  }

  .about-hero-photo-main img{
    min-height:300px;
  }

  .about-hero-badge-card{
    width:min(86%, 360px);
    bottom:-28px;
  }

  .about-hero-badge-card strong{
    font-size:19px;
  }

  .about-columns{
    padding:24px 0 90px;
  }

  .about-column-card{
    padding:24px 20px;
  }

  .about-column-card h3{
    font-size:24px;
  }

  .about-values-grid,
  .about-service-mix-grid{
    grid-template-columns:1fr;
  }

  .about-story-strip{
    padding:46px 0 48px;
  }

  .about-story-strip-wrap{
    padding:22px 20px;
  }

  .about-story-strip-copy h2{
    font-size:29px;
  }

  .about-story-strip-copy p{
    font-size:16px;
  }

  .about-story-strip-btn{
    width:100%;
  }

  .about-process{
    padding:82px 0 60px;
  }

  .about-step-card h3{
    font-size:22px;
  }

  .about-service-mix-card{
    min-height:0;
  }

  .about-faq{
    padding:82px 0 60px;
  }
}

@media (max-width:460px){
  .about-hero-copy h1,
  .about-statement-inner h2,
  .about-values-heading h2,
  .about-process-copy h2,
  .about-service-mix-heading h2{
    font-size:30px;
  }

  .about-story-strip-copy h2{
    font-size:25px;
  }

  .about-column-card h3,
  .about-value-card h3,
  .about-service-mix-card h3{
    font-size:20px;
  }
}
/* =========================
   LOCATIONS PAGE
   ========================= */

.locations-page{
  background:#fff;
}

/* =========================
   HERO
   ========================= */

.loc-hero{
  position:relative;
  background:#f7f7fb;
  padding:56px 0 82px;
  overflow:hidden;
}

.loc-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}

.loc-hero-copy{
  max-width:640px;
}

.loc-hero-copy h1{
  font-size:58px;
  line-height:1.02;
  letter-spacing:-.05em;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:800;
}

.loc-hero-lead{
  font-size:19px;
  line-height:1.8;
  color:#5b6577;
  margin-bottom:28px;
}

.loc-hero-points{
  display:grid;
  gap:12px;
}

.loc-hero-point{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:54px;
  padding:0 16px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 10px 20px rgba(18,30,57,.06);
  color:var(--brand-blue-deep);
  font-size:15px;
  font-weight:700;
}

.loc-hero-media{
  position:relative;
  min-height:580px;
}

.loc-hero-main-photo{
  position:relative;
  min-height:580px;
  overflow:hidden;
  box-shadow:0 22px 42px rgba(18,30,57,.14);
  background:#dfe5f0;
}

.loc-hero-slides{
  position:absolute;
  inset:0;
}

.loc-hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1.05s ease, transform 6s ease;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  transform:scale(1.03);
}

.loc-hero-slide.is-active{
  opacity:1;
  transform:scale(1);
}

.loc-hero-badge{
  position:absolute;
  left:50%;
  bottom:-40px;
  transform:translateX(-50%);
  width:min(74%, 420px);
  background:linear-gradient(135deg,#2447b2 0%, #173ea6 58%, #112b72 100%);
  color:#fff;
  padding:22px 22px 20px;
  box-shadow:0 22px 38px rgba(18,30,57,.2);
  z-index:4;
}

.loc-hero-badge::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:#f3b323;
}

.loc-hero-badge span{
  display:block;
  margin-bottom:8px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#dce8ff;
}

.loc-hero-badge strong{
  display:block;
  font-size:22px;
  line-height:1.3;
  font-weight:700;
}

/* =========================
   INTRO BAND
   ========================= */

.loc-intro-band{
  position:relative;
  background:#fff;
  padding:118px 0 56px;
  overflow:hidden;
}

.loc-intro-band::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-34px;
  height:92px;
  background:#f7f7fb;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
  opacity:.98;
  z-index:1;
}

.loc-intro-band-wrap{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  padding:26px 30px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 16px 34px rgba(18,30,57,.08);
}

.loc-intro-band-copy{
  max-width:780px;
}

.loc-intro-band-kicker{
  display:inline-block;
  margin-bottom:10px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.loc-intro-band-copy h2{
  font-size:36px;
  line-height:1.1;
  letter-spacing:-.03em;
  color:var(--brand-blue-deep);
  font-weight:700;
}

.loc-intro-band-btn{
  min-width:220px;
}

/* =========================
   LOCATION CARDS
   ========================= */

.loc-cards-section{
  position:relative;
  background:#f7f7fb;
  padding:118px 0 92px;
  overflow:hidden;
}

.loc-cards-section::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-34px;
  height:92px;
  background:#fff;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
  opacity:.98;
  z-index:1;
}

.loc-cards-heading{
  position:relative;
  z-index:3;
  max-width:920px;
  text-align:center;
  margin:0 auto 34px;
}

.loc-cards-heading h2{
  font-size:54px;
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--brand-blue-deep);
  margin-bottom:14px;
  font-weight:700;
}

.loc-cards-heading p{
  font-size:18px;
  line-height:1.75;
  color:#5b6577;
}

.loc-card-grid{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:stretch;
}

.loc-card{
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 14px 28px rgba(18,30,57,.08);
  overflow:hidden;
  transition:transform .28s ease, box-shadow .28s ease;
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.loc-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 42px rgba(18,30,57,.14);
}

.loc-card-image{
  height:220px;
  overflow:hidden;
}

.loc-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.loc-card:hover .loc-card-image img{
  transform:scale(1.04);
}

.loc-card-body{
  padding:22px 22px 20px;
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
}

.loc-card-label{
  display:inline-block;
  margin-bottom:10px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.loc-card-body h3{
  font-size:28px;
  line-height:1.12;
  letter-spacing:-.02em;
  color:var(--brand-blue-deep);
  margin-bottom:12px;
  font-weight:700;
  min-height:62px;
}

.loc-card-address-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:10px;
}

.loc-card-address{
  font-size:17px;
  line-height:1.6;
  color:#5d6678;
  margin:0;
}

.loc-google-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  width:34px;
  height:34px;
  border-radius:999px;
  transition:transform .24s ease, opacity .24s ease;
}

.loc-google-link:hover{
  transform:translateY(-2px) scale(1.04);
  opacity:.88;
}

.loc-google-link img{
  width:27px;
  height:27px;
  object-fit:contain;
  display:block;
}

.loc-card-phone{
  display:inline-flex;
  align-items:center;
  margin-bottom:16px;
  font-size:18px;
  font-weight:700;
  color:var(--brand-blue-deep);
  transition:opacity .24s ease, transform .24s ease;
}

.loc-card-phone:hover{
  opacity:.82;
  transform:translateY(-1px);
}

.loc-card-list{
  list-style:none;
  display:grid;
  gap:8px;
  margin:0 0 22px;
  flex:1 1 auto;
}

.loc-card-list li{
  position:relative;
  padding-left:18px;
  font-size:15px;
  line-height:1.55;
  color:#4f596b;
}

.loc-card-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--gold);
}

.loc-card-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:auto;
}

/* =========================
   MAP SECTION
   ========================= */

.loc-map-section{
  position:relative;
  background:#fff;
  padding:118px 0 84px;
  overflow:hidden;
}

.loc-map-section::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-34px;
  height:92px;
  background:#f7f7fb;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
  opacity:.98;
  z-index:1;
}

.loc-map-grid{
  display:grid;
  grid-template-columns:.94fr 1.06fr;
  gap:34px;
  align-items:center;
  position:relative;
  z-index:3;
}

.loc-map-copy h2{
  font-size:52px;
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--brand-blue-deep);
  margin-bottom:16px;
  font-weight:700;
}

.loc-map-copy p{
  font-size:18px;
  line-height:1.8;
  color:#5b6577;
  margin-bottom:14px;
}

.loc-map-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:22px;
}

.loc-map-stat{
  background:#f7f7fb;
  border:1px solid rgba(18,39,79,.08);
  padding:18px 16px;
}

.loc-map-stat strong{
  display:block;
  font-size:34px;
  line-height:1;
  color:var(--brand-blue-deep);
  margin-bottom:6px;
  font-weight:800;
}

.loc-map-stat span{
  display:block;
  font-size:14px;
  line-height:1.45;
  color:#5b6577;
}

.loc-map-frame{
  position:relative;
  overflow:hidden;
  min-height:520px;
  box-shadow:0 20px 40px rgba(18,30,57,.12);
  background:#eef1f7;
}

.loc-map-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* =========================
   OVERVIEW
   ========================= */

.loc-overview-section{
  position:relative;
  background:#f7f7fb;
  padding:118px 0 84px;
  overflow:hidden;
}

.loc-overview-section::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-34px;
  height:92px;
  background:#fff;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
  opacity:.98;
  z-index:1;
}

.loc-overview-grid{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:36px;
  align-items:start;
}

.loc-overview-copy h2{
  font-size:50px;
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--brand-blue-deep);
  margin-bottom:16px;
  font-weight:700;
}

.loc-overview-copy p{
  font-size:18px;
  line-height:1.8;
  color:#5b6577;
  margin-bottom:14px;
}

.loc-overview-panel{
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 14px 28px rgba(18,30,57,.08);
  padding:28px 26px;
}

.loc-overview-panel h3{
  font-size:28px;
  line-height:1.18;
  color:var(--brand-blue-deep);
  margin-bottom:16px;
  font-weight:700;
}

.loc-overview-panel ul{
  list-style:none;
  display:grid;
  gap:12px;
  margin-bottom:24px;
}

.loc-overview-panel li{
  position:relative;
  padding-left:18px;
  font-size:16px;
  line-height:1.65;
  color:#5b6577;
}

.loc-overview-panel li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--gold);
}

/* =========================
   FAQ
   ========================= */

.loc-faq{
  position:relative;
  background:#f7f7fb;
  padding:118px 0 84px;
  overflow:hidden;
}

.loc-faq::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-1px;
  height:78px;
  background:#f7f7fb;
  clip-path:path("M0,0 L1440,0 L1440,24 C1234,48 1012,58 720,36 C396,12 180,10 0,24 Z");
}

.loc-faq .faq-layout{
  position:relative;
  z-index:2;
}

/* =========================
   FOOTER MATCH
   ========================= */

.locations-page .site-footer{
  background:#173ea6;
}

.locations-page .footer-texture{
  inset:60px 0 0 0;
  background:#173ea6;
}

.locations-page .footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  background:transparent;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width:1180px){
  .loc-hero-copy h1,
  .loc-cards-heading h2,
  .loc-map-copy h2,
  .loc-overview-copy h2{
    font-size:44px;
  }

  .loc-card-body h3{
    font-size:24px;
    min-height:56px;
  }
}

@media (max-width:980px){
  .loc-hero-grid,
  .loc-map-grid,
  .loc-overview-grid{
    grid-template-columns:1fr;
  }

  .loc-hero-media{
    min-height:auto;
  }

  .loc-hero-main-photo{
    min-height:420px;
  }

  .loc-card-grid{
    grid-template-columns:1fr;
  }

  .loc-intro-band{
    padding:94px 0 46px;
  }

  .loc-cards-section{
    padding:94px 0 72px;
  }

  .loc-intro-band::before,
  .loc-cards-section::before,
  .loc-map-section::before,
  .loc-overview-section::before{
    top:-24px;
    height:68px;
  }

  .loc-intro-band-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .loc-map-stats{
    grid-template-columns:1fr 1fr 1fr;
  }

  .loc-hero-badge{
    bottom:-34px;
  }

  .loc-card-body h3{
    min-height:0;
  }

  .loc-map-section,
  .loc-overview-section,
  .loc-faq{
    padding:94px 0 72px;
  }

  .loc-faq::before{
    height:56px;
  }
}

@media (max-width:720px){
  .loc-hero{
    padding:34px 0 66px;
  }

  .loc-hero-copy h1,
  .loc-cards-heading h2,
  .loc-map-copy h2,
  .loc-overview-copy h2{
    font-size:34px;
  }

  .loc-hero-lead,
  .loc-cards-heading p,
  .loc-map-copy p,
  .loc-overview-copy p{
    font-size:17px;
  }

  .loc-hero-main-photo{
    min-height:300px;
  }

  .loc-hero-badge{
    left:50%;
    width:min(86%, 360px);
    bottom:-28px;
    transform:translateX(-50%);
  }

  .loc-hero-badge strong{
    font-size:19px;
  }

  .loc-intro-band{
    padding:82px 0 38px;
  }

  .loc-cards-section{
    padding:82px 0 60px;
  }

  .loc-intro-band::before,
  .loc-cards-section::before,
  .loc-map-section::before,
  .loc-overview-section::before{
    top:-18px;
    height:54px;
  }

  .loc-intro-band-wrap{
    padding:22px 20px;
  }

  .loc-intro-band-copy h2{
    font-size:29px;
  }

  .loc-card-image{
    height:200px;
  }

  .loc-card-body{
    padding:20px 18px 18px;
  }

  .loc-card-body h3{
    font-size:24px;
  }

  .loc-card-actions{
    grid-template-columns:1fr;
  }

  .loc-map-section,
  .loc-overview-section,
  .loc-faq{
    padding:82px 0 60px;
  }

  .loc-map-stats{
    grid-template-columns:1fr;
  }

  .loc-map-frame{
    min-height:360px;
  }

  .loc-overview-panel{
    padding:22px 20px;
  }

  .loc-faq::before{
    height:46px;
  }
}

@media (max-width:460px){
  .loc-hero-copy h1,
  .loc-cards-heading h2,
  .loc-map-copy h2,
  .loc-overview-copy h2{
    font-size:30px;
  }

  .loc-intro-band-copy h2{
    font-size:25px;
  }

  .loc-card-body h3,
  .loc-overview-panel h3{
    font-size:22px;
  }

  .loc-intro-band::before,
  .loc-cards-section::before,
  .loc-map-section::before,
  .loc-overview-section::before{
    top:-14px;
    height:46px;
  }

  .loc-card-address-row{
    gap:10px;
  }

  .loc-google-link{
    width:30px;
    height:30px;
  }

  .loc-google-link img{
    width:24px;
    height:24px;
  }
}
/* =========================
   SPANISH PAGE
   ========================= */

.es-page{
  background:#fff;
}

.es-hero{
  position:relative;
  background:#f7f7fb;
  padding:56px 0 104px;
  overflow:hidden;
}

.es-hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:42px;
  align-items:center;
}

.es-hero-copy{
  max-width:660px;
}

.es-hero-kicker{
  display:inline-block;
  margin-bottom:16px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.es-hero-copy h1{
  font-size:60px;
  line-height:.98;
  letter-spacing:-.055em;
  color:var(--brand-blue-deep);
  margin-bottom:20px;
  font-weight:800;
}

.es-hero-lead{
  font-size:20px;
  line-height:1.72;
  color:#576173;
  margin-bottom:26px;
}

.es-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.es-hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.es-hero-tags span{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 10px 20px rgba(18,30,57,.06);
  color:var(--brand-blue-deep);
  font-size:14px;
  font-weight:700;
}

.es-hero-media{
  position:relative;
  min-height:620px;
}

.es-hero-photo{
  width:100%;
  min-height:620px;
  overflow:hidden;
  box-shadow:0 24px 46px rgba(18,30,57,.14);
}

.es-hero-photo img{
  width:100%;
  height:100%;
  min-height:620px;
  object-fit:cover;
  display:block;
}

.es-hero-card{
  position:absolute;
  left:50%;
  top:100%;
  transform:translate(-50%, -50%);
  width:min(78%, 360px);
  padding:22px 22px 20px;
  background:linear-gradient(135deg,#2447b2 0%, #173ea6 58%, #112b72 100%);
  color:#fff;
  box-shadow:0 20px 38px rgba(18,30,57,.22);
  z-index:4;
}

.es-hero-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:#f3b323;
}

.es-hero-card-top{
  display:block;
  margin-bottom:10px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#dce8ff;
}

.es-hero-card strong{
  display:block;
  font-size:22px;
  line-height:1.32;
  font-weight:700;
}

/* top locations */

.es-trust-top{
  padding-top:18px;
}

.es-map-section{
  background:#fff;
  padding:18px 0 0;
}

/* overview */

.es-overview{
  position:relative;
  background:#fff;
  padding:72px 0 54px;
}

.es-overview-grid{
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:34px;
  align-items:start;
}

.es-overview-copy h2{
  font-size:52px;
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.es-overview-copy p{
  font-size:18px;
  line-height:1.8;
  color:#586274;
  margin-bottom:16px;
}

.es-overview-panel{
  background:#f7f7fb;
  border:1px solid rgba(18,39,79,.08);
  padding:28px 28px 30px;
  box-shadow:0 14px 30px rgba(18,30,57,.08);
}

.es-overview-panel h3{
  font-size:28px;
  line-height:1.2;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.es-check-list{
  list-style:none;
  display:grid;
  gap:12px;
}

.es-check-list li{
  position:relative;
  padding-left:22px;
  font-size:16px;
  line-height:1.65;
  color:#5d6678;
}

.es-check-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:8px;
  height:8px;
  border-radius:999px;
  background:#f3b323;
}

/* services */

.es-services-band{
  background:#173ea6;
  padding:66px 0 78px;
}

.es-services-heading{
  max-width:860px;
  margin:0 auto 34px;
  text-align:center;
}

.es-kicker-light{
  color:#dce8ff;
}

.es-services-heading h2{
  font-size:54px;
  line-height:1.03;
  letter-spacing:-.045em;
  color:#fff;
  margin-bottom:10px;
  font-weight:700;
}

.es-services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.es-service-card{
  background:#fff;
  padding:30px 24px 28px;
  box-shadow:0 18px 38px rgba(0,0,0,.16);
  position:relative;
  min-height:270px;
  transition:transform .28s ease, box-shadow .28s ease;
}

.es-service-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:#f3b323;
}

.es-service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 52px rgba(0,0,0,.22);
}

.es-service-icon{
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
}

.es-service-icon .icon{
  width:40px;
  height:40px;
  stroke-width:1.95;
}

.es-service-card h3{
  font-size:24px;
  line-height:1.2;
  color:var(--brand-blue-deep);
  margin-bottom:12px;
  font-weight:700;
}

.es-service-card p{
  font-size:15px;
  line-height:1.72;
  color:#596376;
}

/* faq */

.es-faq{
  padding-top:72px;
}

/* footer match */

.es-page .site-footer{
  background:#173ea6;
}

.es-page .footer-texture{
  inset:60px 0 0 0;
  background:#173ea6;
}

.es-page .footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  background:transparent;
}

/* responsive */

@media (max-width:1180px){
  .es-hero-copy h1,
  .es-overview-copy h2,
  .es-services-heading h2{
    font-size:46px;
  }

  .es-services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:980px){
  .es-hero-grid,
  .es-overview-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .es-hero-media{
    min-height:auto;
  }

  .es-hero-photo{
    min-height:420px;
  }

  .es-hero-photo img{
    min-height:420px;
  }

  .es-hero-card{
    width:min(78%, 360px);
    top:100%;
    transform:translate(-50%, -50%);
  }

  .es-trust-top{
    padding-top:10px;
  }

  .es-map-section{
    padding-top:8px;
  }

  .es-overview{
    padding:60px 0 42px;
  }

  .es-services-heading h2{
    font-size:42px;
  }
}

@media (max-width:720px){
  .es-hero{
    padding:34px 0 46px;
  }

  .es-hero-copy h1{
    font-size:36px;
  }

  .es-hero-lead{
    font-size:17px;
  }

  .es-hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .es-hero-photo{
    min-height:300px;
  }

  .es-hero-photo img{
    min-height:300px;
  }

  .es-hero-card{
    width:min(84%, 320px);
    top:100%;
    transform:translate(-50%, -50%);
    padding:18px 18px 16px;
  }

  .es-hero-card strong{
    font-size:19px;
  }

  .es-hero-tags{
    gap:8px;
  }

  .es-overview{
    padding:52px 0 34px;
  }

  .es-overview-copy h2,
  .es-services-heading h2{
    font-size:34px;
  }

  .es-overview-copy p{
    font-size:17px;
  }

  .es-services-grid{
    grid-template-columns:1fr;
  }

  .es-services-band{
    padding:54px 0 60px;
  }

  .es-faq{
    padding-top:46px;
  }
}

@media (max-width:460px){
  .es-hero-copy h1,
  .es-overview-copy h2,
  .es-services-heading h2{
    font-size:30px;
  }

  .es-service-card h3{
    font-size:21px;
  }
}
/* =========================
   NORTH OMAHA MAPLE PAGE
   ========================= */

.north-maple-page{
  background:#fff;
}

/* hero */

.north-maple-page .north-hero{
  position:relative;
  background:#f7f7fb;
  padding:56px 0 124px;
  overflow:hidden;
}

.north-maple-page .north-hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:84px;
  background:#fff;
  clip-path:path("M0,26 C170,70 380,88 720,58 C1030,30 1252,10 1440,30 L1440,120 L0,120 Z");
}

.north-maple-page .north-hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:42px;
  align-items:center;
}

.north-maple-page .north-hero-copy{
  max-width:670px;
}

.north-maple-page .north-hero-kicker{
  display:inline-block;
  margin-bottom:16px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.north-maple-page .north-hero-copy h1{
  font-size:58px;
  line-height:.98;
  letter-spacing:-.055em;
  color:var(--brand-blue-deep);
  margin-bottom:20px;
  font-weight:800;
}

.north-maple-page .north-hero-lead{
  font-size:20px;
  line-height:1.72;
  color:#576173;
  margin-bottom:26px;
}

.north-maple-page .north-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.north-maple-page .north-call-btn{
  min-width:260px;
}

.north-maple-page .north-hero-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.north-maple-page .north-hero-point{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:54px;
  padding:0 14px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  color:var(--brand-blue-deep);
  font-size:14px;
  font-weight:700;
  box-shadow:0 10px 22px rgba(18,30,57,.06);
}

.north-maple-page .north-hero-media{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:stretch;
}

.north-maple-page .north-hero-photo{
  position:relative;
  width:100%;
  min-height:620px;
  overflow:hidden;
  box-shadow:0 24px 46px rgba(18,30,57,.14);
}

.north-maple-page .north-hero-photo img{
  width:100%;
  height:100%;
  min-height:620px;
  object-fit:cover;
  display:block;
}

.north-maple-page .north-hero-brand-card{
  position:absolute;
  right:24px;
  bottom:-40px;
  width:min(80%, 440px);
  display:grid;
  grid-template-columns:130px 1fr;
  gap:18px;
  align-items:center;
  padding:18px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 20px 42px rgba(18,30,57,.16);
  z-index:4;
}

.north-maple-page .north-hero-brand-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:#f3b323;
}

.north-maple-page .north-hero-brand-logo{
  display:flex;
  align-items:center;
  justify-content:center;
}

.north-maple-page .north-hero-brand-logo img{
  width:100%;
  max-width:130px;
  height:auto;
  display:block;
}

.north-maple-page .north-hero-brand-copy span{
  display:block;
  margin-bottom:8px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.north-maple-page .north-hero-brand-copy strong{
  display:block;
  font-size:24px;
  line-height:1.18;
  color:var(--brand-blue-deep);
  font-weight:700;
  margin-bottom:8px;
}

.north-maple-page .north-hero-brand-copy p{
  font-size:15px;
  line-height:1.6;
  color:#5d6678;
}

/* direct strip */

.north-maple-page .north-direct-strip{
  position:relative;
  background:#fff;
  padding:18px 0 70px;
}

.north-maple-page .north-direct-strip-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  padding:28px 30px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 16px 34px rgba(18,30,57,.08);
  position:relative;
  z-index:2;
}

.north-maple-page .north-direct-copy{
  max-width:760px;
}

.north-maple-page .north-direct-kicker{
  display:inline-block;
  margin-bottom:10px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.north-maple-page .north-direct-copy h2{
  font-size:36px;
  line-height:1.1;
  letter-spacing:-.03em;
  color:var(--brand-blue-deep);
  margin-bottom:10px;
  font-weight:700;
}

.north-maple-page .north-direct-copy p{
  font-size:17px;
  line-height:1.7;
  color:#5a6476;
}

.north-maple-page .north-direct-right{
  text-align:right;
  flex:0 0 auto;
}

.north-maple-page .north-big-phone{
  display:block;
  font-size:42px;
  line-height:1;
  font-weight:800;
  color:var(--brand-blue-deep);
  margin-bottom:10px;
  letter-spacing:-.03em;
}

.north-maple-page .north-direct-right p{
  font-size:17px;
  line-height:1.6;
  color:#5a6476;
}

/* overview */

.north-maple-page .north-overview{
  position:relative;
  background:#fff;
  padding:18px 0 110px;
  overflow:hidden;
}

.north-maple-page .north-overview::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:78px;
  background:#fff;
  clip-path:path("M0,28 C180,72 392,88 720,60 C1022,34 1240,14 1440,34 L1440,120 L0,120 Z");
}

.north-maple-page .north-overview-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:34px;
  align-items:start;
}

.north-maple-page .north-overview-copy h2{
  font-size:52px;
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.north-maple-page .north-overview-copy p{
  font-size:18px;
  line-height:1.8;
  color:#586274;
  margin-bottom:16px;
}

.north-maple-page .north-overview-panel{
  background:#f7f7fb;
  border:1px solid rgba(18,39,79,.08);
  padding:28px 28px 30px;
  box-shadow:0 14px 30px rgba(18,30,57,.08);
}

.north-maple-page .north-overview-panel h3{
  font-size:28px;
  line-height:1.2;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.north-maple-page .north-check-list{
  list-style:none;
  display:grid;
  gap:12px;
}

.north-maple-page .north-check-list li{
  position:relative;
  padding-left:22px;
  font-size:16px;
  line-height:1.65;
  color:#5d6678;
}

.north-maple-page .north-check-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:8px;
  height:8px;
  border-radius:999px;
  background:#f3b323;
}

/* tire banner */

.north-maple-page .north-tire-banner{
  position:relative;
  min-height:530px;
  overflow:hidden;
  color:#fff;
  isolation:isolate;
  padding-top:124px;
  background:
    radial-gradient(circle at 16% 44%, rgba(255,72,72,.16) 0%, rgba(255,72,72,0) 24%),
    radial-gradient(circle at 30% 60%, rgba(255,60,60,.12) 0%, rgba(255,60,60,0) 18%),
    linear-gradient(90deg,#b50b18 0%, #ca101e 22%, #ca1220 38%, #bf1c24 52%, #c03d42 68%, #dbb2b2 100%);
}

.north-maple-page .north-tire-bg{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(circle at 10% 38%, rgba(255,255,255,.09) 0%, rgba(255,255,255,0) 18%),
    radial-gradient(circle at 18% 62%, rgba(0,0,0,.08) 0%, rgba(0,0,0,0) 26%);
}

.north-maple-page .north-tire-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(
      90deg,
      rgba(185,10,24,.96) 0%,
      rgba(198,14,29,.94) 18%,
      rgba(204,18,31,.90) 36%,
      rgba(198,20,31,.82) 54%,
      rgba(184,18,28,.66) 72%,
      rgba(160,16,25,.42) 86%,
      rgba(120,18,26,.18) 100%
    ),
    radial-gradient(
      circle at 28% 52%,
      rgba(255,70,70,.18) 0%,
      rgba(255,70,70,0) 30%
    );
}

.north-maple-page .north-tire-media{
  position:absolute;
  inset:0;
  width:100%;
  z-index:3;
  pointer-events:none;
  overflow:hidden;
}

.north-maple-page .north-tire-media-card{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
  background:transparent;
}

.north-maple-page .north-tire-media-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:72% center;
  transform:scale(1.04);
  filter:contrast(1.02) saturate(.94) brightness(.82);
}

.north-maple-page .north-tire-media-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:3;
  background:
    linear-gradient(
      90deg,
      rgba(198,18,31,.92) 0%,
      rgba(198,18,31,.82) 16%,
      rgba(198,18,31,.70) 34%,
      rgba(198,18,31,.56) 52%,
      rgba(198,18,31,.38) 70%,
      rgba(198,18,31,.20) 86%,
      rgba(198,18,31,.08) 100%
    );
}

.north-maple-page .north-tire-media-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:4;
  background:linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(0,0,0,.10) 100%);
}

.north-maple-page .north-tire-banner::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-28px;
  height:88px;
  z-index:20;
  background:#fff;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
  opacity:.98;
  transform:rotate(-1.2deg);
}

.north-maple-page .north-tire-inner{
  position:relative;
  z-index:8;
  min-height:530px;
  display:flex;
  align-items:center;
}

.north-maple-page .north-tire-copy{
  max-width:620px;
  padding:34px 0 92px 0;
  position:relative;
  z-index:10;
}

.north-maple-page .north-tire-kicker{
  display:inline-block;
  margin-bottom:14px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#ffe2a1;
}

.north-maple-page .north-tire-copy h2{
  font-size:58px;
  line-height:.95;
  letter-spacing:-.04em;
  margin-bottom:18px;
  font-weight:700;
  text-shadow:0 2px 12px rgba(0,0,0,.18);
}

.north-maple-page .north-tire-subtitle{
  font-size:20px;
  line-height:1.35;
  margin-bottom:22px;
  font-weight:500;
  color:#fff;
}

.north-maple-page .north-tire-list{
  list-style:none;
  display:grid;
  gap:12px;
  margin-bottom:26px;
}

.north-maple-page .north-tire-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:18px;
  line-height:1.45;
  font-weight:500;
}

.north-maple-page .icon-check{
  width:18px;
  height:18px;
  color:#f4bc2b;
  margin-top:4px;
  flex:0 0 auto;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.18));
}

.north-maple-page .north-tire-cta-row{
  display:flex;
  align-items:flex-end;
  gap:18px;
  flex-wrap:wrap;
}

.north-maple-page .north-tire-cta-row p{
  max-width:380px;
  font-size:16px;
  line-height:1.45;
  color:#fff5f5;
  font-weight:400;
}

.north-maple-page .north-tire-wave-bottom{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  z-index:20;
  line-height:0;
}

.north-maple-page .north-tire-wave-bottom svg{
  display:block;
  width:100%;
  height:104px;
}

.north-maple-page .north-tire-wave-bottom path{
  fill:#ffffff;
}

/* service cards */

.north-maple-page .north-services{
  background:#fff;
  padding:78px 0 84px;
}

.north-maple-page .north-services-heading{
  max-width:900px;
  margin:0 auto 34px;
  text-align:center;
}

.north-maple-page .north-services-heading h2{
  font-size:54px;
  line-height:1.03;
  letter-spacing:-.045em;
  color:var(--brand-blue-deep);
  margin-bottom:12px;
  font-weight:700;
}

.north-maple-page .north-services-heading p{
  font-size:19px;
  line-height:1.7;
  color:#5a6476;
}

.north-maple-page .north-services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.north-maple-page .north-service-card{
  background:#f7f7fb;
  padding:30px 24px 28px;
  box-shadow:0 18px 38px rgba(18,30,57,.08);
  position:relative;
  min-height:270px;
  transition:transform .28s ease, box-shadow .28s ease;
}

.north-maple-page .north-service-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:#f3b323;
}

.north-maple-page .north-service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 52px rgba(18,30,57,.14);
}

.north-maple-page .north-service-icon{
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
}

.north-maple-page .north-service-icon .icon{
  width:40px;
  height:40px;
  stroke-width:1.95;
}

.north-maple-page .north-service-card h3{
  font-size:24px;
  line-height:1.2;
  color:var(--brand-blue-deep);
  margin-bottom:12px;
  font-weight:700;
}

.north-maple-page .north-service-card p{
  font-size:15px;
  line-height:1.72;
  color:#596376;
}

/* related locations */

.north-maple-page .north-related-locations{
  position:relative;
  background:#173ea6;
  padding:78px 0 92px;
  overflow:hidden;
}

.north-maple-page .north-related-locations::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-1px;
  height:74px;
  background:#fff;
  clip-path:path("M0,0 L1440,0 L1440,20 C1242,40 1018,54 720,34 C392,12 176,10 0,22 Z");
}

.north-maple-page .north-related-locations::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:82px;
  background:#f7f7fb;
  clip-path:path("M0,24 C180,68 396,84 720,56 C1032,28 1244,12 1440,30 L1440,120 L0,120 Z");
}

.north-maple-page .north-related-heading{
  position:relative;
  z-index:2;
  max-width:900px;
  margin:0 auto 34px;
  text-align:center;
}

.north-maple-page .north-related-heading .section-kicker{
  color:#dce8ff;
}

.north-maple-page .north-related-heading h2{
  font-size:54px;
  line-height:1.03;
  letter-spacing:-.045em;
  color:#fff;
  margin-bottom:12px;
  font-weight:700;
}

.north-maple-page .north-related-heading p{
  font-size:19px;
  line-height:1.7;
  color:#dce8ff;
}

.north-maple-page .north-related-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.north-maple-page .north-related-card{
  background:#fff;
  padding:30px 24px 28px;
  box-shadow:0 18px 38px rgba(0,0,0,.16);
  position:relative;
  min-height:250px;
  transition:transform .28s ease, box-shadow .28s ease;
}

.north-maple-page .north-related-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:#f3b323;
}

.north-maple-page .north-related-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 52px rgba(0,0,0,.22);
}

.north-maple-page .north-related-icon{
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
}

.north-maple-page .north-related-icon .icon{
  width:40px;
  height:40px;
  stroke-width:1.95;
}

.north-maple-page .north-related-card h3{
  font-size:24px;
  line-height:1.2;
  color:var(--brand-blue-deep);
  margin-bottom:12px;
  font-weight:700;
}

.north-maple-page .north-related-card p{
  font-size:15px;
  line-height:1.72;
  color:#596376;
  margin-bottom:18px;
}

.north-maple-page .north-related-card a{
  display:inline-block;
  color:var(--red);
  font-size:18px;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:4px;
}

/* map panel */

.north-maple-page .north-map-section{
  background:#f7f7fb;
  padding:78px 0 84px;
}

.north-maple-page .north-map-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:36px;
  align-items:center;
}

.north-maple-page .north-map-copy h2{
  font-size:52px;
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--brand-blue-deep);
  margin-bottom:16px;
  font-weight:700;
}

.north-maple-page .north-map-copy p{
  font-size:18px;
  line-height:1.8;
  color:#5b6577;
  margin-bottom:14px;
}

.north-maple-page .north-map-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:22px;
}

.north-maple-page .north-map-stat{
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  padding:18px 16px;
}

.north-maple-page .north-map-stat strong{
  display:block;
  font-size:34px;
  line-height:1;
  color:var(--brand-blue-deep);
  margin-bottom:6px;
  font-weight:800;
}

.north-maple-page .north-map-stat span{
  display:block;
  font-size:14px;
  line-height:1.45;
  color:#5b6577;
}

.north-maple-page .north-map-panel{
  display:flex;
}

.north-maple-page .north-map-card{
  width:100%;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 14px 28px rgba(18,30,57,.08);
  padding:30px 28px;
}

.north-maple-page .north-map-card h3{
  font-size:30px;
  line-height:1.15;
  color:var(--brand-blue-deep);
  margin-bottom:12px;
  font-weight:700;
}

.north-maple-page .north-map-card p{
  font-size:18px;
  line-height:1.75;
  color:#5d6678;
  margin-bottom:16px;
}

.north-maple-page .north-map-phone{
  display:inline-flex;
  align-items:center;
  font-size:32px;
  line-height:1;
  font-weight:800;
  color:var(--brand-blue-deep);
  margin-bottom:22px;
  letter-spacing:-.03em;
}

.north-maple-page .north-map-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.north-maple-page .north-map-actions .btn{
  min-width:190px;
}

.north-maple-page .north-map-embed{
  margin-top:22px;
  border:1px solid rgba(18,39,79,.08);
  overflow:hidden;
  background:#fff;
  box-shadow:0 12px 24px rgba(18,30,57,.08);
}

.north-maple-page .north-map-embed iframe{
  width:100%;
  height:340px;
  display:block;
  border:0;
}

/* faq */

.north-maple-page .north-faq{
  position:relative;
  background:#f7f7fb;
  padding:120px 0 84px;
  overflow:hidden;
}

.north-maple-page .north-faq::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-1px;
  height:78px;
  background:#f7f7fb;
  clip-path:path("M0,0 L1440,0 L1440,24 C1234,48 1012,58 720,36 C396,12 180,10 0,24 Z");
}

.north-maple-page .north-faq .faq-layout{
  position:relative;
  z-index:2;
}

.north-maple-page .north-faq-card .faq-review-btn{
  width:100%;
}

/* footer cleanup */

.north-maple-page .site-footer{
  background:#173ea6;
}

.north-maple-page .footer-texture{
  inset:60px 0 0 0;
  background:#173ea6;
}

.north-maple-page .footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  background:transparent;
}

/* responsive */

@media (max-width:1180px){
  .north-maple-page .north-hero-copy h1,
  .north-maple-page .north-overview-copy h2,
  .north-maple-page .north-tire-copy h2,
  .north-maple-page .north-services-heading h2,
  .north-maple-page .north-related-heading h2,
  .north-maple-page .north-map-copy h2{
    font-size:46px;
  }

  .north-maple-page .north-services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:980px){
  .north-maple-page .north-hero-grid,
  .north-maple-page .north-overview-grid,
  .north-maple-page .north-map-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .north-maple-page .north-hero{
    padding:42px 0 90px;
  }

  .north-maple-page .north-hero::after,
  .north-maple-page .north-overview::after,
  .north-maple-page .north-related-locations::after,
  .north-maple-page .north-faq::before{
    height:56px;
  }

  .north-maple-page .north-related-locations::before{
    height:50px;
  }

  .north-maple-page .north-hero-media{
    min-height:auto;
  }

  .north-maple-page .north-hero-photo{
    min-height:420px;
  }

  .north-maple-page .north-hero-photo img{
    min-height:420px;
  }

  .north-maple-page .north-hero-brand-card{
    right:18px;
    left:18px;
    width:auto;
    bottom:-34px;
    grid-template-columns:110px 1fr;
  }

  .north-maple-page .north-direct-strip-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .north-maple-page .north-direct-right{
    text-align:left;
  }

  .north-maple-page .north-map-stats{
    grid-template-columns:1fr 1fr 1fr;
  }

  .north-maple-page .north-related-grid{
    grid-template-columns:1fr;
  }

  .north-maple-page .north-tire-banner{
    padding-top:0;
    min-height:auto;
    background:#b90f1d;
  }

  .north-maple-page .north-tire-banner::before{
    display:none;
  }

  .north-maple-page .north-tire-bg,
  .north-maple-page .north-tire-overlay{
    display:none;
  }

  .north-maple-page .north-tire-inner{
    min-height:auto;
    display:block;
    padding-top:0;
    padding-bottom:34px;
  }

  .north-maple-page .north-tire-media{
    position:relative;
    width:100%;
    height:auto;
    overflow:visible;
    margin-bottom:22px;
  }

  .north-maple-page .north-tire-media-card{
    border-radius:0 0 28px 28px;
    overflow:hidden;
  }

  .north-maple-page .north-tire-media-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    object-position:center center;
    transform:none;
    filter:contrast(1.02) saturate(.94) brightness(.82);
  }

  .north-maple-page .north-tire-media-card::before{
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.08) 0%,
        rgba(0,0,0,.04) 35%,
        rgba(200,18,31,.14) 72%,
        rgba(200,18,31,.34) 100%
      );
  }

  .north-maple-page .north-tire-copy{
    max-width:none;
    padding:0 0 48px;
  }

  .north-maple-page .north-tire-cta-row{
    flex-direction:column;
    align-items:stretch;
    gap:14px;
  }

  .north-maple-page .north-tire-cta-row p{
    max-width:none;
  }

  .north-maple-page .north-tire-wave-bottom{
    position:relative;
    bottom:auto;
    left:auto;
    right:auto;
    margin-top:-8px;
  }

  .north-maple-page .north-tire-wave-bottom svg{
    height:60px;
  }

  .north-maple-page .north-faq{
    padding:92px 0 72px;
  }
}

@media (max-width:720px){
  .north-maple-page .north-hero{
    padding:34px 0 54px;
  }

  .north-maple-page .north-hero-copy h1{
    font-size:36px;
  }

  .north-maple-page .north-hero-lead{
    font-size:17px;
  }

  .north-maple-page .north-hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .north-maple-page .north-hero-actions .btn,
  .north-maple-page .north-map-actions .btn{
    width:100%;
  }

  .north-maple-page .north-call-btn{
    min-width:0;
  }

  .north-maple-page .north-hero-points{
    grid-template-columns:1fr;
  }

  .north-maple-page .north-hero-photo{
    min-height:300px;
  }

  .north-maple-page .north-hero-photo img{
    min-height:300px;
  }

  .north-maple-page .north-hero-brand-card{
    position:relative;
    right:auto;
    left:auto;
    bottom:auto;
    margin:-28px auto 0;
    width:min(92%, 440px);
    grid-template-columns:1fr;
    text-align:center;
  }

  .north-maple-page .north-hero-brand-logo{
    max-width:160px;
    margin:0 auto;
  }

  .north-maple-page .north-direct-strip{
    padding:18px 0 38px;
  }

  .north-maple-page .north-direct-strip-wrap{
    padding:22px 20px;
  }

  .north-maple-page .north-direct-copy h2{
    font-size:29px;
  }

  .north-maple-page .north-big-phone{
    font-size:34px;
  }

  .north-maple-page .north-overview-copy h2,
  .north-maple-page .north-tire-copy h2,
  .north-maple-page .north-services-heading h2,
  .north-maple-page .north-related-heading h2,
  .north-maple-page .north-map-copy h2{
    font-size:34px;
  }

  .north-maple-page .north-overview-copy p,
  .north-maple-page .north-map-copy p{
    font-size:17px;
  }

  .north-maple-page .north-services-grid{
    grid-template-columns:1fr;
  }

  .north-maple-page .north-services{
    padding:60px 0 60px;
  }

  .north-maple-page .north-related-locations{
    padding:54px 0 60px;
  }

  .north-maple-page .north-map-stats{
    grid-template-columns:1fr;
  }

  .north-maple-page .north-map-phone{
    font-size:28px;
  }

  .north-maple-page .north-map-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .north-maple-page .north-tire-media-card img{
    height:250px;
  }

  .north-maple-page .north-tire-copy{
    padding:0 0 46px;
  }

  .north-maple-page .north-tire-subtitle{
    font-size:18px;
  }

  .north-maple-page .north-tire-list li{
    font-size:17px;
  }

  .north-maple-page .north-map-embed iframe{
    height:280px;
  }

  .north-maple-page .north-faq{
    padding:78px 0 60px;
  }
}

@media (max-width:460px){
  .north-maple-page .north-hero-copy h1,
  .north-maple-page .north-overview-copy h2,
  .north-maple-page .north-tire-copy h2,
  .north-maple-page .north-services-heading h2,
  .north-maple-page .north-related-heading h2,
  .north-maple-page .north-map-copy h2{
    font-size:30px;
  }

  .north-maple-page .north-direct-copy h2{
    font-size:25px;
  }

  .north-maple-page .north-service-card h3,
  .north-maple-page .north-related-card h3,
  .north-maple-page .north-map-card h3{
    font-size:22px;
  }

  .north-maple-page .north-big-phone{
    font-size:30px;
  }

  .north-maple-page .north-tire-wave-bottom svg{
    height:48px;
  }
}
/* =========================
   SOUTH OMAHA 13TH PAGE
   ========================= */

.south-13th-page{
  background:#fff;
}

/* hero */

.south-13th-page .south-hero{
  position:relative;
  background:#f7f7fb;
  padding:56px 0 124px;
  overflow:hidden;
}

.south-13th-page .south-hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:84px;
  background:#fff;
  clip-path:path("M0,26 C170,70 380,88 720,58 C1030,30 1252,10 1440,30 L1440,120 L0,120 Z");
}

.south-13th-page .south-hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:42px;
  align-items:center;
}

.south-13th-page .south-hero-copy{
  max-width:670px;
}

.south-13th-page .south-hero-kicker{
  display:inline-block;
  margin-bottom:16px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.south-13th-page .south-hero-copy h1{
  font-size:58px;
  line-height:.98;
  letter-spacing:-.055em;
  color:var(--brand-blue-deep);
  margin-bottom:20px;
  font-weight:800;
}

.south-13th-page .south-hero-lead{
  font-size:20px;
  line-height:1.72;
  color:#576173;
  margin-bottom:26px;
}

.south-13th-page .south-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.south-13th-page .south-call-btn{
  min-width:260px;
}

.south-13th-page .south-hero-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.south-13th-page .south-hero-point{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:54px;
  padding:0 14px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  color:var(--brand-blue-deep);
  font-size:14px;
  font-weight:700;
  box-shadow:0 10px 22px rgba(18,30,57,.06);
}

.south-13th-page .south-hero-media{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:stretch;
}

.south-13th-page .south-hero-photo{
  position:relative;
  width:100%;
  min-height:620px;
  overflow:hidden;
  box-shadow:0 24px 46px rgba(18,30,57,.14);
}

.south-13th-page .south-hero-photo img{
  width:100%;
  height:100%;
  min-height:620px;
  object-fit:cover;
  display:block;
}

.south-13th-page .south-hero-brand-card{
  position:absolute;
  right:24px;
  bottom:-40px;
  width:min(80%, 440px);
  display:grid;
  grid-template-columns:130px 1fr;
  gap:18px;
  align-items:center;
  padding:18px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 20px 42px rgba(18,30,57,.16);
  z-index:4;
}

.south-13th-page .south-hero-brand-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:#f3b323;
}

.south-13th-page .south-hero-brand-logo{
  display:flex;
  align-items:center;
  justify-content:center;
}

.south-13th-page .south-hero-brand-logo img{
  width:100%;
  max-width:130px;
  height:auto;
  display:block;
}

.south-13th-page .south-hero-brand-copy span{
  display:block;
  margin-bottom:8px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.south-13th-page .south-hero-brand-copy strong{
  display:block;
  font-size:24px;
  line-height:1.18;
  color:var(--brand-blue-deep);
  font-weight:700;
  margin-bottom:8px;
}

.south-13th-page .south-hero-brand-copy p{
  font-size:15px;
  line-height:1.6;
  color:#5d6678;
}

/* direct strip */

.south-13th-page .south-direct-strip{
  position:relative;
  background:#fff;
  padding:18px 0 70px;
}

.south-13th-page .south-direct-strip-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  padding:28px 30px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 16px 34px rgba(18,30,57,.08);
  position:relative;
  z-index:2;
}

.south-13th-page .south-direct-copy{
  max-width:760px;
}

.south-13th-page .south-direct-kicker{
  display:inline-block;
  margin-bottom:10px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.south-13th-page .south-direct-copy h2{
  font-size:36px;
  line-height:1.1;
  letter-spacing:-.03em;
  color:var(--brand-blue-deep);
  margin-bottom:10px;
  font-weight:700;
}

.south-13th-page .south-direct-copy p{
  font-size:17px;
  line-height:1.7;
  color:#5a6476;
}

.south-13th-page .south-direct-right{
  text-align:right;
  flex:0 0 auto;
}

.south-13th-page .south-big-phone{
  display:block;
  font-size:42px;
  line-height:1;
  font-weight:800;
  color:var(--brand-blue-deep);
  margin-bottom:10px;
  letter-spacing:-.03em;
}

.south-13th-page .south-direct-right p{
  font-size:17px;
  line-height:1.6;
  color:#5a6476;
}

/* overview */

.south-13th-page .south-overview{
  position:relative;
  background:#fff;
  padding:18px 0 110px;
  overflow:hidden;
}

.south-13th-page .south-overview::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:78px;
  background:#f7f7fb;
  clip-path:path("M0,28 C180,72 392,88 720,60 C1022,34 1240,14 1440,34 L1440,120 L0,120 Z");
}

.south-13th-page .south-overview-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:34px;
  align-items:start;
}

.south-13th-page .south-overview-copy h2{
  font-size:52px;
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.south-13th-page .south-overview-copy p{
  font-size:18px;
  line-height:1.8;
  color:#586274;
  margin-bottom:16px;
}

.south-13th-page .south-overview-panel{
  background:#f7f7fb;
  border:1px solid rgba(18,39,79,.08);
  padding:28px 28px 30px;
  box-shadow:0 14px 30px rgba(18,30,57,.08);
}

.south-13th-page .south-overview-panel h3{
  font-size:28px;
  line-height:1.2;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.south-13th-page .south-check-list{
  list-style:none;
  display:grid;
  gap:12px;
}

.south-13th-page .south-check-list li{
  position:relative;
  padding-left:22px;
  font-size:16px;
  line-height:1.65;
  color:#5d6678;
}

.south-13th-page .south-check-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:8px;
  height:8px;
  border-radius:999px;
  background:#f3b323;
}

/* services band */

.south-13th-page .south-services-band{
  position:relative;
  background:#f7f7fb;
  padding:78px 0 92px;
  overflow:hidden;
}

.south-13th-page .south-services-band::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:82px;
  background:#fff;
  clip-path:path("M0,24 C172,66 394,84 720,56 C1026,28 1244,12 1440,30 L1440,120 L0,120 Z");
}

.south-13th-page .south-services-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr .94fr;
  gap:48px;
  align-items:center;
}

.south-13th-page .south-services-copy h2{
  font-size:58px;
  line-height:1.02;
  letter-spacing:-.04em;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.south-13th-page .south-service-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px 22px;
  max-width:700px;
}

.south-13th-page .south-service-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  min-height:88px;
}

.south-13th-page .south-service-bullet{
  width:34px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid #d8dde8;
  background:#fff;
  color:#7b8392;
  flex:0 0 auto;
}

.south-13th-page .south-service-item h3{
  font-size:18px;
  line-height:1.2;
  color:#1f2f4c;
  margin-bottom:7px;
  font-weight:600;
}

.south-13th-page .south-service-item p{
  font-size:15px;
  line-height:1.55;
  color:#606a7b;
  font-weight:400;
}

.south-13th-page .south-services-photo-wrap{
  display:flex;
  justify-content:flex-end;
}

.south-13th-page .south-services-photo{
  width:100%;
  max-width:520px;
  border-radius:42px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.south-13th-page .south-services-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio:.93 / 1;
}

/* process strip */

.south-13th-page .south-process-strip{
  background:#fff;
  padding:0 0 74px;
}

.south-13th-page .south-process-strip-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  padding:30px 34px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 18px 38px rgba(18,30,57,.10);
}

.south-13th-page .south-process-copy{
  max-width:760px;
}

.south-13th-page .south-process-kicker{
  display:inline-block;
  margin-bottom:12px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.south-13th-page .south-process-copy h2{
  font-size:38px;
  line-height:1.08;
  letter-spacing:-.03em;
  color:var(--brand-blue-deep);
  margin-bottom:10px;
  font-weight:700;
}

.south-13th-page .south-process-copy p{
  font-size:17px;
  line-height:1.7;
  color:#5a6476;
}

.south-13th-page .south-process-btn{
  min-width:220px;
}

/* related locations */

.south-13th-page .south-related-locations{
  position:relative;
  background:#173ea6;
  padding:78px 0 92px;
  overflow:hidden;
}

.south-13th-page .south-related-locations::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-1px;
  height:74px;
  background:#fff;
  clip-path:path("M0,0 L1440,0 L1440,20 C1242,40 1018,54 720,34 C392,12 176,10 0,22 Z");
}

.south-13th-page .south-related-locations::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:82px;
  background:#fff;
  clip-path:path("M0,24 C180,68 396,84 720,56 C1032,28 1244,12 1440,30 L1440,120 L0,120 Z");
}

.south-13th-page .south-related-heading{
  position:relative;
  z-index:2;
  max-width:900px;
  margin:0 auto 34px;
  text-align:center;
}

.south-13th-page .south-related-heading .section-kicker{
  color:#dce8ff;
}

.south-13th-page .south-related-heading h2{
  font-size:54px;
  line-height:1.03;
  letter-spacing:-.045em;
  color:#fff;
  margin-bottom:12px;
  font-weight:700;
}

.south-13th-page .south-related-heading p{
  font-size:19px;
  line-height:1.7;
  color:#dce8ff;
}

.south-13th-page .south-related-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.south-13th-page .south-related-card{
  background:#fff;
  padding:30px 24px 28px;
  box-shadow:0 18px 38px rgba(0,0,0,.16);
  position:relative;
  min-height:250px;
  transition:transform .28s ease, box-shadow .28s ease;
}

.south-13th-page .south-related-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:#f3b323;
}

.south-13th-page .south-related-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 52px rgba(0,0,0,.22);
}

.south-13th-page .south-related-icon{
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
}

.south-13th-page .south-related-icon .icon{
  width:40px;
  height:40px;
  stroke-width:1.95;
}

.south-13th-page .south-related-card h3{
  font-size:24px;
  line-height:1.2;
  color:var(--brand-blue-deep);
  margin-bottom:12px;
  font-weight:700;
}

.south-13th-page .south-related-card p{
  font-size:15px;
  line-height:1.72;
  color:#596376;
  margin-bottom:18px;
}

.south-13th-page .south-related-card a{
  display:inline-block;
  color:var(--red);
  font-size:18px;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:4px;
}

/* map */

.south-13th-page .south-map-section{
  background:#fff;
  padding:78px 0 84px;
}

.south-13th-page .south-map-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:36px;
  align-items:center;
}

.south-13th-page .south-map-copy h2{
  font-size:52px;
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--brand-blue-deep);
  margin-bottom:16px;
  font-weight:700;
}

.south-13th-page .south-map-copy p{
  font-size:18px;
  line-height:1.8;
  color:#5b6577;
  margin-bottom:14px;
}

.south-13th-page .south-map-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:22px;
}

.south-13th-page .south-map-stat{
  background:#f7f7fb;
  border:1px solid rgba(18,39,79,.08);
  padding:18px 16px;
}

.south-13th-page .south-map-stat strong{
  display:block;
  font-size:34px;
  line-height:1;
  color:var(--brand-blue-deep);
  margin-bottom:6px;
  font-weight:800;
}

.south-13th-page .south-map-stat span{
  display:block;
  font-size:14px;
  line-height:1.45;
  color:#5b6577;
}

.south-13th-page .south-map-panel{
  display:flex;
}

.south-13th-page .south-map-card{
  width:100%;
  background:#f7f7fb;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 14px 28px rgba(18,30,57,.08);
  padding:30px 28px;
}

.south-13th-page .south-map-card h3{
  font-size:30px;
  line-height:1.15;
  color:var(--brand-blue-deep);
  margin-bottom:12px;
  font-weight:700;
}

.south-13th-page .south-map-card p{
  font-size:18px;
  line-height:1.75;
  color:#5d6678;
  margin-bottom:16px;
}

.south-13th-page .south-map-phone{
  display:inline-flex;
  align-items:center;
  font-size:32px;
  line-height:1;
  font-weight:800;
  color:var(--brand-blue-deep);
  margin-bottom:22px;
  letter-spacing:-.03em;
}

.south-13th-page .south-map-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.south-13th-page .south-map-actions .btn{
  min-width:190px;
}

/* faq */

.south-13th-page .south-faq{
  position:relative;
  background:#f7f7fb;
  padding:120px 0 84px;
  overflow:hidden;
}

.south-13th-page .south-faq::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-1px;
  height:78px;
  background:#fff;
  clip-path:path("M0,0 L1440,0 L1440,24 C1234,48 1012,58 720,36 C396,12 180,10 0,24 Z");
}

.south-13th-page .south-faq .faq-layout{
  position:relative;
  z-index:2;
}

.south-13th-page .south-faq-card .faq-review-btn{
  width:100%;
}

/* footer cleanup */

.south-13th-page .site-footer{
  background:#173ea6;
}

.south-13th-page .footer-texture{
  inset:60px 0 0 0;
  background:#173ea6;
}

.south-13th-page .footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  background:transparent;
}

/* responsive */

@media (max-width:1180px){
  .south-13th-page .south-hero-copy h1,
  .south-13th-page .south-overview-copy h2,
  .south-13th-page .south-services-copy h2,
  .south-13th-page .south-related-heading h2,
  .south-13th-page .south-map-copy h2{
    font-size:46px;
  }
}

@media (max-width:980px){
  .south-13th-page .south-hero-grid,
  .south-13th-page .south-overview-grid,
  .south-13th-page .south-services-grid,
  .south-13th-page .south-map-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .south-13th-page .south-hero{
    padding:42px 0 90px;
  }

  .south-13th-page .south-hero::after,
  .south-13th-page .south-overview::after,
  .south-13th-page .south-services-band::after,
  .south-13th-page .south-related-locations::after,
  .south-13th-page .south-faq::before{
    height:56px;
  }

  .south-13th-page .south-related-locations::before{
    height:50px;
  }

  .south-13th-page .south-hero-media{
    min-height:auto;
  }

  .south-13th-page .south-hero-photo{
    min-height:420px;
  }

  .south-13th-page .south-hero-photo img{
    min-height:420px;
  }

  .south-13th-page .south-hero-brand-card{
    right:18px;
    left:18px;
    width:auto;
    bottom:-34px;
    grid-template-columns:110px 1fr;
  }

  .south-13th-page .south-direct-strip-wrap,
  .south-13th-page .south-process-strip-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .south-13th-page .south-direct-right{
    text-align:left;
  }

  .south-13th-page .south-map-stats{
    grid-template-columns:1fr 1fr 1fr;
  }

  .south-13th-page .south-related-grid{
    grid-template-columns:1fr;
  }

  .south-13th-page .south-faq{
    padding:92px 0 72px;
  }
}

@media (max-width:720px){
  .south-13th-page .south-hero{
    padding:34px 0 54px;
  }

  .south-13th-page .south-hero-copy h1{
    font-size:36px;
  }

  .south-13th-page .south-hero-lead{
    font-size:17px;
  }

  .south-13th-page .south-hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .south-13th-page .south-hero-actions .btn,
  .south-13th-page .south-process-btn,
  .south-13th-page .south-map-actions .btn{
    width:100%;
  }

  .south-13th-page .south-call-btn{
    min-width:0;
  }

  .south-13th-page .south-hero-points{
    grid-template-columns:1fr;
  }

  .south-13th-page .south-hero-photo{
    min-height:300px;
  }

  .south-13th-page .south-hero-photo img{
    min-height:300px;
  }

  .south-13th-page .south-hero-brand-card{
    position:relative;
    right:auto;
    left:auto;
    bottom:auto;
    margin:-28px auto 0;
    width:min(92%, 440px);
    grid-template-columns:1fr;
    text-align:center;
  }

  .south-13th-page .south-hero-brand-logo{
    max-width:160px;
    margin:0 auto;
  }

  .south-13th-page .south-direct-strip{
    padding:18px 0 38px;
  }

  .south-13th-page .south-direct-strip-wrap,
  .south-13th-page .south-process-strip-wrap{
    padding:22px 20px;
  }

  .south-13th-page .south-direct-copy h2,
  .south-13th-page .south-process-copy h2{
    font-size:29px;
  }

  .south-13th-page .south-big-phone{
    font-size:34px;
  }

  .south-13th-page .south-overview-copy h2,
  .south-13th-page .south-services-copy h2,
  .south-13th-page .south-related-heading h2,
  .south-13th-page .south-map-copy h2{
    font-size:34px;
  }

  .south-13th-page .south-overview-copy p,
  .south-13th-page .south-map-copy p{
    font-size:17px;
  }

  .south-13th-page .south-service-list{
    grid-template-columns:1fr;
  }

  .south-13th-page .south-related-locations{
    padding:54px 0 60px;
  }

  .south-13th-page .south-map-stats{
    grid-template-columns:1fr;
  }

  .south-13th-page .south-map-phone{
    font-size:28px;
  }

  .south-13th-page .south-map-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .south-13th-page .south-faq{
    padding:78px 0 60px;
  }
}

@media (max-width:460px){
  .south-13th-page .south-hero-copy h1,
  .south-13th-page .south-overview-copy h2,
  .south-13th-page .south-services-copy h2,
  .south-13th-page .south-related-heading h2,
  .south-13th-page .south-map-copy h2{
    font-size:30px;
  }

  .south-13th-page .south-direct-copy h2,
  .south-13th-page .south-process-copy h2{
    font-size:25px;
  }

  .south-13th-page .south-related-card h3,
  .south-13th-page .south-map-card h3{
    font-size:22px;
  }

  .south-13th-page .south-big-phone{
    font-size:30px;
  }
}
.south-13th-page .south-map-embed{
  margin-top:22px;
  border:1px solid rgba(18,39,79,.08);
  overflow:hidden;
  background:#fff;
  box-shadow:0 12px 24px rgba(18,30,57,.08);
}

.south-13th-page .south-map-embed iframe{
  width:100%;
  height:340px;
  display:block;
  border:0;
}

@media (max-width:720px){
  .south-13th-page .south-map-embed iframe{
    height:280px;
  }
}
/* =========================
   SOUTH OMAHA 24TH ST PAGE
   ========================= */

.south-24-page{
  background:#fff;
}

/* hero */

.south-24-page .south-hero{
  position:relative;
  background:#f7f7fb;
  padding:56px 0 124px;
  overflow:hidden;
}

.south-24-page .south-hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:84px;
  background:#fff;
  clip-path:path("M0,26 C170,70 380,88 720,58 C1030,30 1252,10 1440,30 L1440,120 L0,120 Z");
}

.south-24-page .south-hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:42px;
  align-items:center;
}

.south-24-page .south-hero-copy{
  max-width:670px;
}

.south-24-page .south-hero-kicker{
  display:inline-block;
  margin-bottom:16px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.south-24-page .south-hero-copy h1{
  font-size:58px;
  line-height:.98;
  letter-spacing:-.055em;
  color:var(--brand-blue-deep);
  margin-bottom:20px;
  font-weight:800;
}

.south-24-page .south-hero-lead{
  font-size:20px;
  line-height:1.72;
  color:#576173;
  margin-bottom:26px;
}

.south-24-page .south-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.south-24-page .south-call-btn{
  min-width:260px;
}

.south-24-page .south-hero-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.south-24-page .south-hero-point{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 14px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  color:var(--brand-blue-deep);
  font-size:14px;
  font-weight:700;
  box-shadow:0 10px 22px rgba(18,30,57,.06);
  text-align:center;
}

.south-24-page .south-hero-media{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:stretch;
}

.south-24-page .south-hero-photo{
  width:100%;
  min-height:620px;
  overflow:hidden;
  box-shadow:0 24px 46px rgba(18,30,57,.14);
}

.south-24-page .south-hero-photo img{
  width:100%;
  height:100%;
  min-height:620px;
  object-fit:cover;
  display:block;
}

.south-24-page .south-hero-brand-card{
  position:absolute;
  right:24px;
  bottom:-40px;
  width:min(80%, 440px);
  display:grid;
  grid-template-columns:130px 1fr;
  gap:18px;
  align-items:center;
  padding:18px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 20px 42px rgba(18,30,57,.16);
  z-index:4;
}

.south-24-page .south-hero-brand-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:#f3b323;
}

.south-24-page .south-hero-brand-logo{
  display:flex;
  align-items:center;
  justify-content:center;
}

.south-24-page .south-hero-brand-logo img{
  width:100%;
  max-width:130px;
  height:auto;
  display:block;
}

.south-24-page .south-hero-brand-copy span{
  display:block;
  margin-bottom:8px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.south-24-page .south-hero-brand-copy strong{
  display:block;
  font-size:24px;
  line-height:1.18;
  color:var(--brand-blue-deep);
  font-weight:700;
  margin-bottom:8px;
}

.south-24-page .south-hero-brand-copy p{
  font-size:15px;
  line-height:1.6;
  color:#5d6678;
}

/* contact strip */

.south-24-page .south-contact-strip{
  position:relative;
  background:#fff;
  padding:18px 0 70px;
}

.south-24-page .south-contact-strip-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  padding:28px 30px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 16px 34px rgba(18,30,57,.08);
  position:relative;
  z-index:2;
}

.south-24-page .south-contact-strip-copy{
  max-width:760px;
}

.south-24-page .south-contact-strip-copy h2{
  font-size:36px;
  line-height:1.1;
  letter-spacing:-.03em;
  color:var(--brand-blue-deep);
  margin-bottom:10px;
  font-weight:700;
}

.south-24-page .south-contact-strip-copy p{
  font-size:17px;
  line-height:1.7;
  color:#5a6476;
}

.south-24-page .south-contact-strip-right{
  text-align:right;
  flex:0 0 auto;
}

.south-24-page .south-big-phone{
  display:block;
  font-size:42px;
  line-height:1;
  font-weight:800;
  color:var(--brand-blue-deep);
  margin-bottom:10px;
  letter-spacing:-.03em;
}

.south-24-page .south-contact-strip-right p{
  font-size:17px;
  line-height:1.6;
  color:#5a6476;
}

/* service overview */

.south-24-page .south-service-overview{
  position:relative;
  background:#fff;
  padding:18px 0 110px;
  overflow:hidden;
}

.south-24-page .south-service-overview::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:78px;
  background:#173ea6;
  clip-path:path("M0,28 C180,72 392,88 720,60 C1022,34 1240,14 1440,34 L1440,120 L0,120 Z");
}

.south-24-page .south-service-overview-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:34px;
  align-items:start;
}

.south-24-page .south-service-overview-copy h2{
  font-size:52px;
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.south-24-page .south-service-overview-copy p{
  font-size:18px;
  line-height:1.8;
  color:#586274;
  margin-bottom:16px;
}

.south-24-page .south-service-overview-panel{
  background:#f7f7fb;
  border:1px solid rgba(18,39,79,.08);
  padding:28px 28px 30px;
  box-shadow:0 14px 30px rgba(18,30,57,.08);
}

.south-24-page .south-service-overview-panel h3{
  font-size:28px;
  line-height:1.2;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.south-24-page .south-check-list{
  list-style:none;
  display:grid;
  gap:12px;
}

.south-24-page .south-check-list li{
  position:relative;
  padding-left:22px;
  font-size:16px;
  line-height:1.65;
  color:#5d6678;
}

.south-24-page .south-check-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:8px;
  height:8px;
  border-radius:999px;
  background:#f3b323;
}

/* services band */

.south-24-page .south-services-band{
  position:relative;
  background:#173ea6;
  padding:78px 0 96px;
  overflow:hidden;
}

.south-24-page .south-services-band::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:82px;
  background:#fff;
  clip-path:path("M0,24 C172,66 394,84 720,56 C1026,28 1244,12 1440,30 L1440,120 L0,120 Z");
}

.south-24-page .south-services-heading{
  position:relative;
  z-index:2;
  max-width:860px;
  margin:0 auto 34px;
  text-align:center;
}

.south-24-page .south-kicker-light{
  color:#dce8ff;
}

.south-24-page .south-services-heading h2{
  font-size:54px;
  line-height:1.03;
  letter-spacing:-.045em;
  color:#fff;
  margin-bottom:10px;
  font-weight:700;
}

.south-24-page .south-services-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.south-24-page .south-service-card{
  background:#fff;
  padding:30px 24px 28px;
  box-shadow:0 18px 38px rgba(0,0,0,.16);
  position:relative;
  min-height:270px;
  transition:transform .28s ease, box-shadow .28s ease;
}

.south-24-page .south-service-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:#f3b323;
}

.south-24-page .south-service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 52px rgba(0,0,0,.22);
}

.south-24-page .south-service-icon{
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
}

.south-24-page .south-service-icon .icon{
  width:40px;
  height:40px;
  stroke-width:1.95;
}

.south-24-page .south-service-card h3{
  font-size:24px;
  line-height:1.2;
  color:var(--brand-blue-deep);
  margin-bottom:12px;
  font-weight:700;
}

.south-24-page .south-service-card p{
  font-size:15px;
  line-height:1.72;
  color:#596376;
}

/* location links */

.south-24-page .south-location-links{
  position:relative;
  background:#fff;
  padding:72px 0 90px;
  overflow:hidden;
}

.south-24-page .south-location-links::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:78px;
  background:#f7f7fb;
  clip-path:path("M0,28 C180,72 392,88 720,60 C1022,34 1240,14 1440,34 L1440,120 L0,120 Z");
}

.south-24-page .south-location-links-wrap{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:32px;
  align-items:start;
}

.south-24-page .south-location-links-copy h2{
  font-size:48px;
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--brand-blue-deep);
  margin-bottom:16px;
  font-weight:700;
}

.south-24-page .south-location-links-copy p{
  font-size:18px;
  line-height:1.8;
  color:#586274;
}

.south-24-page .south-location-link-cards{
  display:grid;
  gap:16px;
}

.south-24-page .south-location-link-card{
  display:block;
  background:#f7f7fb;
  border:1px solid rgba(18,39,79,.08);
  padding:24px 22px;
  box-shadow:0 12px 26px rgba(18,30,57,.08);
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.south-24-page .south-location-link-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 36px rgba(18,30,57,.12);
  border-color:rgba(36,71,178,.18);
}

.south-24-page .south-location-link-card strong{
  display:block;
  font-size:22px;
  line-height:1.2;
  color:var(--brand-blue-deep);
  margin-bottom:8px;
  font-weight:700;
}

.south-24-page .south-location-link-card span{
  display:block;
  font-size:16px;
  line-height:1.65;
  color:#5b6577;
}

/* map */

.south-24-page .south-map-section{
  position:relative;
  background:#f7f7fb;
  padding:78px 0 84px;
}

.south-24-page .south-map-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:36px;
  align-items:center;
}

.south-24-page .south-map-copy h2{
  font-size:52px;
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--brand-blue-deep);
  margin-bottom:16px;
  font-weight:700;
}

.south-24-page .south-map-copy p{
  font-size:18px;
  line-height:1.8;
  color:#5b6577;
  margin-bottom:14px;
}

.south-24-page .south-map-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:22px;
}

.south-24-page .south-map-stat{
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  padding:18px 16px;
}

.south-24-page .south-map-stat strong{
  display:block;
  font-size:34px;
  line-height:1;
  color:var(--brand-blue-deep);
  margin-bottom:6px;
  font-weight:800;
}

.south-24-page .south-map-stat span{
  display:block;
  font-size:14px;
  line-height:1.45;
  color:#5b6577;
}

.south-24-page .south-map-panel{
  display:flex;
}

.south-24-page .south-map-card{
  width:100%;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 14px 28px rgba(18,30,57,.08);
  padding:30px 28px;
}

.south-24-page .south-map-card h3{
  font-size:30px;
  line-height:1.15;
  color:var(--brand-blue-deep);
  margin-bottom:12px;
  font-weight:700;
}

.south-24-page .south-map-card p{
  font-size:18px;
  line-height:1.75;
  color:#5d6678;
  margin-bottom:16px;
}

.south-24-page .south-map-phone{
  display:inline-flex;
  align-items:center;
  font-size:32px;
  line-height:1;
  font-weight:800;
  color:var(--brand-blue-deep);
  margin-bottom:22px;
  letter-spacing:-.03em;
}

.south-24-page .south-map-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.south-24-page .south-map-actions .btn{
  min-width:190px;
}

.south-24-page .south-map-embed{
  margin-top:22px;
  border:1px solid rgba(18,39,79,.08);
  overflow:hidden;
  background:#fff;
  box-shadow:0 12px 24px rgba(18,30,57,.08);
}

.south-24-page .south-map-embed iframe{
  width:100%;
  height:340px;
  display:block;
  border:0;
}

/* faq */

.south-24-page .south-faq{
  position:relative;
  background:#f7f7fb;
  padding:120px 0 84px;
  overflow:hidden;
}

.south-24-page .south-faq::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-1px;
  height:78px;
  background:#fff;
  clip-path:path("M0,0 L1440,0 L1440,24 C1234,48 1012,58 720,36 C396,12 180,10 0,24 Z");
}

.south-24-page .south-faq .faq-layout{
  position:relative;
  z-index:2;
}

.south-24-page .south-faq-card .faq-review-btn{
  width:100%;
}

/* footer cleanup to match 13th page */

.south-24-page .site-footer{
  background:#173ea6;
}

.south-24-page .footer-texture{
  inset:60px 0 0 0;
  background:#173ea6;
}

.south-24-page .footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  background:transparent;
}

/* responsive */

@media (max-width:1180px){
  .south-24-page .south-hero-copy h1,
  .south-24-page .south-service-overview-copy h2,
  .south-24-page .south-services-heading h2,
  .south-24-page .south-location-links-copy h2,
  .south-24-page .south-map-copy h2{
    font-size:46px;
  }
}

@media (max-width:980px){
  .south-24-page .south-hero-grid,
  .south-24-page .south-service-overview-grid,
  .south-24-page .south-location-links-wrap,
  .south-24-page .south-map-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .south-24-page .south-services-grid{
    grid-template-columns:1fr 1fr;
  }

  .south-24-page .south-hero{
    padding:42px 0 90px;
  }

  .south-24-page .south-hero::after,
  .south-24-page .south-service-overview::after,
  .south-24-page .south-location-links::after,
  .south-24-page .south-faq::before{
    height:56px;
  }

  .south-24-page .south-hero-media{
    min-height:auto;
  }

  .south-24-page .south-hero-photo{
    min-height:420px;
  }

  .south-24-page .south-hero-photo img{
    min-height:420px;
  }

  .south-24-page .south-hero-brand-card{
    right:18px;
    left:18px;
    width:auto;
    bottom:-34px;
    grid-template-columns:110px 1fr;
  }

  .south-24-page .south-contact-strip-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .south-24-page .south-contact-strip-right{
    text-align:left;
  }

  .south-24-page .south-map-stats{
    grid-template-columns:1fr 1fr 1fr;
  }

  .south-24-page .south-faq{
    padding:92px 0 72px;
  }
}

@media (max-width:720px){
  .south-24-page .south-hero{
    padding:34px 0 54px;
  }

  .south-24-page .south-hero-copy h1{
    font-size:36px;
  }

  .south-24-page .south-hero-lead{
    font-size:17px;
  }

  .south-24-page .south-hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .south-24-page .south-hero-actions .btn,
  .south-24-page .south-map-actions .btn{
    width:100%;
  }

  .south-24-page .south-call-btn{
    min-width:0;
  }

  .south-24-page .south-hero-points{
    grid-template-columns:1fr;
  }

  .south-24-page .south-hero-photo{
    min-height:300px;
  }

  .south-24-page .south-hero-photo img{
    min-height:300px;
  }

  .south-24-page .south-hero-brand-card{
    position:relative;
    right:auto;
    left:auto;
    bottom:auto;
    margin:-28px auto 0;
    width:min(92%, 440px);
    grid-template-columns:1fr;
    text-align:center;
  }

  .south-24-page .south-hero-brand-logo{
    max-width:160px;
    margin:0 auto;
  }

  .south-24-page .south-contact-strip{
    padding:18px 0 38px;
  }

  .south-24-page .south-contact-strip-wrap{
    padding:22px 20px;
  }

  .south-24-page .south-contact-strip-copy h2{
    font-size:29px;
  }

  .south-24-page .south-big-phone{
    font-size:34px;
  }

  .south-24-page .south-service-overview-copy h2,
  .south-24-page .south-services-heading h2,
  .south-24-page .south-location-links-copy h2,
  .south-24-page .south-map-copy h2{
    font-size:34px;
  }

  .south-24-page .south-service-overview-copy p,
  .south-24-page .south-location-links-copy p,
  .south-24-page .south-map-copy p{
    font-size:17px;
  }

  .south-24-page .south-services-grid{
    grid-template-columns:1fr;
  }

  .south-24-page .south-map-stats{
    grid-template-columns:1fr;
  }

  .south-24-page .south-map-phone{
    font-size:28px;
  }

  .south-24-page .south-map-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .south-24-page .south-map-embed iframe{
    height:280px;
  }

  .south-24-page .south-faq{
    padding:78px 0 60px;
  }
}

@media (max-width:460px){
  .south-24-page .south-hero-copy h1,
  .south-24-page .south-service-overview-copy h2,
  .south-24-page .south-services-heading h2,
  .south-24-page .south-location-links-copy h2,
  .south-24-page .south-map-copy h2{
    font-size:30px;
  }

  .south-24-page .south-contact-strip-copy h2{
    font-size:25px;
  }

  .south-24-page .south-service-card h3,
  .south-24-page .south-map-card h3{
    font-size:22px;
  }

  .south-24-page .south-big-phone{
    font-size:30px;
  }
}
/* =========================
   GALLERY PAGE
   ========================= */

.gallery-page{
  background:#fff;
}

/* =========================
   HERO
   ========================= */

.gallery-hero{
  position:relative;
  background:#f7f7fb;
  padding:56px 0 82px;
  overflow:hidden;
}

.gallery-hero-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:34px;
  align-items:center;
}

.gallery-hero-copy{
  max-width:620px;
}

.gallery-hero-kicker{
  display:inline-block;
  margin-bottom:16px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.gallery-hero-copy h1{
  font-size:58px;
  line-height:.98;
  letter-spacing:-.055em;
  color:var(--brand-blue-deep);
  margin-bottom:20px;
  font-weight:800;
}

.gallery-hero-lead{
  font-size:19px;
  line-height:1.8;
  color:#576173;
  margin-bottom:28px;
}

.gallery-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.gallery-hero-carousel{
  position:relative;
  min-height:520px;
  background:#dfe5f0;
  box-shadow:0 24px 46px rgba(18,30,57,.14);
  overflow:hidden;
}

.gallery-carousel-track{
  position:absolute;
  inset:0;
}

.gallery-carousel-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .9s ease, transform 6s ease;
  transform:scale(1.03);
}

.gallery-carousel-slide.is-active{
  opacity:1;
  transform:scale(1);
}

.gallery-carousel-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.gallery-carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:48px;
  height:48px;
  border:none;
  background:rgba(255,255,255,.92);
  color:var(--brand-blue-deep);
  display:grid;
  place-items:center;
  box-shadow:0 12px 24px rgba(18,30,57,.14);
  cursor:pointer;
}

.gallery-carousel-prev{
  left:18px;
}

.gallery-carousel-next{
  right:18px;
}

.gallery-carousel-btn .icon{
  width:22px;
  height:22px;
}

.gallery-carousel-dots{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  z-index:4;
  display:flex;
  gap:10px;
}

.gallery-carousel-dot{
  width:11px;
  height:11px;
  border-radius:999px;
  border:none;
  background:rgba(255,255,255,.56);
  cursor:pointer;
}

.gallery-carousel-dot.is-active{
  background:#fff;
}

/* =========================
   GALLERY GRID
   ========================= */

.gallery-grid-section{
  position:relative;
  background:#fff;
  padding:118px 0 86px;
  overflow:hidden;
}

.gallery-grid-section::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-34px;
  height:92px;
  background:#f7f7fb;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
  opacity:.98;
  z-index:1;
}

.gallery-grid-section .container{
  position:relative;
  z-index:3;
}

.gallery-grid-heading{
  max-width:900px;
  margin:0 auto 34px;
  text-align:center;
}

.gallery-grid-heading h2{
  font-size:52px;
  line-height:1.03;
  letter-spacing:-.045em;
  color:var(--brand-blue-deep);
  margin-bottom:12px;
  font-weight:700;
}

.gallery-grid-heading p{
  font-size:18px;
  line-height:1.8;
  color:#5b6577;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:240px;
  gap:18px;
}

.gallery-card{
  position:relative;
  overflow:hidden;
  border:none;
  cursor:pointer;
  background:#e8edf6;
  box-shadow:0 14px 28px rgba(18,30,57,.08);
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}

.gallery-card:hover img{
  transform:scale(1.04);
}

.gallery-card-tall{
  grid-row:span 2;
}

.gallery-card-wide{
  grid-column:span 2;
}

/* =========================
   CTA STRIP
   ========================= */

.gallery-cta-strip{
  position:relative;
  background:#f0eeea;
  padding:48px 0 56px;
  overflow:hidden;
}

.gallery-cta-strip::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-34px;
  height:92px;
  background:#fff;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
  opacity:.98;
  z-index:1;
}

.gallery-cta-strip-wrap{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:30px 34px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 18px 38px rgba(18,30,57,.10);
}

.gallery-cta-copy{
  max-width:760px;
}

.gallery-cta-kicker{
  display:inline-block;
  margin-bottom:12px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.gallery-cta-copy h2{
  font-size:38px;
  line-height:1.08;
  letter-spacing:-.03em;
  color:var(--brand-blue-deep);
  margin-bottom:10px;
  font-weight:700;
}

.gallery-cta-copy p{
  font-size:17px;
  line-height:1.7;
  color:#5a6476;
}

.gallery-cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================
   LIGHTBOX
   ========================= */

.gallery-lightbox{
  position:fixed;
  inset:0;
  background:rgba(12,20,40,.82);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:200;
  padding:28px;
}

.gallery-lightbox.is-open{
  opacity:1;
  pointer-events:auto;
}

.gallery-lightbox-image{
  max-width:min(1100px, 100%);
  max-height:88vh;
  box-shadow:0 24px 46px rgba(0,0,0,.28);
}

.gallery-lightbox-close{
  position:absolute;
  top:18px;
  right:18px;
  width:48px;
  height:48px;
  border:none;
  background:#fff;
  color:var(--brand-blue-deep);
  display:grid;
  place-items:center;
  cursor:pointer;
}

.gallery-lightbox-close .icon{
  width:22px;
  height:22px;
}

/* =========================
   FOOTER MATCH
   ========================= */

.gallery-page .site-footer{
  background:#173ea6;
}

.gallery-page .footer-texture{
  inset:60px 0 0 0;
  background:#173ea6;
}

.gallery-page .footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  background:transparent;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width:1180px){
  .gallery-hero-copy h1,
  .gallery-grid-heading h2{
    font-size:46px;
  }
}

@media (max-width:980px){
  .gallery-hero-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .gallery-hero-carousel{
    min-height:420px;
  }

  .gallery-cta-strip-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .gallery-grid-section{
    padding:94px 0 76px;
  }

  .gallery-grid-section::before,
  .gallery-cta-strip::before{
    top:-24px;
    height:68px;
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:220px;
  }

  .gallery-card-wide{
    grid-column:span 1;
  }
}

@media (max-width:720px){
  .gallery-hero{
    padding:34px 0 46px;
  }

  .gallery-hero-copy h1,
  .gallery-grid-heading h2{
    font-size:34px;
  }

  .gallery-hero-lead,
  .gallery-grid-heading p{
    font-size:17px;
  }

  .gallery-hero-actions,
  .gallery-cta-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .gallery-hero-actions .btn,
  .gallery-cta-actions .btn{
    width:100%;
  }

  .gallery-hero-carousel{
    min-height:300px;
  }

  .gallery-carousel-btn{
    width:42px;
    height:42px;
  }

  .gallery-grid-section{
    padding:82px 0 64px;
  }

  .gallery-grid-section::before,
  .gallery-cta-strip::before{
    top:-18px;
    height:54px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
    grid-auto-rows:220px;
  }

  .gallery-card-tall,
  .gallery-card-wide{
    grid-row:auto;
    grid-column:auto;
  }

  .gallery-cta-strip{
    padding:34px 0;
  }

  .gallery-cta-strip-wrap{
    padding:22px 20px;
  }

  .gallery-cta-copy h2{
    font-size:30px;
  }
}

@media (max-width:460px){
  .gallery-hero-copy h1,
  .gallery-grid-heading h2{
    font-size:30px;
  }

  .gallery-cta-copy h2{
    font-size:27px;
  }

  .gallery-grid-section::before,
  .gallery-cta-strip::before{
    top:-14px;
    height:46px;
  }
}
/* =========================
   CONTACT PAGE
   ========================= */

.contact-page{
  background:#fff;
}

.contact-hero{
  position:relative;
  background:#f7f7fb;
  padding:56px 0 82px;
  overflow:hidden;
}

.contact-hero-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px;
  align-items:start;
}

.contact-hero-copy{
  max-width:620px;
  padding-top:12px;
}

.contact-hero-kicker{
  display:inline-block;
  margin-bottom:16px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.contact-hero-copy h1{
  font-size:58px;
  line-height:.98;
  letter-spacing:-.055em;
  color:var(--brand-blue-deep);
  margin-bottom:20px;
  font-weight:800;
}

.contact-hero-lead{
  font-size:19px;
  line-height:1.8;
  color:#576173;
  margin-bottom:26px;
}

.contact-hero-points{
  display:grid;
  gap:12px;
}

.contact-hero-point{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:56px;
  padding:0 16px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  color:var(--brand-blue-deep);
  font-size:15px;
  font-weight:700;
  box-shadow:0 10px 22px rgba(18,30,57,.06);
}

.contact-hero-card{
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 18px 38px rgba(18,30,57,.10);
  padding:30px 28px;
}

.contact-main-form{
  display:grid;
  gap:16px;
}

.contact-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.contact-form-field{
  display:grid;
  gap:8px;
}

.contact-form-field label{
  font-size:14px;
  font-weight:600;
  color:#31405d;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea{
  width:100%;
  border:1px solid #d8deea;
  background:#fff;
  color:#22324f;
  border-radius:4px;
  padding:14px 14px;
  font:inherit;
  outline:none;
  transition:border-color .22s ease, box-shadow .22s ease;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus{
  border-color:rgba(36,71,178,.45);
  box-shadow:0 0 0 4px rgba(36,71,178,.08);
}

.contact-form-field textarea{
  resize:vertical;
  min-height:160px;
}

/* direct strip */

.contact-direct-strip{
  position:relative;
  background:#f7f7fb;
  padding:0 0 54px;
  overflow:hidden;
}

.contact-direct-strip::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-34px;
  height:92px;
  background:#f7f7fb;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
  opacity:1;
  z-index:1;
}

.contact-direct-strip-wrap{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  padding:28px 30px;
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 16px 34px rgba(18,30,57,.08);
}

.contact-direct-copy{
  max-width:760px;
}

.contact-direct-copy h2{
  font-size:38px;
  line-height:1.08;
  letter-spacing:-.03em;
  color:var(--brand-blue-deep);
  margin-bottom:10px;
  font-weight:700;
}

.contact-direct-copy p{
  font-size:17px;
  line-height:1.7;
  color:#5a6476;
}

.contact-strip-btn{
  min-width:220px;
}

/* location cards */

.contact-location-cards-section{
  position:relative;
  background:#173ea6;
  padding:66px 0 90px;
  overflow:hidden;
}

.contact-location-cards-section::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-34px;
  height:92px;
  background:#f7f7fb;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
  opacity:1;
  z-index:1;
}

.contact-location-cards-section::after{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  bottom:-1px;
  height:98px;
  background:#f7f7fb;
  border-top-left-radius:52% 100%;
  border-top-right-radius:48% 100%;
  z-index:1;
}

.contact-location-cards-grid{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.contact-location-card{
  background:#fff;
  box-shadow:0 18px 38px rgba(0,0,0,.16);
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.contact-location-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:#f3b323;
}

.contact-location-card-image{
  height:220px;
  overflow:hidden;
  background:#dfe5f0;
}

.contact-location-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.contact-location-card-body{
  padding:22px 22px 20px;
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
}

.contact-location-label{
  display:inline-block;
  margin-bottom:10px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.contact-location-card-body h3{
  font-size:28px;
  line-height:1.14;
  letter-spacing:-.02em;
  color:var(--brand-blue-deep);
  margin-bottom:12px;
  font-weight:700;
}

.contact-location-card-body p{
  font-size:17px;
  line-height:1.65;
  color:#5d6678;
  margin-bottom:14px;
}

.contact-location-phone{
  display:inline-flex;
  align-items:center;
  margin-bottom:18px;
  font-size:24px;
  line-height:1.1;
  color:var(--brand-blue-deep);
  font-weight:800;
  letter-spacing:-.02em;
  transition:opacity .24s ease, transform .24s ease;
}

.contact-location-phone:hover{
  opacity:.84;
  transform:translateY(-1px);
}

.contact-location-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:auto;
}

/* routing */

.contact-service-routing{
  position:relative;
  background:#f7f7fb;
  padding:72px 0 82px;
  overflow:hidden;
}

.contact-service-routing::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-34px;
  height:92px;
  background:#f7f7fb;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
  opacity:1;
  z-index:1;
}

.contact-service-routing-grid{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:1fr .96fr;
  gap:38px;
  align-items:start;
}

.contact-service-routing-copy h2{
  font-size:52px;
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--brand-blue-deep);
  margin-bottom:18px;
  font-weight:700;
}

.contact-service-routing-copy p{
  font-size:18px;
  line-height:1.8;
  color:#586274;
  margin-bottom:16px;
}

.contact-routing-panel{
  background:#f7f7fb;
  border:1px solid rgba(18,39,79,.08);
  padding:24px 24px 26px;
  box-shadow:0 14px 30px rgba(18,30,57,.08);
  display:grid;
  gap:16px;
}

.contact-routing-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding-bottom:16px;
  border-bottom:1px solid rgba(18,39,79,.08);
}

.contact-routing-item:last-child{
  padding-bottom:0;
  border-bottom:none;
}

.contact-routing-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  background:#fff;
  border:1px solid rgba(18,39,79,.10);
  color:var(--brand-blue-deep);
  flex:0 0 auto;
}

.contact-routing-item h3{
  font-size:20px;
  line-height:1.25;
  color:var(--brand-blue-deep);
  margin-bottom:6px;
  font-weight:700;
}

.contact-routing-item p{
  font-size:15px;
  line-height:1.7;
  color:#5d6678;
}

/* map */

.contact-map-section{
  position:relative;
  background:#f7f7fb;
  padding:18px 0 0;
  overflow:hidden;
}

.contact-map-section::before{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:-34px;
  height:92px;
  background:#f7f7fb;
  border-bottom-left-radius:52% 100%;
  border-bottom-right-radius:48% 100%;
  opacity:1;
  z-index:1;
}

.contact-map-top{
  position:relative;
  z-index:3;
  padding-bottom:16px;
}

.contact-map-copy{
  max-width:620px;
}

.contact-map-copy h2{
  font-size:52px;
  line-height:1.03;
  letter-spacing:-.04em;
  color:var(--brand-blue-deep);
  margin-bottom:14px;
  font-weight:700;
}

.contact-map-copy p{
  font-size:21px;
  line-height:1.45;
  color:#586273;
}

.contact-map-visual{
  position:relative;
  width:100%;
  height:470px;
  overflow:hidden;
  background:#eef1f7;
  z-index:3;
}

.contact-map-embed-shell{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.contact-map-embed-shell iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
  filter:saturate(.94) contrast(1.02) brightness(1.01);
}

.contact-map-fade{
  position:absolute;
  pointer-events:none;
  z-index:2;
}

.contact-map-fade-right{
  top:0;
  right:0;
  bottom:0;
  width:12%;
  background:linear-gradient(
    270deg,
    rgba(255,255,255,.42) 0%,
    rgba(255,255,255,.14) 50%,
    rgba(255,255,255,0) 100%
  );
}

.contact-map-fade-bottom{
  left:0;
  right:0;
  bottom:0;
  height:44px;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.18) 70%,
    rgba(255,255,255,.34) 100%
  );
}

/* footer link cleanup */

.footer-bottom a{
  color:#ffffff;
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:3px;
}

.footer-bottom a:hover{
  opacity:.86;
}

/* footer match */

.contact-page .site-footer{
  background:#173ea6;
}

.contact-page .footer-texture{
  inset:60px 0 0 0;
  background:#173ea6;
}

.contact-page .footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  background:transparent;
}

/* responsive */

@media (max-width:1180px){
  .contact-hero-copy h1,
  .contact-service-routing-copy h2,
  .contact-map-copy h2{
    font-size:46px;
  }

  .contact-location-card-body h3{
    font-size:24px;
  }
}

@media (max-width:980px){
  .contact-hero-grid,
  .contact-service-routing-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .contact-direct-strip-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .contact-location-cards-grid{
    grid-template-columns:1fr;
  }

  .contact-map-visual{
    height:380px;
  }

  .contact-map-fade-right{
    width:10%;
  }

  .contact-direct-strip::before,
  .contact-location-cards-section::before,
  .contact-service-routing::before,
  .contact-map-section::before{
    top:-24px;
    height:68px;
  }

  .contact-location-cards-section::after{
    height:70px;
  }
}

@media (max-width:720px){
  .contact-hero{
    padding:34px 0 46px;
  }

  .contact-hero-copy h1,
  .contact-service-routing-copy h2,
  .contact-map-copy h2{
    font-size:34px;
  }

  .contact-hero-lead,
  .contact-service-routing-copy p,
  .contact-map-copy p{
    font-size:17px;
  }

  .contact-form-row{
    grid-template-columns:1fr;
  }

  .contact-direct-strip{
    padding:18px 0 38px;
  }

  .contact-direct-strip-wrap{
    padding:22px 20px;
  }

  .contact-direct-copy h2{
    font-size:30px;
  }

  .contact-strip-btn{
    min-width:0;
  }

  .contact-location-card-image{
    height:190px;
  }

  .contact-location-actions{
    grid-template-columns:1fr;
  }

  .contact-map-visual{
    height:300px;
  }

  .contact-map-fade-right{
    width:8%;
  }

  .contact-map-fade-bottom{
    height:30px;
  }

  .contact-direct-strip::before,
  .contact-location-cards-section::before,
  .contact-service-routing::before,
  .contact-map-section::before{
    top:-18px;
    height:54px;
  }

  .contact-location-cards-section::after{
    height:56px;
  }
}

@media (max-width:460px){
  .contact-hero-copy h1,
  .contact-service-routing-copy h2,
  .contact-map-copy h2{
    font-size:30px;
  }

  .contact-direct-copy h2{
    font-size:27px;
  }

  .contact-location-card-body h3{
    font-size:22px;
  }

  .contact-location-phone{
    font-size:22px;
  }

  .contact-direct-strip::before,
  .contact-location-cards-section::before,
  .contact-service-routing::before,
  .contact-map-section::before{
    top:-14px;
    height:46px;
  }

  .contact-location-cards-section::after{
    height:46px;
  }
}
.form-status-modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  z-index:250;
  padding:20px;
  transition:opacity .22s ease;
}

.form-status-modal.is-open{
  opacity:1;
  pointer-events:auto;
}

.form-status-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(10,20,40,.58);
}

.form-status-modal-card{
  position:relative;
  z-index:2;
  width:min(100%, 520px);
  background:#fff;
  border:1px solid rgba(18,39,79,.08);
  box-shadow:0 24px 56px rgba(18,30,57,.22);
  padding:28px 24px 24px;
}

.form-status-kicker{
  display:inline-block;
  margin-bottom:10px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
}

.form-status-modal-card h3{
  font-size:34px;
  line-height:1.05;
  color:var(--brand-blue-deep);
  margin-bottom:12px;
  font-weight:700;
}

.form-status-modal-card p{
  font-size:17px;
  line-height:1.7;
  color:#5b6577;
}

.form-status-close{
  position:absolute;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border:none;
  background:#f3f5fa;
  color:var(--brand-blue-deep);
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.form-status-modal.is-success .form-status-kicker{
  color:#1f8a46;
}

.form-status-modal.is-error .form-status-kicker{
  color:var(--red);
}

body.modal-open{
  overflow:hidden;
}

@media (max-width:720px){
  .form-status-modal-card{
    padding:24px 18px 20px;
  }

  .form-status-modal-card h3{
    font-size:28px;
  }

  .form-status-modal-card p{
    font-size:16px;
  }
}