/* ============================================================================
   SENSIBLE SPA SOLUTIONS — "Still Water"
   Calm coastal off-white canvas · one Gulf-teal action · one warm amber thread.
   System font stack (zero font files) · all art inline SVG · mobile-first.
   ========================================================================== */

:root {
  --bg: #F5FAFB;
  --surface: #FFFFFF;
  --surface-alt: #EAF4F5;
  --ink: #0B2E36;
  --ink-soft: #45636B;
  --primary: #0A7480;
  --primary-ink: #FFFFFF;
  --primary-hover: #085F69;
  --accent-warm: #A85A17;   /* TEXT-SAFE: eyebrows, underlines, seal, warm thread */
  --accent-water: #37B3C4;  /* DECORATIVE ONLY: ripple/wave fills — never text     */
  --border: #D8E6E9;
  --success: #2E7D5B;
  --footer-bg: #0B2E36;
  --footer-ink: #FFFFFF;
  --focus: #0A7480;

  --shadow-tight: 0 1px 2px rgba(11, 46, 54, 0.07);
  --shadow-wide: 0 10px 30px rgba(10, 116, 128, 0.12);
  --shadow-card: 0 1px 2px rgba(11, 46, 54, 0.06), 0 8px 24px rgba(10, 116, 128, 0.08);

  --r-card: 18px;
  --r-ctrl: 12px;
  --maxw: 1120px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

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

/* The [hidden] attribute must always win, even over display:flex/inline-flex
   utility rules below (dormant Google slot, booking button, setup notice). */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-variant-numeric: tabular-nums lining-nums;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.15; margin: 0; color: var(--ink); font-weight: 700; }
p { margin: 0; }
a { color: var(--primary); }
img, svg { max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---- Focus: visible on everything, never removed ---- */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--primary);
  color: var(--primary-ink);
  padding: 10px 16px;
  border-radius: var(--r-ctrl);
  z-index: 200;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }
@media (prefers-reduced-motion: reduce) { .skip-link { transition: none; } }

/* The skip link moves focus into <main tabindex="-1">; don't paint a big
   container outline when it receives that programmatic focus. */
main[tabindex="-1"]:focus { outline: none; }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 720px; }
:target, section[id], #top { scroll-margin-top: 78px; }
.section { padding: clamp(48px, 8vw, 92px) 0; }
.section-alt { background: var(--surface-alt); }

.section-head { max-width: 640px; margin: 0 0 clamp(24px, 4vw, 40px); }
.eyebrow {
  font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .14em; color: var(--accent-warm); margin: 0 0 12px;
}
.section-head h2 { font-size: clamp(1.5rem, 3.5vw, 2.15rem); letter-spacing: -0.01em; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; margin-top: 10px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 20px;
  font-family: inherit; font-size: 1rem; font-weight: 600; line-height: 1;
  border-radius: var(--r-ctrl); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .05s ease;
}
.btn:active { transform: translateY(1px); }
.btn-lg { min-height: 54px; padding: 0 26px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn .ico { width: 20px; height: 20px; flex: none; }
.btn .num { font-variant-numeric: tabular-nums; }

.btn-primary { background: var(--primary); color: var(--primary-ink); }
.btn-primary:hover { background: var(--primary-hover); }
.btn-outline { background: var(--surface); color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--surface-alt); }
.btn-ghost { background: transparent; color: var(--ink); border-color: transparent; }
.btn-ghost:hover { background: var(--surface-alt); }

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .btn:active { transform: none; }
}

.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-water); display: inline-block; flex: none;
}

