/* =========================================================
   FRESEN AUTOSERVICE — V2 styles.css
   Light, professional, trust-oriented
   ========================================================= */

:root {
  /* Base */
  --bg:          #FFFFFF;
  --bg-soft:     #F5F7FA;
  --bg-muted:    #EEF2F7;
  --line:        #E3E8EF;
  --line-strong: #C9D2DE;

  /* Text */
  --text:        #0F1E33;
  --text-mid:    #4C5A70;
  --text-mute:   #8996A8;

  /* Brand */
  --brand:       #0A2540;   /* deep navy */
  --brand-2:     #163556;
  --accent:      #E76A34;   /* warm orange from logo */
  --accent-hov:  #D25720;
  --blue:        #2E7DD1;

  /* Layout */
  --container: 1200px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(15,30,51,0.06), 0 1px 2px rgba(15,30,51,0.04);
  --shadow:    0 8px 24px rgba(15,30,51,0.08), 0 2px 6px rgba(15,30,51,0.05);
  --shadow-lg: 0 20px 50px rgba(15,30,51,0.12);

  --ease:     cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 clamp(1.15rem, 4vw, 1.5rem);
  margin: 0 auto;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============ TYPOGRAPHY UTILITIES ============ */
.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: .75rem;
}
.eyebrow--light { color: #FFB48A; }

.txt-accent { color: var(--accent); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.4rem;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0;
  border: 2px solid transparent;
  transition: transform .2s var(--ease-out), background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--lg { padding: 1rem 1.75rem; font-size: 1rem; }

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-hov);
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--brand);
}
.btn--white:hover {
  background: var(--bg-soft);
  color: var(--brand);
  transform: translateY(-2px);
}

.btn--outline {
  border-color: var(--line-strong);
  color: var(--text);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  background: transparent;
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}
.btn--ghost--light { color: #fff; }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--brand);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: .5rem 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar__meta {
  display: none;
  align-items: center;
  gap: .5rem;
}
.topbar__sep { color: rgba(255,255,255,0.35); }
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
}
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,0.9);
}
.topbar__link:hover { color: var(--accent); }
.topbar__cta {
  padding: .35rem .9rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.8rem;
  transition: background-color .2s var(--ease);
}
.topbar__cta:hover { background: var(--accent-hov); color: #fff; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f9f9f9;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(.6rem, 2vw, 1rem);
  padding-block: clamp(.6rem, 2vw, .9rem);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: clamp(.5rem, 2vw, .75rem);
  min-width: 0;
  color: var(--brand);
}
.nav__logo-icon {
  color: var(--accent);
  display: inline-flex;
}
.nav__logo-icon svg { width: 40px; height: 24px; }
.nav__logo-img {
  height: clamp(34px, 9vw, 44px);
  width: auto;
  display: block;
  border-radius: 6px;
}
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(0.98rem, 3.6vw, 1.15rem);
  letter-spacing: 0.02em;
}
.nav__logo-sub {
  font-size: clamp(0.5rem, 1.9vw, 0.62rem);
  white-space: nowrap;
  font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0.14em;
  margin-top: 3px;
}

.nav__menu {
  display: none;
  gap: clamp(1rem, 2.2vw, 1.75rem);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
}
.nav__menu a {
  padding: .4rem 0;
  position: relative;
}
.nav__menu a::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease-out);
}
.nav__menu a:hover { color: var(--brand); }
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { display: none; }

.nav__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 90;
  padding: clamp(5.5rem, 16vw, 7rem) clamp(1.15rem, 5vw, 2rem)
           calc(2rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: clamp(.35rem, 2vw, 1rem);
}
.mobile-menu nav a {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.15rem, 5vw, 1.4rem);
  font-weight: 600;
  color: var(--brand);
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

