/* ============================================================
   Atelier Car Care — Global Stylesheet (light theme)
   Site-wide styles: home, about, contact, location, service,
   near-me, blog, and shared chrome.
   ============================================================ */

/* ── Font Faces ── */

@font-face {
  font-family: 'TT Norms';
  src: url('/fonts/TTNorms-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Norms';
  src: url('/fonts/TTNorms-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Norms';
  src: url('/fonts/TTNorms-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Norms';
  src: url('/fonts/TTNorms-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ── Custom Properties ── */

:root {
  --teal:        #3f8e90;
  --teal-dark:   #2d6e70;
  --teal-soft:   #e8f4f4;
  --teal-rgba:   rgba(63, 142, 144, 0.2);
  --white:       #ffffff;
  --black:       #0d0d0d;
  --muted:       #6b6b6b;
  --off-white:   #6b6b6b; /* alias for legacy inline/page CSS */
  --line:        #e5e5e5;
  --soft:        #f5f5f5;
  --shadow:      0 20px 60px rgba(0, 0, 0, 0.09);
  --radius:      18px;
  --max:         1240px;
  --header-h:    80px;
  --body-copy-size: 18px;
  --body-copy-tracking: 0px;
}

/* ── Reset ── */

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

html { scroll-behavior: smooth; }

/* ── Base Body ── */

body {
  background: var(--white);
  color: var(--black);
  font-family: 'TT Norms', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

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

h1, h2, h3 { line-height: 1.05; letter-spacing: -0.04em; }
h1 { font-weight: 700; }
h2 { font-weight: 700; }
h3 { font-weight: 700; }

/* ── Layout utility ── */

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

.section { padding: 100px 0; }

/* ── Scroll reveal ── */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ============================================================
   HEADER  (dark — brand element, unchanged)
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--header-h);
  background: var(--teal);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  -webkit-font-smoothing: antialiased;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 48px;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  gap: 24px;
}

.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-wrap img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.logo-wrap:hover img { opacity: 0.85; }

/* ── Main nav (desktop) ── */

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 14px;
  font-family: inherit;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-item.open > .nav-link,
.nav-item.mobile-open > .nav-link {
  color: #fff;
}

.nav-link--btn { line-height: 1; }

.nav-caret {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.nav-item.open .nav-caret,
.nav-item.mobile-open .nav-caret {
  transform: rotate(225deg) translateY(1px);
}

.nav-call {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #fff;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  margin-left: 8px;
}
.nav-call:hover {
  background: var(--teal-soft);
  border-color: var(--teal-soft);
  color: var(--teal-dark);
}

.nav-call--mobile { display: none; }

/* Mobile toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 4px;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.nav-toggle:hover { border-color: #fff; }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile package accordion (hidden on desktop) */
.nav-mobile-pkgs { display: none; }

/* ── Mega-menu ── */

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--teal-dark);
  border-top: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 48px rgba(0,0,0,0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 9998;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  color: #fff;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu[hidden] { display: none !important; }
.mega-menu.open[hidden] { display: block !important; }

.mega-menu-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 36px 48px 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.mega-pkg {
  display: flex;
  flex-direction: column;
  padding: 20px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  min-height: 0;
  transition: background 0.2s, border-color 0.2s;
}
.mega-pkg:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
}

.mega-pkg-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.mega-pkg-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}

.mega-pkg-price {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.mega-pkg-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  flex: 1;
}
.mega-pkg-list li {
  position: relative;
  padding: 5px 0 5px 14px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
}
.mega-pkg-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}

.mega-pkg-readmore {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mega-pkg-readmore:hover {
  background: #fff;
  color: var(--teal-dark);
  border-color: #fff;
}

/* ── Header responsive ── */

@media (max-width: 1400px) {
  .mega-menu-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 1100px) {
  .nav-link { padding: 10px 10px; letter-spacing: 2px; }
  .mega-menu-inner { padding: 28px 32px 32px; }
}

@media (max-width: 960px) {
  .logo-wrap img { height: 40px; }

  .nav-toggle { display: flex; }

  .nav-call--mobile {
    display: inline-block;
    margin-left: auto;
    margin-right: 0;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 24px 24px;
    background: var(--teal);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }

  .main-nav > .nav-call { display: none; }

  .nav-item {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 12px;
    letter-spacing: 3px;
  }

  .mega-menu { display: none !important; }

  .nav-mobile-pkgs {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--teal-dark);
    margin: 0 -24px;
    padding: 4px 24px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .nav-mobile-pkgs[hidden] { display: none !important; }

  .nav-mobile-pkg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .nav-mobile-pkg:last-child { border-bottom: none; }

  .nav-mobile-pkg-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }
  .nav-mobile-pkg-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }
  .nav-mobile-pkg-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
  }
  .nav-mobile-pkg-price {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
  }

  .nav-mobile-pkg-more {
    flex-shrink: 0;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
  }
}

@media (max-width: 640px) { .header-inner { padding: 0 24px; } }


/* ============================================================
   FOOTER  (teal brand bar)
   ============================================================ */

