/* =========================================
   Station Motor Company — Brand Stylesheet
   Palette sourced from the logo
   ========================================= */

/* Self-hosted fonts — no Google CDN dependency */
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/Montserrat.ttf') format('truetype');
  font-weight: 500 900;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter.ttf') format('truetype');
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --orange: #F49422;
  --orange-dark: #d97a10;
  --orange-light: #ffae3d;
  --black: #111111;
  --black-soft: #1c1c1c;
  --grey-900: #222;
  --grey-700: #4a4a4a;
  --grey-500: #8a8a8a;
  --grey-200: #e6e6e6;
  --grey-100: #f4f4f4;
  --white: #ffffff;

  --font-display: 'Montserrat', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --shadow-sm: 0 2px 6px rgba(0,0,0,.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.2);

  --radius: 6px;
  --radius-lg: 12px;

  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

/* Offset anchor targets so they clear the sticky header */
[id] { scroll-margin-top: 100px; }
.anchor-target { position: absolute; top: 0; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--black);
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.accent { color: var(--orange); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.eyebrow--light { color: var(--orange-light); }

.section { padding: 5rem 0; }
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section__head p { color: var(--grey-700); }

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .92rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--black); }
.btn--ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--link {
  background: none;
  color: var(--orange);
  padding: .9rem 0;
}
.btn--link:hover { color: var(--orange-dark); }
.btn--lg { padding: 1.2rem 2.75rem; font-size: 1rem; }
.btn--ghost-dark {
  background: transparent;
  color: var(--grey-700);
  border-color: var(--grey-200);
}
.btn--ghost-dark:hover { background: var(--grey-100); color: var(--black); border-color: var(--grey-500); }

/* =========================================
   Top bar
   ========================================= */
.topbar {
  background: var(--black);
  color: #ddd;
  font-size: .85rem;
  border-bottom: 1px solid #2a2a2a;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 1.25rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.topbar__left, .topbar__right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #ddd;
}
.topbar__phone {
  color: var(--orange);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.topbar__phone:hover { color: var(--orange-light); }
.icon { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* =========================================
   Header / Nav
   ========================================= */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  gap: 1.5rem;
}
.header__logo img {
  height: 62px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 1.75rem;
}
.nav a {
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  position: relative;
  padding: .5rem 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav a:hover::after { transform: scaleX(1); }
.nav__cta {
  padding: .85rem 1.6rem;
  font-size: .82rem;
  letter-spacing: .08em;
}
.nav__cta::after { display: none; }
.nav__cta:hover { color: var(--white); }

/* Services dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-toggle {
  cursor: pointer;
}
.nav__dropdown-toggle::after {
  content: '▾';
  font-size: .7em;
  margin-left: .3em;
  display: inline;
  position: static;
  height: auto;
  background: none;
  transform: none;
}
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
  padding: .5rem 0;
  z-index: 200;
  margin-top: .5rem;
}
/* Two-column layout for longer dropdowns */
.nav__dropdown-menu--wide {
  columns: 2;
  column-gap: 0;
  min-width: 440px;
}
.nav__dropdown-menu--wide a,
.nav__dropdown-menu--wide .nav__dropdown-divider {
  break-inside: avoid;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  display: block;
}
.nav__dropdown-menu a {
  display: block;
  padding: .6rem 1.25rem;
  font-size: .88rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  color: var(--grey-900);
}
.nav__dropdown-menu a::after { display: none; }
.nav__dropdown-menu a:hover {
  background: var(--grey-100);
  color: var(--orange);
}
.nav__dropdown-menu .nav__dropdown-divider {
  height: 1px;
  background: var(--grey-200);
  margin: .35rem 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--black);
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 60%, rgba(245,130,32,.25) 100%),
    radial-gradient(circle at 30% 40%, #2a2a2a 0%, #0a0a0a 70%);
  color: var(--white);
  overflow: hidden;
  padding: 5rem 0 6rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 40px, rgba(255,255,255,.02) 40px 80px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -100px; bottom: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,130,32,.25) 0%, transparent 60%);
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><g fill="none" stroke="rgba(245,130,32,0.15)" stroke-width="2"><circle cx="200" cy="200" r="180"/><circle cx="200" cy="200" r="140"/><circle cx="200" cy="200" r="100"/><circle cx="200" cy="200" r="60"/></g></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: .6;
}
.hero__inner {
  position: relative;
  z-index: 2;
}
.hero__content { max-width: 760px; }
.hero__eyebrow {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  padding: .35rem 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.hero__sub {
  font-size: 1.15rem;
  color: #dcdcdc;
  max-width: 620px;
  margin-bottom: 2rem;
}
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.hero__or {
  color: #aaa;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Booking widget */
.booking {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  border-top: 4px solid var(--orange);
}
.booking__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.booking__row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr auto;
  gap: 1rem;
  align-items: end;
}
.booking label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-700);
  margin-bottom: .35rem;
}
.booking input,
.booking select {
  width: 100%;
  padding: .85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  transition: border-color .2s;
}
.booking input:focus,
.booking select:focus {
  outline: none;
  border-color: var(--orange);
}
.booking__reg input {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #FFD814;
  border-color: #000;
  text-align: center;
}
.booking button { height: 54px; }

