/* =============================================
   Chicago Ice Cream Trucks — Pixel-match styles
   ============================================= */

:root {
  /* Brand colors */
  --blue-bg: #0198ea;
  --pink: #ed2bdd;
  --pink-soft: rgba(237, 43, 221, 0.12);
  --banner: var(--blue-bg);
  --banner-dark: var(--blue-bg);

  /* Brand text & UI accents (not backgrounds) */
  --navy: #002A40;
  --navy-mid: #003D5C;
  --navy-light: #015580;
  --red: #E63946;
  --red-dark: #c5303c;
  --red-soft: #fff0f1;
  --cyan: var(--blue-bg);
  --cyan-dark: var(--blue-bg);
  --cyan-soft: rgba(1, 152, 234, 0.12);
  --text-on-blue: #ffffff;
  --text-on-blue-muted: rgba(255, 255, 255, 0.88);
  --purple: #7C5CBF;
  --lavender: #9b8fd4;

  /* Neutrals & surfaces */
  --white: #ffffff;
  --off-white: #f4f6fa;
  --surface: #fafbfc;
  --grey-border: #dde2ea;
  --grey-border-hover: #c8d0dc;
  --grey-text: #5c6578;
  --grey-dark: #2d3748;
  --black: #0a0a0a;

  /* Semantic text */
  --text-primary: var(--navy);
  --text-muted: var(--grey-text);
  --text-on-dark: rgba(255, 255, 255, 0.88);
  --text-on-dark-subtle: rgba(255, 255, 255, 0.62);

  /* Layout */
  --radius: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-pill: 100px;
  --shadow-sm: 0 2px 14px rgba(0, 42, 64, 0.06);
  --shadow-md: 0 10px 36px rgba(0, 42, 64, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 42, 64, 0.14);
  --shadow-pink: 0 8px 28px rgba(237, 43, 221, 0.35);
  --font: 'Poppins', system-ui, sans-serif;
  --max-w: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --focus-ring: 0 0 0 3px var(--white), 0 0 0 5px var(--navy-mid);
}

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

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--cyan-soft);
  color: var(--navy);
}

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.btn:focus-visible,
.nav a:focus-visible,
.area-tag:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Typography ---- */
.text-red { color: var(--red); }
.text-cyan { color: var(--cyan); }
.text-pink { color: var(--pink); }

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.eyebrow--purple { color: var(--purple); }
.eyebrow--lavender { color: var(--lavender); }
.eyebrow--cyan { color: var(--cyan); }

.heading-lg {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--navy);
}

.heading-lg--white { color: var(--white); }

.link-arrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s var(--ease-out), gap 0.2s var(--ease-out);
}

.link-arrow:hover {
  color: var(--red-dark);
}

.link-arrow--magenta {
  color: var(--pink);
  font-weight: 700;
}

.link-arrow--magenta:hover {
  filter: brightness(0.92);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  padding: 13px 26px;
  cursor: pointer;
  transition:
    background 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out),
    color 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    transform 0.18s var(--ease-out);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--book {
  background: var(--pink);
  color: var(--white);
  padding: 11px 24px;
  font-size: 13px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 22px rgba(237, 43, 221, 0.35);
}

.btn--book:hover {
  filter: brightness(0.94);
  box-shadow: 0 12px 28px rgba(237, 43, 221, 0.42);
}

.btn--pink {
  background: var(--pink);
  color: var(--white);
  border-color: transparent;
  padding: 14px 24px;
  font-size: 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 28px rgba(237, 43, 221, 0.35);
  gap: 8px;
}

.btn--pink:hover {
  filter: brightness(0.94);
  box-shadow: 0 14px 32px rgba(237, 43, 221, 0.42);
}

.btn--pink svg,
.btn--outline-white svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.75);
  padding: 14px 24px;
  font-size: 14px;
  border-radius: var(--radius-pill);
  gap: 8px;
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn--navy {
  background: var(--blue-bg);
  color: var(--white);
  padding: 16px 34px;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(0, 42, 64, 0.15);
}