/* ============ HERO CAROUSEL ============ */
.hero {
  --hero-band: clamp(200px, 28vw, 360px);
  position: relative;
  background-color: var(--brand);
  background-image: none;
  min-height: 0;
  overflow: hidden;
  color: #fff;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, var(--accent) 20%, #F5A16B 50%, var(--accent) 80%, transparent 100%) 1;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: clamp(24px, 7vw, 42px);
  height: clamp(24px, 7vw, 42px);
  border: 2px solid var(--accent);
  z-index: 4;
  pointer-events: none;
}
.hero::before {
  top: clamp(10px, 3vw, 18px); left: clamp(10px, 3vw, 18px);
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 6px;
}
.hero::after {
  bottom: clamp(10px, 3vw, 18px); right: clamp(10px, 3vw, 18px);
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 6px;
}
.hero__slides { position: relative; }
.hero__slide {
  position: relative;
  opacity: 0;
  transition: opacity 1s var(--ease-out);
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 10vw, 5rem) 0 clamp(3.5rem, 10vw, 6rem);
  pointer-events: none;
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; }

.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__bg--1 {
  background: url('assets/hero-wall-banner.webp') center top / cover no-repeat;
  background-color: #0A2540;
}
@media (min-width: 1300px) {
  .hero__bg--1 {
    bottom: 0;
    height: auto;
    background-image: url('assets/hero-desktop.webp');
    background-position: center center;
  }
}
.hero__bg--2,
.hero__bg--3 { display: none; }

.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,17,32,0.05) 0%, rgba(7,17,32,0.12) 34%, rgba(10,37,64,0.62) 52%, rgba(10,37,64,0.78) 78%, rgba(10,37,64,0.84) 100%);
  pointer-events: none;
}
@media (min-width: 1300px) {
  .hero__shade {
    background:
      linear-gradient(90deg, rgba(7,17,32,0.55) 0%, rgba(7,17,32,0.25) 35%, rgba(255,255,255,0) 55%, rgba(255,255,255,0.08) 80%, rgba(255,255,255,0.15) 100%);
  }
}

.hero__slide {
  justify-content: center;
  align-items: flex-start;
  padding-top: calc(var(--hero-band) + clamp(1rem, 2.5vw, 1.75rem));
  padding-bottom: clamp(2.25rem, 6vw, 3.25rem);
}
.hero__slide > .container {
  margin-left: auto;
  margin-right: auto;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero__content h1,
.hero__content p {
  margin-left: auto;
  margin-right: auto;
}
.hero__content .hero__cta {
  justify-content: center;
}

@media (min-width: 1300px) {
  .hero {
    min-height: clamp(560px, 82svh, 720px);
    background-image: none;
  }
  .hero__slide { background: none; }
  .hero__slides { height: 100%; min-height: inherit; }
  .hero__slide {
    position: absolute;
    inset: 0;
    justify-content: flex-start;
    align-items: center;
    padding: clamp(3.5rem, 10vw, 5rem) 0 clamp(3.5rem, 10vw, 6rem);
  }
  .hero__slide > .container {
    width: 50%;
    max-width: 50%;
    margin-left: 0;
    margin-right: auto;
    padding-left: clamp(1.5rem, 3vw, 3rem);
    padding-right: clamp(1.5rem, 3vw, 3rem);
  }
  .hero__content {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .hero__content h1,
  .hero__content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__content .hero__cta {
    justify-content: center;
  }
}
.hero__eyebrow {
  display: inline-block;
  max-width: 100%;
  padding: .35rem 1rem;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw + 1rem, 3.75rem);
  text-wrap: balance;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 20ch;
}
.hero p {
  font-size: clamp(1rem, 0.4vw + .9rem, 1.2rem);
  color: rgba(255,255,255,0.9);
  max-width: 55ch;
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.hero__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 3;
}
.hero__dots button {
  width: 32px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  transition: background-color .3s var(--ease), width .3s var(--ease);
}
.hero__dots button.is-active {
  background: var(--accent);
  width: 48px;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background-color .2s var(--ease);
  backdrop-filter: blur(6px);
}
.hero__arrow:hover { background: var(--accent); border-color: var(--accent); }
.hero__arrow--prev { left: 1.5rem; }
.hero__arrow--next { right: 1.5rem; }

/* ============ REQUEST BAR ============ */
.request {
  background: var(--brand);
  color: #fff;
  padding: 1.25rem 0;
  margin-top: -1px;
}
.request__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem 1.5rem;
  text-align: center;
}
.request__info h2 {
  color: #fff;
  font-size: clamp(1.05rem, .6vw + .9rem, 1.25rem);
  margin: 0;
  display: inline;
}
@media (min-width: 700px) {
  .request__info h2 { white-space: nowrap; }
}
.request__info p {
  display: none;
}

