:root {
  color-scheme: light;
  --blue: #1681bf;
  --blue-dark: #0d5f95;
  --blue-soft: #e7f5fc;
  --purple: #7350a8;
  --purple-soft: #f0ebf7;
  --green: #187339;
  --green-soft: #e9f6ee;
  --ink: #172334;
  --muted: #657285;
  --line: #d9e4ee;
  --paper: #ffffff;
  --warm: #fbfaf7;
  --shadow: 0 20px 50px rgba(23, 35, 52, 0.11);
  --shadow-soft: 0 12px 30px rgba(23, 35, 52, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 8px;
  --radius-lg: 8px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(231, 245, 252, 0.42) 0, rgba(255, 255, 255, 0) 360px),
    var(--warm);
  color: var(--ink);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.12em;
  height: 1.12em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.btn .icon,
.location-line .icon,
.footer-line .icon {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--blue-dark);
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(24, 115, 57, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  max-width: calc(100vw - 32px);
  margin-inline: auto;
}

.section {
  padding: 64px 0;
}

.band {
  background: #fff;
  border-block: 1px solid rgba(217, 228, 238, 0.72);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 228, 238, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease, transform 220ms var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(23, 35, 52, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

.header-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 12px;
  max-width: calc(100% - 62px);
  min-width: 0;
  overflow: hidden;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(22, 129, 191, 0.08);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.brand:hover .brand-logo {
  box-shadow: 0 12px 24px rgba(22, 129, 191, 0.14);
  transform: translateY(-1px) scale(1.03);
}

.brand-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
  max-width: min(52vw, 230px);
  min-width: 0;
  overflow: hidden;
}

.brand-text strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-text span {
  color: var(--muted);
  direction: ltr;
  font-size: 0.78rem;
  line-height: 1.35;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html[dir="ltr"] .brand-text span {
  text-align: left;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2px;
  margin-inline-start: auto;
}

.desktop-nav a {
  border-radius: 999px;
  color: #415166;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 9px 12px;
  transition: background 160ms ease, color 160ms ease, transform 160ms var(--ease);
}

.desktop-nav a:hover {
  background: var(--blue-soft);
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.header-cta.btn {
  display: none;
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 3px;
}

.language-switcher button {
  min-width: 34px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--blue-soft);
  box-shadow: inset 0 0 0 1px rgba(22, 129, 191, 0.16);
  color: var(--blue-dark);
}

.mobile-nav {
  flex: 0 0 auto;
  margin-inline-start: auto;
  position: relative;
}

.mobile-nav summary {
  display: grid;
  gap: 5px;
  place-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(86vw, 330px);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

html[dir="ltr"] .mobile-nav nav {
  right: 0;
  left: auto;
}

.mobile-nav nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
  padding: 9px 12px;
}

.mobile-nav nav a:hover {
  background: var(--blue-soft);
}

.mobile-nav nav .btn {
  justify-content: center;
  margin-top: 8px;
}

.btn {
  position: relative;
  isolation: isolate;
  gap: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  padding: 11px 17px;
  text-align: center;
  transition:
    transform 190ms var(--ease),
    box-shadow 190ms var(--ease),
    background 190ms ease,
    color 190ms ease,
    border-color 190ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--green), #15964a);
  box-shadow: 0 12px 24px rgba(24, 115, 57, 0.2);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #13662f, #128640);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  border-color: rgba(22, 129, 191, 0.28);
  color: var(--blue-dark);
}

.btn-secondary:hover {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(115, 80, 168, 0.25);
  color: var(--purple);
}

.btn-ghost:hover {
  background: var(--purple-soft);
  color: #5a3c8a;
}

.btn-large {
  width: 100%;
  min-height: 50px;
  padding-inline: 20px;
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 42px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(231, 245, 252, 0.76));
}

.hero-grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

.hero-grid > *,
.two-column > *,
.contact-grid > *,
.map-layout > * {
  min-width: 0;
}

.hero-copy {
  max-width: 100%;
  min-width: 0;
}

.eyebrow,
.section-kicker,
.panel-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(22, 129, 191, 0.22);
  border-radius: 999px;
  background: rgba(231, 245, 252, 0.88);
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: break-word;
  padding: 6px 12px;
}

h1 {
  max-width: 100%;
  margin: 16px 0 16px;
  color: var(--ink);
  font-size: 2.15rem;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-lead {
  max-width: 780px;
  color: #405066;
  font-size: 1.06rem;
  line-height: 1.95;
  margin-bottom: 14px;
  overflow-wrap: break-word;
}

.location-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 100%;
  border-right: 4px solid var(--green);
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 24px;
  overflow-wrap: break-word;
  padding: 5px 12px 5px 0;
}

.location-line .icon {
  margin-inline-start: 0;
  margin-top: 0.28em;
}

html[dir="ltr"] .location-line {
  border-right: 0;
  border-left: 4px solid var(--green);
  padding: 5px 0 5px 12px;
}

.hero-actions,
.inline-actions,
.contact-actions {
  display: grid;
  gap: 10px;
}

.hero-card {
  display: grid;
  gap: 16px;
}

