/*
Theme Name: My Dogs Day In by ASM
Theme URI: https://example.com/
Author: ASM
Description: Custom WordPress theme inspired by A Dog's Day Out using the provided design tokens and a front-page layout with stronger E-E-A-T sections.
Version: 3.0
Text Domain: my-dogs-day-in-asm
*/

:root {
  /* Typography tokens */
  --fnt-cnt-s: 1rem;
  --fnt-cnt-lh: 1.8;
  --fnt-itm-lh: 1.8;
  --fnt-pl-s: 1.125rem;
  --fnt-pl-s-mtp: 1;
  --fnt-t-big-s: 3.5rem;
  --fnt-t-big-lh: 1;
  --fnt-t-big-s-mtp: 1;
  --fnt-t-co-s: 2.5rem;
  --fnt-t-co-lh: 1;
  --fnt-t-co-s-mtp: 1;
  --fnt-t-k-s: 1.5rem;
  --fnt-t-k-lh: 1;
  --fnt-t-k-s-mtp: 1;
  --fnt-t-1-s: 2.5rem;
  --fnt-t-1-lh: 1;
  --fnt-t-1-s-mtp: 1;
  --fnt-t-2-s: 1.65rem;
  --fnt-t-2-lh: 1.4;
  --fnt-t-2-s-mtp: 1;
  --fnt-t-3-s: 1.43rem;
  --fnt-t-3-lh: 1.5;
  --fnt-t-3-s-mtp: 1;
  --fnt-t-4-s: 1.375rem;
  --fnt-t-4-lh: 1.5;
  --fnt-t-4-s-mtp: 1;
  --fnt-t-5-s: 1.25rem;
  --fnt-t-5-lh: 1.5;
  --fnt-t-5-s-mtp: 1;
  --fnt-t-6-s: 1.125rem;
  --fnt-t-6-lh: 1.5;
  --fnt-t-6-s-mtp: 1;
  --fnt-nv-pry-s: 1rem;
  --fnt-nv-sec-s: 1rem;
  --fnt-qte-s: 1.75rem;
  --fnt-qte-lh: 1.3;
  --fnt-qte-s-mtp: 1;
  --fnt-atr-s: 1.25rem;
  --fnt-atr-lh: 1;
  --fnt-atr-s-mtp: 1;
  --fnt-phn-s: 1.56rem;
  --fnt-phn-lh: 1;
  --fnt-phn-s-mtp: 1;
  --fnt-t-itm-s: 1.43rem;
  --fnt-t-itm-lh: 1.5;
  --fnt-t-itm-s-mtp: 1;
  --fnt-t-nt-s: 1rem;
  --fnt-t-nt-lh: 1;
  --fnt-t-nt-s-mtp: 1;
  --tag-s: .75rem;
  --btn-v1-s: 1rem;
  --btn-v1-lh: 1.2;
  --btn-v2-s: 1rem;
  --btn-v2-lh: 1.1;
  --fnt-frm-lh: 1.2;

  /* Color tokens */
  --buttons: #E92D4E;
  --secondary: #061A34;
  --accent: #E92D4E;
  --accent-alt: #1572B9;
  --link-alt: #8FCEFF;
  --main-bg-alt: #061A34;
  --link: #1572B9;
  --inner-bg-alt: #0D3468;
  --primary: #E92D4E;
  --main-bg: #FFFFFF;
  --inner-bg: #F4F4F4;
  --text: #061A34;
  --primary-alt: #FFFFFF;
  --black: #000000;
  --secondary-alt: #FFFFFF;
  --text-alt: #FFFFFF;

  /* Theme utility tokens */
  --shadow: 0 10px 28px rgba(6, 26, 52, .12);
  --radius: 24px;
  --site-max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--main-bg);
  color: var(--text);
  font-size: var(--fnt-cnt-s);
  line-height: var(--fnt-cnt-lh);
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.wrap {
  width: min(calc(100% - 32px), var(--site-max));
  margin: 0 auto;
}

