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

:root {
  --bg: #090c12;
  --bg-soft: #11161f;
  --bg-card: rgba(16, 20, 30, 0.92);
  --bg-card-strong: #101521;
  --text: #f4f7fb;
  --muted: rgba(244, 247, 251, 0.76);
  --muted-soft: rgba(244, 247, 251, 0.58);
  --border: rgba(255, 255, 255, 0.1);
  --accent: #184bc2;
  --accent-soft: rgba(24, 75, 194, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
  --header-height: 105px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(24, 75, 194, 0.18), transparent 28%),
    #0a0d14;
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: oklch(98.5% 0.006 255);
  color: var(--bg);
  border-radius: 999px;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background-image: url("images/swirling-pattern.webp");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--accent);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.logo-image {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--accent);
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  font-size: 0.84rem;
  color: var(--muted-soft);
}

.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  width: max-content;
  flex-wrap: nowrap;
  z-index: 3;
}

.site-nav a,
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

.social-link,
.social-link1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: static;
  transition: transform 0.2s ease, opacity 0.2s ease;
  flex: 0 0 auto;
}

.social-link {
  width: 60px;
  height: 60px;
}

.social-link1 {
  width: 84px;
  height: 84px;
}

.social-link img,
.social-link1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.social-link:hover,
.social-link:focus-visible,
.social-link1:hover,
.social-link1:focus-visible {
  transform: scale(1.08);
  opacity: 0.85;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible,
.reviews-link:hover,
.reviews-link:focus-visible {
  transform: translateY(-2px);
}

.button:active,
.reviews-link:active {
  transform: translateY(0);
  transition-duration: 0.08s;
}

.button-primary:hover {
  background: oklch(96% 0.01 255);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-primary,
.reviews-link {
  background: oklch(98.5% 0.006 255);
  color: #101521;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.62) 34%, rgba(5, 5, 5, 0.18) 58%, rgba(5, 5, 5, 0.08) 100%),
    url("images/hero.webp") center / cover no-repeat;
  border-bottom: 1px solid var(--accent);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 430px);
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - var(--header-height));
  padding: 5rem 0;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.97;
  font-weight: 700;
  letter-spacing: -0.04em;
  max-width: 9ch;
}

.hero-eyebrow,
.section-kicker,
.testimonial-label,
.meta-label,
.contact-label,
.slide-card-label {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 247, 251, 0.62);
}

.location-pill {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-description {
  max-width: 56ch;
  margin: 0;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}


.reassurance-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background-image: url("images/swirling-pattern.webp");
  border-bottom: 1px solid var(--accent);
}

  .reassurance-container {
    width: min(100% - 32px, 1400px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .review-side {
    max-width: 560px;
  }

  .section-tag {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
    margin-bottom: 18px;
  }

  .reassurance-title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
  }

  .reassurance-text {
    margin: 0 0 26px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1rem;
  }

  .google-review-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .google-review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }

  .google-badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: var(--bg);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .google-badge-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
  }

  .google-label {
    margin: 0 0 4px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.72);
  }

  .google-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .google-rating-number {
    font-size: 1.45rem;
    font-weight: 700;
  }

  .google-stars {
    letter-spacing: 0.08em;
    font-size: 1rem;
  }

  .google-review-quote {
    margin: 0 0 14px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
  }

  .google-review-author {
    margin: 0 0 20px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.58);
  }

  .reviews-link {
    display: inline-flex;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: 999px;
    background: oklch(98.5% 0.006 255);
    color: var(--bg-card-strong);
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .reviews-link:hover {
    transform: translateY(-1px);
    opacity: 0.92;
  }

  .comparison-side {
    width: 100%;
  }

  .comparison-card {
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--accent);
    background: var(--bg-card-strong);
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  }

  .comparison-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  .comparison-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    pointer-events: none;
  }

  .after-image-wrapper {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
  }

  #afterWrapper { width: 50%; }
  #comparisonLine { left: 50%; }
  #comparisonHandle { left: 50%; }

  .comparison-wrapper {
    cursor: ew-resize;
  }

  .comparison-wrapper.is-dragging {
    cursor: grabbing;
  }

  .comparison-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255,255,255,0.95);
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
  }

  .comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: oklch(98.5% 0.006 255);
    transform: translate(-50%, -50%);
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  }

  .comparison-handle::before {
    content: "↔";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--bg);
    font-size: 1.2rem;
    font-weight: 700;
  }

  .comparison-slider {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
  }

  @media (max-width: 900px) {
    .reassurance-section {
      padding: 72px 0;
    }

    .reassurance-container {
      width: min(100% - 24px, 1400px);
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .review-side {
      max-width: 100%;
    }
  }

  @media (max-width: 600px) {
    .reassurance-section {
      padding: 56px 0;
    }

    .reassurance-container {
      width: min(100% - 20px, 1400px);
      gap: 22px;
    }

    .google-review-card {
      padding: 20px;
      border-radius: 22px;
    }

    .comparison-card {
      border-radius: 22px;
    }

  .comparison-handle {
    width: 48px;
    height: 48px;
  }
}



.summary-card,
.value-card,
.extra-service-card,
.contact-card,
.glass-card {
  padding: 1.4rem;
}

.summary-card h3,
.value-card h3,
.extra-service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.3rem;
}

