:root {
  --header-height: 104px;
  --topbar-height: 38px;
  --page-gutter: clamp(18px, 5vw, 64px);
  --ink: #f6f8fb;
  --muted: #9aa6b4;
  --line: rgba(255, 255, 255, 0.11);
  --paper: #070a0f;
  --white: #ffffff;
  --red: #ff2f45;
  --red-dark: #b80f23;
  --electric: #00a3ff;
  --rose: #ff4fb8;
  --yellow: #f7c948;
  --whatsapp: #17b866;
  --panel: rgba(17, 24, 34, 0.72);
  --panel-solid: #111820;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 163, 255, 0.16), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(23, 184, 102, 0.12), transparent 24%),
    linear-gradient(180deg, #080b10 0%, #0d1118 44%, #070a0f 100%);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

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

img,
iframe {
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 16px var(--page-gutter);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-topbar {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 35;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(260px, auto) minmax(120px, 1fr);
  align-items: center;
  min-height: var(--topbar-height);
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 13, 0.88);
  color: rgba(246, 248, 251, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.topbar-item span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-item svg {
  width: 15px;
  height: 15px;
  color: var(--electric);
}

.topbar-address {
  justify-self: center;
  width: 100%;
  max-width: min(48vw, 620px);
  overflow: hidden;
}

.topbar-social {
  justify-self: end;
  justify-content: center;
  width: 40px;
  height: 32px;
  border: 1px solid rgba(255, 79, 184, 0.28);
  border-radius: 8px;
  background: rgba(255, 79, 184, 0.08);
}

.topbar-social svg {
  color: var(--rose);
}

.instagram-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 15, 0.72);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.nav-cta,
.button,
.hero-stats,
.trust-list div,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: clamp(10px, 1.6vw, 14px);
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
  min-height: 72px;
}

.brand-logo {
  display: block;
  width: clamp(72px, 8vw, 86px);
  height: clamp(58px, 7vw, 72px);
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

.brand-name {
  max-width: min(280px, 42vw);
  color: var(--white);
  font-size: clamp(1.16rem, 1.55vw, 1.42rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--electric), var(--rose));
  color: var(--white);
  font-size: 0.9rem;
  box-shadow: 0 12px 34px rgba(255, 79, 184, 0.22);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.6;
}

.site-nav {
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:not(.nav-cta) {
  opacity: 0.86;
}

.nav-cta {
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--whatsapp), #0b7a45);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(23, 184, 102, 0.3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(12px);
  cursor: pointer;
  touch-action: manipulation;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + var(--topbar-height) + clamp(46px, 8vw, 92px)) var(--page-gutter) 90px;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-workshop.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  filter: saturate(0.92) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(115deg, rgba(0, 163, 255, 0.18), transparent 34%),
    radial-gradient(circle at 22% 36%, rgba(23, 184, 102, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(3, 5, 8, 0.97) 0%, rgba(5, 8, 13, 0.78) 43%, rgba(5, 8, 13, 0.36) 100%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.68) 0%, rgba(7, 10, 15, 0.16) 54%, #070a0f 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(730px, 100%);
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--electric);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(0, 163, 255, 0.32);
  border-radius: 999px;
  background: rgba(0, 163, 255, 0.08);
  color: #8ddaff;
  backdrop-filter: blur(10px);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 9vw, 7.3rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 14px 44px rgba(0, 0, 0, 0.48);
  max-width: 100%;
  overflow-wrap: normal;
}

h1 span {
  display: block;
  max-width: 100%;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  max-width: 100%;
  touch-action: manipulation;
}

.button.primary,
.form-button {
  background: linear-gradient(135deg, var(--whatsapp), #0b7a45);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(23, 184, 102, 0.3);
}

.button.secondary {
  border: 1px solid rgba(0, 163, 255, 0.32);
  background: rgba(0, 163, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button.secondary.dark {
  border-color: rgba(0, 163, 255, 0.28);
  background: rgba(0, 163, 255, 0.08);
  color: var(--white);
}

.hero-stats {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-stats span {
  display: grid;
  align-content: center;
  min-height: 76px;
  min-width: min(100%, 190px);
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 163, 255, 0.1), rgba(255, 79, 184, 0.05)),
    rgba(14, 20, 29, 0.62);
  color: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.08;
}

.hero-stats small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.quick-book {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1.3fr);
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  margin: -54px auto 0;
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  z-index: 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-book::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--whatsapp), var(--electric), var(--yellow), transparent);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  padding: 0 13px;
}

