/*
 * Prairie Clean Co. — Brand-Aligned Stylesheet
 * Colors: Deep Horizon #0F5C8C · Prairie Sky #2F8FC4 · Morning Air #7FCBEA
 * Type: Poppins (headlines) · Lato (body) · Lora Italic (tagline accent)
 */

/* ══ RESET ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ══ TOKENS ══ */
:root {
  /* Brand Colors — Prairie Clean Co. Identity Guide */
  --primary:    #0F5C8C;   /* Deep Horizon */
  --primary-h:  #2F8FC4;   /* Prairie Sky */
  --accent:     #7FCBEA;   /* Morning Air */
  --cta:        #059669;
  --cta-h:      #047857;
  --ink:        #2C3A42;   /* Slate */
  --ink-mid:    #3D5260;
  --ink-muted:  #587282;
  --ink-light:  #8AAAB8;
  --bg:         #EAF7FD;   /* Morning Mist */
  --surface:    #FFFFFF;   /* Cloud White */
  --sky-frost:  #F4FBFE;
  --sky-light:  #D4EEFA;
  --border:     #BFE0F2;
  --border-h:   #99CBE8;
  --green-faint:#D1FAE5;

  /* Shadows */
  --s-xs: 0 1px 2px rgba(15,92,140,.05);
  --s-sm: 0 2px 8px rgba(15,92,140,.07), 0 1px 2px rgba(0,0,0,.03);
  --s-md: 0 4px 20px rgba(15,92,140,.09), 0 2px 6px rgba(0,0,0,.03);
  --s-lg: 0 8px 36px rgba(15,92,140,.13), 0 4px 10px rgba(0,0,0,.04);
  --s-xl: 0 16px 56px rgba(15,92,140,.17), 0 8px 20px rgba(0,0,0,.05);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-pill: 9999px;
}

/* ══ TYPOGRAPHY ══ */
.font-display {
  font-family: 'Poppins', sans-serif;
}
.font-accent {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
}

/* ══ SHARED UTILITIES ══ */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--sky-light);
  padding: .3rem .9rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.1rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.025em;
  line-height: 1.18;
}
.section-h2 em {
  font-style: italic;
  color: var(--primary);
}
.section-sub {
  max-width: 480px;
  margin: .85rem auto 0;
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Staggered reveal for grids */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.12s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.19s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.26s; }

/* Shared buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: none;
  cursor: pointer;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: .85rem 1.9rem;
  box-shadow: 0 4px 18px rgba(15,92,140,.35);
}
.btn-primary:hover { background: var(--primary-h); box-shadow: 0 8px 28px rgba(15,92,140,.45); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: .82rem 1.9rem;
}
.btn-outline:hover { background: var(--primary); color: #fff; box-shadow: 0 4px 18px rgba(15,92,140,.25); }

.btn-cta {
  background: var(--cta);
  color: #fff;
  padding: .95rem 2.2rem;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(5,150,105,.35);
}
.btn-cta:hover { background: var(--cta-h); box-shadow: 0 8px 30px rgba(5,150,105,.45); }

.btn-ghost-white {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  padding: .85rem 1.9rem;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.7); }

/* ══ NAV — Full-width fixed bar ══ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 2.5rem;
  background: #FFFFFF;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 16px rgba(15,92,140,.1), inset 0 -1px 0 var(--sky-light);
  transition: box-shadow .3s;
}

.site-nav .logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}
.site-nav .logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.site-nav .nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0 1rem;
}
.site-nav .nav-links a {
  font-size: .86rem;
  font-weight: 500;
  color: var(--ink-mid);
  transition: color .2s;
  white-space: nowrap;
}
.site-nav .nav-links a:hover { color: var(--primary); }

.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.site-nav .nav-cta {
  flex-shrink: 0;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: .5rem 1.25rem;
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: .02em;
  transition: background .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 2px 10px rgba(15,92,140,.3);
}
.site-nav .nav-cta:hover { background: var(--primary-h); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(15,92,140,.4); }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu */
.mobile-menu {
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 299;
  background: #fff;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 12px 24px rgba(15,92,140,.12);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .3s ease, opacity .25s ease;
}
.mobile-menu.open {
  max-height: 320px;
  opacity: 1;
}
.mobile-menu ul {
  list-style: none;
  padding: .5rem 1.25rem 1.25rem;
}
.mobile-menu a {
  display: block;
  padding: .85rem 0;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--sky-light);
}
.mobile-menu li:last-child a { border-bottom: none; }

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  padding: 120px 2rem 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle, rgba(47,143,196,.06) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(15,92,140,.12) 0, transparent 44%),
    radial-gradient(circle at 18% 82%, rgba(127,203,234,.12) 0, transparent 38%);
  background-size: 28px 28px, 100% 100%, 100% 100%;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero left */