.section {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-value,
.section-extra,
.section-service-area,
.section-contact,
.section-faq {
  background:
    url("images/swirling-pattern.webp") center / cover no-repeat;
  border-bottom: 1px solid var(--accent);
}

.services-section {
  border-bottom: none;
}

.section-header {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-header-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2,
.glass-card h2 {
  margin: 0.45rem 0 0.9rem;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-header p,
.glass-card p,
.summary-card p,
.value-card p,
.extra-service-card p,
.contact-shell p {
  margin: 0;
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.value-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(160px, 220px) 1fr;
  column-gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  padding: 2.25rem 0;
  border-radius: 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: opacity 0.25s ease;
}

.value-card:hover {
  opacity: 0.7;
  transform: none;
  border-color: rgba(255, 255, 255, 0.07);
}

.value-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  margin-top: 0.1rem;
  background: rgba(24, 75, 194, 0.18);
  flex-shrink: 0;
}

.value-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.extra-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  margin-top: 2rem;
}

.section-extra {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-extra .section-header {
  margin-bottom: 0;
}

.section-extra .section-header h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  white-space: nowrap;
  margin: 0.35rem 0 0.6rem;
}

.section-extra .section-header p {
  margin: 0;
}

.section-value {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-value .section-header {
  margin-bottom: 0;
}

.section-value .section-header h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  white-space: nowrap;
  margin: 0.35rem 0 0.6rem;
}

.section-value .section-header p {
  margin: 0;
}

.extra-service-card {
  position: relative;
  padding: 1.5rem 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 26, 40, 0.85), rgba(12, 16, 26, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.extra-service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.extra-service-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.extra-service-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

.extra-service-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.extra-service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.about-signoff {
  margin-top: 1rem !important;
  font-style: italic;
  color: rgba(244, 247, 251, 0.62) !important;
  font-size: 0.95rem;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.service-area-grid .glass-card {
  display: flex;
  flex-direction: column;
}

.about-card {
  height: auto;
}

.about-card .about-signoff {
  margin-top: 1.25rem !important;
  padding-top: 0;
}

.service-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.service-area-tags span {
  display: inline-flex;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #fff;
  font-size: 0.88rem;
  border: 1px solid rgba(24, 75, 194, 0.28);
}

.location-map-wrap {
  margin-top: 1.2rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-map-wide {
  margin-top: 1.5rem;
  width: 100%;
}

.location-map-wide .location-map-image {
  height: 480px;
}

/* Slim service-area section so it fits in one viewport */
.section-service-area {
  padding: 2.25rem 0;
}

.section-service-area .service-area-grid {
  gap: 0.85rem;
}

.section-service-area .glass-card {
  padding: 1.1rem 1.25rem;
}

.section-service-area .glass-card h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 0.3rem 0 0.55rem;
  line-height: 1.05;
}

.section-service-area .glass-card p {
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 0.55rem;
}

.section-service-area .about-card .about-signoff {
  margin-top: 0.6rem !important;
  font-size: 0.9rem;
}

.section-service-area .service-area-tags {
  margin-top: 0.6rem;
  gap: 0.4rem;
}

.section-service-area .service-area-tags span {
  padding: 0.4rem 0.75rem;
  font-size: 0.88rem;
  cursor: default;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.section-service-area .service-area-tags span:hover {
  transform: translateY(-2px);
  background: rgba(24, 75, 194, 0.45);
  border-color: rgba(60, 110, 230, 0.7);
}

.section-service-area .location-map-wide {
  margin-top: 0.85rem;
}

.section-service-area .location-map-wide .location-map-image {
  height: 420px;
}

.location-map-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.faq-shell {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2.5rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 26, 40, 0.85), rgba(12, 16, 26, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: rgba(24, 75, 194, 0.55);
}

.faq-item[open] {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(24, 75, 194, 0.12), rgba(12, 16, 26, 0.95));
}

.faq-item summary {
  list-style: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.faq-item summary::after {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -4px;
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
  border-color: var(--accent);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.5rem 1.4rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 70ch;
}

.contact-shell {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.section-contact {
  padding: 4rem 0;
}

.section-contact .section-header {
  margin-bottom: 1.5rem;
}

.section-contact .section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.contact-owner {
  margin-bottom: 1.5rem;
  color: rgba(244, 247, 251, 0.72);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.1rem 1.25rem !important;
  border-radius: var(--radius-md);
  background: rgba(20, 26, 40, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.contact-label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.contact-value,
.footer-contact a {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
  color: #fff;
}

.contact-card .contact-value {
  transition: color 0.25s ease;
}

.contact-card:hover .contact-value {
  color: #fff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.contact-actions .button {
  min-height: 42px;
  padding: 0.65rem 1.1rem;
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: oklch(5% 0.014 255);
}

.footer-inner,
.footer-bottom {
  padding: 1.35rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
}

.footer-inner p,
.footer-bottom p {
  margin: 0;
  color: var(--muted-soft);
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

@media (max-width: 1160px) {
  .hero-grid,
  .service-area-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-nav,
  .footer-contact {
    justify-content: flex-start;
  }

  /* value-card: collapse from 3-col strip to 2-col (num + content) */
  .value-card {
    grid-template-columns: 44px 1fr;
    column-gap: 1.25rem;
  }

  .value-card p {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0.35rem;
  }
}

@media (max-width: 920px) {
  :root { --header-height: 86px; }

  .site-header { min-height: var(--header-height); }

  /* 1fr brand so it shrinks gracefully, auto actions so they never get squished */
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav   nav";
    align-items: center;
    min-height: var(--header-height);
    padding: 0.55rem 0 0;
    row-gap: 0;
    column-gap: 0.75rem;
  }

  .brand {
    grid-area: brand;
    gap: 0.5rem;
    align-items: center;
    min-width: 0; /* allow text to truncate instead of overflow */
  }
  .brand-text { min-width: 0; }
  .brand-name {
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-subtitle {
    font-size: 0.66rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-actions {
    grid-area: actions;
    gap: 0.35rem;
    flex-wrap: nowrap;
    align-items: center;
    flex-shrink: 0;
  }

  .logo-image { width: 46px; height: 46px; }

  .social-link  { width: 26px; height: 26px; }
  .social-link1 { width: 30px; height: 26px; }

  .header-actions .button {
    width: auto !important;
    min-height: 34px;
    padding: 0.32rem 0.85rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  /* Nav strip */
  .site-nav {
    grid-area: nav;
    position: static;
    left: auto;
    transform: none;
    justify-content: flex-start;
    gap: 1.35rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 0.48rem 0 0.42rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    scrollbar-width: none;
  }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { flex: 0 0 auto; font-size: 0.83rem; white-space: nowrap; }

  .reassurance-section { padding: 56px 0; }
  .reassurance-container {
    width: min(100% - 24px, 1400px);
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .review-side { max-width: 100%; }
  .services-section { padding: 56px 0; }
}

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

  .section {
    padding: 4rem 0;
  }

  .hero-grid {
    padding: 4rem 0;
  }

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

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

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

  .button {
    width: 100%;
  }

  /* Keep header Book Now inline even when .button is full-width */
  .header-actions .button {
    width: auto !important;
  }

  .extra-services-grid {
    grid-template-columns: 1fr;
  }

  .comparison-handle {
    width: 48px;
    height: 48px;
  }

  .location-map-image {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .reassurance-section,
  .services-section {
    padding: 56px 0;
  }

  .reassurance-container,
  .services-container {
    width: min(100% - 20px, 1400px);
  }

  .reassurance-container {
    gap: 22px;
  }

  .google-review-card,
  .vehicle-selector-card,
  .summary-card,
  .value-card,
  .extra-service-card,
  .glass-card,
  .contact-card {
    padding: 20px;
    border-radius: 22px;
  }

  .comparison-card {
    border-radius: 22px;
  }
}


/* ================= Services section ================= */

.services-section {
  position: relative;
  padding: 1.5rem 0 1.75rem;
  background-image: url("images/swirling-pattern.webp");
  background-size: cover;
  background-position: center;
}

.services-section .section-header {
  margin-bottom: 1.75rem;
}

.services-section .section-header h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  white-space: nowrap;
  margin: 0.4rem 0 0.6rem;
  line-height: 1.1;
}

.services-section .section-header p {
  font-size: 0.95rem;
  margin: 0;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform;
}

.service-card-interior { --card-image: url('images/interior-service.webp'); }
.service-card-exterior { --card-image: url('images/exterior-service.webp'); }
.service-card-bundle   { --card-image: url('images/bundle-service.webp'); }

.service-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease, filter 0.35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 14, 0) 42%,
    rgba(5, 8, 14, 0.55) 72%,
    rgba(5, 8, 14, 0.9) 100%
  );
  pointer-events: none;
}

.service-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.service-card-kicker {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.4rem;
}

.service-card-content h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 11ch;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.15rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  border-color: #2f68e0;
  box-shadow: 0 30px 70px rgba(24, 75, 194, 0.4);
  outline: none;
}

.service-card:hover .service-card-bg,
.service-card:focus-visible .service-card-bg {
  transform: scale(1.06);
}

.service-card:hover .service-card-arrow,
.service-card:focus-visible .service-card-arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .services-cards {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .service-card {
    aspect-ratio: 16 / 10;
  }

  .service-card-content {
    padding: 1.35rem 1.35rem 1.5rem;
  }
}

/* ================= Service detail pages ================= */

.detail-hero {
  position: relative;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--accent);
  overflow: hidden;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 14, 0.55) 0%,
    rgba(5, 8, 14, 0.35) 45%,
    rgba(5, 8, 14, 0.85) 100%
  );
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  padding: 2rem 0 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.back-link:hover,
.back-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(-3px);
}

.detail-hero-title {
  max-width: 720px;
}

.detail-hero-title .section-kicker {
  display: inline-block;
  margin-bottom: 0.6rem;
}

.detail-hero-title h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.detail-hero-title p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(244, 247, 251, 0.82);
  max-width: 58ch;
}

.detail-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(24, 75, 194, 0.55) 20%,
    rgba(24, 75, 194, 0.55) 80%,
    transparent
  );
  margin: 0;
}

