/* =========================================================
   New Age Heating & Air Conditioning — Claymorphic site
   Mobile-first vanilla CSS.
   Palette: warm clay terracotta + cream + mint accent + soft yellow + coral.
   ========================================================= */

:root {
  /* Surfaces */
  --cream-50: #fffaf2;
  --cream-100: #fbf3e6;
  --cream-200: #f5ead7;
  --cream-300: #ecdfc7;
  --cream-bg: #f6ecdc;

  /* Clay (terracotta) */
  --clay-100: #f3d6c3;
  --clay-200: #e8b39a;
  --clay-300: #d98c6c;
  --clay-500: #b85a3c;
  --clay-700: #7a3221;
  --clay-900: #4a1d12;

  /* Accents */
  --mint-300: #a3d9c2;
  --mint-500: #4fb594;
  --mint-700: #2e7b62;

  --yellow-200: #f8d676;
  --yellow-400: #f0b73c;

  --coral-300: #f8a78d;
  --coral-500: #e96a4a;

  /* Ink */
  --ink-900: #2d1a12;
  --ink-700: #5a3f31;
  --ink-500: #8a6e5d;
  --ink-400: #ad9582;

  /* Shadows — claymorphic dual highlight+shadow */
  --shadow-light: rgba(255, 255, 255, 0.95);
  --shadow-dark:  rgba(138, 73, 47, 0.22);
  --shadow-dark-soft: rgba(138, 73, 47, 0.10);

  --clay-out:
    -10px -10px 24px var(--shadow-light),
    12px 14px 28px var(--shadow-dark);

  --clay-out-sm:
    -6px -6px 14px var(--shadow-light),
    7px 8px 18px var(--shadow-dark);

  --clay-in:
    inset 6px 6px 14px var(--shadow-dark-soft),
    inset -6px -6px 14px var(--shadow-light);

  --clay-in-deep:
    inset 8px 8px 18px rgba(138, 73, 47, 0.18),
    inset -8px -8px 18px rgba(255, 255, 255, 0.9);

  /* Radius */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 44px;
  --r-pill: 999px;

  /* Type */
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1180px;
  --pad-x: clamp(20px, 5vw, 40px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--cream-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
  background-image:
    radial-gradient(circle at 8% 0%, #fff3df 0%, transparent 45%),
    radial-gradient(circle at 92% 12%, #f5e2c8 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, #f0dcc2 0%, transparent 55%);
  background-attachment: fixed;
  padding-bottom: 88px;
}

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

a { color: var(--clay-700); text-decoration: none; }
a:hover { color: var(--clay-500); }

::selection { background: var(--mint-300); color: var(--ink-900); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.005em;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
  text-align: center;
  line-height: 1.1;
  min-height: 52px;
}
.btn__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}
.btn__icon svg { width: 100%; height: 100%; }

.btn--primary {
  background: linear-gradient(180deg, #d97852 0%, var(--clay-500) 100%);
  color: var(--cream-50);
  box-shadow:
    -6px -6px 14px var(--shadow-light),
    8px 10px 20px rgba(138, 73, 47, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -3px 6px rgba(74, 29, 18, 0.25);
}
.btn--primary:hover {
  transform: translateY(-1px);
  color: var(--cream-50);
  box-shadow:
    -8px -8px 18px var(--shadow-light),
    10px 12px 26px rgba(138, 73, 47, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -3px 6px rgba(74, 29, 18, 0.25);
}
.btn--primary:active {
  transform: translateY(1px);
  box-shadow:
    inset 4px 4px 10px rgba(74, 29, 18, 0.4),
    inset -4px -4px 10px rgba(255, 255, 255, 0.25);
}

.btn--ghost {
  background: var(--cream-100);
  color: var(--clay-700);
  box-shadow:
    -5px -5px 12px var(--shadow-light),
    6px 7px 16px var(--shadow-dark);
}
.btn--ghost:hover {
  color: var(--clay-700);
  transform: translateY(-1px);
  box-shadow:
    -7px -7px 16px var(--shadow-light),
    8px 9px 20px var(--shadow-dark);
}
.btn--ghost:active {
  transform: translateY(1px);
  box-shadow: var(--clay-in);
}

.btn--block { width: 100%; }
.btn--inline { align-self: flex-start; }

.btn:focus-visible {
  outline: 3px solid var(--mint-500);
  outline-offset: 3px;
}

/* ===== Sticky mobile call CTA ===== */
.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 12px;
  background: linear-gradient(180deg, #d97852 0%, var(--clay-500) 100%);
  color: var(--cream-50);
  border-radius: var(--r-pill);
  box-shadow:
    -6px -6px 14px var(--shadow-light),
    10px 14px 28px rgba(138, 73, 47, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-weight: 700;
}
.sticky-cta:hover { color: var(--cream-50); }
.sticky-cta__phone-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 2px 2px 5px rgba(74, 29, 18, 0.25),
    inset -2px -2px 5px rgba(255, 255, 255, 0.25);
}
.sticky-cta__phone-icon svg { width: 22px; height: 22px; }
.sticky-cta__text { display: flex; flex-direction: column; line-height: 1.15; }
.sticky-cta__label { font-size: 0.78rem; font-weight: 500; opacity: 0.92; }
.sticky-cta__num { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }

@media (min-width: 900px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* ===== Top bar ===== */
.topbar {
  position: sticky;
  top: 12px;
  z-index: 50;
  padding: 0 var(--pad-x);
  margin-top: 12px;
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px 12px 18px;
  background: var(--cream-100);
  border-radius: var(--r-pill);
  box-shadow:
    -6px -6px 14px var(--shadow-light),
    7px 9px 20px var(--shadow-dark);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--clay-700);
  text-decoration: none;
}
.logo__blob {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--clay-500);
  filter: drop-shadow(2px 3px 4px rgba(138, 73, 47, 0.3));
}
.logo__blob svg { width: 100%; height: 100%; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name {
  font-weight: 800;
  letter-spacing: -0.015em;
  font-size: 1.08rem;
  color: var(--ink-900);
}
.logo__sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.topnav { display: none; gap: 4px; }
.topnav a {
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-700);
  transition: background .2s ease, color .2s ease;
}
.topnav a:hover {
  color: var(--clay-700);
  background: var(--cream-200);
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--cream-50);
  border-radius: var(--r-pill);
  color: var(--clay-700);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow:
    -4px -4px 10px var(--shadow-light),
    4px 5px 12px var(--shadow-dark);
}
.topbar__phone:hover { color: var(--clay-500); }
.topbar__phone-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint-500);
  box-shadow: 0 0 0 4px rgba(79, 181, 148, 0.25);
  animation: pulseDot 2.2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(79, 181, 148, 0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(79, 181, 148, 0.05); }
}

@media (min-width: 760px) {
  .topnav { display: flex; }
}
@media (max-width: 559px) {
  .topbar__phone { padding: 10px 14px; font-size: 0.88rem; }
  .logo__sub { display: none; }
}

/* ===== Cards (claymorphic) ===== */
.card {
  background: var(--cream-100);
  border-radius: var(--r-lg);
  padding: 28px;
}
.card--clay {
  box-shadow: var(--clay-out);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
}
.blob--1 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #f3d6c3 0%, transparent 70%);
  top: -80px; left: -100px;
}
.blob--2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, #c8ecd9 0%, transparent 70%);
  top: 30%; right: -80px;
}
.blob--3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #fbe9b6 0%, transparent 70%);
  bottom: -120px; left: 20%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--cream-100);
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
  box-shadow: var(--clay-out-sm);
  margin-bottom: 22px;
}
.pill--mint .pill__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint-500);
  box-shadow: 0 0 0 4px rgba(79, 181, 148, 0.22);
  animation: pulseDot 2.4s ease-in-out infinite;
}