.hero-content > * + * { margin-top: .1rem; }

.hero-tagline {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary-h);
  margin-bottom: 1rem;
  letter-spacing: .01em;
}

.hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 430px;
  line-height: 1.78;
  margin-bottom: 2.25rem;
}

.hero-btns {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink-muted);
}
.trust-badge-icon {
  width: 18px; height: 18px;
  color: var(--cta);
  flex-shrink: 0;
}

/* Hero entry animations */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .eyebrow   { animation: fade-up .5s ease .1s both; }
.hero-content .hero-h1   { animation: fade-up .5s ease .2s both; }
.hero-content .hero-desc { animation: fade-up .5s ease .3s both; }
.hero-content .hero-btns { animation: fade-up .5s ease .4s both; }
.hero-content .trust-badges { animation: fade-up .5s ease .5s both; }

/* ══ TRUST TICKER ══ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-content {
  display: flex;
  flex-shrink: 0;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 0 2.25rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink-muted);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.ticker-item svg {
  width: 16px; height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══ SERVICES ══ */
.services {
  padding: 7rem 2rem;
  background: var(--surface);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.svc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem 1.6rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--s-md);
  border-color: var(--border-h);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: background .25s;
}
.svc-card:hover .svc-icon-wrap { background: linear-gradient(135deg, var(--sky-light), #CFFAFE); }
.svc-icon-wrap svg { width: 22px; height: 22px; color: var(--primary); }

.svc-card h3 { font-size: .975rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; line-height: 1.3; }
.svc-card p  { font-size: .84rem; color: var(--ink-muted); line-height: 1.7; margin-bottom: 1.25rem; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: gap .2s;
}
.svc-link:hover { gap: .55rem; }
.svc-link svg { width: 14px; height: 14px; transition: transform .2s; }
.svc-link:hover svg { transform: translateX(2px); }

/* ══ PHOTO BAND ══ */
.photo-band {
  padding: 0 2rem 7rem;
  background: var(--surface);
}
.photo-row {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 1.1rem;
  max-width: 1220px;
  margin: 0 auto;
}
.photo-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.photo-item img {
  width: 100%; height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .55s ease;
}
.photo-item:hover img { transform: scale(1.05); }
.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .85rem 1rem;
  background: linear-gradient(transparent, rgba(8,37,56,.62));
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .01em;
}

/* ══ TESTIMONIALS ══ */
.testimonials {
  padding: 7rem 2rem;
  background: var(--sky-frost);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1220px;
  margin: 0 auto;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform .25s, box-shadow .25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--s-md); }