.btn--navy:hover {
  filter: brightness(0.94);
  box-shadow: 0 12px 32px rgba(0, 42, 64, 0.2);
}

.btn--outline-navy {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 26px;
  font-size: 14px;
  border-radius: var(--radius);
  display: inline-flex;
}

.btn--outline-navy:hover {
  background: var(--blue-bg);
  color: var(--white);
  border-color: var(--blue-bg);
  box-shadow: var(--shadow-sm);
}

/* ---- Pill ---- */
.pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pill--location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  color: var(--pink);
  margin-bottom: 22px;
  padding: 8px 16px;
  box-shadow: 0 4px 16px rgba(0, 42, 64, 0.08);
}

.pill--location svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* =============================================
   HEADER (inside hero)
   ============================================= */
.header {
  position: relative;
  z-index: 5;
  margin-bottom: 36px;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border-radius: 20px;
  padding: 12px 12px 12px 20px;
  box-shadow: 0 12px 40px rgba(0, 42, 64, 0.12);
}

.header__inner .nav {
  flex: 1;
  justify-content: center;
}

.header__inner .btn--book {
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo__img--footer {
  height: 56px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.header .nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-text);
  padding: 4px 0;
  transition: color 0.2s var(--ease-out);
}

.header .nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: width 0.25s var(--ease-out);
}

.header .nav a:hover {
  color: var(--pink);
}

.header .nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  cursor: pointer;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  background: var(--white);
  z-index: 401;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

.nav-toggle__input:checked + .nav-toggle .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle__input:checked + .nav-toggle .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle__input:checked + .nav-toggle .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

html:has(.nav-toggle__input:checked) {
  overflow: hidden;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.14) 0%, transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.1) 0%, transparent 28%),
    var(--blue-bg);
  min-height: 100vh;
  padding: 28px 0 0;
  box-sizing: border-box;
  overflow: hidden;
}

.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__decor-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(56px, 1fr));
  grid-auto-rows: 72px;
  gap: 8px 16px;
  width: 108%;
  height: 108%;
  margin: -4%;
  padding: 24px 12px;
  align-content: start;
  justify-items: center;
}

.hero__decor-grid .ph-thin {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: var(--white);
  opacity: 0.14;
  line-height: 1;
}

.hero__decor-grid .ph-thin:nth-child(6n) {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  opacity: 0.18;
}

.hero__decor-grid .ph-thin:nth-child(4n + 2) {
  transform: rotate(-12deg);
}

.hero__decor-grid .ph-thin:nth-child(4n + 3) {
  transform: rotate(10deg);
  opacity: 0.11;
}

.hero__shell {
  position: relative;
  z-index: 2;
  padding-top: 8px;
  padding-bottom: 72px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__title {
  font-size: clamp(2.5rem, 4.8vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 18px;
}

.hero__subtitle {
  color: var(--text-on-blue-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.trust-pill:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}

.trust-pill svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.9;
}

.hero__visual {
  position: relative;
  padding-bottom: 28px;
}

.hero__image-wrap {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 42, 64, 0.22);
  aspect-ratio: 4 / 3.2;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__stats {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.hero__stat {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 16px;
  min-height: 68px;
  box-shadow: 0 12px 32px rgba(0, 42, 64, 0.14);
}

.hero__stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
}

.hero__stat-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.hero__stat-icon--star {
  background: var(--pink-soft);
  color: var(--pink);
}

.hero__stat-icon--calendar {
  background: var(--pink-soft);
  color: var(--pink);
}

.hero__stat-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero__stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}

.hero__stat-body > span {
  display: block;
  font-size: 11px;
  color: var(--grey-text);
  margin-top: 2px;
  line-height: 1.3;
}

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 72px;
  background: var(--white);
  clip-path: ellipse(120% 100% at 50% 100%);
  z-index: 1;
}