/* Compact phone CTA */
.request__phone {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem 1.15rem .55rem .7rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  transition: transform .2s var(--ease-out), background-color .2s var(--ease), box-shadow .2s var(--ease);
  box-shadow: 0 6px 16px -6px rgba(231,106,52,0.5);
}
.request__phone:hover {
  background: var(--accent-hov);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -6px rgba(231,106,52,0.6);
}
.request__phone-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.request__phone-ico svg { width: 15px; height: 15px; }
.request__phone-text { display: inline-flex; align-items: baseline; flex-wrap: wrap; gap: .4rem; line-height: 1; }
.request__phone-text small {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
}
.request__phone-text strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}

/* Secondary alt links */
.request__alt {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}
.request__alt-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,0.8);
  padding: .3rem .55rem;
  border-radius: 6px;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.request__alt-link:hover {
  color: var(--accent);
  background: rgba(255,255,255,0.06);
}
.request__alt-sep { color: rgba(255,255,255,0.35); }
.request__form {
  display: grid;
  gap: .6rem;
  grid-template-columns: 1fr;
}
.request__form select,
.request__form input {
  padding: .85rem 1rem;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.93rem;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.request__form select:focus,
.request__form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.14);
}
.request__form select option { background: var(--brand); color: #fff; }
.request__form input::placeholder { color: rgba(255,255,255,0.55); }
.request__form .btn { padding-block: .9rem; }

/* ============ SECTIONS ============ */
.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.section--soft { background: var(--bg-soft); }
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.section__head h2 {
  font-size: clamp(1.75rem, 2.5vw + .8rem, 2.5rem);
}

/* ============ INTRO SECTION ============ */
.intro {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
.intro__text h2 {
  font-size: clamp(1.75rem, 2.5vw + .8rem, 2.5rem);
  margin-bottom: 1.2rem;
}
.intro__text p {
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--text);
  font-weight: 500;
}
.check-list .check {
  flex-shrink: 0;
  margin-top: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.check-list .check::before {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.intro__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.intro__tile {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .2s var(--ease);
}
.intro__tile:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.intro__tile .tile-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.intro__tile strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  color: var(--brand);
  line-height: 1.2;
}
.intro__tile span:last-child {
  color: var(--text-mute);
  font-size: 0.85rem;
}
.intro__tile--1 { background: linear-gradient(135deg, #fff 0%, #FFF3EC 100%); }
.intro__tile--2 { background: linear-gradient(135deg, #fff 0%, #EEF4FB 100%); }
.intro__tile--3 { background: linear-gradient(135deg, #fff 0%, #FFF3EC 100%); }
.intro__tile--4 { background: linear-gradient(135deg, #fff 0%, #EEF4FB 100%); }

/* ============ CALLOUT (ervaring) ============ */
.callout {
  background: var(--brand);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(231,106,52,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(46,125,209,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.callout__inner {
  position: relative;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
.callout__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}
.callout__figure-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.callout__figure-suf {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-top: .5rem;
}
.callout__figure-label {
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-top: 1rem;
}
.callout__body h2 {
  color: #fff;
  font-size: clamp(1.75rem, 2.5vw + .8rem, 2.5rem);
  margin-bottom: 1.25rem;
}
.callout__body p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.callout__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* ============ PILLARS ============ */
.pillars {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.pillar {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .2s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.pillar__ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: #FFF3EC;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.pillar__ico svg { width: 28px; height: 28px; }
.pillar h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
}
.pillar p {
  color: var(--text-mid);
  font-size: 0.98rem;
}

/* ============ REVIEWS ============ */
.rating {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  color: var(--text-mid);
  font-size: 0.9rem;
}
.rating__stars {
  color: #F5A623;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}
.rating strong {
  color: var(--brand);
  font-size: 1.05rem;
  font-family: 'Poppins', sans-serif;
}

.reviews {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.review {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.review__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.review__head strong {
  display: block;
  color: var(--brand);
  font-size: 0.95rem;
}
.review__head span {
  color: var(--text-mute);
  font-size: 0.82rem;
}
.review__stars {
  color: #F5A623;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}
.review p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
}

.reviews__foot {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-mid);
}
.reviews__foot a { color: var(--accent); font-weight: 600; text-decoration: underline; }

/* ============ CONTACT ============ */
.contact {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
.contact__col h2 { font-size: clamp(1.5rem, 2vw + .8rem, 2.2rem); margin-bottom: 1rem; }
.contact__col p { color: var(--text-mid); margin-bottom: 1.5rem; }

.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact__list li {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.contact__list li > div { min-width: 0; }
.contact__list a { overflow-wrap: anywhere; }
.contact__list strong {
  display: block;
  font-size: 0.75rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.contact__list a {
  color: var(--brand);
  font-weight: 600;
}
.contact__list a:hover { color: var(--accent); }

.contact__ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #FFF3EC;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__ico svg { width: 20px; height: 20px; }

.hours strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: var(--brand);
  margin-bottom: .75rem;
}
.hours table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours td {
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-mid);
}
.hours tr:last-child td { border-bottom: none; }
.hours td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--brand);
}

.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  min-height: 260px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}
.map iframe { width: 100%; height: 100%; border: 0; }

/* ============ FOOTER ============ */
.footer {
  background: #10203a;
  color: rgba(255,255,255,0.75);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  font-size: 0.92rem;
}
.footer__inner {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer__logo-img {
  height: clamp(44px, 12vw, 56px);
  width: auto;
  display: block;
  border-radius: 6px;
}
.footer__brand p {
  max-width: 42ch;
  color: rgba(255,255,255,0.7);
}

.footer__col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer__col a { color: rgba(255,255,255,0.7); }
.footer__col a:hover { color: var(--accent); }
.footer__col strong { color: #fff; font-weight: 600; }

.footer__bar {
  padding: 1.25rem 0 calc(1.25rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer__bar em { font-style: normal; opacity: 0.7; }
.footer__bar-inner {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  text-align: center;
}
.footer__wip {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.footer__wip a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.28);
}
.footer__wip a:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.6);
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   MEDIA QUERIES — mobile first
   ≤600  phone      · 600+ large phone / small tablet
   860+  tablet     · 1024+ laptop      · 1280+ desktop
   ========================================================= */

/* ---- Large phone / small tablet portrait ---- */
@media (min-width: 600px) {
  .topbar__meta { display: flex; }
  .topbar__actions { margin: 0; }
  .reviews  { grid-template-columns: repeat(2, 1fr); }
  .pillars  { grid-template-columns: repeat(2, 1fr); }
  .hero__arrow { display: flex; }
  .request__form { grid-template-columns: 1.4fr 1fr 1fr auto; }
  .footer__inner { grid-template-columns: repeat(3, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
}

/* ---- Tablet: two-column content ---- */
@media (min-width: 860px) {
  .intro { grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
  .callout__inner { grid-template-columns: minmax(240px, 1fr) 1.9fr; gap: clamp(2rem, 5vw, 3.5rem); }
  .contact { grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 3.5rem); }
  .footer__bar-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---- Laptop: full desktop nav + three-up grids ---- */
@media (min-width: 1024px) {
  html { scroll-padding-top: 100px; }
  .nav__toggle { display: none; }
  .nav__menu { display: flex; }
  .nav__cta  { display: inline-flex; }
  .mobile-menu { display: none; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__brand { grid-column: auto; }
  .contact { grid-template-columns: 1fr 1.15fr; }
}

/* =========================================================
   SMALL-SCREEN REFINEMENTS
   ========================================================= */

/* ---- Phones (≤600px) ---- */
@media (max-width: 599.98px) {
  .section { padding: clamp(3rem, 11vw, 4.5rem) 0; }

  /* keep the hero short enough that the photo's logo is never cropped sideways */
  .hero { --hero-band: clamp(178px, 55vw, 250px); }
  .hero::before,
  .hero::after { display: none; }
  .hero__eyebrow { display: none; }
  .hero__slide { padding-bottom: 1.75rem; }
  .hero p { margin-bottom: 1.25rem; }
  .hero__cta { gap: .6rem; }

  /* Stack CTA pairs full width so they are easy to hit */
  .hero__cta,
  .callout__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__eyebrow { margin-bottom: 1.15rem; }
  .hero__cta .btn,
  .callout__cta .btn { width: 100%; }
  .intro__text > .btn { width: 100%; }
  .btn { min-height: 48px; }
  .btn--lg { padding: .95rem 1.4rem; }

  .hero__content { max-width: 100%; }
  .hero p { margin-bottom: 1.5rem; }

  /* Request strip becomes a stacked block */
  .request { padding: 1.5rem 0; }
  .request__inner { flex-direction: column; gap: 1rem; }
  .request__info { text-align: center; }
  .request__phone { width: 100%; justify-content: center; padding: .75rem 1.1rem; }
  .request__phone-text { align-items: center; justify-content: center; }
  .request__phone-text strong { font-size: 1.05rem; }
  .request__alt-link { padding: .5rem .6rem; }

  /* Denser cards */
  .pillar { padding: 1.5rem; }
  .review { padding: 1.5rem; }
  .intro__tile { padding: 1.25rem 1.1rem; }
  .intro__tile strong { font-size: 1.15rem; }
  .callout__figure { padding: 1.5rem; }
  .callout__figure-num { font-size: clamp(4rem, 22vw, 6rem); }
  .intro { gap: 2.25rem; }
  .contact { gap: 2rem; }

  /* Reviews stay legible */
  .review__head { align-items: flex-start; }
  .map { min-height: 240px; aspect-ratio: 1 / 1; }

  /* two-up so the footer isn't one long stack */
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.25rem;
    padding-bottom: 2.25rem;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__col:last-child { grid-column: 1 / -1; }
  .footer__col:last-child ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .35rem 1.25rem;
  }
  .footer__bar-inner { gap: .65rem; }
}

/* ---- Split hero layout: the photo already carries the brand ---- */
@media (max-width: 1299.98px) {
  .hero__eyebrow { display: none; }
  .hero__content { max-width: min(780px, 94%); }
  .hero h1 { font-size: clamp(1.6rem, 3vw + 0.55rem, 2.75rem); }
}

/* ---- Very small phones (≤380px) ---- */
@media (max-width: 380px) {
  .hero { --hero-band: clamp(178px, 58vw, 205px); }
  .hero__content { max-width: 99%; }
  .hero h1 { font-size: 1.4rem; }
  .hero p { font-size: 0.95rem; margin-bottom: 1rem; }
  .hero__slide { padding-bottom: 1.25rem; }
  .nav__logo-sub { display: none; }
  .intro__grid { grid-template-columns: 1fr; }
  .request__alt { font-size: 0.8rem; }
  .hours table { font-size: 0.88rem; }
  .contact__list li { gap: .75rem; }
  .contact__ico { width: 38px; height: 38px; border-radius: 10px; }
}

/* ---- Phone landscape: don't let the hero eat the screen ---- */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { --hero-band: clamp(150px, 22vw, 240px); }
  .mobile-menu { padding-top: 4.5rem; }
  .mobile-menu nav a { font-size: 1.1rem; padding: .3rem 0; }
}

/* ---- Touch devices: no lift-on-hover stuck states ---- */
@media (hover: none) {
  .pillar:hover,
  .intro__tile:hover,
  .review:hover,
  .btn:hover,
  .btn--primary:hover,
  .btn--white:hover,
  .request__phone:hover { transform: none; }
  .nav__menu a:hover::after { transform: scaleX(0); }
}

/* ---- Wide desktop: keep the original generous canvas ---- */
@media (min-width: 1280px) {
  .nav__menu { gap: 1.75rem; }
}

/* ============ 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;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============ FOCUS ============ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
