/* ========== Design Tokens ========== */
:root {
  --bg: #F4F1EC;
  --bg-2: #EEEAE2;
  --ink: #0E1B2C;
  --ink-2: #2A3848;
  --muted: #6B7785;
  --line: rgba(14, 27, 44, 0.08);
  --line-2: rgba(14, 27, 44, 0.14);
  --card: #FFFFFF;
  --yellow: #FFC233;
  --yellow-soft: #FFE7A8;
  --yellow-bg: #FFF4D6;
  --yellow-ink: #7A5A00;
  --green: #1E7A3A;
  --green-bg: #E6F4EA;
  --shadow-sm: 0 2px 8px rgba(14, 27, 44, 0.04);
  --shadow-md: 0 4px 24px rgba(14, 27, 44, 0.06);
  --shadow-lg: 0 20px 60px rgba(14, 27, 44, 0.08);
  --shadow-xl: 0 30px 80px rgba(14, 27, 44, 0.12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --max: 1280px;
  --pad: 28px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', 'Helvetica Neue', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
img { display: block; max-width: 100%; }

/* ========== Layout helpers ========== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.row { display: flex; align-items: center; }
.between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }

/* ========== Type ========== */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
}
.display-xl { font-size: 88px; font-weight: 600; letter-spacing: -3px; line-height: 0.96; }
.display-lg { font-size: 64px; font-weight: 600; letter-spacing: -2px; line-height: 1; }
.display-md { font-size: 44px; font-weight: 600; letter-spacing: -1.2px; line-height: 1.05; }
.display-sm { font-size: 32px; font-weight: 600; letter-spacing: -0.6px; line-height: 1.1; }
.h-md { font-size: 22px; font-weight: 600; letter-spacing: -0.3px; line-height: 1.2; }
.lede { font-size: 17px; line-height: 1.55; color: var(--ink-2); }

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: #1c2c40; box-shadow: var(--shadow-md); }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { box-shadow: 0 8px 24px rgba(255, 194, 51, 0.4); }
.btn-ghost { background: var(--card); color: var(--ink); box-shadow: var(--shadow-md); }
.btn-ghost:hover { box-shadow: var(--shadow-lg); }
.btn-outline { border: 1px solid var(--line-2); background: transparent; }
.btn-outline:hover { background: var(--card); }
.btn-lg { padding: 18px 28px; font-size: 15px; }

/* ========== Pills / chips ========== */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}
.pill-yellow { background: var(--yellow-bg); color: var(--yellow-ink); }
.pill-green { background: var(--green-bg); color: var(--green); }
.pill-ink { background: var(--ink); color: var(--bg); }
.pill-dot { width: 6px; height: 6px; border-radius: 999px; background: currentColor; }