.acc-footer {
  background: var(--teal);
  border-top: 1px solid rgba(255,255,255,0.18);
  -webkit-font-smoothing: antialiased;
}

.acc-footer-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 64px 48px 0;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 48px;
}

.acc-footer-brand { flex: 1.2; min-width: 180px; }
.acc-footer-brand > a { display: inline-block; text-decoration: none; color: inherit; }

.acc-footer-nav-col {
  flex: 1;
  min-width: 160px;
}

.acc-footer-services {
  flex: 1.6;
  min-width: 240px;
}

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

.acc-footer-link-list li {
  margin-bottom: 10px;
}

.acc-footer-link-list--2col {
  columns: 2;
  column-gap: 40px;
}

.acc-footer-link-list--2col li {
  break-inside: avoid;
}

.acc-footer-link-list a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

.acc-footer-link-list a:hover {
  color: #fff;
  opacity: 0.85;
}

.acc-footer-contact-col {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.acc-footer-logo {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.acc-footer-tagline {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #fff;
  line-height: 1.8;
  max-width: 260px;
  text-transform: uppercase;
}

.acc-footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.acc-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.acc-footer-contact-item a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.acc-footer-contact-item a:hover { color: #fff; opacity: 0.9; }

.acc-footer-bottom {
  margin-top: 56px;
  padding: 20px 48px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.acc-footer-copy {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.acc-footer-right {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.acc-footer-legal a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.acc-footer-legal a:hover { color: #fff; }

.acc-footer-credit {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.acc-footer-credit a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.acc-footer-credit a:hover { color: #fff; }

@media (max-width: 960px) {
  .acc-footer-inner { flex-wrap: wrap; }
  .acc-footer-contact-col { align-items: flex-start; }
  .acc-footer-link-list--2col { columns: 2; column-gap: 28px; }
}

@media (max-width: 560px) {
  .acc-footer-inner { flex-direction: column; padding: 48px 24px 0; }
  .acc-footer-contact-col { align-items: flex-start; }
  .acc-footer-link-list--2col { columns: 1; }
  .acc-footer-bottom { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
}


/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes accMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes accBrandsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   SHARED TYPOGRAPHY & COMPONENTS
   ============================================================ */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--teal);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 54px;
}

.section-lead {
  max-width: 640px;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.75;
  flex-shrink: 0;
}

/* Buttons */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  font-family: 'TT Norms', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal);
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 4px;
  font-family: 'TT Norms', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  text-decoration: none;
  cursor: pointer;
  background: none;
  transition: border-color 0.25s, color 0.25s;
}
.btn-secondary:hover { border-color: var(--black); color: var(--black); }

.btn-secondary .arrow {
  width: 20px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.25s;
  flex-shrink: 0;
}
.btn-secondary .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn-secondary:hover .arrow { width: 30px; }


/* ============================================================
   HOME MAIN WRAPPER
   ============================================================ */

.acc-home-main {
  padding-top: var(--header-h);
  background: var(--white);
}

#Packages {
  scroll-margin-top: calc(var(--header-h) + 20px);
}


/* ============================================================
   HERO  — two-column layout
   ============================================================ */

.hero {
  min-height: min(760px, calc(100vh - var(--header-h)));
  display: grid;
  align-items: center;
  padding: 80px 0 60px;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 72px;
}

.hero-title {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin-bottom: 32px;
}
.hero-title em {
  font-style: normal;
  color: var(--teal);
}

.hero-body {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 36px;
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 700;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.proof-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.proof-icon svg {
  display: block;
}

/* Hero right column — image */

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

.hero-image {
  position: absolute;
  inset: 0 0 0 32px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.28) 100%),
    url('https://ateliercarcare.co.uk/wp-content/uploads/2026/03/AtelierCarCare_Work-02-scaled.webp');
  background-size: cover;
  background-position: center;
}


/* ============================================================
   MARQUEE
   ============================================================ */

.acc-marquee-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
  overflow: hidden;
  background: var(--soft);
  width: 100%;
}

.acc-marquee-track {
  display: flex;
  animation: accMarquee 22s linear infinite;
  white-space: nowrap;
}

.acc-marquee-item {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 36px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  font-family: 'TT Norms', sans-serif;
  font-weight: 700;
}

.acc-marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ============================================================
   PACKAGES SECTION
   ============================================================ */

.packages-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

/* Section heading — full width matching card grid */
.packages-section .section-heading,
.packages-section .addons-header {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 24px;
  margin-bottom: 48px;
}
.packages-section .section-lead {
  max-width: 100%;
  flex-shrink: 1;
}

/* Pricing grid — 3 columns */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(63,142,144,0.4);
  box-shadow: var(--shadow);
}

.price-card--featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}
.price-card--featured:hover {
  border-color: var(--teal-dark);
  transform: translateY(-12px);
}

.popular-badge {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.card-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 16px 0 20px;
}
.price sup {
  font-size: 1rem;
  font-weight: 400;
  vertical-align: super;
  letter-spacing: 0;
  color: var(--black);
}

.card-bio {
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 28px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  font-family: 'TT Norms', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  border: 1px solid var(--black);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}
.card-cta:hover { background: var(--black); color: #fff; }

.card-cta--primary {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.card-cta--primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; }


/* Add-ons */

.addons-header { margin-top: 20px; }

.addons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.addon-item {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 16px;
  gap: 8px;
  transition: background 0.2s;
}
.addon-item:hover { background: var(--soft); }

.addon-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
}

.addon-price {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--teal-dark);
}