/* ============================ HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: saturate(1.4) blur(8px);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(10, 116, 128, 0.10); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 62px; gap: 12px; }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand-mark { display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 600; letter-spacing: -0.01em; font-size: 1.06rem; }
.brand-sub {
  font-size: .64rem; text-transform: uppercase; letter-spacing: .13em;
  color: var(--accent-warm); font-weight: 600; margin-top: 2px;
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-call { padding: 0 12px; }
.header-call .num { font-weight: 600; }
.call-round {
  display: none; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: var(--primary-ink);
}
.call-round .ico { width: 22px; height: 22px; }

/* ============================ HERO ============================ */
.hero { padding: clamp(28px, 5vw, 56px) 0 clamp(36px, 6vw, 68px); position: relative; }
.hero-grid { display: grid; gap: clamp(28px, 5vw, 48px); align-items: center; }
.hero-copy { max-width: 620px; }
.hero h1 {
  font-size: clamp(1.95rem, 6vw, 3.35rem); letter-spacing: -0.02em; line-height: 1.05;
  margin: 6px 0 0;
}
.hero .lead { font-size: clamp(1.05rem, 2.2vw, 1.2rem); color: var(--ink-soft); font-weight: 500; margin-top: 18px; max-width: 34em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.trust-chips { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; }
.trust-chips li { display: inline-flex; align-items: center; gap: 8px; font-size: .93rem; font-weight: 500; color: var(--ink); }

/* Hero visual */
.hero-visual { position: relative; }
.visual-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-wide);
  padding: 14px;
}
.photo-slot {
  position: relative; overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(160deg, #EAF4F5 0%, #F5FAFB 100%);
  border: 1.5px dashed var(--border);
  display: flex; align-items: flex-start;
  min-height: 260px;
}
.photo-slot-hero { min-height: clamp(240px, 42vw, 340px); }
.water-art { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Real photos filling a slot: cover, clipped to the slot's rounded corners */
.photo-filled { border-style: solid; border-width: 1px; background: var(--surface-alt); }
.photo-filled img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-slot-hero.photo-filled img { object-position: 50% 22%; } /* keep the technician's face in frame */
.photo-slot-why.photo-filled img { object-position: 50% 50%; }
.photo-label {
  position: relative; z-index: 1;
  margin: 12px; padding: 6px 11px;
  background: rgba(255,255,255,0.86); border-radius: 8px;
  font-size: .74rem; color: var(--ink-soft); font-weight: 500;
  border: 1px solid var(--border);
}

.floating-note {
  position: absolute; right: 22px; bottom: 20px; z-index: 3;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--shadow-card);
  padding: 14px 16px; max-width: 245px;
}
.fn-price { font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.fn-amt { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.fn-sub { font-size: .84rem; color: var(--ink-soft); margin-top: 4px; }
.fn-badge { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: .82rem; font-weight: 600; color: var(--success); }
.ico-check { width: 18px; height: 18px; flex: none; }

.seal { position: absolute; left: 24px; bottom: 22px; z-index: 3; opacity: .95; }
.seal-est { font-size: 11px; font-weight: 700; letter-spacing: .16em; fill: var(--accent-warm); }
.seal-year { font-size: 15px; font-weight: 700; letter-spacing: .06em; fill: var(--accent-warm); }

/* Wave / steam motion — freezes under reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .wave-front { animation: drift 18s ease-in-out infinite alternate; }
  .steam path { animation: rise 12s ease-in-out infinite; transform-origin: center; }
  .steam path:last-child { animation-delay: -4s; }
}
@keyframes drift { from { transform: translateX(-14px); } to { transform: translateX(14px); } }
@keyframes rise { 0%,100% { opacity: .25; transform: translateY(2px); } 50% { opacity: .55; transform: translateY(-4px); } }

/* ============================ CREDENTIALS ============================ */
.creds { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.creds-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; padding: 26px 20px; }
.cred { display: flex; flex-direction: column; gap: 2px; }
.cred-strong { font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.cred-soft { font-size: .85rem; color: var(--ink-soft); }

/* ============================ SERVICES ============================ */
/* Flex + centered wrap so an odd count (7) puts a tidy centered last row
   instead of leaving an empty/orphan square. Basis per breakpoint below. */
.service-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.service-card {
  flex: 0 1 100%;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 20px; box-shadow: var(--shadow-tight);
}
.service-card h3 { font-size: 1.08rem; margin: 12px 0 5px; font-weight: 650; }
.service-card p { color: var(--ink-soft); font-size: .95rem; }
.svc-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--surface-alt); color: var(--primary);
}
.svc-ico svg { width: 26px; height: 26px; }
.services-foot, .brands-foot { margin-top: 22px; color: var(--ink-soft); }

/* ============================ BRANDS ============================ */
.chip-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
.brand-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.brand-chips li {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 9px 16px; font-weight: 500; font-size: .95rem;
  color: var(--ink); white-space: nowrap;
}
.brand-chips .chip-more { color: var(--ink-soft); font-style: italic; border-style: dashed; }

/* Hot Spring family — the owner's specialty, emphasized ahead of the rest */
.brand-featured { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 14px; margin-bottom: 16px; }
.bf-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent-warm); }
.brand-chips-lead li { background: var(--primary); color: var(--primary-ink); border-color: var(--primary); font-weight: 600; }