/* =========================================
   Trust strip
   ========================================= */
.trust {
  background: var(--grey-100);
  padding: 2rem 0;
  border-bottom: 1px solid var(--grey-200);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust__icon svg { width: 26px; height: 26px; fill: var(--white); }
.trust__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--black);
}
.trust__item span {
  color: var(--grey-700);
  font-size: .88rem;
}

/* =========================================
   Services
   ========================================= */
.services { background: var(--white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all .3s;
}
.service-card:hover .service-card__icon {
  background: var(--orange);
  color: var(--white);
}
.service-card__icon svg { width: 40px; height: 40px; }
.service-card h3 { margin-bottom: .75rem; }
.service-card p { color: var(--grey-700); }
.service-card__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.service-card__list li {
  padding: .35rem 0 .35rem 1.5rem;
  position: relative;
  font-size: .92rem;
  color: var(--grey-700);
}
.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}
.service-card__link {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .95rem;
  color: var(--orange);
}
.service-card__link:hover { color: var(--orange-dark); }

/* =========================================
   Price Banner
   ========================================= */
.price-banner {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.price-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-45deg, transparent 0 30px, rgba(245,130,32,.04) 30px 60px);
}
.price-banner__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.price-banner h2 {
  color: var(--white);
  margin-bottom: .25rem;
}
.price-banner p {
  color: #ccc;
  margin: 0;
  max-width: 520px;
}
.price-banner__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================
   About
   ========================================= */
.about { background: var(--grey-100); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--orange);
  aspect-ratio: 4/3;
}
.about__image-frame svg {
  width: 100%;
  height: 100%;
  display: block;
}
.about__content .lead {
  font-size: 1.1rem;
  color: var(--grey-900);
}
.about__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.5rem;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 500;
}
.about__list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* =========================================
   Reviews
   ========================================= */
.reviews { background: var(--white); }
.reviews__summary {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
  padding: .5rem 1.25rem;
  background: var(--grey-100);
  border-radius: 999px;
  font-size: .95rem;
  color: var(--grey-900);
}
.reviews__rating {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orange);
  font-size: 1.05rem;
}
.reviews__count { color: var(--grey-700); }
.reviews__link {
  font-weight: 600;
  font-size: .88rem;
  margin-left: .5rem;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review {
  background: var(--grey-100);
  padding: 2rem;
  margin: 0;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
  position: relative;
}
.review__stars {
  color: var(--orange);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.review blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--grey-900);
  line-height: 1.6;
}
.review figcaption {
  color: var(--grey-700);
  font-weight: 600;
  font-size: .9rem;
}

/* =========================================
   Contact
   ========================================= */
.contact { background: var(--grey-100); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
}
.contact__block { margin-bottom: 1.5rem; }
.contact__block h3 {
  font-size: 1rem;
  margin-bottom: .35rem;
  color: var(--orange);
  letter-spacing: 2px;
}
.contact__block p { margin: 0; color: var(--grey-900); }
.hours {
  width: 100%;
  border-collapse: collapse;
}
.hours td {
  padding: .4rem 0;
  border-bottom: 1px dashed var(--grey-200);
}
.hours td:last-child {
  text-align: right;
  font-weight: 600;
}
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 450px;
  border: 4px solid var(--black);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
  display: block;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: var(--black);
  color: #bbb;
  padding-top: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__logo {
  height: 72px;
  margin-bottom: 1rem;
  background: var(--white);
  padding: .6rem 1rem;
  border-radius: var(--radius);
  width: auto;
  max-width: 260px;
}
.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .5rem;
}
.footer h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 3px;
  background: var(--orange);
}
.footer ul {
  list-style: none;
  padding: 0; margin: 0;
}
.footer ul li { margin-bottom: .5rem; }
.footer a {
  color: #bbb;
  transition: color .2s, padding .2s;
}
.footer a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer address {
  font-style: normal;
  line-height: 1.8;
}
.footer__bottom {
  border-top: 1px solid #2a2a2a;
  padding: 1.5rem 0;
  text-align: center;
  font-size: .85rem;
}
.footer__bottom p { margin: 0; color: #888; }

/* =========================================
   Sticky mobile call
   ========================================= */
.sticky-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 58px; height: 58px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  animation: pulse 2s infinite;
}
.sticky-call svg { width: 26px; height: 26px; fill: var(--white); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,130,32,.6), var(--shadow-lg); }
  50% { box-shadow: 0 0 0 14px rgba(245,130,32,0), var(--shadow-lg); }
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { gap: 2.5rem; }
}