/* ============================================================
   TESTIMONIALS / REVIEWS
   ============================================================ */

.reviews-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.reviews-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
}

.reviews-header .section-lead {
  max-width: 640px;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(63, 142, 144, 0.4);
  box-shadow: var(--shadow);
}

.review-card .stars {
  color: var(--teal);
  letter-spacing: 0.12em;
  font-size: 1rem;
  margin-bottom: 20px;
}

.review-card blockquote {
  margin: 0 0 24px;
  color: #2c3131;
  font-size: 1.05rem;
  line-height: 1.65;
  flex: 1;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}

.review-author span {
  display: block;
  margin-top: 4px;
  color: var(--black);
  font-size: 0.84rem;
}

.reviews-link {
  margin-top: 36px;
}

.reviews-link a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(63, 142, 144, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.reviews-link a:hover {
  color: var(--teal);
  border-color: var(--teal);
}


/* ============================================================
   BRANDS SECTION
   ============================================================ */

.acc-brands-section {
  background: var(--white);
  padding: 80px 0 64px;
  border-top: 1px solid var(--line);
  overflow: hidden;
  width: 100%;
}

.acc-brands-header {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 24px;
  margin-bottom: 52px;
}
.acc-brands-header .section-lead {
  max-width: 100%;
}

.acc-brands-track-wrap {
  overflow: hidden;
  position: relative;
}
.acc-brands-track-wrap::before,
.acc-brands-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.acc-brands-track-wrap::before { left: 0; background: linear-gradient(to right, var(--white) 0%, transparent 100%); }
.acc-brands-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--white) 0%, transparent 100%); }

.acc-brands-track {
  display: flex;
  align-items: center;
  animation: accBrandsScroll 44s linear infinite;
  width: max-content;
}
.acc-brands-track:hover { animation-play-state: paused; }

.acc-brand-item {
  display: flex;
  align-items: center;
  padding: 0 44px;
  flex-shrink: 0;
  opacity: 0.35;
  transition: opacity 0.3s;
}
.acc-brand-item:hover { opacity: 1; }

.acc-brand-name {
  font-family: 'TT Norms', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}

.acc-brand-divider {
  width: 1px;
  height: 18px;
  background: var(--line);
  flex-shrink: 0;
}


/* ============================================================
   LOCATION MOSAIC  (photographic — keep rich image treatment)
   ============================================================ */

.location-mosaic-section {
  border-top: 1px solid var(--line);
}

.location-mosaic-section .mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 420px 320px;
  gap: 3px;
  background: var(--line);
}

.location-mosaic-section .mosaic-cell {
  overflow: hidden;
  position: relative;
}

.location-mosaic-section .mosaic-cell:nth-child(1) {
  grid-row: span 2;
}

.location-mosaic-section .mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.location-mosaic-section .mosaic-cell:hover img {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.05);
}

@media (max-width: 980px) {
  .location-mosaic-section .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px 300px;
  }
  .location-mosaic-section .mosaic-cell:nth-child(1) {
    grid-row: span 1;
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .location-mosaic-section .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 260px);
  }
  .location-mosaic-section .mosaic-cell:nth-child(1) {
    grid-column: span 1;
  }
}


/* ============================================================
   CTA BAND
   ============================================================ */

.cta {
  padding: 40px 0 120px;
  background: var(--white);
}

.cta-shell {
  position: relative;
  padding: clamp(56px, 8vw, 104px);
  border-radius: 34px;
  overflow: hidden;
  background: var(--teal);
  color: #fff;
}

.cta-shell::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -210px;
  border: 80px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.cta-shell .section-title {
  color: #fff;
  margin-bottom: 18px;
}

.cta-shell p {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  font-family: 'TT Norms', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.btn-dark:hover {
  background: var(--teal-soft);
  border-color: var(--teal-soft);
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  font-family: 'TT Norms', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
  transform: translateY(-2px);
}


/* ============================================================
   MODAL  (keep dark — overlay component)
   ============================================================ */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border: 1px solid var(--line);
  max-width: 1240px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.28s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) var(--white);
}
.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-track { background: var(--white); }
.modal::-webkit-scrollbar-thumb { background: var(--teal); }

.modal-header {
  padding: 36px 40px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.modal-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.modal-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.3px;
  padding-right: 48px;
}
.modal-price {
  font-size: 30px;
  font-weight: 700;
  color: var(--teal);
  margin-top: 10px;
  letter-spacing: -0.5px;
}
.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
  font-family: sans-serif;
}
.modal-close:hover { border-color: var(--teal); color: var(--teal); }

.modal-body { padding: 32px 40px 40px; }