.site-header {
  background: var(--main-bg);
  border-bottom: 1px solid rgba(6, 26, 52, .08);
}
.header-inner, .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 3px solid var(--secondary);
}
.brand-title {
  display: block;
  font-weight: 900;
  color: var(--text);
  font-size: var(--fnt-t-6-s);
  line-height: var(--fnt-t-6-lh);
}
.brand-subtitle {
  display: block;
  margin-top: 3px;
  font-size: var(--tag-s);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent-alt);
}
.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-weight: 700;
  color: var(--secondary);
  font-size: var(--fnt-nv-pry-s);
}
.main-nav a:hover { color: var(--link); }

.btn, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 4px;
  transition: .2s ease;
}
.btn {
  background: var(--buttons);
  color: var(--text-alt);
  box-shadow: var(--shadow);
  font-size: var(--btn-v1-s);
  line-height: var(--btn-v1-lh);
  font-weight: 700;
}
.btn:hover { transform: translateY(-1px); }
.btn-outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background: transparent;
  font-size: var(--btn-v2-s);
  line-height: var(--btn-v2-lh);
  font-weight: 700;
}
.btn-outline:hover {
  background: var(--secondary);
  color: var(--secondary-alt);
}

.section { padding: 72px 0; }
.asm-home-v2 .asm-hero {
  position: relative;
  min-height: 560px;
  background-size: cover;
  background-position: center;
}
.asm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,26,52,.18), rgba(6,26,52,.28));
}
.asm-topbar {
  position: relative;
  z-index: 2;
  padding-top: 16px;
}
.asm-topbar-inner {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
}
.asm-logo-badge {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-alt);
  border: 4px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  line-height: 1.05;
  padding: 10px;
  box-shadow: var(--shadow);
}
.asm-mini-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 42px;
  margin-left: -10px;
  background: var(--secondary);
  color: var(--secondary-alt);
  font-size: var(--fnt-nv-sec-s);
  font-weight: 700;
}
.asm-mini-nav a { padding: 10px 14px; }
.asm-mini-nav a:hover { background: rgba(255,255,255,.08); }

.asm-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 60px;
}
.asm-hero-card {
  width: min(520px, 100%);
  background: rgba(255,255,255,.94);
  padding: 28px;
  box-shadow: var(--shadow);
}
.asm-hero-card h1 {
  margin: 0;
  color: var(--text);
  font-size: var(--fnt-t-big-s);
  line-height: var(--fnt-t-big-lh);
}
.asm-hero-card p {
  margin: 14px 0 0;
  line-height: var(--fnt-cnt-lh);
  color: rgba(6,26,52,.88);
  font-size: var(--fnt-pl-s);
}

.asm-welcome-section { padding: 80px 0 48px; background: var(--inner-bg); }
.asm-welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.asm-eyebrow {
  color: var(--accent);
  font-size: var(--tag-s);
  font-weight: 800;
  text-transform: uppercase;
}
.asm-welcome-copy h2,
.asm-center-intro h2,
.asm-trust-strip h2 {
  margin: 8px 0 0;
  color: var(--secondary);
  font-size: var(--fnt-t-1-s);
  line-height: var(--fnt-t-1-lh);
}
.asm-welcome-copy p,
.asm-center-intro p,
.asm-trust-strip p {
  line-height: var(--fnt-cnt-lh);
  color: rgba(6,26,52,.88);
  font-size: var(--fnt-cnt-s);
}
.asm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
.asm-welcome-image-frame {
  border: 6px solid var(--secondary);
  padding: 10px;
  background: var(--main-bg);
  box-shadow: var(--shadow);
}
.asm-welcome-image-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.asm-services-section { padding: 48px 0 30px; background: var(--inner-bg); }
.asm-center-intro {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 28px;
}
.asm-center-intro--tight { margin-bottom: 34px; }
.asm-stamp, .asm-script-title {
  color: var(--secondary);
  font-weight: 900;
}
.asm-stamp {
  display: inline-flex;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--secondary);
  color: var(--text-alt);
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  line-height: 1.1;
  padding: 8px;
}
.asm-script-title {
  font-size: var(--fnt-t-6-s);
}
.asm-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.asm-service-card {
  position: relative;
  min-height: 210px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.asm-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,26,52,.25), rgba(6,26,52,.72));
}
.asm-service-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-alt);
  padding: 24px;
}
.asm-service-inner h3 {
  margin: 0;
  font-size: var(--fnt-t-co-s);
  line-height: var(--fnt-t-co-lh);
}
.asm-service-inner p {
  max-width: 420px;
  line-height: var(--fnt-itm-lh);
  margin: 10px 0 16px;
}