.tier-section {
  padding: 2rem 0 2.5rem;
  background-image: url("images/swirling-pattern.webp");
  background-size: cover;
  background-position: center;
}

.tier-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.5rem 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(20, 26, 40, 0.92), rgba(12, 16, 26, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.tier-card.premium {
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(24, 75, 194, 0.22);
}

.tier-card:hover {
  transform: translateY(-4px);
}

.tier-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.tier-card-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 247, 251, 0.62);
}

.tier-card-badge {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tier-card h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.tier-card-description {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.size-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.size-option {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(244, 247, 251, 0.7);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.size-option:hover {
  color: #fff;
}

.size-option.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(24, 75, 194, 0.35);
}

.size-option:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.tier-included-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 247, 251, 0.55);
  margin-bottom: 0.45rem;
}

.tier-included {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.4rem;
}

.tier-included li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(244, 247, 251, 0.88);
  line-height: 1.35;
  font-size: 0.95rem;
}

.tier-included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.tier-card-footer {
  position: relative;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: end;
  gap: 1rem;
}

.tier-price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tier-price-label,
.tier-time-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 247, 251, 0.55);
}

.tier-price-value {
  display: inline-block;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.tier-time {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tier-time-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(244, 247, 251, 0.92);
}

.tier-book-btn {
  justify-self: end;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: #fff;
  color: #0a0d14;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, background 0.25s ease;
}

.tier-card.premium .tier-book-btn {
  background: var(--accent);
  color: #fff;
}

/* ============ Maintenance toggle ============ */

.tier-maint-btn {
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
  margin-top: 0.85rem;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: rgba(36, 196, 132, 0.06);
  border: 1.5px solid rgba(36, 196, 132, 0.55);
  color: #b8f0d4;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow:
    0 0 0 0 rgba(36, 196, 132, 0.55),
    0 0 18px rgba(36, 196, 132, 0.18);
  animation: maintGlow 2.4s ease-in-out infinite;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.tier-maint-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(120, 240, 180, 0.55) 50%,
    transparent 70%
  );
  background-size: 250% 100%;
  background-position: 200% 0;
  animation: maintShine 3s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

.tier-maint-btn > * {
  position: relative;
  z-index: 1;
}

.tier-maint-btn:hover {
  border-color: rgba(36, 196, 132, 0.95);
  color: #eafff3;
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 12px 32px rgba(36, 196, 132, 0.45),
    0 0 0 4px rgba(36, 196, 132, 0.12);
  animation-play-state: paused;
}

@keyframes maintGlow {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(36, 196, 132, 0.55),
      0 0 18px rgba(36, 196, 132, 0.18);
    transform: translateY(0);
  }
  50% {
    box-shadow:
      0 8px 26px rgba(36, 196, 132, 0.45),
      0 0 0 8px rgba(36, 196, 132, 0),
      0 0 28px rgba(36, 196, 132, 0.35);
    transform: translateY(-1px);
  }
}