.modal-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.modal-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 32px;
  margin-bottom: 28px;
}
.modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}
.modal-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 6px;
}
.modal-list li.inherited { color: #a0a0a0; font-style: italic; }
.modal-list li.inherited::before { background: rgba(63,142,144,0.3); }

.modal-inherited-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(63,142,144,0.45);
  margin: 24px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-inherited-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(63,142,144,0.3);
}

.modal-cta {
  display: block;
  width: 100%;
  background: var(--teal);
  color: #fff;
  border: 1px solid var(--teal);
  border-radius: 999px;
  padding: 16px;
  font-family: 'TT Norms', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-top: 32px;
}
.modal-cta:hover {
  background: #fff;
  color: #000;
  border-color: var(--teal);
}


/* ============================================================
   RESPONSIVE
   Breakpoints: 1080 (grid collapse), 860 (header CTAs — existing),
   780 (stack + padding), 560 (mobile fine-tune).
   ============================================================ */

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .hero-visual { min-height: 520px; }
  .hero-image { left: 0; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .section { padding: 72px 0; }
  .hero {
    min-height: 0;
    padding: 48px 0 40px;
  }
  .hero-visual { min-height: 440px; }
  .hero-proof {
    display: grid;
    gap: 13px;
  }
  .section-heading { flex-direction: column; align-items: flex-start; gap: 20px; }
  .section-lead { max-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--featured,
  .price-card--featured:hover { transform: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .cta { padding-bottom: 72px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn-dark,
  .cta-actions .btn-outline-light { width: 100%; }
}

@media (max-width: 720px) {
  .modal-list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 32px); }
  .hero-title { letter-spacing: -0.04em; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .hero-visual { min-height: 380px; overflow: hidden; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { padding: 26px; }
  .modal-header { padding: 28px 24px 22px; }
  .modal-body { padding: 24px 24px 32px; }
  .modal-close { top: 20px; right: 16px; }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .acc-marquee-track,
  .acc-brands-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .price-card,
  .review-card,
  .btn-primary,
  .btn-dark,
  .btn-outline-light {
    transition: none;
  }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

main.about-page {
  padding-top: var(--header-h);
}

.about-text-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 48px 80px;
  text-align: center;
}

.about-heading {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 36px;
}

.about-line {
  width: 36px;
  height: 1px;
  background: var(--teal);
  margin: 0 auto 36px;
}

.about-body {
  font-weight: 300;
  color: var(--black);
  line-height: 2;
  letter-spacing: 0.02em;
}

.about-page .mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 420px 320px;
  gap: 3px;
  background: var(--line);
}

.about-page .mosaic-cell {
  overflow: hidden;
  position: relative;
}

.about-page .mosaic-cell:nth-child(1) {
  grid-row: span 2;
}

.about-page .mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.about-page .mosaic-cell:hover img {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.05);
}

.coverage-map-section {
  width: 100vw;
  margin: 40px 0 100px;
  margin-left: calc(50% - 50vw);
  padding: 28px 0;
}

.coverage-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.coverage-map-frame {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--soft);
  height: 460px;
  position: relative;
}

.coverage-map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.04);
  pointer-events: none;
}

.coverage-map-frame iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
  filter: grayscale(0.08) contrast(1.02);
  margin-top: -60px;
}

.coverage-copy {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coverage-map-heading {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black);
  text-align: left;
  margin: 0 0 18px;
  text-transform: none;
}

.coverage-copy h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.coverage-copy p {
  line-height: 1.9;
  color: var(--black);
  margin-bottom: 14px;
}

.coverage-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-page .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px 300px;
  }
  .about-page .mosaic-cell:nth-child(1) {
    grid-row: span 1;
    grid-column: span 2;
  }
  .about-text-section { padding: 20px 32px 64px; }
  .coverage-map-section {
    margin: 32px 0 84px;
    padding: 24px 0;
  }
  .coverage-map-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .about-page .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 260px);
  }
  .about-page .mosaic-cell:nth-child(1) {
    grid-column: span 1;
  }
  .about-text-section { padding: 20px 24px 48px; }
  .coverage-map-section {
    margin: 28px 0 72px;
    padding: 20px 0;
  }
  .coverage-map-frame { height: 360px; }
  .coverage-map-frame iframe {
    height: 420px;
    margin-top: -60px;
  }
  .coverage-copy {
    padding: 22px;
  }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1000;
}

.contact-main {
  padding-top: var(--header-h, 80px);
  position: relative;
  z-index: 1001;
}

.contact-main ~ .acc-footer {
  position: relative;
  z-index: 1001;
}