.asm-benefits-band {
  position: relative;
  padding: 70px 0;
  background-image: url('assets/images/benefits-bg.jpg');
  background-size: cover;
  background-position: center;
}
.asm-benefits-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,26,52,.68), rgba(233,45,78,.35));
}
.asm-benefits-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: start;
}
.asm-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.asm-check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  color: var(--text-alt);
  font-size: var(--fnt-t-itm-s);
  line-height: var(--fnt-t-itm-lh);
  font-weight: 700;
}
.asm-check-list li:before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--link-alt);
}
.asm-award-card {
  background: rgba(6,26,52,.95);
  color: var(--text-alt);
  padding: 28px;
  border: 6px solid var(--inner-bg-alt);
  box-shadow: var(--shadow);
  max-width: 320px;
  margin-left: auto;
}
.asm-award-title {
  font-size: var(--fnt-t-co-s);
  line-height: var(--fnt-t-co-lh);
  font-weight: 900;
  color: var(--link-alt);
}
.asm-award-card p {
  color: rgba(255,255,255,.9);
}

.asm-eeat-section,
.asm-locations-section,
.asm-testimonials-section {
  background: var(--inner-bg);
  padding: 70px 0;
}
.asm-eeat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.asm-eeat-card {
  background: var(--main-bg);
  padding: 26px;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--accent-alt);
}
.asm-eeat-card h3 {
  margin: 0;
  color: var(--secondary);
  font-size: var(--fnt-t-2-s);
  line-height: var(--fnt-t-2-lh);
}
.asm-eeat-card p {
  margin: 12px 0 0;
  line-height: var(--fnt-cnt-lh);
}