input::placeholder {
  color: rgba(246, 248, 251, 0.46);
}

select option {
  color: #111820;
}

input:focus,
select:focus {
  outline: 3px solid rgba(0, 163, 255, 0.16);
  border-color: var(--electric);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 100px 0;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: 32px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-strip div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 16px 18px;
  background: rgba(15, 21, 30, 0.86);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.contact-strip svg {
  color: var(--electric);
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 800px;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(15, 21, 30, 0.74);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card svg,
.trust-list svg {
  color: var(--electric);
}

.service-card p,
.trust-copy p,
.contact-panel p,
.site-footer {
  color: var(--muted);
  line-height: 1.6;
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.88fr);
  gap: 40px;
  align-items: center;
  padding: 80px clamp(18px, 5vw, 64px);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(23, 184, 102, 0.15), transparent 36%),
    linear-gradient(315deg, rgba(0, 163, 255, 0.16), transparent 42%),
    linear-gradient(180deg, #0c1118, #151c26);
  color: var(--white);
}

.trust-copy p {
  max-width: 660px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.74);
}

.trust-detail {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 24px;
}

.trust-detail span {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

.trust-detail span::before {
  content: "";
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 18px rgba(0, 163, 255, 0.62);
}

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

.trust-list div {
  position: relative;
  gap: 12px;
  min-height: 58px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 163, 255, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.07);
  font-weight: 700;
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.trust-list div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 48%, transparent 72%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.trust-list svg {
  position: relative;
  z-index: 1;
  transition: transform 180ms ease, color 180ms ease;
}

.location-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.contact-panel,
.map-placeholder {
  min-height: 320px;
  border-radius: 8px;
}

.contact-panel {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

small {
  color: #7a838d;
  font-size: 0.9rem;
}

.button.whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), #0a6f40);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(23, 184, 102, 0.28);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.map-placeholder {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 163, 255, 0.18) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 48px 48px,
    radial-gradient(circle at 55% 45%, rgba(23, 184, 102, 0.16), transparent 28%),
    linear-gradient(135deg, #111820, #0b1017);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.map-placeholder span {
  padding: 12px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--electric));
  color: var(--white);
  font-weight: 800;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: rgba(7, 10, 15, 0.88);
  font-size: 0.94rem;
}

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover {
    opacity: 1;
  }

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

  .button.primary:hover,
  .form-button:hover {
    box-shadow: 0 20px 46px rgba(23, 184, 102, 0.38);
  }

  .service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 163, 255, 0.38);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
  }

  .trust-list div:hover {
    transform: translateX(6px);
    border-color: rgba(0, 163, 255, 0.34);
    background:
      linear-gradient(135deg, rgba(0, 163, 255, 0.14), rgba(255, 79, 184, 0.08)),
      rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  }

  .trust-list div:hover::after {
    opacity: 1;
    transform: translateX(120%);
    transition: transform 620ms ease, opacity 220ms ease;
  }

  .trust-list div:hover svg {
    transform: scale(1.1) rotate(-6deg);
    color: var(--white);
  }
}