.hero__h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  line-height: 1.07;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: var(--ink-900);
}
.hero__h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--clay-500);
}
.hero__h1-accent {
  display: inline-block;
  padding: 2px 18px 4px;
  background: var(--yellow-200);
  border-radius: var(--r-pill);
  box-shadow:
    inset 2px 2px 5px rgba(138, 73, 47, 0.18),
    inset -2px -2px 5px rgba(255, 255, 255, 0.6);
  color: var(--ink-900);
  white-space: nowrap;
}

.hero__sub {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0 0 30px;
  max-width: 56ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 14px;
  background: var(--cream-100);
  border-radius: var(--r-pill);
  box-shadow: var(--clay-out-sm);
}
.proof-chip__stars { display: inline-flex; gap: 2px; color: var(--yellow-400); }
.proof-chip__stars svg { width: 18px; height: 18px; fill: currentColor; }
.proof-chip__text { display: flex; flex-direction: column; line-height: 1.15; }
.proof-chip__text strong { font-size: 0.98rem; font-weight: 800; color: var(--ink-900); letter-spacing: -0.01em; }
.proof-chip__text span { font-size: 0.78rem; color: var(--ink-500); font-weight: 500; }
.proof-chip--alt { background: var(--mint-300); }
.proof-chip--alt .proof-chip__text strong { color: var(--mint-700); }
.proof-chip--alt .proof-chip__text span { color: var(--mint-700); opacity: 0.85; }