.testi-card:nth-child(2) {
  background: linear-gradient(150deg, #EFF8FF, #F0FAFA);
  border-color: #BAD8EC;
}

.testi-stars { display: flex; gap: .2rem; }
.testi-stars svg { width: 15px; height: 15px; color: #F59E0B; }

.testi-quote {
  font-size: .9rem;
  color: var(--ink-mid);
  line-height: 1.72;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: .9rem;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: #fff;
}
.testi-name { font-size: .85rem; font-weight: 700; color: var(--ink); }
.testi-role { font-size: .75rem; color: var(--ink-muted); margin-top: .1rem; }
.testi-verified {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .65rem; font-weight: 600; color: var(--cta);
  background: var(--green-faint);
  padding: .18rem .55rem; border-radius: var(--r-pill);
  margin-top: .35rem;
}
.testi-verified svg { width: 10px; height: 10px; }

/* ══ BOOKING ══ */
.booking {
  padding: 7rem 2rem;
  background: linear-gradient(160deg, #E0F2FE 0%, #F0F9FF 100%);
}
.booking-inner { max-width: 900px; margin: 0 auto; }

.booking-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--s-xl);
  overflow: hidden;
}
.booking-card-head {
  background: linear-gradient(135deg, #08253D 0%, var(--primary) 60%, var(--primary-h) 100%);
  padding: 2.5rem 2.75rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.booking-card-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.booking-card-head p { opacity: .72; font-size: .88rem; }
.booking-badges { display: flex; gap: .65rem; flex-wrap: wrap; }
.b-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-pill);
  padding: .28rem .85rem;
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  display: flex; align-items: center; gap: .3rem;
}
.b-badge svg { width: 11px; height: 11px; }

.booking-card-body { padding: 2.5rem 2.75rem; }
/* ── Booking card — Jobber link layout ── */
.bk-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.bk-svc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 2rem 1rem;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid var(--border);
  transition: background .2s;
  cursor: pointer;
}
.bk-svc:last-child { border-right: none; }
.bk-svc:hover { background: var(--sky-frost); }
.bk-svc-icon {
  width: 46px; height: 46px;
  background: var(--sky-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  margin-bottom: .25rem;
}
.bk-svc:hover .bk-svc-icon { background: var(--primary); }
.bk-svc-icon svg { width: 22px; height: 22px; color: var(--primary); transition: color .2s; }
.bk-svc:hover .bk-svc-icon svg { color: #fff; }
.bk-svc-name { font-size: .88rem; font-weight: 700; color: var(--ink); }
.bk-svc-sub  { font-size: .75rem; color: var(--ink-muted); }

.bk-cta {
  padding: 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}
.bk-cta-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}
.bk-cta-sub { font-size: .95rem; color: var(--ink-muted); max-width: 460px; line-height: 1.7; }
.bk-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--primary);
  color: #fff;
  padding: 1.1rem 2.5rem;
  border-radius: var(--r-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(15,92,140,.38);
  transition: background .2s, transform .2s, box-shadow .2s;
  margin-top: .25rem;
}
.bk-cta-btn:hover {
  background: var(--primary-h);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(15,92,140,.48);
}
.bk-trust {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: .78rem;
  font-weight: 500;
  color: var(--ink-muted);
}
.bk-trust span { display: flex; align-items: center; gap: .35rem; }
.bk-trust svg { width: 14px; height: 14px; color: var(--cta); }
.bk-powered { font-size: .7rem; color: var(--ink-light); }

@media (max-width: 640px) {
  .bk-services { grid-template-columns: repeat(2, 1fr); }
  .bk-svc { border-right: none; border-bottom: 1px solid var(--border); }
  .bk-cta { padding: 2rem 1.5rem; }
  .bk-trust { gap: 1rem; }
}

/* Form */
.booking-form { width: 100%; }
.bf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bf-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.1rem; }
.bf-group label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.bf-group input,
.bf-group select,
.bf-group textarea {
  padding: .78rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .9rem;
  color: var(--ink);
  background: var(--sky-frost);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none; -webkit-appearance: none;
}
.bf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235B7A8E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--sky-frost);
  padding-right: 2.5rem;
  cursor: pointer;
}
.bf-group input:focus,
.bf-group select:focus,
.bf-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(3,105,161,.1);
  background: var(--surface);
}
.bf-group textarea { resize: vertical; min-height: 90px; }
.bf-group input::placeholder,
.bf-group textarea::placeholder { color: var(--ink-light); }

.bf-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--cta);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .975rem;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 4px 20px rgba(5,150,105,.3);
  transition: background .2s, box-shadow .2s, transform .2s;
  margin-top: .35rem;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.bf-submit:hover { background: var(--cta-h); box-shadow: 0 8px 28px rgba(5,150,105,.4); transform: translateY(-1px); }
