:root {
  --bg: #F6F4F1;
  --white: #FFFFFF;
  --text: #1D2126;
  --text-soft: #3E444B;
  --text-mute: #5C6168;
  --border: #E2DED8;
  --accent: #A43B25;
  --accent-dark: #82301E;
  --accent-light: #E9C7B5;
  --dark: #1D2126;
  --dark-2: #23282E;
  --dark-3: #2A3037;
  --dark-border: #2A3037;
  --dark-text-mute: #8D9298;
  --dark-text-soft: #B9BDC2;
  --footer-bg: #15181C;
  --footer-text: #8D9298;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

[id] { scroll-margin-top: 96px; }
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
input, textarea, select, button { font-family: inherit; }
h1, h2, h3, p { margin: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@keyframes gtFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 104px 28px; background: var(--bg); }
.section > .container { padding: 0; }
.section--white { background: var(--white); }
.section--dark { background: var(--dark); color: #fff; }

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}
.eyebrow--light { color: var(--accent-light); }

.h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.04;
  margin: 14px 0 0;
  text-transform: uppercase;
}
.h2--light { color: #fff; }

.lead { font-size: 17px; line-height: 1.65; color: var(--text-mute); text-wrap: pretty; }
.lead--right { max-width: 420px; margin: 0 0 6px auto; }
.lead--dark { color: var(--dark-text-soft); }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 17px 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--accent-dark); color: #fff; }
.btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
}
.btn--outline:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn--nav { padding: 13px 22px; font-size: 13.5px; }
.btn--lg { padding: 17px 30px; }

.topbar {
  width: 100%;
  background: var(--dark);
  color: var(--dark-text-soft);
  font-size: 13.5px;
  letter-spacing: 0.02em;
}
.topbar__row {
  padding: 9px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}