/* Hero card panel */
.hero__panel { width: 100%; }
.hero-card { padding: 30px; }
.hero-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.hero-card__stat { display: flex; flex-direction: column; align-items: center; flex: 1; }
.hero-card__num {
  font-size: clamp(2.6rem, 7vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--clay-500);
  line-height: 1;
}
.hero-card__num-sub {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-500);
  margin-top: 6px;
}
.hero-card__bar {
  width: 4px;
  align-self: stretch;
  border-radius: var(--r-pill);
  background: var(--cream-300);
  box-shadow: var(--clay-in);
}
.hero-card__caption {
  margin: 22px 0 4px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-700);
}
.hero-card__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream-300), transparent);
  margin: 22px 0;
}
.hero-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.hero-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-700);
}
.hero-card__list em { font-style: italic; color: var(--clay-700); font-weight: 700; }
.hero-card__check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint-300);
  color: var(--mint-700);
  box-shadow:
    inset 1px 1px 3px rgba(46, 123, 98, 0.25),
    inset -1px -1px 3px rgba(255, 255, 255, 0.6),
    1px 2px 4px rgba(46, 123, 98, 0.18);
}
.hero-card__check svg { width: 14px; height: 14px; }

@media (min-width: 960px) {
  .hero { padding: 60px 0 90px; }
  .hero__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    gap: 60px;
  }
}

/* ===== Section heads ===== */
.section-head { margin-bottom: 44px; max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clay-500);
  padding: 8px 16px;
  background: var(--cream-100);
  border-radius: var(--r-pill);
  margin-bottom: 18px;
  box-shadow: var(--clay-out-sm);
}
.section-head h2,
.about__copy h2,
.quote__head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--ink-900);
}
.section-lead {
  font-size: 1.05rem;
  color: var(--ink-700);
  margin: 0;
  line-height: 1.6;
}

/* ===== Services ===== */
.services { padding: 60px 0; }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .svc-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.svc {
  position: relative;
  padding: 30px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc:hover {
  transform: translateY(-3px);
  box-shadow:
    -12px -12px 26px var(--shadow-light),
    14px 16px 32px var(--shadow-dark);
}
.svc h3 {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 18px 0 8px;
  color: var(--ink-900);
}
.svc p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.97rem;
  line-height: 1.55;
}
.svc__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: var(--cream-200);
  color: var(--clay-500);
  box-shadow: var(--clay-in);
}
.svc__icon svg { width: 32px; height: 32px; }

.svc__tag {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--yellow-200);
  color: #6e4a00;
  box-shadow:
    inset 1px 1px 3px rgba(138, 73, 47, 0.18),
    inset -1px -1px 3px rgba(255, 255, 255, 0.7);
}
.svc__tag--coral {
  background: var(--coral-300);
  color: #6b2515;
}

.card--accent-yellow .svc__icon {
  background: #fcecc5;
  color: #b07a00;
}
.card--accent-coral .svc__icon {
  background: #fbd7c8;
  color: var(--coral-500);
}