.asm-location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.asm-location-card {
  background: var(--main-bg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.asm-location-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.asm-location-bar {
  margin-top: -244px;
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  background: rgba(255,255,255,.92);
  color: var(--secondary);
  font-weight: 900;
  padding: 10px;
  font-size: var(--fnt-t-5-s);
  line-height: var(--fnt-t-5-lh);
}
.asm-location-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 200px;
  padding: 18px 0 20px;
}

.asm-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.asm-testimonial-card {
  background: transparent;
  padding: 8px 10px;
}
.asm-testimonial-card p {
  margin: 0;
  line-height: var(--fnt-cnt-lh);
}
.asm-testimonial-card h3 {
  margin: 18px 0 4px;
  color: var(--secondary);
  font-size: var(--fnt-atr-s);
  line-height: var(--fnt-atr-lh);
  font-style: italic;
}
.asm-testimonial-card span {
  color: var(--primary);
  letter-spacing: .15em;
  font-weight: 900;
}
.asm-centered-button {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.asm-trust-strip {
  background: var(--main-bg-alt);
  color: var(--text-alt);
  padding: 66px 0;
}
.asm-trust-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.asm-trust-strip h2 {
  color: var(--text-alt);
  font-size: var(--fnt-t-1-s);
}
.asm-trust-strip p {
  color: rgba(255,255,255,.9);
}
.asm-trust-box {
  background: rgba(255,255,255,.08);
  padding: 24px 28px;
}
.asm-trust-box ul { margin: 0; padding-left: 18px; }
.asm-trust-box li { margin-bottom: 12px; line-height: 1.7; }

.site-footer {
  background: var(--secondary);
  color: var(--text-alt);
}
.site-footer p { margin: 0; color: rgba(255,255,255,.86); }

.default-template {
  padding: 80px 0;
  background: var(--inner-bg);
}
.default-template h1 {
  color: var(--secondary);
}

@media (max-width: 1024px) {
  .asm-welcome-grid,
  .asm-benefits-grid,
  .asm-trust-strip-grid,
  .asm-eeat-grid,
  .asm-testimonial-grid {
    grid-template-columns: 1fr;
  }
  .asm-location-grid,
  .asm-service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner, .footer-inner { flex-direction: column; align-items: flex-start; }
  .main-nav { display: none; }
  .asm-topbar-inner { grid-template-columns: 1fr; gap: 14px; }
  .asm-mini-nav { flex-wrap: wrap; justify-content: center; padding: 8px; }
  .asm-hero-content { padding: 70px 0 40px; }
  .asm-hero-card h1 { font-size: 2.3rem; }
  .asm-welcome-copy h2, .asm-center-intro h2, .asm-trust-strip h2 { font-size: 2.1rem; }
  .asm-location-bar { margin-top: 0; }
  .asm-location-footer { margin-top: 0; }
}



/* =========================
   Services Page by ASM
   ========================= */
.services-page-asm{
  background:var(--main-bg,#fff);
  color:var(--text,#061A34);
}

.services-shell{
  width:min(calc(100% - 40px), 1120px);
  margin:0 auto;
}

.services-page-asm .btn,
.services-page-asm .btn-outline{
  border-radius:999px;
  min-height:44px;
  padding:0 20px;
}

.services-page-hero{
  padding:34px 0 18px;
}

.services-page-hero-inner{
  text-align:center;
}

.services-page-kicker{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--accent-alt,#1572B9);
}

.services-page-hero h1{
  margin:10px 0 0;
  font-size:clamp(2.5rem, 5vw, 4.5rem);
  line-height:.96;
  color:var(--secondary,#061A34);
}

.services-page-hero p{
  max-width:760px;
  margin:16px auto 0;
  color:rgba(6,26,52,.78);
  line-height:1.8;
}

.services-page-hero-media{
  margin-top:26px;
}

.services-page-hero-media img{
  width:100%;
  max-width:860px;
  margin:0 auto;
  height:300px;
  object-fit:cover;
  border-radius:22px;
  box-shadow:0 10px 32px rgba(6,26,52,.10);
}

.services-page-intro{
  padding:42px 0 28px;
}

.services-page-intro-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}

.services-page-eyebrow{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--primary,#E92D4E);
}

.services-page-intro-copy h2,
.services-page-feature-copy h3,
.services-page-trust-copy h2{
  margin:10px 0 0;
  color:var(--secondary,#061A34);
  line-height:1.05;
}

.services-page-intro-copy h2{
  font-size:clamp(2rem, 3vw, 3rem);
}

.services-page-intro-copy p,
.services-page-feature-copy p,
.services-page-trust-copy p{
  margin:16px 0 0;
  line-height:1.85;
  color:rgba(6,26,52,.82);
}

.services-page-intro-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
}

.services-page-intro-media img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:18px;
}


.services-page-features{
  padding:24px 0 44px;
  display:grid;
  gap:42px;
}

.services-page-feature{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  align-items:center;
}

.services-page-feature.reverse .services-page-feature-copy{
  order:2;
}

.services-page-feature.reverse .services-page-feature-media{
  order:1;
}

.services-page-feature-copy h3{
  font-size:clamp(1.8rem, 2.4vw, 2.5rem);
}

.services-page-feature-points{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:20px 0 0;
  padding:0;
  list-style:none;
}

.services-page-feature-points li{
  padding:12px 14px;
  background:var(--inner-bg,#F4F4F4);
  border-radius:14px;
  font-weight:600;
  color:var(--secondary,#061A34);
}

.services-page-feature-media img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:18px;
}

.services-page-trust{
  padding:10px 0 74px;
}

.services-page-trust-wrap{
  background:var(--secondary,#061A34);
  color:var(--text-alt,#fff);
  border-radius:28px;
  padding:34px;
}

.services-page-trust-copy h2{
  color:#fff;
  font-size:clamp(2rem,3vw,3rem);
}

.services-page-trust-copy p{
  color:rgba(255,255,255,.84);
  max-width:760px;
}

.services-page-trust-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin-top:22px;
}

.services-page-trust-card{
  padding:18px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.07);
}

.services-page-trust-card h3{
  margin:0;
  font-size:1rem;
  color:#fff;
}

.services-page-trust-card p{
  margin:10px 0 0;
  line-height:1.7;
  color:rgba(255,255,255,.78);
}

@media (max-width: 1024px){
  .services-page-intro-grid,
  .services-page-feature,
  .services-page-feature.reverse,
  .services-page-trust-grid{
    grid-template-columns:1fr;
  }

  .services-page-feature.reverse .services-page-feature-copy,
  .services-page-feature.reverse .services-page-feature-media{
    order:initial;
  }
}

@media (max-width: 760px){
  .services-page-service-grid,
  .services-page-feature-points{
    grid-template-columns:1fr;
  }

  .services-page-service-item{
    grid-template-columns:80px 1fr;
    gap:14px;
  }

  .services-page-service-item img{
    width:80px;
    height:80px;
  }

  .services-page-hero-media img{
    height:220px;
  }

  .services-page-intro-media img,
  .services-page-feature-media img{
    height:240px;
  }

  .services-page-trust-wrap{
    padding:24px;
  }
}



/* Elegant Services section */
.services-page-listing{
  padding: 26px 0 38px;
}

.services-page-listing-head{
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.services-page-listing-head h2{
  margin: 10px 0 0;
  font-size: clamp(1.95rem, 3vw, 2.9rem);
  line-height: 1.04;
  color: var(--secondary, #061A34);
}

.services-page-listing-head p{
  margin: 14px auto 0;
  max-width: 760px;
  line-height: 1.8;
  color: rgba(6,26,52,.78);
}

.services-page-service-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
}

.services-page-service-card{
  background: #fff;
  border: 1px solid rgba(6,26,52,.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.services-page-service-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(6,26,52,.08);
  border-color: rgba(6,26,52,.14);
}

.services-page-service-media{
  display: block;
}

.services-page-service-media img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  vertical-align: middle;
}

.services-page-service-body{
  padding: 22px 22px 24px;
}

.services-page-service-body h3{
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.2;
  color: var(--secondary, #061A34);
}

.services-page-service-body p{
  margin: 12px 0 0;
  line-height: 1.78;
  color: rgba(6,26,52,.78);
}

.services-page-service-link{
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent-alt, #1572B9);
  font-weight: 700;
}

/* Centered locations cards */
.services-page-locations-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
  justify-content: center;
  gap: 22px;
  margin-top: 32px;
}

/* Refined Locations section */
.services-page-locations{
  padding: 16px 0 76px;
  background: var(--inner-bg, #F4F4F4);
}

.services-page-locations-head{
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: center;
}

.services-page-locations-head .services-page-eyebrow{
  color: var(--primary, #E92D4E);
}

.services-page-locations-head h2{
  margin: 12px 0 0;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.02;
  color: var(--secondary, #061A34);
}

.services-page-locations-head .services-page-subtitle{
  margin: 10px 0 0;
  font-size: 1.08rem;
  line-height: 1.5;
  color: rgba(6,26,52,.78);
}

.services-page-locations-head p{
  max-width: 800px;
  margin: 14px auto 0;
  line-height: 1.8;
  color: rgba(6,26,52,.80);
}

.services-page-locations-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
  justify-content: center;
  gap: 22px;
  margin-top: 34px;
}

.services-page-location-card{
  position: relative;
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6,26,52,.04), rgba(6,26,52,.82)),
    url('assets/images/location-pattern-bg.jpg') center/cover no-repeat;
  box-shadow: 0 12px 34px rgba(6,26,52,.12);
  transition: transform .24s ease, box-shadow .24s ease;
}

.services-page-location-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(6,26,52,.16);
}

.services-page-location-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,26,52,.00) 20%, rgba(6,26,52,.72) 100%);
}

.services-page-location-inner{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: 24px 22px 22px;
  z-index: 1;
}

.services-page-location-inner h3{
  margin: 0;
  color: #fff;
  font-size: 1.85rem;
  line-height: 1.04;
  text-shadow: 0 2px 14px rgba(0,0,0,.18);
}

.services-page-location-inner .btn{
  margin-top: 12px;
  min-width: auto;
  padding: 0;
  min-height: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--link-alt, #8FCEFF);
  font-weight: 700;
}

.services-page-location-inner .btn:hover{
  transform: none;
  color: #fff;
}

/* Homepage-specific spacing for locations */
.asm-home-v2 .services-page-locations{
  padding-top: 56px;
  padding-bottom: 56px;
}

/* Keep Services and Locations visually distinct */
.asm-home-v2 .services-page-service-card{
  border-radius: 18px;
}

@media (max-width: 640px){
  .services-page-location-card{
    min-height: 320px;
  }
}

/* Header redesign */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.admin-bar .site-header{
  top: 32px;
}

.header-shell{
  padding-top: 18px;
  padding-bottom: 0;
}

.header-inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 0 10px;
  background: transparent;
}

