/* =========================================================
   Stilrent AB – Företagsstädning
   Brand: deep blue #004c94 · Font: Outfit
   ========================================================= */

:root {
  --blue:        #004c94;
  --blue-600:    #013f7c;
  --blue-700:    #013a72;
  --blue-900:    #002b54;
  --sky:         #2f9fd6;
  --sky-soft:    #e6f1fb;

  --ink:         #0f1d2e;
  --body:        #41506220;
  --text:        #34465a;
  --muted:       #6b7c90;

  --bg:          #ffffff;
  --bg-soft:     #f3f8fd;
  --line:        #e2ebf4;

  --eco:         #16a06a;
  --star:        #f6a623;

  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 10px 30px rgba(0, 50, 100, 0.08);
  --shadow-lg:   0 24px 60px rgba(0, 45, 90, 0.16);
  --container:   1180px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hidden { display: none !important; }
/* Lock background scroll while the mobile menu is open */
body.nav-open { overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 16px;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 17px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 22px rgba(0,76,148,0.28); }
.btn--primary:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,76,148,0.36); }
.btn--light { background: #fff; color: var(--blue); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--blue-900); color: rgba(255,255,255,0.85);
  font-size: 13.5px;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 40px; flex-wrap: wrap; }
.topbar__right { display: flex; gap: 22px; }
.topbar__item { transition: color .2s; }
.topbar__item:hover { color: #fff; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, border-color .3s;
}
.header.is-stuck { box-shadow: 0 6px 24px rgba(0,40,80,0.10); border-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 94px; gap: 20px; }
.brand__logo { height: 74px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav__link { font-weight: 500; color: var(--ink); font-size: 15.5px; position: relative; transition: color .2s; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--blue); transition: width .25s var(--ease);
}
.nav__link:hover { color: var(--blue); }
.nav__link:hover::after { width: 100%; }
.nav__phone { font-weight: 700; color: var(--blue); }
.nav__cta { margin-left: 4px; }
.nav__link.is-active { color: var(--blue); }
.nav__link.is-active::after { width: 100%; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.eyebrow--light { color: var(--sky); }
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section__sub { font-size: 18px; color: var(--muted); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 72px 0 88px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 520px at 88% -8%, rgba(47,159,214,0.26), transparent 60%),
    radial-gradient(720px 520px at 4% 6%, rgba(0,76,148,0.12), transparent 55%),
    linear-gradient(180deg, #d6e6f9 0%, #e7f0fb 100%);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero__title { font-size: clamp(34px, 5.2vw, 58px); font-weight: 800; margin-bottom: 20px; }
.hero__lead { font-size: 19px; color: var(--text); max-width: 540px; margin-bottom: 24px; }
.hero__usps { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 30px; }
.hero__usps li { display: flex; align-items: center; gap: 8px; font-weight: 500; color: var(--ink); font-size: 15.5px; }
.tick {
  display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%;
  background: var(--eco); color: #fff; font-size: 13px; font-weight: 700; flex: none;
}

.quickstart {
  display: flex; gap: 12px; background: #fff; padding: 12px; border-radius: var(--radius);
  box-shadow: var(--shadow); max-width: 560px; border: 1px solid var(--line);
}
.quickstart__field { flex: 1; display: flex; }
.quickstart select {
  width: 100%; border: 0; background: transparent; font-family: inherit; font-size: 16px;
  color: var(--ink); padding: 12px 14px; cursor: pointer; outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23004c94' stroke-width='2.5'%3E%3Cpath d='M2 5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center;
}
.hero__microcopy { margin-top: 14px; font-size: 14px; color: var(--text); }

.hero__media { position: relative; max-width: 460px; width: 100%; margin-inline: auto; }
.hero__img {
  width: 100%; border-radius: 24px; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; max-height: 420px; object-fit: cover;
}
.hero__badge {
  position: absolute; left: -22px; bottom: 32px; background: #fff; border-radius: 16px;
  padding: 16px 20px; box-shadow: var(--shadow-lg); display: grid;
  grid-template-columns: auto auto; grid-template-rows: auto auto; gap: 0 12px; align-items: center;
}
.hero__badge-score { grid-row: 1 / span 2; font-size: 36px; font-weight: 800; color: var(--blue); line-height: 1; }
.hero__badge-stars { color: var(--star); font-size: 15px; letter-spacing: 2px; }
.hero__badge-text { font-size: 12.5px; color: var(--muted); line-height: 1.3; }

/* ---------- Trust / logos ---------- */
.trustbar { padding: 40px 0; border-bottom: 1px solid var(--line); }
.trustbar__title { text-align: center; color: var(--muted); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 22px; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 40px; }
.logo-chip {
  font-weight: 700; font-size: 19px; letter-spacing: -0.01em; color: #9aa9bb;
  filter: grayscale(1); transition: color .25s, transform .25s; cursor: default;
}
.logo-chip:hover { color: var(--blue); transform: translateY(-2px); }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Service cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__media { aspect-ratio: 16/10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__title { font-size: 21px; }
.card__body p { color: var(--muted); font-size: 15.5px; flex: 1; }
.card__link { color: var(--blue); font-weight: 600; font-size: 15px; transition: gap .2s; }
.card__link:hover { text-decoration: underline; }

/* ---------- Pillars ---------- */
.pillar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 30px; text-align: center; box-shadow: var(--shadow);
  transition: transform .3s var(--ease);
}
.pillar:hover { transform: translateY(-4px); }
.pillar__icon {
  width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 20px;
  background: var(--sky-soft); display: grid; place-items: center; font-size: 32px;
}
.pillar h3 { font-size: 22px; margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: 15.5px; }

/* ---------- Stats ---------- */
.stats { background: var(--blue); color: #fff; padding: 60px 0; }
.stats .stat { text-align: center; }
.stat__num { display: block; font-size: clamp(34px, 4vw, 50px); font-weight: 800; line-height: 1; }
.stat__label { display: block; margin-top: 8px; color: rgba(255,255,255,0.82); font-size: 15px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; list-style: none; margin: 0; padding: 0; }
.step { list-style: none; }
.step { position: relative; padding-top: 8px; }
.step__num {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px;
  background: var(--blue); color: #fff; font-size: 24px; font-weight: 800; margin-bottom: 16px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15.5px; }
.steps .step:not(:last-child)::after {
  content: ""; position: absolute; top: 27px; left: 64px; right: -14px; height: 2px;
  background: linear-gradient(90deg, var(--line), transparent);
}

/* ---------- Quotes / testimonials ---------- */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px;
}
.quote__stars { color: var(--star); letter-spacing: 3px; font-size: 16px; }
.quote blockquote { font-size: 16.5px; color: var(--ink); line-height: 1.6; flex: 1; }
.quote figcaption { display: flex; flex-direction: column; }
.quote figcaption strong { color: var(--ink); }
.quote figcaption span { color: var(--muted); font-size: 14px; }

.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 48px; }
.badge {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; font-weight: 600; font-size: 14.5px; color: var(--blue);
  box-shadow: 0 4px 14px rgba(0,50,100,0.05);
}

/* ---------- Review carousel ---------- */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 6px 4px 14px; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide { flex: 0 0 calc((100% - 56px) / 3); scroll-snap-align: start; }
.carousel__slide .quote { height: 100%; }
.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; }
.carousel__btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--blue); font-size: 22px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow);
  transition: background .2s, transform .2s, opacity .2s;
}
.carousel__btn:hover:not(:disabled) { background: var(--sky-soft); transform: translateY(-2px); }
.carousel__btn:disabled { opacity: .35; cursor: default; }
.carousel__dots { display: flex; gap: 8px; }
.carousel__dot {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: var(--line); transition: background .25s, width .25s;
}
.carousel__dot.is-active { background: var(--blue); width: 26px; border-radius: 999px; }