.contact-page {
  min-height: calc(100vh - var(--header-h, 80px));
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-left {
  background: var(--soft);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(63,142,144,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.contact-left::after {
  content: 'GET IN TOUCH';
  position: absolute;
  bottom: -30px;
  left: -10px;
  font-weight: 700;
  font-size: 7rem;
  color: rgba(63,142,144,0.08);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.02em;
}

.contact-label {
  font-size: 0.52rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  font-weight: 700;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.contact-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--teal);
}

.contact-heading {
  font-weight: 700;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.35s forwards;
}
.contact-heading em {
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
  display: block;
}

.contact-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 2;
  letter-spacing: 0.03em;
  max-width: 360px;
  margin-bottom: 64px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.65s forwards;
  position: relative;
  z-index: 1;
}
.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-detail-label {
  font-size: 0.5rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}
.contact-detail-value {
  font-size: 1rem;
  color: var(--black);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.contact-right {
  background: var(--white);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s ease 0.3s forwards;
}

.form-heading {
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-heading::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--teal);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  margin-bottom: 1px;
}
.form-row.full {
  grid-template-columns: 1fr;
}

.form-field {
  background: var(--soft);
  padding: 28px 32px;
  position: relative;
  transition: background 0.3s;
}
.form-field:focus-within {
  background: var(--teal-soft);
}
.form-field label {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 10px;
}
.form-field input,
.form-field textarea {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  font-weight: 300;
  font-size: 1rem;
  color: var(--black);
  letter-spacing: 0.02em;
  resize: none;
  caret-color: var(--teal);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(107,107,107,0.55);
  font-size: 1rem;
}
.form-field textarea {
  min-height: 140px;
  line-height: 1.8;
}

.form-field::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.form-field:focus-within::after {
  transform: scaleX(1);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

.captcha-field {
  background: var(--soft);
  padding: 28px 32px;
  margin-bottom: 1px;
  position: relative;
  transition: background 0.3s;
  border: none;
  border-top: none;
}
.captcha-field:focus-within {
  background: var(--teal-soft);
}
.captcha-field::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.captcha-field:focus-within::after { transform: scaleX(1); }

.captcha-label {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.captcha-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.captcha-question {
  font-size: 1rem;
  color: var(--black);
  font-weight: 300;
  white-space: nowrap;
}
.captcha-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  outline: none;
  width: 64px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  text-align: center;
  padding: 4px 0;
  caret-color: var(--teal);
}
.captcha-input:focus { border-bottom-color: var(--teal); }

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0 0;
  gap: 24px;
}
.form-note {
  font-size: 0.6rem;
  color: var(--black);
  letter-spacing: 0.05em;
  line-height: 1.7;
  max-width: 260px;
  font-weight: 400;
}
.btn-submit {
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 18px 48px;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  flex-shrink: 0;
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal-dark);
  transform: translateY(101%);
  transition: transform 0.4s ease;
}
.btn-submit:hover::before { transform: translateY(0); }
.btn-submit span { position: relative; z-index: 1; }

.form-message {
  display: none;
  padding: 24px 32px;
  margin-top: 1px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 1.7;
}
.form-message.success {
  background: var(--teal-soft);
  border-left: 2px solid var(--teal);
  color: var(--black);
}
.form-message.error {
  background: rgba(180,60,60,0.08);
  border-left: 2px solid #b43c3c;
  color: #8a3030;
}

.form-field.invalid input,
.form-field.invalid textarea {
  color: #8a3030;
}
.form-field.invalid label { color: #b43c3c; }

@media (max-width: 900px) {
  .contact-page { grid-template-columns: 1fr; }
  .contact-left { padding: 80px 32px 60px; }
  .contact-left::after { font-size: 4rem; }
  .contact-right { padding: 60px 32px 80px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   PRIVACY POLICY
   ============================================================ */

main.policy-page {
  padding-top: var(--header-h);
}

.policy-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 48px 100px;
}

.policy-eyebrow {
  display: inline-block;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}

.policy-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 16px;
}

.policy-updated {
  font-size: 0.75rem;
  color: var(--black);
  letter-spacing: 0.06em;
  margin-bottom: 52px;
}

.policy-line {
  width: 36px;
  height: 1px;
  background: var(--teal);
  margin-bottom: 52px;
}

.policy-body h2 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.policy-body h2:first-child {
  margin-top: 0;
}

.policy-body p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 16px;
}

.policy-body ul {
  margin: 0 0 16px 20px;
}

.policy-body li {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 6px;
}

.policy-body a {
  color: var(--teal);
  text-decoration: none;
  transition: opacity 0.2s;
}

.policy-body a:hover {
  opacity: 0.75;
}

@media (max-width: 600px) {
  .policy-inner {
    padding: 40px 24px 80px;
  }
}


/* ============================================================
   404 PAGE  (dark photo overlay — keep light text for contrast)
   ============================================================ */

.acc-404-main {
  padding-top: var(--header-h);
  position: relative;
  min-height: calc(100vh - 1px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.acc-404-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://ateliercarcare.co.uk/wp-content/uploads/2026/03/AtelierCarCare_Work-02-scaled.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.85);
}

.acc-404-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(0,0,0,0.12) 60px,
    rgba(0,0,0,0.12) 61px
  );
  pointer-events: none;
}

.acc-404-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.72) 45%,
    rgba(0,0,0,0.92) 100%
  );
}

.acc-404-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 72px 48px 96px;
  text-align: center;
}

.acc-404-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}

.acc-404-code {
  font-size: clamp(4.5rem, 14vw, 7.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.08);
  margin-bottom: 8px;
  user-select: none;
}