.brand-wrap{
  display:flex;
  align-items:center;
  min-width:0;
}

.site-logo{
  display:flex;
  align-items:center;
}

.site-logo .custom-logo-link{
  display:inline-flex;
  align-items:center;
}

.site-logo img,
.custom-logo{
  display:block;
  width:auto;
  max-height:74px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-mark{
  width:54px;
  height:54px;
  border-radius:50%;
  background:var(--primary);
  color:var(--text-alt);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  border:3px solid rgba(13,52,104,.18);
}

.brand-title{
  display:block;
  font-weight:900;
  color:#0D3468;
  font-size:1.125rem;
  line-height:1.2;
}

.brand-subtitle{
  display:block;
  margin-top:3px;
  font-size:.72rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:rgba(13,52,104,.72);
}

.main-nav{
  display:flex;
  justify-content:center;
}

.primary-menu{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  list-style:none;
  margin:0;
  padding:0;
}

.primary-menu li{
  margin:0;
}

.primary-menu a{
  position:relative;
  display:inline-flex;
  align-items:center;
  min-height:42px;
  color:#0D3468;
  font-size:1.02rem;
  font-weight:700;
  transition:opacity .2s ease, color .2s ease;
}

.primary-menu a:hover{
  opacity:.82;
}

.primary-menu .menu-item-has-children > a::after{
  content:"";
  width:8px;
  height:8px;
  margin-left:10px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-1px);
}