/* Rating summary above the carousel */
.rating-summary { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 36px; }
.rating-summary__score { font-size: 46px; font-weight: 800; color: var(--ink); line-height: 1; }
.rating-summary__stars { color: var(--star); letter-spacing: 3px; font-size: 22px; }
.rating-summary__meta { color: var(--muted); font-size: 15px; }
.rating-summary__meta strong { color: var(--ink); }

/* ---------- Booking ---------- */
.booking { background: linear-gradient(180deg, var(--blue) 0%, var(--blue-900) 100%); color: #fff; }
.booking__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.booking__title { color: #fff; font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 16px; }
.booking__lead { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 26px; }
.booking__points { display: grid; gap: 12px; margin-bottom: 30px; }
.booking__points li { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 500; }
.booking__contact { display: flex; flex-direction: column; gap: 10px; }
.booking__contact-item { font-weight: 700; font-size: 18px; color: #fff; transition: opacity .2s; }
.booking__contact-item:hover { opacity: 0.85; }

.booking__formwrap { background: #fff; border-radius: 20px; padding: 34px; box-shadow: var(--shadow-lg); }
.form { display: flex; flex-direction: column; gap: 18px; position: relative; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__group { display: flex; flex-direction: column; gap: 7px; }
.form__group label { font-weight: 600; font-size: 14px; color: var(--ink); }
.form input, .form select, .form textarea {
  font-family: inherit; font-size: 15.5px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fbfdff; transition: border-color .2s, box-shadow .2s; outline: none; width: 100%;
}
.form select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23004c94' stroke-width='2.5'%3E%3Cpath d='M2 5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; cursor: pointer;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,76,148,0.12);
}
.form textarea { resize: vertical; min-height: 96px; }
.form__consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); cursor: pointer; }
.form__consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); flex: none; }
.form__note { font-size: 12.5px; color: var(--muted); text-align: center; }
.form__error {
  font-size: 14px; text-align: center; color: #b3261e;
  background: #fdecea; border: 1px solid #f5c6c2; border-radius: var(--radius-sm); padding: 12px 14px;
}
.form__error a { color: #b3261e; font-weight: 600; text-decoration: underline; }
.form__error[hidden] { display: none; }

.form__success[hidden] { display: none !important; }
.form__success {
  position: absolute; inset: -4px; background: #fff; border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 12px; padding: 30px; animation: pop .4s var(--ease);
}
.form__success-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--eco); color: #fff;
  font-size: 34px; display: grid; place-items: center;
}
.form__success h2 { font-size: 24px; }
.form__success p { color: var(--muted); max-width: 320px; }
@keyframes pop { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

/* ---------- CTA band ---------- */
.ctaband { background: var(--blue-900); color: #fff; padding: 64px 0; }
.ctaband__inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.ctaband h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.ctaband p { color: rgba(255,255,255,0.82); font-size: 18px; }
.ctaband__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: #07203c; color: rgba(255,255,255,0.72); padding-top: 64px; font-size: 15px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer__logo { height: 52px; width: auto; margin-bottom: 18px; background: #fff; padding: 8px 12px; border-radius: 10px; }
.footer__tagline { max-width: 320px; line-height: 1.6; }
.footer__social { display: flex; gap: 16px; margin-top: 18px; }
.footer__social a { font-weight: 600; color: #fff; transition: color .2s; }
.footer__social a:hover { color: var(--sky); }
.footer__col h3 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col a { transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__contact li { line-height: 1.5; margin-bottom: 14px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; font-size: 13.5px; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- Floating mobile CTA ---------- */
.floating-cta {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; display: none;
  background: var(--blue); color: #fff; font-weight: 700; padding: 14px 24px;
  border-radius: 999px; box-shadow: var(--shadow-lg);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  padding: 60px 0 56px;
  background:
    radial-gradient(800px 420px at 85% -25%, rgba(47,159,214,0.20), transparent 60%),
    linear-gradient(180deg, var(--blue) 0%, var(--blue-900) 100%);
}
.page-hero__inner { max-width: 730px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero__title { color: #fff; font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; margin-bottom: 16px; }
.page-hero__lead { color: rgba(255,255,255,0.85); font-size: 19px; max-width: 620px; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.split__media { max-width: 480px; width: 100%; }
.split--reverse .split__media { margin-left: auto; }
.split__media img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); aspect-ratio: 4/3; max-height: 360px; object-fit: cover; }
.split--reverse .split__media { order: 2; }
.split__body h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 16px; }
.split__body > p { color: var(--text); margin-bottom: 16px; }
.split__list { display: grid; gap: 12px; margin: 22px 0 28px; }
.split__list li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); font-weight: 500; }

/* ---------- Centered CTA under a grid ---------- */
.section__cta { text-align: center; margin-top: 46px; }

/* Centered checklist (e.g. "Varför välja Stilrent" on the about page) */
.about-why { max-width: 640px; margin: 0 auto; display: grid; gap: 14px; }
.about-why li { font-size: 16.5px; }

/* ---------- Values / quality (om-oss) ---------- */
.valuegrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value {
  display: flex; gap: 16px; align-items: flex-start; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
}
.value__icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--sky-soft);
  display: grid; place-items: center; font-size: 22px; flex: none;
}
.value h3 { font-size: 18px; margin-bottom: 6px; }
.value p { color: var(--muted); font-size: 15px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-info { display: grid; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { border-bottom: 0; }
.contact-item__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--sky-soft);
  display: grid; place-items: center; font-size: 23px; flex: none;
}
.contact-item__label { font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.contact-item__value { color: var(--muted); font-size: 15.5px; line-height: 1.5; }
.contact-item__value a { color: var(--blue); font-weight: 600; }
.contact-item__value a:hover { text-decoration: underline; }
.contact-map {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; }

/* ===================== Responsive ===================== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { order: -1; max-width: 460px; }
  .booking__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps .step::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .carousel__slide { flex-basis: calc((100% - 28px) / 2); }
  /* Consistent centered content when the hero/booking stack */
  .hero__content, .booking__intro { text-align: center; }
  .hero__lead, .booking__lead { margin-inline: auto; }
  .hero__usps { justify-content: center; }
  .hero__microcopy { text-align: center; }
  .quickstart { margin-inline: auto; }
  .booking__points li { justify-content: center; }
  .booking__contact { align-items: center; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed; inset: 0;
    width: 100%; height: 100vh; height: 100dvh;
    background: #fff;
    flex-direction: column; align-items: center; justify-content: center;
    padding: 88px 28px 40px; gap: 4px;
    transform: translateX(100%); transition: transform .35s var(--ease);
    z-index: 150; overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link {
    width: 100%; max-width: 300px; text-align: center; color: var(--ink);
    padding: 16px 8px; font-size: 20px; border-bottom: 1px solid var(--line);
  }
  .nav__link::after { display: none; }
  .nav__link.is-active { color: var(--blue); font-weight: 700; }
  .nav__phone { width: 100%; max-width: 300px; text-align: center; padding: 16px 8px; font-size: 20px; color: var(--blue); }
  .nav__cta { margin-top: 20px; width: 100%; max-width: 300px; text-align: center; }
  .nav-toggle { display: flex; z-index: 200; position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
  /* Center the logo, hamburger pinned right */
  .header__inner { position: relative; justify-content: center; }
  .brand { margin: 0 auto; }
  .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
  .floating-cta { display: inline-block; }
  .topbar__item:not(.topbar__right .topbar__item) { display: none; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__media { order: -1; }
  .valuegrid { grid-template-columns: 1fr; }
  /* Consistent centered alignment for stacked sections */
  .page-hero__inner { max-width: none; text-align: center; }
  .page-hero__lead { margin-inline: auto; }
  .breadcrumb { justify-content: center; }
  .split__body { text-align: center; }
  .split__list li { justify-content: center; }
  .split__media, .split--reverse .split__media { margin-inline: auto; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .topbar { display: none; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats .grid--3 { grid-template-columns: 1fr; gap: 32px 16px; }
  .steps { grid-template-columns: 1fr; }
  .quickstart { flex-direction: column; }
  .form__row { grid-template-columns: 1fr; }
  .booking__formwrap { padding: 24px; }
  .hero__badge { left: 12px; right: 12px; bottom: -24px; }
  .ctaband__inner { flex-direction: column; align-items: center; text-align: center; }
  .ctaband__actions { justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; align-items: center; }
  .carousel__slide { flex-basis: 100%; }
}