.acc-404-heading {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.acc-404-line {
  width: 36px;
  height: 1px;
  background: var(--teal);
  margin: 0 auto 28px;
}

.acc-404-copy {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.acc-404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .acc-404-inner { padding: 56px 24px 80px; }
}


/* ============================================================
   LOCATION PAGES (Stamford, Cambridge, Peterborough, Rutland)
   ============================================================ */

.acc-location-main { padding-top: var(--header-h, 80px); }

.location-cta {
  width: 100%;
  padding: 40px 24px 120px;
  background: var(--white);
  text-align: left;
}
.location-cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: var(--teal);
  color: #fff;
  border-radius: 34px;
  padding: clamp(56px, 8vw, 104px);
  text-align: left;
}
.location-cta-inner::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -210px;
  border: 80px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.location-cta-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.location-cta-title em { font-style: normal; color: var(--teal-soft); }
.location-cta-body {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.location-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}
.location-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  font-family: 'TT Norms', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.location-cta .btn-primary:hover {
  background: var(--teal-soft);
  border-color: var(--teal-soft);
  transform: translateY(-2px);
}
.location-cta .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  font-family: 'TT Norms', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.location-cta .btn-outline:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
  transform: translateY(-2px);
}

.loc-usecases-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 100px 60px;
}
.loc-usecases-inner { max-width: 1800px; margin: 0 auto; }
.loc-usecases-header { text-align: center; margin-bottom: 60px; }
.loc-usecases-eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.loc-usecases-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 28px;
}
.loc-usecases-title em { font-style: normal; color: var(--teal); }
.loc-usecases-lede {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.85;
  letter-spacing: 0.3px;
}
.loc-usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: transparent;
  border: none;
}
.loc-usecase-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.loc-usecase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: background 0.3s ease;
}
.loc-usecase-card:hover { background: var(--soft); border-color: var(--teal); }
.loc-usecase-card:hover::before { background: var(--teal); }
.loc-usecase-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.8;
  margin-bottom: 14px;
}
.loc-usecase-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.2px;
  margin-bottom: 18px;
}
.loc-usecase-card p {
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.3px;
}
.loc-usecase-card p + p { margin-top: 14px; }
.loc-usecases-footer {
  margin-top: 44px;
  text-align: center;
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.3px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.loc-usecases-footer a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(63,142,144,0.35);
  transition: color 0.2s, border-color 0.2s;
}
.loc-usecases-footer a:hover {
  color: var(--teal-dark);
  border-bottom-color: var(--teal);
}

.loc-covers-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  padding: 100px 60px;
}
.loc-covers-inner { max-width: 880px; margin: 0 auto; }
.loc-covers-header { text-align: center; margin-bottom: 56px; }
.loc-covers-eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.loc-covers-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 28px;
}
.loc-covers-lede {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  letter-spacing: 0.3px;
  text-align: left;
}
.loc-covers-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  border: none;
}
.loc-covers-block {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 44px 40px;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.loc-covers-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: background 0.3s ease;
}
.loc-covers-block:hover { background: var(--white); border-color: var(--teal); }
.loc-covers-block:hover::before { background: var(--teal); }
.loc-covers-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.2px;
  margin-bottom: 20px;
  line-height: 1.25;
}
.loc-covers-block p {
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.3px;
}
.loc-covers-block p + p { margin-top: 14px; }

.loc-faq-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 100px 60px 120px;
}
.loc-faq-inner { max-width: 980px; margin: 0 auto; }
.loc-faq-header { text-align: center; margin-bottom: 56px; }
.loc-faq-eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.loc-faq-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--black);
  line-height: 1.05;
}
.loc-faq-list {
  border-top: 1px solid var(--line);
}
.loc-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.loc-faq-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.2px;
  margin-bottom: 14px;
}
.loc-faq-item p {
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.3px;
}

@media (max-width: 1100px) {
  .loc-usecases-section { padding: 80px 40px; }
  .loc-covers-section, .loc-faq-section { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 800px) {
  .location-cta { padding: 32px 20px 80px; }
  .loc-usecases-section { padding: 70px 24px; }
  .loc-usecases-grid { grid-template-columns: 1fr; }
  .loc-usecase-card { padding: 36px 28px; }
  .loc-covers-section, .loc-faq-section { padding-left: 24px; padding-right: 24px; padding-top: 70px; padding-bottom: 80px; }
  .loc-covers-block { padding: 36px 28px; }
}
@media (max-width: 560px) {
  .location-cta { padding: 24px 12px 64px; }
  .location-cta-inner { border-radius: 22px; padding: 40px 24px; }
  .location-cta-actions { flex-direction: column; align-items: stretch; }
  .location-cta .btn-primary,
  .location-cta .btn-outline { width: 100%; }
  .loc-usecases-section { padding: 60px 16px; }
  .loc-usecase-card { padding: 32px 22px; }
  .loc-covers-section, .loc-faq-section { padding-left: 16px; padding-right: 16px; padding-top: 60px; }
  .loc-covers-block { padding: 32px 22px; }
}


/* ============================================================
   NEAR-ME + SERVICE PAGES (shared template)
   ============================================================ */

.location-main b, .location-main strong { font-weight: 400; }
.location-main { padding-top: var(--header-h, 80px); }

/* Reset home two-column hero for location/service templates */
.location-main .hero {
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  padding: 0;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.hero-inner { width: 100%; max-width: none; margin: 0 auto; padding: 82px 60px 68px; }

.location-main .hero h1 {
  font-size: clamp(34px, 5.6vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--black);
}
.location-main .hero p {
  max-width: 760px;
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.9;
}
.hero .trust-line {
  margin-top: 18px;
  color: var(--teal);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
}

.full-section { width: 100%; padding: 74px 60px; border-top: 1px solid var(--line); background: var(--white); }
.section-inner { max-width: none; width: 100%; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 34px; }

.location-main h2 {
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.06;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  color: var(--black);
}
.location-main h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  color: var(--black);
}

.lead, .copy p {
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.95;
  margin-bottom: 14px;
}

.checklist { list-style: none; padding: 0; margin: 16px 0 26px; }
.checklist li {
  color: var(--black);
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.7;
  border-bottom: 1px solid var(--line);
}
.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--teal);
  font-weight: 600;
}
.checklist li:last-child { border-bottom: none; }