/* ============================ HOW IT WORKS ============================ */
.steps { display: grid; grid-template-columns: 1fr; gap: 18px; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 24px 22px 22px; box-shadow: var(--shadow-tight);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: var(--primary-ink); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); }
.step strong { color: var(--ink); }

/* ============================ WHY US ============================ */
.why-grid { display: grid; gap: clamp(26px, 5vw, 44px); align-items: center; }
.why-list { display: grid; gap: 16px; margin-top: 22px; }
.why-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; color: var(--ink-soft); }
.why-list .ico-check { color: var(--success); width: 24px; height: 24px; margin-top: 1px; }
.why-list strong { color: var(--ink); }
.photo-slot-why { aspect-ratio: 4 / 3; min-height: 240px; }

/* ============================ REVIEWS ============================ */
.google-slot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 16px 20px; margin-top: 20px; box-shadow: var(--shadow-tight);
}
.google-badge { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.review-grid { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; }
.review-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 24px 22px 20px; box-shadow: var(--shadow-tight);
}
.review-card.is-placeholder { border-style: dashed; background: linear-gradient(180deg, var(--surface) 0%, var(--surface-alt) 100%); }
/* Decorative aria-hidden glyph — uses a low-opacity primary tint, not the
   reserved decorative aqua token (which must never carry text-weight color). */
.quote-mark { position: absolute; top: 8px; right: 18px; font-size: 2.6rem; line-height: 1; color: rgba(10, 116, 128, 0.22); font-family: var(--font-serif); }
.review-text { font-size: 1rem; line-height: 1.6; color: var(--ink); padding-right: 18px; }
.review-by { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.avatar-slot {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--primary); color: var(--primary-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .82rem; letter-spacing: .02em;
}
.review-name { font-size: .98rem; color: var(--ink); font-weight: 700; line-height: 1.25; }
.review-src { display: block; font-size: .78rem; color: var(--ink-soft); font-weight: 500; margin-top: 2px; }
.reviews-source { margin-top: 20px; font-size: .82rem; color: var(--ink-soft); }

/* ============================ SERVICE AREA ============================ */
.area-grid { display: grid; gap: clamp(24px, 5vw, 44px); align-items: center; }
.area-list { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 18px; }
.area-list li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 1.05rem; }
.area-visual { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 16px; box-shadow: var(--shadow-tight); }
.area-art { width: 100%; height: auto; }
.area-label { font-size: 13px; font-weight: 600; fill: var(--ink); }

/* ============================ FAQ ============================ */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-ctrl); padding: 2px 18px; box-shadow: var(--shadow-tight);
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 16px 0; font-weight: 600; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.chev { width: 12px; height: 12px; border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary); transform: rotate(45deg); flex: none; transition: transform .2s ease; }
.faq-item[open] .chev { transform: rotate(-135deg); }
.faq-item > p { color: var(--ink-soft); padding: 0 0 18px; margin-top: -4px; }
@media (prefers-reduced-motion: reduce) { .chev { transition: none; } }

/* ============================ SCHEDULE / FORM ============================ */
.schedule { background: var(--surface-alt); }
.schedule-grid { display: grid; gap: clamp(28px, 5vw, 48px); align-items: start; }
.schedule-intro { max-width: 480px; }

.price-callout {
  display: flex; align-items: center; gap: 16px; margin: 22px 0;
  background: var(--surface); border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--r-ctrl); padding: 16px 18px; box-shadow: var(--shadow-tight);
}
.pc-amt { font-size: 2rem; font-weight: 700; color: var(--primary); line-height: 1; }
.pc-title { font-weight: 700; }
.pc-sub { font-size: .9rem; color: var(--ink-soft); }
.call-alt { margin-top: 4px; }
.book-online { margin-top: 12px; }