/* =============================================
   TICKER
   ============================================= */
.ticker {
  background: var(--pink);
  overflow: hidden;
  padding: 11px 0;
}

.ticker__wrap {
  display: flex;
  width: max-content;
  animation: scroll-ticker 28s linear infinite;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
  flex-shrink: 0;
}

.ticker__track span {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.ticker__track i {
  font-style: normal;
  opacity: 0.35;
  font-size: 10px;
}

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

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 72px 0;
  background: var(--white);
}

.section--navy {
  background: var(--blue-bg);
  color: var(--text-on-blue);
}

.section--navy .heading-lg--white {
  color: var(--white);
}

.section--navy .eyebrow--cyan {
  color: var(--pink);
}
.section--light { background: var(--off-white); }

.section-intro { margin-bottom: 36px; }
.section-intro--center { text-align: center; }
.section-cta { text-align: center; margin-top: 40px; }

/* ---- Services top ---- */
.services-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.services-top__products {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.product-float {
  width: auto;
  height: 130px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 12px 20px rgba(0, 42, 64, 0.1));
  transition: transform 0.25s ease;
}

.product-float:hover {
  transform: translateY(-8px) scale(1.03);
}

.product-float--1 { height: 132px; }
.product-float--2 { height: 128px; margin-bottom: 2px; }
.product-float--3 { height: 130px; }
.product-float--4 { height: 134px; }

/* ---- Service cards grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.svc-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 22px 22px 22px 24px;
  min-height: 168px;
  transition:
    box-shadow 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    background 0.25s var(--ease-out);
}

.svc-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: var(--grey-border-hover);
  transform: translateY(-3px);
}

.svc-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-right: 4px;
}

.svc-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.svc-card__icon svg {
  width: 22px;
  height: 22px;
}

.svc-card__icon--pink {
  color: var(--pink);
  background: var(--pink-soft);
  border-radius: 10px;
}

.svc-card__icon--blue {
  color: var(--cyan-dark);
  background: var(--cyan-soft);
  border-radius: 10px;
}

.svc-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.svc-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}

.svc-card .link-arrow {
  font-size: 13px;
  margin-top: auto;
}

.svc-card__photo {
  flex-shrink: 0;
  width: 118px;
  align-self: center;
}

.svc-card__photo img {
  width: 118px;
  height: 88px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: transform 0.35s var(--ease-out);
}

.svc-card:hover .svc-card__photo img {
  transform: scale(1.04);
}

/* ---- How it works steps ---- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.step-box {
  border: 1.5px solid rgba(0, 42, 64, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  text-align: center;
  color: var(--navy);
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  transition:
    border-color 0.25s var(--ease-out),
    background 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
}

.step-box:hover {
  border-color: rgba(237, 43, 221, 0.45);
  background: var(--white);
  transform: translateY(-4px);
}

.step-box__num {
  display: block;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 42, 64, 0.14);
  margin-bottom: 16px;
}

.step-box__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--pink);
}

.step-box__icon svg { width: 100%; height: 100%; }

.step-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-box p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   WHY CHOOSE US — Split
   ============================================= */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}