.service-list {
  list-style: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.service-list li { border-bottom: 1px solid var(--line); }
.service-list li:last-child { border-bottom: none; }
.service-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 18px 20px;
}
.service-list a:hover { background: var(--teal-soft); }

.related-links { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.related-links p {
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.85;
  margin: 0;
}
.related-links a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(63,142,144,0.35);
}
.related-links a:hover { color: var(--teal-dark); border-bottom-color: var(--teal); }

.copy p a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(63,142,144,0.35);
}
.copy p a:hover {
  color: var(--teal-dark);
  border-bottom-color: var(--teal);
}

.areas-box {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 24px;
}
.areas-box h3 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.areas-box ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}
.areas-box li {
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.7;
  scroll-margin-top: calc(var(--header-h, 80px) + 16px);
}
.areas-box a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(63,142,144,0.25);
  transition: color 0.15s, border-color 0.15s;
}
.areas-box a:hover {
  color: var(--teal-dark);
  border-bottom-color: var(--teal);
}

.mid-cta-banner {
  width: 100%;
  min-height: 300px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: var(--teal);
  border-top: 1px solid var(--teal-dark);
  border-bottom: 1px solid var(--teal-dark);
  padding: 40px 60px;
}
.mid-cta-banner-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
}
.mid-cta-banner-inner p {
  color: var(--white);
  font-size: clamp(22px, 3.6vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.35;
  font-weight: 400;
  margin: 0;
  max-width: none;
}
.mid-cta-banner-inner .cta-btn.primary { flex-shrink: 0; }

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  padding: 14px 20px;
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.06);
}
.sticky-cta.is-visible { display: flex; }
.sticky-cta .cta-btn { padding: 12px 20px; font-size: 10px; }
body.has-sticky-cta { padding-bottom: 72px; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 440px;
  box-shadow: var(--shadow);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
  border: none;
}
.review {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 24px;
}
.review .stars { color: var(--teal); letter-spacing: 2px; font-size: 12px; margin-bottom: 12px; }
.review p {
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.review strong {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
}

.reviews-gbp {
  margin-top: 1.25rem;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.reviews-gbp a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(63,142,144,0.35);
}
.reviews-gbp a:hover {
  color: var(--teal-dark);
  border-bottom-color: var(--teal);
}

/* Scoped so home .cta band is not overridden */
.location-main .full-section.cta {
  background: var(--soft);
}

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item h3 { font-size: 16px; font-weight: 400; margin-bottom: 8px; color: var(--black); }
.faq-item p {
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.9;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.areas-grid a {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  color: var(--black);
  text-decoration: none;
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: background 0.2s, border-color 0.2s;
}
.areas-grid a:hover { background: var(--teal-soft); border-color: var(--teal); }

/* Page-template CTA buttons (were in shared buttons; needed by near-me / service pages) */
.cta-btn {
  display: inline-block;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.cta-btn:hover {
  border-color: var(--black);
  color: var(--black);
}
.cta-btn.primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.cta-btn.primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}
.mid-cta-banner .cta-btn {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  background: transparent;
}
.mid-cta-banner .cta-btn:hover {
  border-color: var(--white);
  color: var(--white);
}
.mid-cta-banner .cta-btn.primary {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
}
.mid-cta-banner .cta-btn.primary:hover {
  background: var(--teal-soft);
  border-color: var(--teal-soft);
  color: var(--teal-dark);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

@media (max-width: 980px) {
  .hero-inner, .full-section, .mid-cta-banner { padding-left: 28px; padding-right: 28px; }
  .grid-2 { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-box ul { grid-template-columns: 1fr; }
}


/* ============================================================
   LOCATION AREA SECTION (include)
   ============================================================ */

.loc-area-section {
  width: 100%;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.loc-area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.loc-area-text {
  padding: 72px 64px;
  border-right: 1px solid var(--line);
}

.loc-area-eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.loc-area-heading {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--black);
  line-height: 1.2;
  margin: 0 0 24px;
}

.loc-area-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.75;
  margin: 0 0 40px;
  max-width: 500px;
}

.loc-services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
  columns: 2;
  column-gap: 24px;
}

.loc-services-list li {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  padding: 8px 0 8px 16px;
  position: relative;
  break-inside: avoid;
  border-bottom: 1px solid var(--line);
}

.loc-services-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background: var(--teal);
}

.loc-services-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.loc-services-list a:hover {
  color: var(--teal);
}

.loc-areas-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
}