@media (hover: none), (pointer: coarse) {
  .hero-content,
  .quick-book,
  .service-card,
  .trust-list div {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .service-card,
  .trust-list div,
  .button,
  .trust-list svg {
    transition-duration: 120ms;
  }

  .trust-list div::after {
    display: none;
  }
}

.button:active,
.nav-toggle:active,
.topbar-item:active,
.site-nav a:active {
  transform: scale(0.98);
}

.button:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible,
.topbar-item:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(0, 163, 255, 0.42);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content,
  .quick-book,
  .service-card,
  .trust-list div {
    animation: rise-in 700ms ease both;
  }

  .quick-book {
    animation-delay: 80ms;
  }

  .service-card:nth-child(2),
  .trust-list div:nth-child(2) {
    animation-delay: 80ms;
  }

  .service-card:nth-child(3),
  .trust-list div:nth-child(3) {
    animation-delay: 140ms;
  }

  .service-card:nth-child(4),
  .trust-list div:nth-child(4) {
    animation-delay: 200ms;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (max-width: 920px) {
  :root {
    --header-height: 92px;
    --topbar-height: 64px;
    --page-gutter: 18px;
  }

  .site-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-content: center;
    gap: 4px 14px;
    padding-block: 7px;
    font-size: 0.74rem;
  }

  .topbar-phone {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .topbar-social {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 38px;
    height: 34px;
  }

  .topbar-address {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    width: 100%;
    max-width: 100%;
  }

  .topbar-address span {
    max-width: min(calc(100vw - (2 * var(--page-gutter)) - 30px), 300px);
  }

  .nav-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + var(--topbar-height) + 8px);
    right: 18px;
    left: 18px;
    z-index: 80;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(7, 10, 15, 0.96);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
    padding: 14px;
    display: flex;
    align-items: center;
    opacity: 1;
    touch-action: manipulation;
  }

  .nav-cta {
    margin-top: 6px;
    justify-content: center;
  }

  .quick-book,
  .contact-strip,
  .trust-band,
  .location-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-stats span {
    flex: 1 1 180px;
  }

  .hero-content,
  .quick-book,
  .service-card,
  .trust-list div {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .service-card,
  .trust-list div {
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
  }

  .service-card:active,
  .trust-list div:active {
    border-color: rgba(0, 163, 255, 0.32);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  }

  .trust-list div::after {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 92px;
    --topbar-height: 68px;
    --page-gutter: 18px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-block: 10px;
  }

  .brand-name {
    max-width: min(170px, 42vw);
    font-size: clamp(0.98rem, 4.2vw, 1.12rem);
    line-height: 1.1;
  }

  .brand-logo {
    width: clamp(62px, 18vw, 74px);
    height: 60px;
  }

  .site-topbar {
    gap: 3px 10px;
    font-size: 0.7rem;
  }

  .topbar-item {
    gap: 6px;
  }

  .topbar-social {
    width: 36px;
    height: 32px;
  }

  .hero {
    min-height: 88svh;
    padding-top: calc(var(--header-height) + var(--topbar-height) + 34px);
    padding-bottom: 76px;
  }

  .hero-content {
    width: min(100%, 340px);
  }

  h1 {
    font-size: clamp(2.35rem, 10.6vw, 3.4rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.06;
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 5, 8, 0.96) 0%, rgba(3, 5, 8, 0.82) 64%, rgba(3, 5, 8, 0.46) 100%),
      linear-gradient(180deg, rgba(3, 5, 8, 0.4) 0%, #070a0f 100%);
  }

  .button,
  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .button {
    min-height: 54px;
    padding-inline: 16px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .quick-book {
    margin-top: -36px;
    width: min(calc(100% - 24px), 1180px);
    padding: 18px;
  }

  .booking-form,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(calc(100% - 24px), 1180px);
    padding: 74px 0;
  }

  .contact-strip {
    width: min(calc(100% - 24px), 1180px);
  }

  .contact-strip div {
    min-height: 62px;
    padding: 14px 16px;
  }

  .service-card {
    min-height: 0;
    padding: 22px;
  }

  .trust-band {
    padding-top: 62px;
    padding-bottom: 62px;
    padding-inline: 18px;
  }

  .contact-panel {
    padding: 24px;
  }

  .map-placeholder,
  .map-placeholder iframe {
    min-height: 280px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  :root {
    --topbar-height: 72px;
    --page-gutter: 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand-name {
    max-width: 132px;
    font-size: 0.98rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    right: 14px;
    left: 14px;
  }

  .topbar-address span {
    max-width: min(calc(100vw - (2 * var(--page-gutter)) - 30px), 260px);
  }

  .hero-content {
    width: min(100%, 324px);
  }

  h1 {
    font-size: clamp(2.18rem, 10.4vw, 2.85rem);
  }
}