/* ========== Card ========== */
.card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-md); }
.card-lg { background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.card-pad { padding: 24px; }

/* ========== Nav ========== */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  padding: 16px var(--pad) 0;
  isolation: isolate;
}
.nav-wrap::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 140px;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(to bottom,
    rgba(180, 158, 116, 0.32) 0%,
    rgba(180, 158, 116, 0.18) 50%,
    rgba(180, 158, 116, 0.06) 80%,
    rgba(180, 158, 116, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-wrap.scrolled::before { opacity: 1; }
.nav {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  background: var(--card);
  padding: 10px 18px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.nav-links {
  background: var(--card);
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 26px;
  justify-self: center;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { color: var(--ink-2); transition: color 0.15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-cta { display: flex; gap: 8px; }
.nav-call {
  background: var(--card);
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-burger {
  display: none;
  background: var(--card);
  width: 48px; height: 48px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  align-items: center; justify-content: center;
}
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 60;
  background: var(--bg);
  padding: 24px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; margin-top: 24px; }
.mobile-menu-links a {
  padding: 18px 0;
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

/* ========== Logo ========== */
.logo {
  display: inline-flex; align-items: center; gap: 2px;
  font-weight: 800; font-size: 12px; letter-spacing: 0.4px;
  line-height: 1.05; color: var(--ink);
}
.logo-col { display: flex; flex-direction: column; gap: 2px; }
.logo-col.r { align-items: flex-start; }
.logo-col.l { align-items: flex-end; }
.logo svg { display: block; flex-shrink: 0; }

/* ========== Footer ========== */
.footer {
  margin-top: 60px;
  padding: 0 var(--pad) 28px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 56px 48px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244, 241, 236, 0.12);
}
.footer h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; opacity: 0.5; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: rgba(244, 241, 236, 0.8); }
.footer ul a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(244, 241, 236, 0.5);
}

/* ========== Section ========== */
.section { padding: 60px var(--pad); }
.section-tight { padding: 32px var(--pad); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; gap: 32px; flex-wrap: wrap; }

/* ========== Service icon tile ========== */
.svc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--yellow-bg);
  color: var(--yellow-ink);
  display: flex; align-items: center; justify-content: center;
}

/* ========== Form ========== */
.field {
  display: flex; flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.field input, .field select, .field textarea {
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  background: var(--card);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(14, 27, 44, 0.06);
}
.field textarea { resize: vertical; min-height: 100px; }

/* ========== Placeholder image ========== */
.ph {
  background-image: repeating-linear-gradient(135deg, #E8E2D6 0 12px, rgba(184, 178, 164, 0.4) 12px 13px);
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #7A7264;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
}
.ph-dark {
  background-image: repeating-linear-gradient(135deg, #1A1A1A 0 12px, #404040 12px 13px);
  color: #888;
}

/* ========== Avatars stack ========== */
.avatar-stack { display: flex; }
.avatar-stack > div {
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 2px solid var(--card);
  margin-left: -8px;
}
.avatar-stack > div:first-child { margin-left: 0; }

/* ========== Animated underline ========== */
.u-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 14px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.2s ease;
}
.u-link:hover { gap: 10px; }

/* ========== Star ========== */
.star { color: var(--yellow); }

/* ========== Hero (full-bleed yellow) ========== */
.hero-yellow {
  background: var(--yellow);
  margin-top: -88px;
  padding: 128px var(--pad) 56px;
  position: relative;
  z-index: 0;
  min-height: calc(100vh + 88px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-yellow > .container { width: 100%; position: relative; z-index: 1; }
.hero-bg-bolt {
  position: absolute;
  right: 38%;
  top: 8%;
  width: 320px;
  height: auto;
  pointer-events: none;
  z-index: 0;
  color: var(--ink);
  opacity: 0.05;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.hero-left { display: flex; flex-direction: column; min-width: 0; }
.hero-pill {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-pill .pill-dot { background: var(--green); width: 6px; height: 6px; }
.hero-h1 { margin: 26px 0 0; color: var(--ink); }
.hero-h1 .hero-concierge {
  background: var(--card);
  color: var(--ink);
  padding: 2px 18px 8px;
  border-radius: 18px;
  display: inline-block;
  transform: rotate(-1.5deg);
  margin-top: 8px;
  box-shadow: 0 12px 32px rgba(14, 27, 44, 0.12);
}
.hero-lede {
  margin-top: 28px;
  max-width: 520px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.82;
}
.hero-stats {
  margin-top: 36px;
  display: flex;
  gap: 44px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(14, 27, 44, 0.14);
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-k {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
}
.hero-stat-v {
  font-size: 12px;
  color: var(--ink);
  opacity: 0.6;
  font-weight: 500;
}
.hero-booking {
  margin-top: 32px;
  background: var(--card);
  box-shadow: 0 20px 50px rgba(14, 27, 44, 0.18);
  border-radius: 22px;
}
.hero-booking .bs-bordered { border-left-color: var(--line); }

.hero-right {
  position: relative;
  min-height: 580px;
  display: flex;
}
.hero-portrait {
  flex: 1;
  border-radius: 32px;
  background: var(--ink);
  background-image: repeating-linear-gradient(135deg, #182636 0 14px, #0E1B2C 14px 15px);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(14, 27, 44, 0.22);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-float {
  position: absolute;
  background: var(--card);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(14, 27, 44, 0.18);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}
.hero-float-response { top: 28px; left: -36px; }
.hero-float-response .fl-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.hero-float-response .fl-value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.hero-float-techs {
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
}
.hero-float-techs .live-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(30, 122, 58, 0.5);
  animation: hero-pulse 1.8s ease-out infinite;
}
@keyframes hero-pulse {
  0% { box-shadow: 0 0 0 0 rgba(30, 122, 58, 0.5); }
  100% { box-shadow: 0 0 0 10px rgba(30, 122, 58, 0); }
}
.hero-float-techs span {
  font-size: 12px;
  font-weight: 600;
}
.hero-float-reviews {
  bottom: 28px;
  left: -36px;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
}
.hero-float-reviews .avatar-stack > div {
  width: 26px; height: 26px;
}

/* Hero mobile */
@media (max-width: 900px) {
  .hero-yellow {
    padding: 110px var(--pad) 40px;
    min-height: auto;
    align-items: flex-start;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-right { min-height: 380px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-float-response { left: 14px; top: 14px; }
  .hero-float-techs { right: 14px; }
  .hero-float-reviews { left: 14px; bottom: 14px; }
  .hero-bg-bolt { display: none; }
}

/* ========== Booking strip (hero) ========== */
.booking-strip {
  margin-top: 32px;
  background: var(--bg-2);
  border-radius: 18px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 4px;
  align-items: center;
}
.bs-field { padding: 8px 14px; display: flex; flex-direction: column; gap: 2px; }
.bs-bordered { border-left: 1px solid var(--line); }
.bs-label { font-size: 10px; font-weight: 600; color: var(--muted); letter-spacing: 0.6px; }
.booking-strip select, .booking-strip input {
  background: transparent; border: none; outline: none; padding: 0;
  font-family: inherit; font-size: 14px; font-weight: 600; color: var(--ink);
  appearance: none; -webkit-appearance: none;
  cursor: pointer; width: 100%;
}

/* ========== Home: chip grid ========== */
.chips-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.chip-card { padding: 20px; display: block; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.chip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ========== How it works ========== */
.how-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-num { width: 36px; height: 36px; border-radius: 999px; background: var(--yellow); color: var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 14px; }
.step-title { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.step-desc { font-size: 14px; line-height: 1.55; color: rgba(244, 241, 236, 0.65); }

/* ========== Featured work ========== */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ========== Why choose ========== */
.why-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }

/* ========== Testimonials ========== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ========== Trust bar ========== */
.trustbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px;
  flex-wrap: wrap;
}
.trustbar-logos {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.55;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* ========== Service area ========== */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 460px; }
.map-side { position: relative; background: var(--bg-2); }

/* ========== Services page ========== */
.svc-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.svc-tab { padding: 12px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; background: var(--card); box-shadow: var(--shadow-sm); cursor: pointer; transition: all 0.15s ease; display: inline-flex; align-items: center; gap: 8px; }
.svc-tab:hover { box-shadow: var(--shadow-md); }
.svc-tab.active { background: var(--ink); color: var(--bg); }
.svc-detail { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.svc-list-item { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 14px; }
.svc-list-item svg { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.faq-item { border-top: 1px solid var(--line); padding: 20px 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 17px; font-weight: 600; }
.faq-a { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin-top: 12px; max-width: 720px; }

/* ========== About page ========== */
.about-hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: end; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.stat-cell { padding: 32px; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ========== Schedule page ========== */
.schedule-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.stepper { display: flex; gap: 12px; margin-bottom: 32px; }
.stepper-step { flex: 1; padding: 14px 16px; border-radius: 12px; background: var(--bg-2); display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--muted); }
.stepper-step.active { background: var(--ink); color: var(--bg); }
.stepper-step.done { background: var(--green-bg); color: var(--green); }
.stepper-num { width: 22px; height: 22px; border-radius: 999px; background: rgba(255,255,255,0.15); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.stepper-step.active .stepper-num { background: var(--yellow); color: var(--ink); }
.stepper-step.done .stepper-num { background: var(--green); color: var(--bg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice {
  border: 1px solid var(--line-2); border-radius: 14px;
  padding: 14px 16px; cursor: pointer; transition: all 0.15s ease;
  display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600;
  background: var(--card);
}
.choice:hover { border-color: var(--ink); }
.choice.selected { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.choice .choice-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--yellow-bg); color: var(--yellow-ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.choice.selected .choice-icon { background: var(--yellow); color: var(--ink); }

/* ========== Mobile ========== */
@media (max-width: 900px) {
  :root { --pad: 18px; }
  .display-xl { font-size: 52px; letter-spacing: -1.8px; }
  .display-lg { font-size: 40px; letter-spacing: -1.2px; }
  .display-md { font-size: 30px; letter-spacing: -0.8px; }
  .display-sm { font-size: 24px; }
  .lede { font-size: 16px; }
  .section { padding: 40px var(--pad); }
  .nav { grid-template-columns: auto 1fr; }
  .nav-links { display: none; }
  .nav-cta { justify-self: end; align-items: center; }
  .nav-cta .nav-call { display: none; }
  .nav-burger { display: inline-flex; }
  /* Equalize pill sizing on mobile */
  .nav-logo { padding: 8px 14px 8px 14px; height: 48px; display: inline-flex; align-items: center; }
  .nav-cta .btn-primary { height: 48px; padding: 0 22px; }
  .nav-burger { width: 48px; height: 48px; }
  .footer-inner { padding: 40px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  /* Hero card */
  .card-lg { padding: 24px !important; }
  .nav-wrap { padding-top: 12px; }
  
  /* Two-col stacking */
  .chips-grid { grid-template-columns: 1fr 1fr; }
  .how-grid, .why-grid, .area-grid, .about-hero, .schedule-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .area-grid > div[style] { padding: 28px !important; }
  .steps-grid, .work-grid, .testimonial-grid, .values-grid, .stats-grid, .team-grid { grid-template-columns: 1fr 1fr !important; }
  .why-list { grid-template-columns: 1fr; }
  .process-grid, .contact-band { grid-template-columns: 1fr !important; }
  .process-step { border-right: none !important; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: none; }
  .cred-grid { grid-template-columns: repeat(3, 1fr); }
  .map-side { min-height: 320px; }
  .svc-detail { grid-template-columns: 1fr !important; }
  .svc-list { grid-template-columns: 1fr; }
  .form-grid, .choice-grid { grid-template-columns: 1fr; }

  /* Hero specifics */
  section .card-lg[style] { grid-template-columns: 1fr !important; }
  .booking-strip { grid-template-columns: 1fr 1fr; gap: 0; }
  .booking-strip > button { grid-column: span 2; margin-top: 8px; }
  .bs-bordered { border-left: none; border-top: 1px solid var(--line); }
  .booking-strip > .bs-field:first-child { grid-column: span 2; }

  .stepper { flex-direction: column; gap: 8px; }
  .stepper-step { padding: 12px 14px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .chips-grid { grid-template-columns: 1fr; }
  .steps-grid, .work-grid, .testimonial-grid, .values-grid, .stats-grid, .team-grid { grid-template-columns: 1fr !important; }
  .hero-stats { gap: 16px; flex-wrap: nowrap; }
  .hero-stat { min-width: 0; flex: 1 1 0; }
  .hero-stat-k { font-size: 18px; letter-spacing: -0.3px; }
  .hero-stat-v { font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .trustbar { flex-direction: column; align-items: center; gap: 16px; padding: 20px 0; text-align: center; }
  .trustbar-eyebrow { font-size: 11px; }
  .trustbar-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    font-size: 13px;
    width: 100%;
    justify-items: center;
  }
  .trustbar-logos > span:nth-child(5) { grid-column: span 2; }
}


/* ========== Floating "Get in touch" CTA ========== */
.fcta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  font-family: inherit;
}
.fcta-trigger {
  background: var(--yellow);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 12px 22px 12px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.1px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 14px 36px rgba(14, 27, 44, 0.22), 0 2px 8px rgba(255, 194, 51, 0.4);
  position: relative;
  opacity: 0;
  transform: translateY(60px) scale(0.92);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.25s ease,
    box-shadow 0.25s ease;
}

/* On yellow hero — swap to white */
.fcta[data-on-yellow="true"] .fcta-trigger {
  background: var(--card);
  box-shadow: 0 14px 36px rgba(14, 27, 44, 0.18), 0 2px 8px rgba(14, 27, 44, 0.06);
}
.fcta[data-on-yellow="true"] .fcta-trigger:hover {
  box-shadow: 0 20px 44px rgba(14, 27, 44, 0.24), 0 4px 12px rgba(14, 27, 44, 0.1);
}
.fcta[data-mounted="true"] .fcta-trigger {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.fcta-trigger:hover {
  box-shadow: 0 20px 44px rgba(14, 27, 44, 0.28), 0 4px 12px rgba(255, 194, 51, 0.55);
}
.fcta[data-mounted="true"] .fcta-trigger:hover {
  transform: translateY(-2px) scale(1);
}
.fcta[data-mounted="true"] .fcta-trigger:active {
  transform: translateY(0) scale(0.98);
}
.fcta-trigger-icon {
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.42s cubic-bezier(0.68, -0.4, 0.27, 1.4);
}
.fcta-trigger-icon svg {
  position: absolute;
  transition: opacity 0.22s ease, transform 0.32s cubic-bezier(0.68, -0.4, 0.27, 1.4);
}
.fcta-icon-close { opacity: 0; transform: rotate(-90deg); }
.fcta[data-open="true"] .fcta-trigger-icon { transform: rotate(180deg); }
.fcta[data-open="true"] .fcta-icon-default { opacity: 0; transform: rotate(90deg) scale(0.6); }
.fcta[data-open="true"] .fcta-icon-close { opacity: 1; transform: rotate(-180deg); }

/* Subtle attention pulse on the trigger when first mounted */
.fcta[data-mounted="true"]:not([data-open="true"]) .fcta-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255, 194, 51, 0.55);
  pointer-events: none;
  animation: fcta-ping 2.4s ease-out 1.4s 2;
}
.fcta[data-on-yellow="true"][data-mounted="true"]:not([data-open="true"]) .fcta-trigger::before {
  animation-name: fcta-ping-ink;
}
@keyframes fcta-ping {
  0% { box-shadow: 0 0 0 0 rgba(255, 194, 51, 0.55); }
  60% { box-shadow: 0 0 0 22px rgba(255, 194, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 194, 51, 0); }
}
@keyframes fcta-ping-ink {
  0% { box-shadow: 0 0 0 0 rgba(14, 27, 44, 0.22); }
  60% { box-shadow: 0 0 0 22px rgba(14, 27, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 27, 44, 0); }
}

/* Label crossfade */
.fcta-trigger-label {
  position: relative;
  display: inline-grid;
  min-width: 80px;
  text-align: left;
}
.fcta-label-default, .fcta-label-close {
  grid-area: 1 / 1;
  transition: opacity 0.2s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.fcta-label-close { opacity: 0; transform: translateY(6px); }
.fcta[data-open="true"] .fcta-label-default { opacity: 0; transform: translateY(-6px); }
.fcta[data-open="true"] .fcta-label-close { opacity: 1; transform: translateY(0); }

/* Popup */
.fcta-popup {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 14px;
  width: 340px;
  background: var(--card);
  border-radius: 22px;
  padding: 8px;
  box-shadow:
    0 32px 80px rgba(14, 27, 44, 0.24),
    0 6px 18px rgba(14, 27, 44, 0.08),
    0 0 0 1px rgba(14, 27, 44, 0.04);
  transform-origin: bottom right;
  transform: scale(0.85) translateY(12px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.36s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0s linear 0.4s;
}
.fcta[data-open="true"] .fcta-popup {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity 0.24s ease,
    transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0s;
}

.fcta-popup-header {
  padding: 16px 16px 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.fcta-pop-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--ink);
}
.fcta-pop-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.fcta-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(30, 122, 58, 0.5);
  animation: hero-pulse 1.8s ease-out infinite;
}

.fcta-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px;
}
.fcta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  transition: background 0.16s ease;
  opacity: 0;
  transform: translateY(10px);
}
.fcta-item:hover { background: var(--bg-2); }
.fcta-item:hover .fcta-item-arrow { transform: translateX(4px); color: var(--ink); }
.fcta-item:active { background: rgba(14, 27, 44, 0.06); }

.fcta[data-open="true"] .fcta-item {
  animation: fcta-item-in 0.42s cubic-bezier(0.34, 1.32, 0.64, 1) forwards;
}
.fcta[data-open="true"] .fcta-item:nth-child(1) { animation-delay: 0.08s; }
.fcta[data-open="true"] .fcta-item:nth-child(2) { animation-delay: 0.14s; }
.fcta[data-open="true"] .fcta-item:nth-child(3) { animation-delay: 0.20s; }
@keyframes fcta-item-in {
  to { opacity: 1; transform: translateY(0); }
}

.fcta-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fcta-item-wa .fcta-item-icon { background: #E7F5EC; color: #128C7E; }
.fcta-item-call .fcta-item-icon { background: var(--yellow-bg); color: var(--yellow-ink); }
.fcta-item-book .fcta-item-icon { background: var(--ink); color: var(--yellow); }

.fcta-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.fcta-item-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.1px;
  color: var(--ink);
}
.fcta-item-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.fcta-item-arrow {
  color: var(--muted);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.15s ease;
  display: inline-flex;
}

/* Mobile */
@media (max-width: 560px) {
  .fcta { bottom: 16px; right: 16px; }
  .fcta-popup { width: calc(100vw - 32px); max-width: 340px; }
  .fcta-trigger { padding: 10px 18px 10px 10px; }
  .fcta-trigger-icon { width: 28px; height: 28px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fcta-trigger,
  .fcta-popup,
  .fcta-item,
  .fcta-trigger-icon,
  .fcta-trigger-icon svg,
  .fcta-label-default,
  .fcta-label-close { transition-duration: 0.001s !important; animation: none !important; }
}

/* ============================================================
   Reveal + hover animations
   ============================================================ */

/* Scroll/hero reveal — only active when JS is on */
.js-anim [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.85s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.js-anim [data-reveal="hero"] {
  transform: translateY(14px);
  transition-duration: 0.95s;
}
.js-anim [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---- Hover lifts ---- */

/* Service / chip cards — primary tile hover */
.chip-card {
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
}
.chip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.chip-card .svc-icon,
.chip-card .svc-img {
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.25s ease;
}
.chip-card:hover .svc-icon,
.chip-card:hover .svc-img {
  transform: translateY(-2px) rotate(-4deg);
}

.svc-img {
  width: 168px;
  height: 168px;
  object-fit: contain;
  display: block;
  margin: -8px auto 0;
}

/* Work cards — image zoom */
.work-grid > article,
.work-grid > .card {
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.4s ease;
}
.work-grid > article:hover,
.work-grid > .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.work-grid .ph {
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}
.work-grid > article:hover .ph,
.work-grid > .card:hover .ph {
  transform: scale(1.04);
}

/* Step cards in dark "How it works" panel */
.step {
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.step:hover {
  transform: translateY(-3px);
}
.step-num {
  transition: color 0.25s ease, transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.step:hover .step-num {
  transform: translateX(2px);
}

/* Generic card hover */
.card {
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.35s ease;
}

/* Buttons — refine existing */
.btn {
  transition:
    transform 0.18s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.25s ease,
    background 0.2s ease;
}
.btn:active {
  transform: translateY(0);
  transition-duration: 0.08s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(14, 27, 44, 0.18);
}
.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 194, 51, 0.45);
}
.btn-ghost:hover {
  transform: translateY(-2px);
}

/* Inline links with arrow */
.u-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.2s ease;
}
.u-link:hover {
  gap: 10px;
}
.u-link svg {
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.u-link:hover svg {
  transform: translateX(2px);
}

/* Buttons with trailing arrow */
.btn svg {
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.btn:hover svg:last-child {
  transform: translateX(3px);
}

/* Nav link underline + nav call */
.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-call {
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.2s ease;
}
.nav-call:hover {
  transform: translateY(-1px);
}

/* Logo bolt pulse on hover */
.logo svg {
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform-origin: 50% 50%;
}
.logo:hover svg {
  transform: rotate(-12deg) scale(1.1);
}

/* Hero floating cards — gentle lift */
.hero-float {
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.4s ease;
}
.hero-float:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Live dot pulse */
.live-dot {
  position: relative;
}
.live-dot::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.35;
  animation: livePulse 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
}
@keyframes livePulse {
  0% { transform: scale(1); opacity: 0.35; }
  70% { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Trustbar logos — subtle reveal on hover */
.trustbar-logos > span {
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.trustbar-logos:hover > span {
  opacity: 0.5;
}
.trustbar-logos > span:hover {
  opacity: 1 !important;
  transform: translateY(-1px);
}

/* Pills */
.pill {
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
a .pill:hover,
button .pill:hover {
  transform: translateY(-1px);
}

/* Form fields focus */
.booking-strip input:focus,
.booking-strip select:focus {
  outline: none;
}
.bs-field {
  transition: background 0.2s ease;
}
.bs-field:focus-within {
  background: rgba(14, 27, 44, 0.03);
}

/* Footer link slide */
.footer a {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), color 0.2s ease;
}
.footer a:hover {
  transform: translateX(3px);
}

/* Reduced motion — kill all reveals + hover transforms */
@media (prefers-reduced-motion: reduce) {
  .js-anim [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .chip-card,
  .work-grid > article,
  .work-grid > .card,
  .step,
  .btn,
  .hero-float,
  .nav-call,
  .logo svg,
  .footer a,
  .work-grid .ph {
    transition: none !important;
  }
  .chip-card:hover,
  .work-grid > article:hover,
  .work-grid > .card:hover,
  .step:hover,
  .btn:hover,
  .hero-float:hover,
  .nav-call:hover,
  .footer a:hover,
  .work-grid > article:hover .ph,
  .work-grid > .card:hover .ph,
  .logo:hover svg {
    transform: none !important;
  }
  .live-dot::after {
    animation: none !important;
  }
}