@media (max-width: 820px) {
  .topbar__item--hide-sm { display: none; }
  .topbar__inner { justify-content: center; text-align: center; }

  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 340px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right .3s ease;
    z-index: 99;
    overflow-y: auto;
  }
  .nav.is-open { right: 0; }
  .nav.is-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: -1;
  }
  .nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .nav ul li {
    width: 100%;
    border-bottom: 1px solid #2a2a2a;
  }
  .nav a {
    color: var(--white);
    display: block;
    padding: 1rem 0;
    font-size: 1.2rem;
  }
  .nav__dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
    display: none;
    columns: 1;
  }
  .nav__dropdown.is-open .nav__dropdown-menu { display: block; }
  .nav__dropdown-menu a {
    color: #ccc;
    padding: .6rem 0 .6rem 1.25rem;
    font-size: 1rem;
    border-bottom: 1px solid #222;
  }
  .nav__dropdown-menu a:hover { background: transparent; color: var(--orange); }
  .nav__dropdown-menu .nav__dropdown-divider { background: #333; }
  .nav__cta {
    margin-top: 1.5rem;
    width: 100%;
  }
  .nav-toggle { z-index: 101; position: relative; }

  .hero { padding: 3rem 0 4rem; }
  .hero__overlay { display: none; }
  .booking__row {
    grid-template-columns: 1fr;
  }
  .booking button { width: 100%; }

  .services__grid { grid-template-columns: 1fr; }
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__list { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer h4::after { left: 50%; transform: translateX(-50%); }
  .footer__logo { margin-left: auto; margin-right: auto; }
  .footer a:hover { padding-left: 0; }
  .price-banner__inner { flex-direction: column; text-align: center; }
  .price-banner__actions { justify-content: center; }

  .sticky-call { display: flex; }

  .section { padding: 3.5rem 0; }

  .header__logo img { height: 50px; }
}

@media (max-width: 480px) {
  .trust__grid { grid-template-columns: 1fr; }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .hero__or { text-align: center; }
  .btn { width: 100%; }
  .hero .btn { width: auto; }
}

/* Focus states */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* =========================================
   Booking Modal
   ========================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: modalFade .2s ease-out;
}
.modal[hidden] { display: none; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .75);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal__dialog {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  border-top: 5px solid var(--orange);
  animation: modalSlide .3s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes modalSlide {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--grey-100);
  color: var(--grey-700);
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  z-index: 2;
}
.modal__close:hover {
  background: var(--orange);
  color: var(--white);
  transform: rotate(90deg);
}

.modal__view { padding: 2rem 2.25rem; }
.modal__header { margin-bottom: 1.5rem; padding-right: 2.5rem; }
.modal__header h2 { margin-bottom: .5rem; }
.modal__summary {
  color: var(--grey-700);
  font-size: .92rem;
  margin: 0;
}
.modal__summary strong { color: var(--orange); }
.modal__summary-sep { margin: 0 .5rem; color: var(--grey-500); }

.modal__section { margin-bottom: 1.5rem; }
.modal__section:last-of-type { margin-bottom: 0; }
.modal__section-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-700);
  padding-bottom: .5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--grey-100);
}
.modal__section:empty { display: none; }