.topbar__phone { color: var(--bg); font-weight: 600; }
.topbar__phone:hover { color: var(--accent-light); }
.topbar__mail { color: var(--dark-text-soft); }
.topbar__mail:hover { color: #fff; }
.topbar__hours { margin-left: auto; color: var(--dark-text-mute); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header__row {
  padding: 16px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 32px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo__img { height: 52px; width: auto; }
.nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  column-gap: 24px;
  row-gap: 12px;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
}
.nav__list { display: contents; }
.nav a:not(.btn) { color: #2A3037; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(29,33,38,0.92) 0%, rgba(29,33,38,0.72) 46%, rgba(29,33,38,0.25) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  padding: 120px 28px 64px;
  width: 100%;
  pointer-events: none;
}
.hero__box { max-width: 720px; animation: gtFadeUp 0.6s ease both; }
.hero__kicker {
  display: inline-block;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  color: var(--accent-light);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 0.99;
  letter-spacing: 0.005em;
  color: #fff;
  margin: 22px 0 0;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero__text {
  font-size: 19.5px;
  line-height: 1.6;
  color: #D8DBDE;
  margin: 22px 0 0;
  max-width: 560px;
  text-wrap: pretty;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  pointer-events: auto;
}

.trustbar { background: var(--white); border-bottom: 1px solid var(--border); }
.trustbar__row {
  padding: 26px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 20px 24px;
}
.trustbar__item { display: flex; gap: 12px; align-items: baseline; font-size: 15.5px; color: #2A3037; }
.trustbar__num { color: var(--accent); font-weight: 700; }

.section-head {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.section-head--center { flex-direction: column; align-items: center; text-align: center; max-width: 620px; margin: 0 auto 54px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: 2px;
}
.service-card {
  background: var(--white);
  outline: 1px solid var(--border);
  padding: 38px 34px 34px;
  transition: background 0.15s ease;
}
.service-card:hover { background: #FFFDFB; }
.service-card__bar { height: 3px; width: 44px; background: var(--accent); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 22px 0 12px;
}
.service-card p { font-size: 16px; line-height: 1.65; color: var(--text-mute); }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 56px;
  align-items: start;
}
.about-text { font-size: 17.5px; line-height: 1.7; color: var(--text-soft); margin: 0 0 18px; text-wrap: pretty; }
.about-text--last { margin-bottom: 0; }

.about-grid--intro { margin-bottom: 0; }
.about-grid--intro .about-text--last { margin-top: 26px; }

.section-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--accent);
  margin: 62px 0 58px;
}
.section-sep__line { flex: 1 1 0; height: 1px; min-width: 0; }
.section-sep__line:first-child { background: linear-gradient(to right, transparent, var(--border) 85%); }
.section-sep__line:last-child { background: linear-gradient(to left, transparent, var(--border) 85%); }
.section-sep__mark { flex: none; width: 54px; height: 26px; display: block; }

.brands { padding-top: 0; }
.brands__head { max-width: 780px; }
.brands__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 14px 0 16px;
}
.brands__text { font-size: 17px; line-height: 1.7; color: var(--text-soft); margin: 0; text-wrap: pretty; }
.brands__media {
  margin-top: 38px;
  background: var(--bg);
  outline: 1px solid var(--border);
  padding: 34px 30px;
}
.brands__media img { width: 100%; height: auto; max-width: 1024px; margin: 0 auto; }

.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 205px), 1fr));
  gap: 2px;
  margin-top: 52px;
}
.sign-card { background: var(--dark-2); outline: 1px solid var(--dark-border); padding: 30px 24px 34px; }
.sign-card__num { font-family: var(--font-head); font-size: 15px; letter-spacing: 0.2em; color: var(--accent); font-weight: 700; }
.sign-card p { font-size: 16.5px; line-height: 1.5; color: #E7E9EB; margin: 16px 0 0; font-weight: 600; }
.signs-cta { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 44px; }
.signs-cta__text { color: var(--dark-text-mute); font-size: 16px; }
.contact-lead { max-width: 460px; margin: 0 0 40px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 28px;
}
.process-step__media { height: 230px; position: relative; }
.process-step__media img { width: 100%; height: 100%; object-fit: cover; }
.process-step__head { display: flex; align-items: baseline; gap: 12px; margin-top: 20px; }
.process-step__num { font-family: var(--font-head); font-size: 34px; font-weight: 700; color: var(--accent); line-height: 1; }
.process-step h3 { font-family: var(--font-head); font-size: 26px; font-weight: 700; text-transform: uppercase; }
.process-step p { font-size: 15.5px; line-height: 1.6; color: var(--text-mute); margin: 10px 0 0; }

.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 40px;
}
.filters { display: flex; gap: 2px; background: var(--border); }
.filter-btn {
  border: 0;
  cursor: pointer;
  padding: 13px 20px;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--white);
  color: var(--text-mute);
}
.filter-btn.is-active { background: var(--dark); color: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
}
.gallery-card { background: var(--white); border: 1px solid var(--border); }
.gallery-card[hidden] { display: none; }
.gallery-card__media { height: 260px; position: relative; }
.gallery-card__media img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card__body { padding: 22px 24px 24px; }
.gallery-card__cat { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.gallery-card__body h3 { font-family: var(--font-head); font-size: 26px; font-weight: 700; text-transform: uppercase; margin: 10px 0 8px; }
.gallery-card__body p { font-size: 15.5px; line-height: 1.55; color: var(--text-mute); }
.gallery-empty { text-align: center; color: var(--text-mute); margin-top: 32px; }

.testimonials { border-top: 1px solid var(--border); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2px;
}
.testimonial { background: var(--bg); outline: 1px solid var(--border); margin: 0; padding: 36px 32px; }
.testimonial p { font-size: 17px; line-height: 1.65; color: #2A3037; margin: 0 0 20px; text-wrap: pretty; }
.testimonial footer { font-size: 14px; color: var(--text-mute); }

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 48px;
  align-items: start;
}
.zones-text { font-size: 17px; line-height: 1.7; color: var(--text-soft); margin-top: 20px; }
.zones-list { display: grid; gap: 2px; border-top: 3px solid var(--dark); }
.zone-block { background: var(--white); outline: 1px solid var(--border); padding: 24px 26px; }
.zone-block__name {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--accent);
  line-height: 1.1;
}
.zone-block__desc { font-size: 15.5px; line-height: 1.55; color: var(--text-mute); margin: 8px 0 0; }