.split-section__red {
  background: var(--pink);
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-section__red-inner {
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.split-section__logo {
  width: 160px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 32px;
}

.split-section__red blockquote {
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.split-section__photo-placeholder {
  width: 100%;
  min-height: 168px;
  padding: 28px 24px;
  border: 2px dashed rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.06);
}

.split-section__photo-placeholder p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 300px;
}

.split-section__photo {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.split-section__white {
  background: var(--white);
  padding: 64px 56px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-section__white .eyebrow--purple {
  color: var(--purple);
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.split-section__heading {
  color: var(--black);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 420px;
}

.feat-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 520px;
}

.feat-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feat-list__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feat-list__icon svg {
  width: 22px;
  height: 22px;
}

.feat-list__icon--purple {
  background: rgba(124, 92, 191, 0.14);
  border-color: rgba(124, 92, 191, 0.45);
  color: #9b4dca;
}

.feat-list__icon--blue {
  background: rgba(0, 42, 64, 0.08);
  border-color: rgba(0, 42, 64, 0.2);
  color: var(--navy);
}

.feat-list__icon--orange {
  background: rgba(230, 126, 34, 0.14);
  border-color: rgba(230, 126, 34, 0.5);
  color: #d35400;
}

.feat-list__icon--coral {
  background: rgba(230, 57, 70, 0.12);
  border-color: rgba(230, 57, 70, 0.45);
  color: var(--red);
}

.feat-list__icon--yellow {
  background: rgba(241, 196, 15, 0.2);
  border-color: rgba(241, 196, 15, 0.55);
  color: #c9a000;
}

.feat-list__icon--yellow svg {
  stroke: #b8860b;
}

.feat-list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.35;
}

.feat-list p {
  font-size: 13px;
  color: #5a6578;
  line-height: 1.6;
  max-width: 400px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
}

.review-card:hover {
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-card__stars {
  color: var(--red);
  font-size: 15px;
  letter-spacing: 2px;
}

.review-card blockquote {
  font-size: 13.5px;
  color: var(--grey-dark);
  font-style: italic;
  line-height: 1.7;
  margin: 14px 0;
}

.review-card__name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.review-card__tag {
  display: inline-block;
  background: var(--pink-soft);
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(237, 43, 221, 0.35);
}

.reviews-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.google-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.google-link:hover { opacity: 0.75; }

/* =============================================
   SERVICE AREA
   ============================================= */
.section--areas,
.section--faq {
  background: var(--white);
  padding: 80px 0;
}

.section--areas .eyebrow--lavender,
.section--faq .eyebrow--lavender {
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.areas {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: center;
}

.areas__title,
.faq-layout__title {
  color: var(--black);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0;
}

.areas__lead {
  color: var(--grey-text);
  font-size: 15px;
  margin: 12px 0 28px;
  line-height: 1.65;
  max-width: 460px;
}

.areas__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 520px;
}

.area-tag {
  font-family: var(--font);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--grey-border);
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  transition:
    background 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out),
    color 0.2s var(--ease-out);
}

button.area-tag:hover {
  border-color: #c5cdd8;
}

.area-tag--active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(237, 43, 221, 0.28);
}

button.area-tag--active:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  filter: brightness(0.94);
}

.area-tag--muted {
  color: var(--text-muted);
  border-style: dashed;
  background: transparent;
  cursor: default;
  pointer-events: none;
}

.areas__img img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 5/4;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* =============================================
   FAQ
   ============================================= */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: start;
}

.faq-layout__title {
  margin-bottom: 28px;
}

.faq-list {
  border-top: 1px solid var(--grey-border);
}

.faq-row {
  border-bottom: 1px solid var(--grey-border);
}

.faq-row summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--black);
  line-height: 1.4;
}

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

.faq-row__toggle {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: var(--black);
  margin-top: -2px;
  transition: transform 0.25s var(--ease-out);
}

.faq-row[open] .faq-row__toggle {
  transform: rotate(45deg);
}

.faq-row p {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.7;
  max-width: 520px;
}

.faq-layout__left .link-arrow {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
}

.faq-layout__right {
  position: sticky;
  top: 24px;
}

.faq-layout__right img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  position: relative;
  background: var(--off-white);
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(1, 152, 234, 0.15) 0%, transparent 45%),
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1.2px, transparent 1.2px);
  background-size: 100% 100%, 100% 100%, 18px 18px;
  padding: 72px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-strip__center {
  text-align: center;
  max-width: 480px;
  z-index: 1;
}

.cta-strip__center h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-strip__center p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.cta-strip__food {
  position: absolute;
  width: auto;
  height: 220px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 14px 28px rgba(0, 42, 64, 0.15));
}