.header-cta{
  min-height:54px;
  padding:0 34px;
  border-radius:999px;
  background:var(--accent-alt);
  color:#fff;
  box-shadow:none;
  font-size:1rem;
}

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

/* scrolled state */
.site-header.is-scrolled{
  background:#0D3468;
  box-shadow:0 10px 28px rgba(6,26,52,.18);
}

.site-header.is-scrolled .header-shell{
  padding-top:0;
}

.site-header.is-scrolled .header-inner{
  min-height:72px;
  padding:0 10px;
}

.site-header.is-scrolled .primary-menu a,
.site-header.is-scrolled .brand-title{
  color:#fff;
}

.site-header.is-scrolled .brand-subtitle{
  color:rgba(255,255,255,.76);
}

.site-header.is-scrolled .header-cta{
  background:rgba(255,255,255,.16);
  color:#fff;
}

body{
  padding-top:0;
}

.services-page-asm,
.default-template{
  padding-top:128px;
}

.asm-home-v2 .asm-hero{
  padding-top:0;
}

.asm-home-v2 .asm-hero-content{
  padding-top:170px;
}

@media (max-width: 1100px){
  .header-inner{
    grid-template-columns:auto 1fr;
  }

  .header-cta{
    display:none;
  }

  .primary-menu{
    gap:22px;
  }
}

@media (max-width: 860px){
  .site-logo img,
  .custom-logo{
    max-height:58px;
  }

  .header-shell{
    padding-top:10px;
  }

  .header-inner{
    grid-template-columns:1fr;
    gap:14px;
    min-height:auto;
    padding:0;
  }

  .main-nav{
    justify-content:flex-start;
    overflow-x:auto;
  }

  .primary-menu{
    justify-content:flex-start;
    gap:18px;
    min-width:max-content;
  }

  .primary-menu a{
    font-size:.96rem;
    min-height:36px;
  }

  .services-page-asm,
  .default-template{
    padding-top:120px;
  }

  .asm-home-v2 .asm-hero-content{
    padding-top:130px;
  }
}

