/* ============================================================
   KFrog's Affordable Home Care — stylesheet
   Palette derived from the KFrog logo (navy/teal/cyan/green)
   ============================================================ */

:root {
  --navy-950: #081527;
  --navy-900: #0e2238;
  --navy-800: #16304c;
  --ink: #22313f;
  --muted: #5b6b7b;
  --teal: #009b8d;
  --teal-dark: #007f74;
  --cyan: #23b7e6;
  --green: #2ba02f;
  --bg-soft: #f2f7fa;
  --card: #ffffff;
  --line: #dfe9ef;
  --grad: linear-gradient(135deg, #009b8d 0%, #23b7e6 100%);
  --grad-soft: linear-gradient(135deg, rgba(0, 155, 141, .10), rgba(35, 183, 230, .10));
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(14, 34, 56, .08);
  --shadow-lg: 0 24px 60px rgba(14, 34, 56, .16);
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: none; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--navy-950); color: #dfe9f2; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--navy-900); letter-spacing: -0.01em; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--teal-dark);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad); border-radius: 2px; }
.section-dark .eyebrow { color: #5fd6e8; }

.lead { font-size: 1.12rem; color: var(--muted); max-width: 60ch; }
.section-dark .lead { color: #9db2c4; }

.center { text-align: center; }
.center .lead { margin-inline: auto; }
.mt-2 { margin-top: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  line-height: 1.2; white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--grad); color: #fff !important; box-shadow: 0 10px 24px rgba(0, 155, 141, .35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0, 155, 141, .42); }
.btn-outline { border-color: var(--navy-900); color: var(--navy-900) !important; background: transparent; }
.btn-outline:hover { background: var(--navy-900); color: #fff !important; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy-900) !important; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.btn-ghost-light { border-color: rgba(255,255,255,.5); color: #fff !important; }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }
.btn-sm { padding: 10px 18px; font-size: .88rem; }

/* ---------- Top bar + nav ---------- */
.topbar {
  background: var(--navy-950); color: #b9cddd; font-size: .83rem;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; }
.topbar .topbar-areas { display: flex; align-items: center; gap: 6px; opacity: .85; }

.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 8px 0; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 110px; width: auto; }
.brand-word { display: none; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-weight: 600; font-size: .95rem; color: var(--ink);
  padding: 9px 14px; border-radius: 999px; transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: var(--bg-soft); color: var(--teal-dark); }
.nav-links a.active { color: var(--teal-dark); background: var(--grad-soft); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-family: var(--font-head); font-weight: 700; color: var(--navy-900); font-size: .98rem; }
.nav-phone:hover { color: var(--teal-dark); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--navy-900); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(900px 420px at 88% -10%, rgba(35,183,230,.16), transparent 60%),
  radial-gradient(700px 380px at -10% 110%, rgba(0,155,141,.13), transparent 60%),
  var(--bg-soft); }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px 56px; align-items: center; padding-block: 48px 72px; }
.hero-logo { grid-column: 1 / -1; text-align: center; }
.hero-logo img { width: min(500px, 86vw); height: auto; margin-inline: auto; display: block; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { margin-bottom: 30px; }
.motto {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.3rem, 2.8vw, 1.85rem); line-height: 1.25;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: -8px 0 26px;
}
.footer-motto { margin-top: 14px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: #5fd6e8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; list-style: none; padding: 0; }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--navy-800); }
.hero-trust svg { width: 18px; height: 18px; stroke: var(--teal); flex-shrink: 0; }

/* Before/after slider */
.ba-card { position: relative; }
.ba-card > .ba-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--navy-950); color: #fff; z-index: 5;
  font-family: var(--font-head); font-size: .74rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 7px 16px; border-radius: 999px; white-space: nowrap;
}
.ba-slider {
  --pos: 50%; position: relative; width: 100%; aspect-ratio: 3/4;
  overflow: hidden; cursor: ew-resize; touch-action: none;
  user-select: none; -webkit-user-select: none; -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  border-radius: 22px; box-shadow: var(--shadow-lg); background: var(--navy-900);
}
.ba-slider:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-after img, .ba-before img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none; -webkit-user-drag: none;
}
.ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px;
  background: rgba(255,255,255,.95); transform: translateX(-1px); z-index: 3; pointer-events: none;
}
.ba-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.ba-caption {
  position: absolute; top: 14px; z-index: 2; pointer-events: none;
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(8,21,39,.65); color: #fff;
  padding: 6px 13px; border-radius: 999px; backdrop-filter: blur(4px);
}
.ba-caption-before { left: 14px; }
.ba-caption-after { right: 14px; }
.ba-hint {
  margin-top: 14px; text-align: center; font-size: .85rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.ba-hint svg { width: 15px; height: 15px; stroke: var(--teal); }

/* ---------- Marquee-ish stat strip ---------- */
.stat-strip { background: var(--navy-950); color: #fff; padding: 26px 0; }
.stat-strip .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: center; }
.stat-strip .stat b { font-family: var(--font-head); font-size: 1.65rem; font-weight: 800; display: block; }
.stat-strip .stat span { font-size: .85rem; color: #9db2c4; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.stat-strip .divider { width: 1px; background: rgba(255,255,255,.14); justify-self: center; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.service-block { scroll-margin-top: 150px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card .icon svg { width: 26px; height: 26px; stroke: var(--teal-dark); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 700; font-size: .9rem; }
.card .card-link svg { width: 15px; height: 15px; transition: transform .15s; }
.card:hover .card-link svg { transform: translateX(3px); }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .img-frame { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.split .img-frame img { width: 100%; height: 100%; object-fit: cover; }
.checklist { list-style: none; margin-top: 20px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .tick {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center; margin-top: 3px;
}
.checklist .tick svg { width: 12px; height: 12px; stroke: #fff; }
.checklist.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 36px; }
.why-copy { max-width: 980px; }

/* ---------- Work / slider section ---------- */
.work-showcase .ba-slider { max-width: 620px; margin-inline: auto; }
.work-note { text-align: center; margin-top: 26px; color: var(--muted); font-size: .95rem; }

/* ---------- Work showcase feature image ---------- */
.feature-img { max-width: 880px; margin-inline: auto; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.feature-img img { display: block; width: 100%; height: auto; }
.fig-note { text-align: center; margin-top: 16px; color: var(--muted); font-size: .95rem; max-width: 72ch; margin-inline: auto; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy-950); position: relative; overflow: hidden; text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(0,155,141,.35), transparent 60%),
    radial-gradient(700px 300px at 85% 100%, rgba(35,183,230,.28), transparent 60%);
}
.cta-band .container { position: relative; padding-block: 76px; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band .lead { margin: 0 auto 30px; color: #9db2c4; }
.cta-band .hero-actions { justify-content: center; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #9db2c4; font-size: .93rem; }
.site-footer .container { padding-block: 60px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { color: #9db2c4; }
.site-footer a:hover { color: #5fd6e8; }
.footer-brand img { height: 120px; width: auto; margin-bottom: 16px; }
.footer-brand p { max-width: 30ch; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; stroke: #5fd6e8; flex-shrink: 0; margin-top: 4px; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center; transition: background .15s, border-color .15s;
  color: #fff;
}
.social-row a:hover { background: rgba(255,255,255,.1); border-color: #5fd6e8; }
.social-row svg { width: 18px; height: 18px; }
.social-row svg.fill { fill: currentColor; stroke: none; }
.social-row svg.line { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-row svg.line circle { stroke: currentColor; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09); margin-top: 44px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .83rem;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(640px 300px at 85% -20%, rgba(35,183,230,.14), transparent 60%);
}
.page-hero .container { padding-block: 60px; position: relative; }
.page-hero h1 { margin-bottom: 10px; }
.page-hero .crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.page-hero .crumbs a { color: var(--teal-dark); font-weight: 600; }

/* ---------- Services detail blocks ---------- */
.service-block { display: grid; grid-template-columns: 90px 1fr; gap: 26px; padding: 34px; }
.service-block + .service-block { border-top: 1px solid var(--line); }
.service-block .icon { width: 70px; height: 70px; }
.service-block .icon svg { width: 34px; height: 34px; }
.service-block h3 { font-size: 1.35rem; margin-bottom: 8px; }
.service-block p { color: var(--muted); max-width: 70ch; }
.service-block .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip {
  background: var(--grad-soft); color: var(--teal-dark); font-size: .8rem; font-weight: 700;
  padding: 5px 13px; border-radius: 999px;
}

/* ---------- Reviews ---------- */
.review-source-cards .card { text-align: center; padding: 36px 24px; }
.review-source-cards .rs-icon { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.review-source-cards .rs-icon svg { width: 28px; height: 28px; }
.rs-fb .rs-icon { background: #1877f2; }
.rs-fb .rs-icon svg { fill: #fff; stroke: none; }
.rs-ig .rs-icon { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.rs-ig .rs-icon svg { fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.rs-navy .rs-icon { background: var(--navy-800); }
.rs-navy .rs-icon svg { fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; }
.step-num {
  font-family: var(--font-head); font-weight: 800; font-size: 2.4rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.step h3 { margin: 10px 0 6px; }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------- Booking page ---------- */
.booking-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.form-card { padding: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--navy-900); }
.field label .req { color: var(--teal-dark); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,155,141,.14);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-status { margin-top: 16px; padding: 13px 16px; border-radius: var(--radius-sm); font-size: .93rem; display: none; font-weight: 600; }
.form-status.ok { display: block; background: rgba(0,155,141,.1); color: var(--teal-dark); border: 1px solid rgba(0,155,141,.35); }
.form-status.err { display: block; background: rgba(217,63,52,.08); color: #b3372e; border: 1px solid rgba(217,63,52,.3); }
.contact-card { background: var(--navy-950); color: #c3d5e3; border-radius: var(--radius); padding: 34px; }
.contact-card h3 { color: #fff; margin-bottom: 18px; }
.contact-card ul { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.cc-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.contact-card li { display: flex; gap: 13px; align-items: flex-start; min-width: 0; }
.contact-card li > span:last-child { min-width: 0; }
.contact-card .cc-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.contact-card .cc-icon svg { width: 19px; height: 19px; stroke: #5fd6e8; }
.contact-card a { color: #fff; font-weight: 600; overflow-wrap: break-word; word-break: break-word; }
.contact-card a:hover { color: #5fd6e8; }
.contact-card .cc-label { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: #7f96a9; font-weight: 700; }
.contact-card .big-phone { font-family: var(--font-head); font-size: 1.45rem; font-weight: 800; color: #fff; }
.contact-note { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; color: #7f96a9; }

/* ---------- About ---------- */
.value-grid .card { text-align: left; }
.about-photo { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.sig { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--navy-900); margin-top: 18px; }
.sig span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .9rem; color: var(--muted); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile floating call bar ---------- */
.mobile-call { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; padding-block: 56px; }
  .hero-media { max-width: 540px; margin-inline: auto; width: 100%; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-phone {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: stretch; padding: 14px 22px 20px;
    border-bottom: 1px solid var(--line); box-shadow: 0 24px 40px rgba(14,34,56,.12);
    gap: 6px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; font-size: 1.02rem; }
  .nav-phone.open { display: flex; padding: 13px 14px 4px; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .split { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .checklist.cols-2 { grid-template-columns: 1fr; }
  .stat-strip .container { grid-template-columns: 1fr; gap: 14px; }
  .stat-strip .divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 14px; padding: 26px; }
  .hero-actions .btn { width: 100%; }
  .mobile-call {
    display: flex; position: fixed; bottom: 14px; left: 14px; right: 14px; z-index: 70;
  }
  .mobile-call a {
    flex: 1; background: var(--grad); color: #fff; text-align: center;
    padding: 15px; border-radius: 999px; font-family: var(--font-head);
    font-weight: 700; box-shadow: 0 12px 30px rgba(0,155,141,.4);
  }
  body { padding-bottom: 0; }
  .page-hero .container { padding-block: 44px; }
  .topbar .topbar-phone { display: none; }
}
@media (max-width: 860px) {
  .contact-card ul { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .brand img { height: 76px; }
  .grid-4 { grid-template-columns: 1fr; }
}