.cta-strip__food--left {
  left: 6%;
  bottom: -30px;
}

.cta-strip__food--right {
  right: 6%;
  top: -30px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--blue-bg);
  color: var(--text-on-blue-muted);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 56px 28px 44px;
}

.footer__about p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
  color: var(--text-on-blue-muted);
}

.footer__col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer__col-sub { margin-top: 20px; }

.footer__col li,
.footer__col p {
  font-size: 13px;
  margin-bottom: 8px;
}

.footer__col a:hover { color: var(--pink); }

.footer__social {
  display: flex;
  gap: 8px;
}

.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.footer__social a svg { width: 16px; height: 16px; }

.footer__social a:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__col a {
  transition: color 0.2s var(--ease-out);
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 0;
}

.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}

.footer__bar-links {
  display: flex;
  gap: 18px;
}

.footer__bar-links a:hover { color: var(--pink); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .hero__grid {
    gap: 28px;
  }

  .hero__content {
    max-width: 480px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 22px;
  }

  .header__inner {
    gap: 12px;
    padding: 10px 12px 10px 16px;
  }

  .header__inner .nav {
    flex: none;
  }

  .header__inner .btn--book {
    margin-left: 0;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 88vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 96px 28px 32px;
    background: var(--blue-bg);
    box-shadow: -8px 0 32px rgba(0, 42, 64, 0.18);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-out);
    z-index: 400;
    overflow-y: auto;
  }

  .nav a {
    width: 100%;
    font-size: 15px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
  }

  .nav a::after {
    display: none;
  }

  .nav-toggle__input:checked ~ .nav {
    transform: translateX(0);
  }

  .btn--book {
    padding: 10px 16px;
    font-size: 12px;
  }

  .hero {
    min-height: 0;
    padding-top: 20px;
  }

  .hero__shell {
    padding-bottom: 56px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__content {
    max-width: none;
  }

  .hero__subtitle {
    max-width: none;
  }

  .hero__visual {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }

  .hero__stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 16px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-row,
  .split-section,
  .areas,
  .faq-layout,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .services-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-top__products {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .split-section__red,
  .split-section__white {
    padding: 48px 28px;
  }

  .cta-strip__food {
    display: none;
  }

  .cta-strip {
    padding: 56px 22px;
  }
}

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

  .section--areas,
  .section--faq {
    padding: 56px 0;
  }

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

  .reviews-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer__top {
    gap: 28px;
    padding: 48px 22px 36px;
  }

  .footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-layout__right img {
    aspect-ratio: 4 / 3;
  }

  .areas__img img {
    max-height: 360px;
    object-fit: cover;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }

  .logo__img {
    height: 44px;
  }

  .hero {
    padding-top: 16px;
  }

  .hero__shell {
    padding-bottom: 48px;
  }

  .header {
    margin-bottom: 28px;
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .hero__subtitle {
    font-size: 14px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__trust {
    flex-direction: column;
    gap: 10px;
  }

  .hero__trust .trust-pill {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__image-wrap {
    aspect-ratio: 16 / 11;
  }

  .svc-card {
    flex-direction: column;
    padding: 20px;
  }

  .svc-card__photo {
    width: 100%;
    align-self: stretch;
  }

  .svc-card__photo img {
    width: 100%;
    height: 160px;
  }

  .product-float,
  .product-float--1,
  .product-float--2,
  .product-float--3,
  .product-float--4 {
    height: 88px;
  }

  .services-top__products {
    gap: 6px;
  }

  .step-box {
    padding: 28px 20px 24px;
  }

  .step-box__num {
    font-size: 48px;
  }

  .split-section__red,
  .split-section__white {
    padding: 40px 20px;
  }

  .cta-strip {
    padding: 48px 18px;
  }

  .btn--book {
    padding: 10px 14px;
  }
}