/* Form fields inside modal */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { margin-bottom: 1rem; }
.form-field:last-child { margin-bottom: 0; }
.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--grey-700);
  margin-bottom: .35rem;
}
.form-field .req { color: var(--orange); }
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field input[type="date"],
.form-field input[type="number"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: .75rem .9rem;
  font-family: inherit;
  font-size: .95rem;
  color: var(--black);
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,130,32,.15);
}
.form-field textarea {
  resize: vertical;
  min-height: 80px;
}
.form-field--check {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .65rem .9rem;
  background: var(--grey-100);
  border-radius: var(--radius);
  margin-bottom: .5rem;
  cursor: pointer;
  transition: background .2s;
}
.form-field--check:hover { background: #ececec; }
.form-field--check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin: 2px 0 0;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
}
.form-field--check label {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: .92rem;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  flex: 1;
}
.form-field--check .field-hint {
  display: block;
  color: var(--grey-700);
  font-size: .82rem;
  font-weight: 400;
  margin-top: .15rem;
}
.form-field--check .field-price {
  flex-shrink: 0;
  align-self: center;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .02em;
  padding: .3rem .7rem;
  border-radius: 999px;
  white-space: nowrap;
  min-width: 60px;
  text-align: center;
}
.form-field--check .field-price--quote {
  background: var(--grey-200);
  color: var(--grey-700);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
}

.modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--grey-200);
}
.modal__footer .btn { padding: .85rem 1.75rem; font-size: .85rem; }

.modal__message {
  padding: .85rem 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-top: 1rem;
  background: #fef0e6;
  border-left: 4px solid var(--orange);
  color: #7a3a00;
}
.modal__message--error {
  background: #fdecea;
  border-left-color: #d93025;
  color: #842029;
}

/* Loading state on submit */
.btn[data-loading="true"] {
  pointer-events: none;
  opacity: .7;
}
.btn[data-loading="true"] .btn__label { display: none; }
.btn[data-loading="true"] .btn__loading { display: inline; }

/* Success view */
.modal__view--success {
  text-align: center;
  padding: 3rem 2.25rem;
}
.modal__success-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.25rem;
}
.modal__success-icon svg { width: 100%; height: 100%; display: block; }
.modal__view--success h2 { margin-bottom: .75rem; }
.modal__view--success p { color: var(--grey-700); }
.modal__success-sub {
  margin: 1rem 0 1.75rem;
  font-size: .95rem;
}
.modal__success-sub a { color: var(--black); }

/* File upload & preview */
.form-field input[type="file"] {
  padding: .6rem .9rem;
  cursor: pointer;
  border: 2px dashed var(--grey-200);
  border-radius: var(--radius);
  background: var(--grey-100);
  width: 100%;
  transition: border-color .2s;
}
.form-field input[type="file"]:hover,
.form-field input[type="file"]:focus {
  border-color: var(--orange);
}
.form-field .field-hint {
  display: block;
  font-size: .82rem;
  color: var(--grey-500);
  margin-top: .35rem;
}
.file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}
.file-preview:empty { display: none; }
.file-preview__thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--grey-200);
}

/* Honeypot — visually hidden */
.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Modal responsive */
@media (max-width: 600px) {
  .modal { padding: 0; align-items: stretch; }
  .modal__dialog {
    border-radius: 0;
    max-height: 100vh;
    border-top-width: 4px;
  }
  .modal__view { padding: 1.5rem 1.25rem; }
  .modal__header { padding-right: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .modal__footer { flex-direction: column-reverse; }
  .modal__footer .btn { width: 100%; }
  .modal__close { top: .5rem; right: .5rem; }
}

/* Prevent body scroll when modal open */
body.modal-open { overflow: hidden; }

/* =========================================
   Sub-page: Page Hero
   ========================================= */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-45deg, transparent 0 30px, rgba(245,130,32,.04) 30px 60px);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,130,32,.2) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: .5rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.page-hero p {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  font-size: .88rem;
  font-family: var(--font-body);
}
.breadcrumb a {
  color: var(--orange);
  font-weight: 500;
  transition: color .2s;
}
.breadcrumb a:hover {
  color: var(--orange-light);
}
.breadcrumb__sep {
  color: var(--grey-500);
  font-size: .8rem;
}
.breadcrumb span:last-child {
  color: #ccc;
}

/* =========================================
   Sub-page: Page Sections
   ========================================= */
.page-section {
  padding: 4.5rem 0;
}
.page-section--grey {
  background: var(--grey-100);
}

/* =========================================
   Inline booking strip (service pages)
   ========================================= */