.bf-submit svg { width: 18px; height: 18px; }
.bf-note {
  text-align: center;
  font-size: .75rem;
  color: var(--ink-muted);
  margin-top: .85rem;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.bf-note svg { width: 13px; height: 13px; color: var(--cta); }

/* ══ WHY US ══ */
.why {
  padding: 7rem 2rem;
  background: var(--surface);
}
.why-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.why-list { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 1.35rem; }
.why-item { display: flex; gap: .9rem; align-items: flex-start; }
.why-num {
  width: 36px; height: 36px; min-width: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: #fff;
  letter-spacing: .02em;
}
.why-item h4 { font-size: .925rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.why-item p  { font-size: .845rem; color: var(--ink-muted); line-height: 1.68; }

/* Stats 4-column horizontal */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.stat-card {
  background: var(--sky-frost);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.6rem 1.25rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  cursor: default;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--s-sm); }
.stat-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-h));
  border: none;
  box-shadow: 0 4px 18px rgba(15,92,140,.28);
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-card.featured .stat-num { color: #fff; font-size: 2.4rem; }
.stat-lbl { font-size: .73rem; font-weight: 600; color: var(--ink-muted); letter-spacing: .02em; }
.stat-card.featured .stat-lbl { color: rgba(255,255,255,.8); }
.stat-sub { font-size: .66rem; color: var(--ink-light); margin-top: .1rem; }
.stat-card.featured .stat-sub { color: rgba(255,255,255,.6); }

/* ══ CTA BAND ══ */
.cta-band {
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
  background-color: #061E30;
  background-image:
    radial-gradient(circle at 25% 50%, rgba(15,92,140,.45) 0, transparent 45%),
    radial-gradient(circle at 75% 50%, rgba(47,143,196,.28) 0, transparent 40%);
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.cta-band p { opacity: .72; margin-bottom: 2.25rem; font-size: 1.05rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══ FOOTER ══ */
footer {
  background: #061624;
  padding: 3.5rem 2rem;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
}
.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.footer-tagline {
  font-size: .72rem;
  margin-top: .45rem;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: #fff; }

/* ══ MOTTO BAND ══ */
.motto-band {
  background: var(--primary);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.motto-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.06) 0, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,.04) 0, transparent 45%);
  pointer-events: none;
}
.motto-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.motto-icon {
  height: 72px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.motto-rule {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,.35);
  margin: 1.1rem auto;
}
.motto-line1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(.95rem, 2vw, 1.25rem);
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.3;
}
.motto-line2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -.01em;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(15,92,140,.4);
}
.motto-credit {
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: .5rem;
}

/* ══ TOAST ══ */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: #fff;
  padding: .85rem 1.75rem;
  border-radius: var(--r-pill);
  font-size: .875rem;
  font-weight: 500;
  box-shadow: var(--s-lg);
  transition: transform .38s cubic-bezier(.34,1.56,.64,1);
  z-index: 999;
  white-space: nowrap;
  max-width: calc(100vw - 2rem);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; }
  .photo-row { grid-template-columns: 1fr 1fr; }
  .photo-row .photo-item:last-child { display: none; }
}
@media (max-width: 768px) {
  .site-nav .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .site-nav { padding: 0 1.25rem; }
  .site-nav .logo-img { height: 34px; }
  .site-nav .nav-cta { padding: .45rem .9rem; font-size: .76rem; }
  .nav-right { gap: .5rem; }
  .hero { padding: 100px 1.25rem 60px; }
  .bf-grid { grid-template-columns: 1fr; }
  .booking-card-head, .booking-card-body { padding: 1.75rem 1.5rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .photo-row { grid-template-columns: 1fr; }
  .photo-row .photo-item:last-child { display: block; }
  .services, .photo-band, .testimonials, .booking, .why, .cta-band { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* ══ REDUCED MOTION ══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .ticker-track { animation: none; }
  .ticker-content:last-child { display: none; }
  .hp-avail-dot { animation: none; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}