/* ===== Area ===== */
.area { padding: 50px 0; }
.city-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 28px;
  max-width: 880px;
}
.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--cream-100);
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-700);
  box-shadow: var(--clay-out-sm);
  transition: transform .2s ease;
}
.city-pill:hover { transform: translateY(-2px); }
.city-pill--anchor {
  background: var(--mint-300);
  color: var(--mint-700);
  font-weight: 700;
}
.city-pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint-700);
  box-shadow: 0 0 0 3px rgba(46, 123, 98, 0.25);
}
.area__foot {
  text-align: center;
  font-size: 0.97rem;
  color: var(--ink-500);
  margin: 12px 0 0;
}
.area__foot a {
  font-weight: 700;
  color: var(--clay-700);
  border-bottom: 2px dotted var(--clay-300);
}

/* ===== About ===== */
.about { padding: 60px 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: 56px;
  }
}
.about__copy { max-width: 540px; }
.about__copy h2 { font-size: clamp(1.85rem, 4vw, 2.5rem); }
.about__copy p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0 0 16px;
}
.about__copy strong { color: var(--ink-900); font-weight: 700; }
.about__copy .btn { margin-top: 14px; }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stat {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat__label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-500);
}
.stat__value {
  font-size: clamp(1.7rem, 3.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--clay-500);
  line-height: 1.1;
}
.stat__value small { font-size: 0.55em; font-weight: 600; color: var(--ink-500); }
.stat__text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-700);
  margin-top: 4px;
}
.stat--mint .stat__value { color: var(--mint-700); }
.stat--mint { background: var(--mint-300); }
.stat--mint .stat__label,
.stat--mint .stat__text { color: var(--mint-700); }
.stat--yellow { background: var(--yellow-200); }
.stat--yellow .stat__value { color: #6e4a00; }
.stat--yellow .stat__label,
.stat--yellow .stat__text { color: #6e4a00; opacity: 0.85; }

/* ===== Quote ===== */
.quote { padding: 60px 0 80px; }
.quote__card { padding: clamp(28px, 4vw, 48px); }
.quote__head { text-align: center; margin-bottom: 32px; }
.quote__head p {
  margin: 8px 0 0;
  color: var(--ink-700);
}
.quote__phone {
  font-weight: 800;
  color: var(--clay-700);
  border-bottom: 2px dotted var(--clay-300);
}

.quote__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .quote__form { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
  .quote__submit { grid-column: 1 / -1; }
  .quote__fine { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-700);
  letter-spacing: -0.005em;
}
.field__opt {
  font-weight: 500;
  color: var(--ink-400);
  font-size: 0.78rem;
}

.field input,
.field select,
.field textarea {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink-900);
  padding: 16px 18px;
  border: 0;
  border-radius: var(--r-md);
  background: var(--cream-200);
  box-shadow: var(--clay-in);
  transition: box-shadow .2s ease;
  width: 100%;
  min-height: 52px;
  appearance: none;
  -webkit-appearance: none;
}
.field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}
.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-500) 50%),
    linear-gradient(135deg, var(--ink-500) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-400); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  box-shadow:
    var(--clay-in-deep),
    0 0 0 3px rgba(79, 181, 148, 0.35);
}

.quote__submit { margin-top: 8px; }
.quote__fine {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-500);
  margin: 6px 0 0;
}

/* ===== Footer ===== */
.footer {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, transparent 0%, #ecdcc2 60%);
  margin-top: 30px;
}
.footer__grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

.logo--footer .logo__name { color: var(--ink-900); }
.footer__tag {
  margin: 16px 0 0;
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 32ch;
}

.footer__col h4 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  margin: 0 0 16px;
}
.footer__phone {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.footer__phone a { color: var(--clay-700); }
.footer__addr {
  margin: 0 0 16px;
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.5;
}
.footer__hours,
.footer__cities,
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.footer__hours li,
.footer__cities li,
.footer__list li {
  font-size: 0.92rem;
  color: var(--ink-700);
}
.footer__hours li span {
  display: inline-block;
  min-width: 100px;
  font-weight: 700;
  color: var(--ink-900);
}

.footer__meta {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(138, 73, 47, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-500);
}
.footer__meta p { margin: 0; }
.footer__built a {
  font-weight: 700;
  color: var(--clay-700);
  border-bottom: 1px solid var(--clay-300);
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