@keyframes maintShine {
  0% { background-position: 200% 0; }
  60%, 100% { background-position: -120% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .tier-maint-btn { animation: none; }
  .tier-maint-btn::before { animation: none; display: none; }
}

.tier-maint-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  color: rgba(244, 247, 251, 0.55);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.tier-maint-btn-icon svg {
  width: 11px;
  height: 11px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tier-maint-btn[aria-pressed="true"] {
  background: rgba(36, 196, 132, 0.14);
  border-color: rgba(36, 196, 132, 0.85);
  color: #5fe6a8;
}

.tier-maint-btn[aria-pressed="true"] .tier-maint-btn-icon {
  background: #24c484;
  border-color: #24c484;
  color: #062417;
}

.tier-maint-btn[aria-pressed="true"] .tier-maint-btn-icon svg {
  opacity: 1;
  transform: scale(1);
}

/* Card visual when maintenance is on */
.tier-card.is-maintenance {
  border-color: rgba(36, 196, 132, 0.6);
  box-shadow:
    0 20px 60px rgba(36, 196, 132, 0.18),
    0 0 0 1px rgba(36, 196, 132, 0.25) inset;
}

.tier-card.is-maintenance .tier-card-badge {
  background: rgba(36, 196, 132, 0.18);
  color: #5fe6a8;
  border-color: rgba(36, 196, 132, 0.5);
}

/* Price flip animation */
.tier-price-value.is-flipping {
  animation: priceFlip 0.45s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tier-card.is-maintenance .tier-price-value {
  color: #5fe6a8;
}

@keyframes priceFlip {
  0%   { transform: translateY(0) scale(1);   opacity: 1; filter: blur(0); }
  45%  { transform: translateY(-10px) scale(0.85); opacity: 0; filter: blur(2px); }
  55%  { transform: translateY(10px) scale(0.85);  opacity: 0; filter: blur(2px); }
  100% { transform: translateY(0) scale(1);   opacity: 1; filter: blur(0); }
}

/* Strike-through original price reveal */
.tier-price-original {
  display: inline-block;
  margin-right: 0.55rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(244, 247, 251, 0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(244, 247, 251, 0.5);
  vertical-align: 0.18em;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
  pointer-events: none;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.tier-card.is-maintenance .tier-price-original {
  opacity: 1;
  transform: translateX(0);
  width: auto;
  margin-right: 0.55rem;
}

/* Save chip */
.tier-save-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.55rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(36, 196, 132, 0.18);
  color: #5fe6a8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: 0.32em;
  opacity: 0;
  transform: translateY(4px) scale(0.85);
  transition: opacity 0.3s ease 0.25s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s;
}

.tier-card.is-maintenance .tier-save-chip {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============ Maintenance Info Banner ============ */

.maintenance-info {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(36, 196, 132, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(36, 196, 132, 0.09), rgba(24, 75, 194, 0.06) 60%, transparent 100%),
    rgba(16, 20, 30, 0.6);
  backdrop-filter: blur(6px);
}

.maintenance-info-icon {
  flex: none;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(36, 196, 132, 0.14);
  color: #5fe6a8;
}

.maintenance-info-icon svg {
  width: 28px;
  height: 28px;
}

.maintenance-info-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5fe6a8;
  font-weight: 700;
}

.maintenance-info-body h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.maintenance-info-text {
  margin: 0 0 1.1rem;
  color: var(--muted);
  max-width: 62ch;
}

.maintenance-info-text strong {
  color: var(--text);
  font-weight: 700;
}

.maintenance-info-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.maintenance-info-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  color: rgba(244, 247, 251, 0.86);
}

.maintenance-info-bullet {
  flex: none;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(36, 196, 132, 0.18);
  color: #5fe6a8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 760px) {
  .maintenance-info {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.4rem;
    gap: 1.1rem;
  }
  .maintenance-info-points {
    grid-template-columns: 1fr;
  }
}

.tier-book-btn:hover,
.tier-book-btn:focus-visible {
  transform: translateY(-2px);
}

/* ============ Attention-seeking Book Now buttons ============ */

.site-header .button-primary,
.hero-buttons .button-primary,
.contact-actions .button-primary,
.tier-book-btn {
  position: relative;
  border: 2px solid var(--accent);
  animation: bookPulse 2.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(24, 75, 194, 0.55);
}

.site-header .button-primary::before,
.hero-buttons .button-primary::before,
.contact-actions .button-primary::before,
.tier-book-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  background-size: 250% 100%;
  background-position: 200% 0;
  animation: bookShine 3.2s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
  border-radius: 999px;
}

@keyframes bookPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(24, 75, 194, 0.55);
  }
  50% {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 30px rgba(24, 75, 194, 0.55), 0 0 0 8px rgba(24, 75, 194, 0);
  }
}