.lead-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow-card);
}
.setup-notice {
  background: #FBF3E8; border: 1px solid #E8CfAE; color: #6E3D0F;
  border-radius: var(--r-ctrl); padding: 12px 14px; font-size: .88rem; margin-bottom: 18px;
}
.setup-notice code { background: rgba(0,0,0,.06); padding: 1px 5px; border-radius: 4px; font-size: .85em; }

.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 6px; color: var(--ink); }
.req { color: var(--accent-warm); }
.opt { font-weight: 400; color: var(--ink-soft); font-size: .85em; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r-ctrl); padding: 14px 14px; min-height: 52px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 118px; resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #5E7377; opacity: 1; }
.field input:hover, .field textarea:hover { border-color: #B9D2D7; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 116, 128, 0.18);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #C0392B; }
.field input[aria-invalid="true"]:focus, .field textarea[aria-invalid="true"]:focus { box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.16); }
.field-error { color: #C0392B; font-size: .85rem; margin-top: 6px; font-weight: 500; }
@media (prefers-reduced-motion: reduce) { .field input, .field textarea { transition: none; } }

/* Honeypot — hidden from people, present for bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-fineprint { font-size: .82rem; color: var(--ink-soft); margin-top: 14px; }
.form-status { margin-top: 4px; }
.form-status:empty { margin-top: 0; }
.status-success, .status-error {
  border-radius: var(--r-ctrl); padding: 16px 18px; margin-top: 16px; font-weight: 500;
}
.status-success { background: #E7F5EE; border: 1px solid #B7DFCB; color: #1C5E42; }
.status-error { background: #FDECEA; border: 1px solid #F2C4BE; color: #A02D20; }
.status-success strong, .status-error strong { display: block; margin-bottom: 3px; }
.status-success a, .status-error a { color: inherit; font-weight: 700; }

/* ============================ FOOTER ============================ */
.site-footer { background: var(--footer-bg); color: var(--footer-ink); padding: clamp(40px, 6vw, 60px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-name { font-weight: 700; font-size: 1.15rem; }
.footer-tag { color: #A9C4C9; font-size: .9rem; margin-top: 2px; }
.footer-col h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: #8FB0B6; margin-bottom: 10px; font-weight: 600; }
.footer-col p { margin-bottom: 6px; }
.footer-link { color: var(--footer-ink); text-decoration: none; font-weight: 600; }
.footer-link:hover { text-decoration: underline; }
.footer-muted { color: #A9C4C9; font-size: .95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 30px; padding-top: 20px; }
.footer-bottom p { color: #8FB0B6; font-size: .85rem; }

/* ============================ MOBILE STICKY BAR ============================ */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: flex; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  transition: transform .25s ease;
}
.mobile-bar .mb-btn { flex: 1; }
/* Auto-hide the bar while a form field is focused so it never covers inputs.
   JS (.form-active) is the reliable driver; :has() is a no-JS fallback. */
body.form-active .mobile-bar,
body:has(.lead-form :focus) .mobile-bar { transform: translateY(140%); }
@media (prefers-reduced-motion: reduce) { .mobile-bar { transition: none; } }

/* ============================ RESPONSIVE ============================ */
/* Mobile default: hide desktop header call+schedule, show round call + bottom bar */
.header-call, .header-schedule { display: none; }
.call-round { display: inline-flex; }
body { padding-bottom: 74px; } /* room for the mobile bar */

@media (max-width: 559px) {
  /* Keep the small hero card uncluttered — the seal is decorative */
  .seal { display: none; }
  .floating-note { right: 14px; bottom: 14px; max-width: 72%; }
  /* Taller hero photo on phones so the technician's face stays clear of the $85 card */
  .photo-slot-hero { min-height: 380px; }
  .photo-slot-hero.photo-filled img { object-position: 50% 18%; }
}

@media (min-width: 560px) {
  .service-card { flex-basis: calc(50% - 7px); }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .creds-inner { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 720px) {
  .header-call, .header-schedule { display: inline-flex; }
  .call-round { display: none; }
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
  .steps { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .why-grid { grid-template-columns: 1.1fr 0.9fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .schedule-grid { grid-template-columns: 0.9fr 1.1fr; }
  .service-card { flex-basis: calc(25% - 11px); }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