.page-head { background: var(--dark); color: #fff; padding: 72px 32px 64px; }
.page-head__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  margin: 14px 0 0;
  color: #fff;
}
.page-head__meta { color: var(--dark-text-mute); font-size: 15px; margin: 16px 0 0; }

.legal { max-width: 820px; }
.legal__intro { font-size: 18.5px; line-height: 1.7; color: var(--text-soft); margin: 0 0 12px; text-wrap: pretty; }
.legal h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.12;
  margin: 52px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.legal h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin: 32px 0 0;
}
.legal p { font-size: 17px; line-height: 1.7; color: var(--text-soft); margin: 16px 0 0; text-wrap: pretty; }
.legal a { text-decoration: underline; text-underline-offset: 2px; }

.legal-list { margin: 16px 0 0; padding-left: 22px; }
.legal-list li { font-size: 17px; line-height: 1.7; color: var(--text-soft); margin-bottom: 12px; text-wrap: pretty; }
.legal-list li::marker { color: var(--accent); }

.legal-card {
  background: var(--bg);
  border-left: 3px solid var(--accent);
  padding: 24px 26px;
  margin-top: 20px;
}
.legal-card p { margin: 0; }
.legal-card p + p { margin-top: 14px; }

.legal-callout {
  background: var(--dark);
  padding: 28px 30px;
  margin-top: 22px;
}
.legal-callout p { color: #E7E9EB; margin: 0; }
.legal-callout strong { color: #fff; }

.legal-table-wrap { overflow-x: auto; margin-top: 22px; }
.legal-table { border-collapse: collapse; width: 100%; min-width: 640px; font-size: 15.5px; }
.legal-table th {
  background: var(--dark);
  color: #fff;
  font-family: var(--font-head);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  padding: 14px 16px;
  font-weight: 700;
}
.legal-table td {
  border: 1px solid var(--border);
  padding: 14px 16px;
  vertical-align: top;
  line-height: 1.55;
  color: var(--text-soft);
}
.legal-table tbody tr:nth-child(odd) td { background: var(--bg); }

.legal-back { margin-top: 52px; padding-top: 34px; border-top: 1px solid var(--border); }

.faq { max-width: 900px; }
.faq__title { font-size: clamp(30px, 4vw, 46px); margin-bottom: 36px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__question {
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: 24px 0;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
}
.faq-item__mark {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 24px;
  width: 22px;
  flex-shrink: 0;
}
.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}
.faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; opacity: 1; }
.faq-item__panel > * {
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0.2s;
}
.faq-item.is-open .faq-item__panel > * { visibility: visible; }
.faq-item__answer {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-mute);
  margin: 0;
  padding: 0 0 26px 42px;
  max-width: 680px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-info__label {
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark-text-mute);
  margin-bottom: 8px;
}
.contact-info__phone {
  color: #fff;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.contact-info__phone:hover { color: var(--accent-light); }
.contact-info__sub { font-size: 15px; color: var(--dark-text-mute); margin-top: 4px; }
.contact-info__mail { color: #fff; font-size: 18px; }
.contact-info__mail:hover { color: var(--accent-light); }
.contact-info__address { font-size: 18px; line-height: 1.5; color: #E7E9EB; }

.contact-panel { background: var(--white); color: var(--text); padding: 40px 38px; }
.contact-success { padding: 40px 0; text-align: center; }
.contact-success[hidden] { display: none; }
.contact-success__title { font-family: var(--font-head); font-size: 34px; font-weight: 700; text-transform: uppercase; color: var(--accent); }
.contact-success p { font-size: 17px; line-height: 1.6; color: var(--text-mute); margin: 14px 0 0; }

.contact-form[hidden] { display: none; }
.contact-form h3 { font-family: var(--font-head); font-size: 30px; font-weight: 700; text-transform: uppercase; margin: 0 0 24px; }
.contact-form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 185px), 1fr));
  gap: 16px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.contact-form__full { margin-top: 16px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid #D6D1CA;
  padding: 13px 14px;
  font-size: 16px;
  color: var(--text);
  background: #FBFAF8;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
}
.contact-form textarea { resize: vertical; }
.contact-form__submit {
  margin-top: 22px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.contact-form__submit:disabled { cursor: wait; opacity: 0.85; }

.btn__spinner { display: none; }
.contact-form__submit.is-loading .btn__spinner {
  display: block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
.contact-form__note { font-size: 13px; color: #8A8F96; margin: 14px 0 0; line-height: 1.5; }

.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 64px 28px 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 40px 48px;
}
.footer-logo { display: flex; align-items: center; margin-bottom: 26px; }
.footer-logo__img { width: min(250px, 100%); height: auto; }
.footer-about { font-size: 15.5px; line-height: 1.65; margin: 0; max-width: 340px; }
.footer-col__title { color: #fff; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.footer-col__links { display: flex; flex-direction: column; gap: 10px; font-size: 15.5px; }
.footer-col__links a { color: var(--footer-text); }
.footer-col__links a:hover { color: #fff; }
.footer-col__phone { color: #fff; font-weight: 600; }

.footer-bottom {
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid #262B31;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13.5px;
}
.footer-bottom__links { margin-left: auto; display: flex; gap: 18px; }
.footer-bottom__links a { color: var(--footer-text); }
.footer-bottom__links a:hover { color: #fff; }

@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .section { padding: 88px 24px; }
  .topbar__row,
  .header__row,
  .trustbar__row { padding-left: 24px; padding-right: 24px; }
  .hero { min-height: 560px; }
  .hero__content { padding: 104px 24px 56px; }
  .about-grid,
  .contact-grid { gap: 44px; }
  .zones-grid { gap: 36px; }
  .lead--right { margin-left: 0; }
}

@media (max-width: 900px) {
  [id] { scroll-margin-top: 80px; }

  .nav-toggle { display: flex; }

  .nav {
    display: grid;
    grid-template-rows: 0fr;
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-items: stretch;
    align-items: stretch;
    flex-basis: 100%;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    border-top: 1px solid transparent;
    opacity: 0;
    transition: grid-template-rows 0.2s ease, opacity 0.2s ease,
                margin-top 0.2s ease, border-top-color 0.2s ease;
  }
  .nav.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 8px;
    border-top-color: var(--border);
  }
  .nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    visibility: hidden;
    transition: visibility 0.2s;
  }
  .nav.is-open .nav__list { visibility: visible; }
  .nav__list > a {
    padding: 15px 2px;
    font-size: 16.5px;
    border-bottom: 1px solid var(--border);
  }
  .nav__list > a.btn {
    text-align: center;
    border-bottom: 0;
    margin-top: 12px;
    margin-bottom: 4px;
    padding: 16px 22px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .topbar { font-size: 13px; }
  .topbar__row { gap: 6px 20px; padding-top: 8px; padding-bottom: 8px; }
  .topbar__hours { margin-left: 0; flex-basis: 100%; font-size: 12.5px; }

  .section { padding: 72px 20px; }
  .container { padding: 0 20px; }
  .topbar__row,
  .header__row,
  .trustbar__row { padding-left: 20px; padding-right: 20px; }

  .section-head { gap: 20px; margin-bottom: 36px; }
  .section-head--center { margin-bottom: 40px; }
  .lead--right { max-width: none; margin: 0; }

  .about-grid,
  .contact-grid,
  .zones-grid { gap: 40px; }

  .section-sep { margin: 48px 0 44px; gap: 20px; }
  .brands__media { margin-top: 30px; padding: 26px 20px; }

  .page-head { padding: 56px 20px 50px; }
  .legal h2 { margin-top: 42px; padding-top: 22px; }
  .legal-card { padding: 20px 22px; }
  .legal-callout { padding: 24px 22px; }
  .process-step__media { height: 210px; }
  .gallery-card__media { height: 230px; }

  .signs-grid { margin-top: 40px; }
  .signs-cta { margin-top: 34px; gap: 16px; }

  .gallery-head { gap: 20px; margin-bottom: 32px; }
  .filters { flex-wrap: wrap; }
  .filter-btn { flex: 1 1 auto; padding: 13px 16px; }

  .contact-panel { padding: 32px 26px; }
  .site-footer { padding: 52px 20px 24px; }
  .footer-grid { gap: 34px 32px; }
}

@media (max-width: 560px) {
  .section { padding: 60px 18px; }
  .container { padding: 0 18px; }
  .topbar__row,
  .header__row,
  .trustbar__row { padding-left: 18px; padding-right: 18px; }

  .hero { min-height: 0; }
  .hero__content { padding: 84px 18px 44px; }
  .hero__text { font-size: 17.5px; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { flex: 1 1 100%; text-align: center; }

  .header__row { padding-top: 12px; padding-bottom: 12px; gap: 10px; }
  .logo__img { height: 42px; }
  html { scroll-padding-top: 78px; }

  .trustbar__row { padding-top: 20px; padding-bottom: 20px; gap: 14px; }

  .service-card { padding: 30px 24px 28px; }
  .service-card h3 { font-size: 27px; margin: 18px 0 10px; }

  .about-text { font-size: 16.5px; }
  .brands__text { font-size: 16px; }
  .brands__media { padding: 20px 14px; }
  .section-sep { margin: 40px 0 36px; gap: 16px; }
  .section-sep__mark { width: 44px; height: 21px; }

  .sign-card { padding: 24px 20px 28px; }
  .signs-cta .btn { width: 100%; text-align: center; }
  .signs-cta__text { font-size: 15px; }

  .process-grid { gap: 34px; }
  .process-step__media { height: 200px; }

  .filters { width: 100%; }
  .filter-btn { flex: 1 1 45%; padding: 12px 10px; font-size: 12.5px; }
  .gallery-grid { gap: 18px; }
  .gallery-card__media { height: 210px; }
  .gallery-card__body { padding: 20px 20px 22px; }

  .testimonial { padding: 28px 24px; }
  .testimonial p { font-size: 16px; }

  .zone-block { padding: 20px 20px; }
  .zone-block__name { font-size: 23px; }

  .faq-item__question { font-size: 17px; gap: 14px; padding: 20px 0; }
  .faq-item__answer { font-size: 16px; padding: 0 0 22px 36px; }

  .contact-panel { padding: 28px 20px; }
  .contact-info { gap: 22px; }
  .contact-info__phone { font-size: 28px; }
  .contact-lead { margin-bottom: 32px; }

  .footer-grid { gap: 30px 24px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-logo__img { width: min(300px, 100%); }
  .footer-col__links { gap: 12px; }
  .footer-bottom { margin-top: 34px; gap: 12px; }
  .footer-bottom__links { margin-left: 0; flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 380px) {
  .section { padding: 52px 14px; }
  .container { padding: 0 14px; }
  .topbar__row,
  .header__row,
  .trustbar__row { padding-left: 14px; padding-right: 14px; }
  .hero__content { padding: 72px 14px 40px; }
  .logo__img { height: 38px; }
  html { scroll-padding-top: 74px; }
  .btn { padding: 15px 20px; font-size: 13px; }
  .service-card { padding: 26px 18px 24px; }
  .contact-panel { padding: 24px 16px; }
  .filter-btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .contact-form__submit.is-loading .btn__spinner { display: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.contact-form__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.contact-form__alert {
  margin-top: 12px;
  padding: 11px 14px;
  background: rgba(197, 48, 48, 0.10);
  border: 1px solid rgba(197, 48, 48, 0.30);
  color: #a02222;
  font-size: 15px;
  line-height: 1.5;
}

.hero__media picture,
.gallery-card__media picture { display: block; width: 100%; height: 100%; }
.logo picture,
.footer-logo picture { display: block; line-height: 0; }
.brands__media picture { display: block; }