@keyframes bookShine {
  0% { background-position: 200% 0; }
  60%, 100% { background-position: -120% 0; }
}

.site-header .button-primary:hover,
.hero-buttons .button-primary:hover,
.contact-actions .button-primary:hover,
.tier-book-btn:hover {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 36px rgba(24, 75, 194, 0.55);
  border-color: #2f68e0;
}

@media (prefers-reduced-motion: reduce) {
  .site-header .button-primary,
  .hero-buttons .button-primary,
  .contact-actions .button-primary,
  .tier-book-btn {
    animation: none;
    box-shadow: none;
  }
  .site-header .button-primary::before,
  .hero-buttons .button-primary::before,
  .contact-actions .button-primary::before,
  .tier-book-btn::before {
    animation: none;
    display: none;
  }
}

@media (max-width: 900px) {
  .tier-cards {
    grid-template-columns: 1fr;
  }

  .tier-card {
    min-height: auto;
  }

  .tier-card-footer {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .tier-book-btn {
    grid-column: 1 / -1;
    justify-self: stretch;
    text-align: center;
  }

  .tier-maint-btn {
    width: 100%;
  }
}

/* ================================================================
   MOBILE — phones ≤ 480px
   Reference: iPhone SE 375pt · iPhone 14/15 390pt · Pixel 7 412pt
   ================================================================ */
@media (max-width: 480px) {
  body {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  /* ── Header fine-tune ── */
  :root { --header-height: 82px; }
  .logo-image     { width: 44px; height: 44px; }
  .brand-name     { font-size: 0.86rem; }
  .brand-subtitle { font-size: 0.62rem; }
  .social-link    { width: 24px; height: 24px; }
  .social-link1   { width: 28px; height: 24px; }
  .header-actions { gap: 0.28rem; }
  .header-actions .button {
    padding: 0.32rem 0.75rem;
    font-size: 0.78rem;
    min-height: 32px;
  }
  .site-nav { gap: 1.1rem; padding: 0.42rem 0 0.38rem; }
  .site-nav a { font-size: 0.8rem; }

  /* ── Hero ── */
  .hero-section {
    background-position: 65% center;
  }
  .hero-grid {
    padding: 2.5rem 0 3rem;
    min-height: calc(85vh - var(--header-height));
    gap: 1rem;
  }
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.1em; }
  .location-pill { font-size: 0.78rem; padding: 0.38rem 0.75rem; margin-bottom: 0.75rem; }
  .hero-copy h1 {
    font-size: clamp(2.1rem, 9.5vw, 2.7rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 0.8rem;
    max-width: 100%;
  }
  .hero-description { font-size: 0.97rem; line-height: 1.6; max-width: 100%; }
  .hero-buttons { flex-direction: column; gap: 0.65rem; margin-top: 1.25rem; }
  .hero-buttons .button { width: 100%; justify-content: center; font-size: 0.95rem; min-height: 48px; }

  /* ── General sections ── */
  .section { padding: 2.75rem 0; }
  .section-header { margin-bottom: 1.5rem; }
  .section-header h2, .glass-card h2 {
    font-size: clamp(1.6rem, 6.5vw, 2.15rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 0.6rem;
  }
  .section-header p,
  .glass-card p { font-size: 0.95rem; line-height: 1.6; }

  /* ── Reviews + before/after ── */
  .reassurance-section { padding: 2.5rem 0; }
  .reassurance-container { gap: 1.75rem; }
  .section-tag { font-size: 0.78rem; padding: 6px 13px; margin-bottom: 14px; }
  .reassurance-title {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
    line-height: 1.08;
    margin-bottom: 14px;
  }
  .reassurance-text { font-size: 0.94rem; line-height: 1.65; margin-bottom: 20px; }
  .google-review-card { padding: 1rem 1.1rem; border-radius: 20px; }
  .google-review-top { gap: 12px; margin-bottom: 14px; }
  .google-badge { width: 40px; height: 40px; }
  .google-label { font-size: 0.85rem; }
  .google-rating-number { font-size: 1.3rem; }
  .google-stars { font-size: 0.95rem; }
  .google-review-quote { font-size: 0.93rem; line-height: 1.65; margin-bottom: 10px; }
  .google-review-author { font-size: 0.88rem; margin-bottom: 16px; }
  .reviews-link { padding: 0.55rem 1rem; font-size: 0.9rem; }
  .comparison-card { border-radius: 20px; border-width: 1.5px; }
  .comparison-wrapper { aspect-ratio: 4 / 3; }
  .comparison-handle { width: 44px; height: 44px; }
  .comparison-handle::before { font-size: 1.05rem; }

  /* ── Services ── */
  .services-section { padding: 2.5rem 0; }
  .services-section .section-header h2 { white-space: normal; }
  .services-cards { gap: 1rem; margin-top: 1.5rem; }
  .service-card { aspect-ratio: 16 / 9; border-radius: 20px; border-width: 1.5px; }
  .service-card-content { padding: 0.9rem 1.1rem 1.1rem; }
  .service-card-content h3 { font-size: 1.2rem; max-width: 100%; }
  .service-card-kicker { font-size: 0.65rem; margin-bottom: 0.25rem; }
  .service-card-arrow { width: 38px; height: 38px; font-size: 0.95rem; }

  /* ── Add-ons ── */
  .section-extra { padding: 2.5rem 0; }
  .section-extra .section-header h2 {
    white-space: normal;
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }
  .extra-services-grid { grid-template-columns: 1fr; gap: 0.8rem; margin-top: 1.25rem; }
  .extra-service-card { padding: 1rem 1.1rem; gap: 0.4rem; border-radius: 18px; }
  .extra-service-card h3 { font-size: 1rem; }
  .extra-service-card p { font-size: 0.9rem; line-height: 1.55; }
  .extra-service-price { font-size: 0.98rem; }

  /* ── Why Euro Detailing ── */
  .section-value { padding: 2.5rem 0; }
  .section-value .section-header h2 {
    white-space: normal;
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }
  .value-grid { margin-top: 1.75rem; }
  .value-card { padding: 1.5rem 0; column-gap: 1rem; }
  .value-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
  .value-card p { font-size: 0.9rem; line-height: 1.58; }
  .value-num { width: 36px; height: 36px; font-size: 0.8rem; margin-top: 0.05rem; }

  /* ── Service area + map ── */
  .section-service-area { padding: 2.5rem 0; }
  .service-area-grid { gap: 0.85rem; }
  .section-service-area .glass-card { padding: 1.1rem 1.1rem; border-radius: 20px; }
  .section-service-area .glass-card h2 {
    font-size: clamp(1.3rem, 6vw, 1.65rem);
    margin-bottom: 0.5rem;
  }
  .section-service-area .glass-card p { font-size: 0.91rem; line-height: 1.55; margin-bottom: 0.5rem; }
  .section-service-area .service-area-tags { gap: 0.4rem; margin-top: 0.65rem; }
  .section-service-area .service-area-tags span {
    padding: 0.38rem 0.75rem;
    font-size: 0.82rem;
    border-radius: 999px;
  }
  .section-service-area .location-map-wide .location-map-image,
  .location-map-image { height: 220px; }
  .location-map-wrap { border-radius: 18px; }

  /* ── FAQ ── */
  .section-faq { padding: 2.75rem 0; }
  .faq-shell { max-width: 100%; }
  .faq-list { gap: 0.55rem; margin-top: 1.5rem; }
  .faq-item { border-radius: 18px; }
  .faq-item summary {
    padding: 1rem 1.1rem;
    font-size: 0.98rem;
    min-height: 52px;
    line-height: 1.35;
    gap: 0.75rem;
  }
  .faq-item summary::after { width: 11px; height: 11px; }
  .faq-item p { padding: 0 1.1rem 1.1rem; font-size: 0.93rem; line-height: 1.65; }

  /* ── Contact ── */
  .section-contact { padding: 2.75rem 0; }
  .section-contact .section-header h2 { font-size: clamp(1.6rem, 7vw, 2.1rem); }
  .contact-grid { grid-template-columns: 1fr; gap: 0.6rem; margin-bottom: 0; }
  .contact-card {
    padding: 1rem 1.1rem !important;
    border-radius: 18px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.85rem;
  }
  .contact-label { font-size: 0.68rem; min-width: 42px; letter-spacing: 0.14em; }
  .contact-value { font-size: 0.97rem; }
  .contact-actions { gap: 0.6rem; margin-top: 1.25rem; flex-direction: column; }
  .contact-actions .button { width: 100%; min-height: 48px; font-size: 0.95rem; justify-content: center; }

  /* ── Footer ── */
  .site-footer { padding-top: 0.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem 0 1rem; }
  .footer-inner strong { font-size: 1rem; }
  .footer-inner > div > p { font-size: 0.88rem; margin-top: 0.25rem; }
  .footer-nav, .footer-contact { justify-content: flex-start; gap: 0.85rem; flex-wrap: wrap; }
  .footer-nav a, .footer-contact a { font-size: 0.9rem; }
  .footer-bottom { padding: 0.9rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
  .footer-bottom p { font-size: 0.8rem; }
}

/* ── Ultra-small phones ≤ 360px (Galaxy S8, Fold cover) ── */
@media (max-width: 360px) {
  .container { width: min(calc(100% - 1rem), var(--container)); }
  .brand-subtitle { display: none; }
  .brand-name { font-size: 0.9rem; }
  .logo-image { width: 34px; height: 34px; }
  .social-link  { width: 22px; height: 22px; }
  .social-link1 { width: 26px; height: 22px; }
  .header-actions .button { padding: 0.35rem 0.75rem; font-size: 0.78rem; }
  .hero-copy h1 { font-size: 1.9rem; }
  .service-card { aspect-ratio: 3 / 2; }
}

/* ── Landscape phones — hero doesn't eat the viewport ── */
@media (max-height: 500px) and (orientation: landscape) {
  :root { --header-height: 54px; }
  .site-header { min-height: 54px; }
  .header-inner { padding: 0.3rem 0 0; }
  .hero-grid { min-height: auto; padding: 1.75rem 0 2.25rem; }
  .hero-copy h1 { font-size: clamp(1.85rem, 5vw, 2.4rem); }
  .hero-buttons { flex-direction: row; }
  .hero-buttons .button { width: auto; }
}

/* ── FAQ open animation ── */
@keyframes faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item[open] p {
  animation: faq-reveal 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Safe-area insets for notched iPhones ── */
@supports (padding: env(safe-area-inset-left)) {
  .site-header .container,
  .site-footer .container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  .site-footer .footer-bottom {
    padding-bottom: max(0.9rem, env(safe-area-inset-bottom));
  }
}