.loc-areas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.loc-areas-pills span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
}

.loc-area-map {
  position: relative;
  min-height: 580px;
}

.loc-area-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.35) brightness(1.02) contrast(0.98);
}

@media (max-width: 900px) {
  .loc-area-inner { grid-template-columns: 1fr; }
  .loc-area-text {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 52px 40px;
  }
  .loc-area-map { min-height: 360px; }
  .loc-services-list { columns: 1; }
}

@media (max-width: 560px) {
  .loc-area-text { padding: 44px 20px; }
  .loc-area-map { min-height: 300px; }
}


/* ============================================================
   BLOG
   ============================================================ */

.acc-blog-main {
  padding-top: var(--header-h);
  min-height: 60vh;
  width: 100%;
}

.acc-blog-hero {
  position: relative;
  width: 100%;
  min-height: clamp(300px, 48vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.acc-blog-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: accBlogHeroZoom 14s ease-out forwards;
}

@keyframes accBlogHeroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.acc-blog-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.48) 42%,
    rgba(0,0,0,0.72) 100%
  );
}

.acc-blog-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(0,0,0,0.07) 60px,
    rgba(0,0,0,0.07) 61px
  );
  pointer-events: none;
}

.acc-blog-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 72px 48px 56px;
  text-align: center;
}

.acc-blog-title.acc-blog-title--hero {
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.65), 0 1px 3px rgba(0,0,0,0.9);
}

.acc-blog-article-meta.acc-blog-article-meta--hero {
  margin-bottom: 0;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 12px rgba(0,0,0,0.75);
}

.acc-blog-back--on-hero {
  position: absolute;
  top: 22px;
  left: 48px;
  z-index: 3;
  margin-bottom: 0;
  text-shadow: 0 1px 14px rgba(0,0,0,0.85);
}

.acc-blog-inner--below-hero {
  padding-top: 56px;
  padding-bottom: 100px;
}

.acc-blog-inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 48px 48px 100px;
}

.acc-blog-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 20px;
}

.acc-blog-line {
  width: 36px;
  height: 1px;
  background: var(--teal);
  margin-bottom: 28px;
}

.acc-blog-intro {
  font-size: 15px;
  line-height: 1.85;
  color: var(--black);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
  max-width: 52rem;
}

.acc-blog-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 24px;
  width: 100%;
}

.acc-blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.acc-blog-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.acc-blog-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
  padding: 28px 26px;
  transition: opacity 0.2s;
}

.acc-blog-card a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.acc-blog-card-date {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
}

.acc-blog-card-title {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.25;
}

.acc-blog-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--black);
  margin-top: auto;
}

.acc-blog-empty {
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
  padding: 24px 0;
  max-width: 52rem;
}

.acc-blog-article { width: 100%; }

.acc-blog-article-meta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 36px;
}

.acc-blog-back {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  margin-bottom: 36px;
  transition: color 0.2s;
}

.acc-blog-back:hover { color: var(--teal-dark); }

.acc-blog-prose {
  width: 100%;
  max-width: none;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.85;
  color: var(--black);
  letter-spacing: 0.01em;
}

.acc-blog-prose > * + * { margin-top: 1.1em; }

.acc-blog-prose h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: var(--black);
  margin-top: 2em;
  margin-bottom: 0.5em;
  letter-spacing: -0.02em;
}

.acc-blog-prose h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: var(--black);
  margin-top: 1.6em;
}

.acc-blog-prose a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.acc-blog-prose a:hover { color: var(--teal-dark); }

.acc-blog-prose ul, .acc-blog-prose ol { padding-left: 1.35em; }

.acc-blog-prose li { margin: 0.35em 0; }

.acc-blog-prose blockquote {
  border-left: 3px solid var(--teal-rgba);
  padding-left: 1.2em;
  color: var(--black);
  font-style: italic;
}

.acc-blog-prose code {
  font-size: 0.9em;
  background: var(--soft);
  padding: 0.12em 0.4em;
  border-radius: 4px;
}

.acc-blog-prose pre {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 16px 18px;
  overflow-x: auto;
  border-radius: var(--radius);
  font-size: 14px;
}

.acc-blog-prose pre code { background: none; padding: 0; }

.acc-blog-prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.acc-blog-notfound {
  font-size: var(--body-copy-size);
  color: var(--black);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 40rem;
}

@media (max-width: 960px) {
  .acc-blog-list {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .acc-blog-inner { padding: 36px 24px 80px; }
  .acc-blog-list { grid-template-columns: 1fr; }
  .acc-blog-card a { min-height: 0; }
  .acc-blog-hero-content { padding: 64px 24px 48px; }
  .acc-blog-back--on-hero { left: 24px; top: 18px; }
}