.hero-logo-card {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(217, 228, 238, 0.82);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(22, 129, 191, 0.08), rgba(115, 80, 168, 0.08)),
    #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 22px;
  transform-origin: center;
}

.hero-logo-card::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--green));
}

.hero-logo-card img {
  width: min(100%, 280px);
  max-height: 240px;
  object-fit: contain;
}

.hero-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-service-list span {
  min-height: 62px;
  border: 1px solid rgba(217, 228, 238, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  min-width: 0;
  overflow-wrap: break-word;
  padding: 12px;
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease);
}

.hero-service-list span .icon {
  color: var(--blue-dark);
}

.hero-service-list span:hover {
  border-color: rgba(22, 129, 191, 0.28);
  box-shadow: 0 16px 34px rgba(23, 35, 52, 0.1);
  transform: translateY(-3px);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-heading h2,
.copy-block h2,
.hours-card h2 {
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 0;
}

.section-heading p,
.copy-block p {
  max-width: 710px;
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 14px;
}

.compact-section {
  padding: 42px 0;
}

.trust-strip {
  display: grid;
  gap: 12px;
}

.info-card,
.service-card,
.contact-card,
.visit-card,
.hours-card,
.feature-panel {
  border: 1px solid rgba(217, 228, 238, 0.88);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.info-card,
.service-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease);
}

.info-card:hover,
.service-card:hover,
.contact-card:hover,
.visit-card:hover,
.hours-card:hover,
.feature-panel:hover {
  border-color: rgba(22, 129, 191, 0.24);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.info-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: var(--blue);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue-dark);
  margin-bottom: 14px;
}

.accent-purple .card-icon {
  background: var(--purple-soft);
  color: var(--purple);
}

.accent-green .card-icon {
  background: var(--green-soft);
  color: var(--green);
}

.info-card.accent-purple::before {
  background: var(--purple);
}

.info-card.accent-green::before {
  background: var(--green);
}

.info-card h3,
.service-card h3,
.visit-card h3 {
  color: var(--ink);
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.info-card p,
.service-card p,
.visit-card p {
  margin-bottom: 0;
}

.trust-strip .info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: start;
  padding: 18px;
}

.trust-strip .info-card .card-icon {
  grid-row: span 2;
  margin-bottom: 0;
}

.trust-strip .info-card h3 {
  margin-bottom: 4px;
}

.service-card {
  min-height: 210px;
}

.service-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 18px;
  color: #fff;
  transition: transform 180ms var(--ease);
}

.service-card:hover .service-mark {
  transform: rotate(-4deg) scale(1.08);
}