@media (max-width: 782px){
  .admin-bar .site-header{
    top:46px;
  }
}
/* Footer redesign */
.site-footer{
  background-color:#f6f6f6;
  background-image:
    radial-gradient(circle at 26px 26px, rgba(6,26,52,.045) 0 16px, transparent 17px),
    radial-gradient(circle at 54px 10px, rgba(6,26,52,.045) 0 7px, transparent 8px),
    radial-gradient(circle at 74px 10px, rgba(6,26,52,.045) 0 7px, transparent 8px),
    radial-gradient(circle at 64px -8px, rgba(6,26,52,.045) 0 7px, transparent 8px),
    radial-gradient(circle at 44px -8px, rgba(6,26,52,.045) 0 7px, transparent 8px);
  background-size:110px 110px;
  color:var(--secondary,#061A34);
  border-top:3px solid rgba(6,26,52,.14);
}

.footer-main.footer-four-cols{
  display:grid;
  grid-template-columns:1fr .9fr 1.35fr 1fr;
  gap:42px;
  padding-top:52px;
  padding-bottom:44px;
}

.footer-col h4{
  margin:0 0 20px;
  font-size:1.45rem;
  line-height:1.1;
  color:var(--secondary,#061A34);
}

.footer-logo img,
.footer-logo .custom-logo{
  width:auto;
  max-height:70px;
}

.footer-description{
  margin:18px 0 0;
  max-width:260px;
  line-height:1.75;
  color:rgba(6,26,52,.74);
}

.footer-socials,
.footer-location-socials{
  display:flex;
  gap:10px;
  margin-top:16px;
}

.footer-socials a,
.footer-location-socials a{
  width:40px;
  height:40px;
  border-radius:50%;
  background:var(--secondary,#061A34);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.88rem;
  font-weight:700;
  text-transform:lowercase;
}

.footer-services-list{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-services-list li{
  margin-bottom:16px;
}

.footer-services-list a{
  color:rgba(6,26,52,.92);
  font-size:1.02rem;
  font-weight:500;
}

.footer-services-list a:hover,
.footer-map-link:hover,
.footer-bottom-right a:hover{
  color:var(--accent-alt,#1572B9);
}

.footer-locations-list{
  display:grid;
  gap:26px;
}

.footer-location-item h5{
  margin:0 0 8px;
  font-size:1.08rem;
  line-height:1.2;
  color:var(--secondary,#061A34);
}

.footer-location-address,
.footer-location-hours{
  line-height:1.5;
  color:rgba(6,26,52,.72);
  font-size:.98rem;
}

.footer-location-phone{
  margin-top:8px;
  color:var(--secondary,#061A34);
  font-size:1rem;
  font-weight:800;
}

.footer-map-link{
  display:inline-flex;
  margin-top:8px;
  color:var(--accent-alt,#1572B9);
  font-size:.98rem;
}

.footer-contact-form{
  display:grid;
  gap:12px;
}

.footer-contact-form input,
.footer-contact-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid rgba(6,26,52,.14);
  border-radius:12px;
  background:#fff;
  color:var(--secondary,#061A34);
  font:inherit;
}

.footer-contact-form textarea{
  resize:vertical;
  min-height:120px;
}

.footer-contact-form .btn{
  justify-self:start;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding-top:20px;
  padding-bottom:18px;
  border-top:1px solid rgba(6,26,52,.12);
}

.footer-bottom-left{
  color:rgba(6,26,52,.72);
  font-size:1rem;
}

.footer-bottom-right{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:center;
  gap:18px;
}

.footer-bottom-right a,
.footer-bottom-right span{
  color:rgba(6,26,52,.72);
  font-size:1rem;
}

@media (max-width:1180px){
  .footer-main.footer-four-cols{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:760px){
  .footer-main.footer-four-cols{
    grid-template-columns:1fr;
    gap:30px;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-bottom-right{
    justify-content:flex-start;
  }
}


/* Clean homepage rebuild */
.asm-home-clean{
  background: var(--main-bg, #ffffff);
}

.home-clean-hero{
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #dfe7db;
}

.home-clean-hero-picture{
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
}

.home-clean-hero-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.home-clean-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.84) 0%, rgba(255,255,255,.70) 28%, rgba(255,255,255,.18) 58%, rgba(255,255,255,.08) 100%);
  z-index: 1;
}

.home-clean-hero-inner{
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 90px;
}

.home-clean-hero-copy{
  max-width: 620px;
}

.home-clean-kicker{
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary, #E92D4E);
}

.home-clean-hero-copy h1{
  margin: 14px 0 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .95;
  color: var(--secondary, #061A34);
}

.home-clean-hero-copy p{
  margin: 18px 0 0;
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(6,26,52,.82);
}

.home-clean-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.home-clean-intro{
  padding: 72px 0 28px;
  background: var(--main-bg, #fff);
}

.home-clean-intro-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: start;
}

.home-clean-intro-copy h2{
  margin: 10px 0 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.04;
  color: var(--secondary, #061A34);
}

.home-clean-intro-copy p{
  margin: 16px 0 0;
  line-height: 1.85;
  color: rgba(6,26,52,.8);
}

.home-clean-intro-card{
  display: grid;
  gap: 14px;
}

.home-clean-stat{
  padding: 24px 24px 22px;
  background: var(--inner-bg, #F4F4F4);
  border-left: 4px solid var(--accent-alt, #1572B9);
  border-radius: 14px;
}

.home-clean-stat strong{
  display: block;
  font-size: 1.18rem;
  line-height: 1.3;
  color: var(--secondary, #061A34);
}

.home-clean-stat span{
  display: block;
  margin-top: 8px;
  line-height: 1.7;
  color: rgba(6,26,52,.72);
}

.asm-home-clean .services-page-listing{
  padding: 34px 0 52px;
  background: var(--main-bg, #fff);
}

.asm-home-clean .services-page-listing-head{
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.asm-home-clean .services-page-listing-head p{
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.asm-home-clean .services-page-service-grid{
  margin-top: 30px;
}

.asm-home-clean .services-page-service-card{
  background: #fff;
  border: 1px solid rgba(6,26,52,.08);
  box-shadow: 0 10px 24px rgba(6,26,52,.04);
}

.home-clean-trust{
  padding: 34px 0 64px;
  background: #fff;
}

.home-clean-section-head{
  max-width: 760px;
  margin-bottom: 28px;
}

.home-clean-section-head--center{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-clean-section-head h2{
  margin: 10px 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  color: var(--secondary, #061A34);
}

.home-clean-section-head p{
  margin: 14px 0 0;
  line-height: 1.85;
  color: rgba(6,26,52,.8);
}

.home-clean-trust-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

.home-clean-trust-card{
  background: var(--inner-bg, #F4F4F4);
  border-top: 3px solid var(--accent-alt, #1572B9);
  padding: 22px 18px 20px;
  border-radius: 12px;
}

.home-clean-trust-card h3{
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--secondary, #061A34);
}

.home-clean-trust-card p{
  margin: 10px 0 0;
  line-height: 1.7;
  color: rgba(6,26,52,.76);
}

.asm-home-clean .services-page-locations{
  padding: 16px 0 66px;
  background: #fff;
}

.home-clean-faq-wrap{
  padding: 8px 0 74px;
  background: #fff;
}

.home-clean-faq-shortcode{
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 1024px){
  .home-clean-intro-grid,
  .home-clean-trust-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .home-clean-hero{
    min-height: 620px;
  }

  .home-clean-hero-inner{
    min-height: 620px;
    align-items: flex-end;
    padding-top: 120px;
    padding-bottom: 48px;
  }

  .home-clean-hero-image{
    object-position: 68% center;
  }

  .home-clean-hero-overlay{
    background:
      linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.62) 30%, rgba(255,255,255,.18) 66%, rgba(255,255,255,.10) 100%);
  }

  .home-clean-hero-copy h1{
    font-size: clamp(2.3rem, 9vw, 3.4rem);
  }

  .home-clean-intro{
    padding-top: 52px;
  }
}