.inline-booking {
  background: var(--black);
  padding: 1.25rem 0;
  border-bottom: 3px solid var(--orange);
}
.inline-booking__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.inline-booking__text {
  color: #ccc;
  font-size: .95rem;
  flex: 1;
  min-width: 180px;
}
.inline-booking__text strong {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
}
.inline-booking__form {
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;
}
.inline-booking__reg {
  padding: .7rem .9rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  background: #FFD814;
  border: 2px solid #000;
  border-radius: var(--radius);
  width: 140px;
  color: var(--black);
}
.inline-booking__reg::placeholder { color: #999; font-weight: 500; font-size: .85rem; letter-spacing: 0; }
.inline-booking__reg:focus { outline: none; border-color: var(--orange); }
@media (max-width: 600px) {
  .inline-booking__inner { justify-content: center; text-align: center; }
  .inline-booking__form { width: 100%; justify-content: center; }
}

/* =========================================
   Sub-page: Page CTA Banner
   ========================================= */
.page-cta {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-45deg, transparent 0 30px, rgba(245,130,32,.04) 30px 60px);
  pointer-events: none;
}
.page-cta__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.page-cta h2 {
  color: var(--white);
  margin-bottom: .25rem;
}
.page-cta p {
  color: #ccc;
  margin: 0;
  max-width: 520px;
}
.page-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================
   Sub-page: Process Steps
   ========================================= */
.process {
  max-width: 780px;
  margin: 0 auto;
}
.process__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  position: relative;
}
.process__step:not(:last-child) {
  border-bottom: 1px solid var(--grey-200);
}
.process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  bottom: -1px;
  top: calc(100% - 1px);
  width: 2px;
  height: 0;
}
.process__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process__content h3 {
  margin-bottom: .35rem;
}
.process__content p {
  color: var(--grey-700);
  margin: 0;
}

/* =========================================
   Sub-page: Page Content Grid (Why / Features)
   ========================================= */
.page-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.page-content__item {
  padding: 2rem;
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
}
.page-content__item h3 {
  margin-bottom: .5rem;
}
.page-content__item p {
  color: var(--grey-700);
  margin: 0;
}

/* =========================================
   Sub-page: Responsive overrides
   ========================================= */
@media (max-width: 820px) {
  .page-hero { padding: 2.5rem 0 2rem; }
  .page-section { padding: 3rem 0; }
  .page-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .page-cta__actions { justify-content: center; }
  .page-content__grid { grid-template-columns: 1fr; }
  .process__step { gap: 1rem; }
  .process__number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .breadcrumb { font-size: .8rem; flex-wrap: wrap; }
  .page-cta__actions { flex-direction: column; align-items: stretch; }
}

/* =========================================
   FAQ accordion
   ========================================= */
.faq { padding: 3.5rem 0; }
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__category { margin-bottom: 2.5rem; }
.faq__category h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--orange);
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--grey-200);
  margin-bottom: 1rem;
}
.faq__item {
  border-bottom: 1px solid var(--grey-200);
}
.faq__item summary {
  padding: 1rem 2.5rem 1rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--orange);
  transition: transform .2s;
}
.faq__item[open] summary::after {
  content: '−';
}
.faq__item summary:hover { color: var(--orange); }
.faq__item .faq__answer {
  padding: 0 0 1.25rem;
  color: var(--grey-700);
  line-height: 1.7;
  max-width: 700px;
}
.faq__item .faq__answer a { font-weight: 600; }

/* Checklist grid (health check, etc.) */
.checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-200);
}
.checklist__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--orange);
}
.checklist__item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--black);
  margin-bottom: .15rem;
}
.checklist__item span {
  font-size: .88rem;
  color: var(--grey-700);
}
@media (max-width: 820px) {
  .checklist { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .checklist { grid-template-columns: 1fr; }
}

/* =========================================
   Before/After gallery slider
   ========================================= */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  border: 2px solid var(--grey-200);
}
.ba-slider__after {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ba-slider__before {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-slider__after img,
.ba-slider__before img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-slider__line {
  flex: 1;
  width: 3px;
  background: var(--orange);
}
.ba-slider__button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
  cursor: col-resize;
}
/* Placeholder cards (until real images are added) */
.ba-slider__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.ba-slider__placeholder--before { background: #ddd; }
.ba-slider__placeholder--after  { background: var(--grey-100); }
.ba-slider__placeholder span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--grey-700);
  margin-bottom: .5rem;
}
.ba-slider__placeholder p { color: var(--grey-500); font-size: .85rem; margin: 0; }
.ba-slider__placeholder code { background: var(--white); padding: .2rem .5rem; border-radius: 3px; font-size: .8rem; }
@media (max-width: 820px) {
  .gallery__grid { grid-template-columns: 1fr; }
}