.mark-blue {
  background: linear-gradient(135deg, var(--blue), #56b6df);
}

.mark-purple {
  background: linear-gradient(135deg, var(--purple), #9e78ca);
}

.mark-green {
  background: linear-gradient(135deg, var(--green), #38ad65);
}

.two-column,
.contact-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.copy-block {
  display: grid;
  gap: 14px;
}

.safe-note {
  border-right: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--green-soft);
  color: #244932;
  font-weight: 700;
  padding: 12px 14px;
}

html[dir="ltr"] .safe-note {
  border-right: 0;
  border-left: 4px solid var(--green);
  border-radius: var(--radius) 0 0 var(--radius);
}

.feature-panel {
  padding: 18px;
}

.care-panel {
  display: grid;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(240, 235, 247, 0.9), rgba(231, 245, 252, 0.82)),
    #fff;
}

.care-panel div {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: 18px;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease;
}

.care-panel div:hover {
  border-color: rgba(115, 80, 168, 0.2);
  background: #fff;
  transform: translateX(-4px);
}

.care-panel strong,
.care-panel span {
  display: block;
}

.care-panel strong {
  color: var(--purple);
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.care-panel span {
  color: var(--muted);
}

.delivery-panel {
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(22, 129, 191, 0.95), rgba(115, 80, 168, 0.92)),
    var(--blue-dark);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.delivery-panel .panel-badge {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.delivery-panel h2 {
  direction: ltr;
  color: #fff;
  font-size: 2.35rem;
  line-height: 1;
  margin: 0;
  text-align: right;
}

html[dir="ltr"] .delivery-panel h2 {
  text-align: left;
}

.delivery-panel p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.address-block p {
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 4px;
}

.address-block small {
  display: block;
  color: var(--muted);
  direction: ltr;
  line-height: 1.7;
  text-align: right;
}

html[dir="ltr"] .address-block small {
  text-align: left;
}

.map-layout {
  display: grid;
  gap: 16px;
}

.map-frame {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(217, 228, 238, 0.88);
  border-radius: var(--radius-lg);
  background: var(--blue-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease);
}

.map-frame:hover {
  border-color: rgba(24, 115, 57, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}

.map-fallback p {
  margin: 0;
}

.visit-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.visit-card .btn {
  width: 100%;
}

.hours-card {
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 22px;
}

.hours-card p {
  margin: 0;
}

.contact-card {
  padding: 18px;
}

.contact-card dl {
  display: grid;
  gap: 2px;
  margin: 0 0 18px;
}

.contact-card dl div {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgba(217, 228, 238, 0.8);
  padding: 12px 0;
}

.contact-card dl div:first-child {
  padding-top: 0;
}

.contact-card dt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.contact-icon.whatsapp {
  background: var(--green-soft);
  color: var(--green);
}

.contact-icon.instagram {
  background: var(--purple-soft);
  color: var(--purple);
}

.contact-icon.facebook {
  background: var(--blue-soft);
  color: #1877f2;
}

.contact-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  word-break: break-word;
}

.contact-card dd a:hover {
  color: var(--blue-dark);
}

.contact-card a[dir="ltr"] {
  direction: ltr;
  display: inline-block;
  unicode-bidi: isolate;
}

.site-footer {
  background: #122336;
  color: #fff;
  padding: 40px 0 24px;
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover {
  color: #cbeefc;
}

.footer-grid,
.footer-bottom {
  display: grid;
  gap: 22px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #fff;
  object-fit: contain;
  padding: 6px;
}

.footer-brand div {
  display: grid;
  gap: 2px;
}

.footer-brand strong {
  font-size: 1.05rem;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.footer-details p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.footer-line,
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social {
  direction: rtl;
  margin-inline: 0;
}

html[dir="ltr"] .footer-social {
  direction: ltr;
}

.footer-social .icon {
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: 28px;
  padding-top: 20px;
}

@media (min-width: 560px) {
  .hero-actions,
  .inline-actions,
  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .btn-primary {
    grid-column: span 2;
  }

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

  .hours-card {
    grid-template-columns: 1fr auto;
  }

  .hours-card div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 559px) {
  .header-wrap {
    gap: 9px;
    min-height: 76px;
  }

  .brand {
    gap: 8px;
    max-width: none;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 10px;
  }

  .brand-logo img {
    width: 45px;
    height: 45px;
  }

  .brand-text {
    max-width: none;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text span {
    display: none;
  }

  .language-switcher {
    padding: 2px;
  }

  .language-switcher button {
    min-width: 30px;
    min-height: 30px;
    font-size: 0.72rem;
  }

  .mobile-nav summary {
    width: 42px;
    height: 42px;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 84px 0;
  }

  .compact-section {
    padding: 48px 0;
  }

  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .hero {
    padding-top: 64px;
  }

  h1 {
    max-width: 12ch;
    font-size: 3.6rem;
  }

  .section-heading h2,
  .copy-block h2,
  .hours-card h2 {
    font-size: 2.35rem;
  }

  .delivery-panel h2 {
    font-size: 3.25rem;
  }

  .hero-actions,
  .inline-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .btn-large {
    width: auto;
  }

  .hero-actions .btn-primary {
    grid-column: auto;
  }

  .hero-grid,
  .two-column,
  .contact-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  }

  .reverse-on-desktop {
    grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  }

  .section-heading.split {
    grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.72fr);
    align-items: end;
  }

  .map-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: stretch;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
    align-items: center;
  }

  .footer-bottom {
    grid-template-columns: 0.55fr 1fr;
    align-items: center;
  }

  .footer-bottom p:last-child {
    text-align: end;
  }
}

@media (min-width: 1060px) {
  .desktop-nav {
    display: flex;
  }

  .header-cta.btn {
    display: inline-flex;
  }

  .mobile-nav {
    display: none;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .brand-logo img {
    width: 58px;
    height: 58px;
  }

  .brand-text strong {
    font-size: 1.08rem;
  }

  .card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .compact-section {
    padding: 52px 0;
  }

  h1 {
    font-size: 4.45rem;
  }

  .section-heading h2,
  .copy-block h2,
  .hours-card h2 {
    font-size: 2.7rem;
  }

  .delivery-panel h2 {
    font-size: 4rem;
  }

  .hero-logo-card {
    min-height: 380px;
  }

  .hero-logo-card img {
    width: min(100%, 350px);
    max-height: 320px;
  }

  .service-card {
    min-height: 244px;
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js [data-animate] {
  opacity: 0;
  transform: translateY(28px);
}

.js [data-animate].is-visible {
  animation: reveal-up 680ms var(--ease) both;
}

.js [data-animate].is-visible .info-card,
.js [data-animate].is-visible .service-card,
.js [data-animate].is-visible .care-panel > div {
  animation: reveal-up 620ms var(--ease) both;
}

.js [data-animate].is-visible .info-card:nth-child(2),
.js [data-animate].is-visible .service-card:nth-child(2),
.js [data-animate].is-visible .care-panel > div:nth-child(2) {
  animation-delay: 90ms;
}

.js [data-animate].is-visible .info-card:nth-child(3),
.js [data-animate].is-visible .service-card:nth-child(3),
.js [data-animate].is-visible .care-panel > div:nth-child(3) {
  animation-delay: 180ms;
}

.js [data-animate].is-visible .info-card:nth-child(4),
.js [data-animate].is-visible .service-card:nth-child(4) {
  animation-delay: 270ms;
}

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

  .js [data-animate] {
    opacity: 1;
    transform: none;
  }
}
