/* =================================================================
   MASTRI APPLIANCE — Main Stylesheet
   Aesthetic: Americana foundation × glassmorphism overlays ×
   industrial accents × heavy interactive motion
   ================================================================= */

/* -- DESIGN TOKENS -- */
:root {
  /* Core palette — patriotic but earthy */
  --red:        #b91c1c;
  --red-deep:   #7f1d1d;
  --red-bright: #ef4444;
  --blue:       #1e3a8a;
  --blue-deep:  #172554;
  --blue-mid:   #2563eb;
  --white:      #ffffff;
  --cream:      #fdfcf8;
  --paper:      #f6f4ee;
  --steel:      #1a1d24;
  --steel-2:    #2a2e38;
  --ink:        #0d0f14;
  --gold:       #d4a72c;

  /* Functional */
  --bg:         var(--cream);
  --fg:         var(--ink);
  --muted:      #5a5f6b;
  --border:     #e3ddd0;

  /* Glass */
  --glass-bg:   rgba(255, 255, 255, 0.65);
  --glass-bd:   rgba(255, 255, 255, 0.85);
  --glass-bg-d: rgba(20, 24, 32, 0.55);

  /* Type */
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:    'Archivo', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Spacing & radius */
  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Shadows */
  --sh-sm: 0 2px 6px rgba(15, 23, 42, 0.08);
  --sh:    0 8px 24px rgba(15, 23, 42, 0.12);
  --sh-lg: 0 20px 60px rgba(15, 23, 42, 0.18);
  --sh-red: 0 12px 32px rgba(185, 28, 28, 0.35);
  --sh-blue: 0 12px 32px rgba(30, 58, 138, 0.3);
}

/* -- RESET -- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; line-height: 1.1; font-weight: 800; }
p { margin: 0 0 1em; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
}
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--ink); color: white;
  padding: 12px 20px; z-index: 9999;
}
.skip-link:focus { top: 0; }

/* -- LAYOUT -- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 880px; }
@media (max-width: 600px) { .container { padding: 0 18px; } }

/* -- UTILITY BAR (top thin strip) -- */
.utility-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 60;
}
.utility-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--white) 33%, var(--white) 66%, var(--blue) 66%);
  height: 3px; top: 0;
}
.utility-bar__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 24px; gap: 24px;
}
.utility-bar span { display: inline-flex; align-items: center; gap: 8px; }
.ui-icon { width: 14px; height: 14px; flex-shrink: 0; }
@media (max-width: 720px) {
  .utility-bar__loc { display: none; }
  .utility-bar { font-size: 12px; }
}

/* -- HEADER -- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 252, 248, 0.85);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
@media (max-width: 960px) {
  .site-header__inner { grid-template-columns: auto auto auto; }
}

/* Brand */
.brand-link {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.brand-mark {
  display: inline-flex; flex-direction: column;
  width: 8px; height: 36px; border-radius: 2px; overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.brand-mark__stripe { flex: 1; display: block; }
.brand-mark__stripe--red { background: var(--red); }
.brand-mark__stripe--white { background: var(--white); }
.brand-mark__stripe--blue { background: var(--blue); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 3px;
}

/* Nav */
.site-nav { display: flex; justify-content: center; }
.primary-menu {
  display: flex; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.primary-menu li a, .primary-menu a {
  display: block;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: all 0.2s;
  text-decoration: none;
  position: relative;
}
.primary-menu li a:hover, .primary-menu a:hover {
  background: var(--paper);
  color: var(--red);
}
.primary-menu .current-menu-item > a {
  color: var(--red);
}
.primary-menu .current-menu-item > a::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--red); border-radius: 2px;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--border);
  padding: 8px; border-radius: var(--r-sm);
  width: 40px; height: 40px;
  flex-direction: column; gap: 4px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .primary-menu {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: min(320px, 80vw);
    flex-direction: column;
    background: var(--cream);
    box-shadow: var(--sh-lg);
    padding: 80px 16px 24px;
    transition: right 0.3s;
    overflow-y: auto;
  }
  .primary-menu.is-open { right: 0; }
  .primary-menu li a, .primary-menu a {
    padding: 14px 16px; font-size: 17px;
    border-bottom: 1px solid var(--border); border-radius: 0;
  }
}

/* Phone CTA in header */
.phone-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: var(--r);
  font-weight: 700;
  box-shadow: var(--sh-red);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.phone-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.phone-cta:hover { transform: translateY(-2px); color: var(--white); box-shadow: 0 16px 40px rgba(185, 28, 28, 0.45); }
.phone-cta:hover::before { transform: translateX(100%); }
.phone-cta__icon svg { width: 18px; height: 18px; }
.phone-cta__icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  animation: phone-ring 2.4s ease-in-out infinite;
}
@keyframes phone-ring {
  0%, 60%, 100% { transform: rotate(0); }
  10%, 30%, 50% { transform: rotate(-12deg); }
  20%, 40% { transform: rotate(12deg); }
}
.phone-cta__text { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.phone-cta__text small { font-size: 10px; opacity: 0.85; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.phone-cta__text strong { font-size: 17px; font-weight: 800; }
@media (max-width: 600px) {
  .phone-cta__text small { display: none; }
  .phone-cta { padding: 10px 12px; gap: 8px; }
  .phone-cta__icon { width: 30px; height: 30px; }
  .phone-cta__text strong { font-size: 14px; }
}

/* =================================================================
   HERO — large interactive showpiece
   ================================================================= */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(185, 28, 28, 0.12), transparent 60%),
    radial-gradient(1000px 700px at 110% 20%, rgba(30, 58, 138, 0.10), transparent 60%),
    var(--cream);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,15,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,15,20,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 80%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 1;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 50px 0 70px; }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue);
  background: rgba(30, 58, 138, 0.08);
  border: 1px solid rgba(30, 58, 138, 0.2);
  padding: 8px 14px; border-radius: 100px;
  margin-bottom: 22px;
}
.hero__eyebrow .pulse-dot {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  position: relative;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(185, 28, 28, 0); }
  100% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--ink);
}
.hero__title .accent-red { color: var(--red); }
.hero__title .accent-blue { color: var(--blue); position: relative; }
.hero__title .accent-underline {
  background-image: linear-gradient(to top, rgba(212, 167, 44, 0.5) 0%, rgba(212, 167, 44, 0.5) 30%, transparent 30%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0 4px;
}

.hero__sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.55;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 16px;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  letter-spacing: 0.01em;
  position: relative; overflow: hidden;
}
.btn--xl { padding: 18px 32px; font-size: 17px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--primary {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white);
  box-shadow: var(--sh-red);
}
.btn--primary:hover { transform: translateY(-2px); color: white; box-shadow: 0 18px 44px rgba(185, 28, 28, 0.5); }
.btn--secondary {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--border);
}
.btn--secondary:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--white);
  box-shadow: var(--sh-blue);
}
.btn--blue:hover { transform: translateY(-2px); color: white; box-shadow: 0 16px 40px rgba(30, 58, 138, 0.4); }
.btn--white {
  background: var(--white); color: var(--red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn--white:hover { transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); color: white; border-color: white; }

.hero__trust {
  margin-top: 36px;
  display: flex; gap: 28px; flex-wrap: wrap;
  align-items: center;
}
.hero__trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--muted);
}
.hero__trust-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--red);
  line-height: 1;
}
.hero__trust-stars {
  display: inline-flex; color: var(--gold);
  letter-spacing: 2px;
}

/* HERO RIGHT — interactive call card */
.hero__panel {
  position: relative;
}

.call-panel {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow:
    var(--sh-lg),
    inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
}
.call-panel::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, transparent 0%, rgba(185, 28, 28, 0.04) 50%, rgba(30, 58, 138, 0.04) 100%);
  pointer-events: none;
}
.call-panel__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.call-panel__indicator {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
  padding: 6px 12px; border-radius: 100px;
}
.live-dot {
  width: 8px; height: 8px; background: #16a34a; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  animation: pulse-dot-green 2s infinite;
}
@keyframes pulse-dot-green {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.call-panel__big {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.call-panel__big a { color: var(--ink); }
.call-panel__big a:hover { color: var(--red); }

.call-panel__sub {
  color: var(--muted); font-size: 15px;
  margin-bottom: 24px;
}

.call-panel__list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; gap: 10px;
}
.call-panel__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink);
}
.call-panel__list li svg {
  width: 18px; height: 18px; color: var(--red);
  flex-shrink: 0;
}
.call-panel__btns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
@media (max-width: 480px) { .call-panel__btns { grid-template-columns: 1fr; } }

/* Floating accent shapes around hero */
.hero__floats {
  position: absolute; inset: 0; pointer-events: none;
  z-index: 0;
}
.float-shape {
  position: absolute;
  border-radius: 16px;
  background: white;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink);
  padding: 12px 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.float-shape::before {
  content: ''; width: 8px; height: 8px;
  background: var(--red); border-radius: 50%;
  margin-right: 8px;
}
.float-shape--1 { top: 8%; right: 5%; animation: float 6s ease-in-out infinite; }
.float-shape--2 { top: 40%; right: -2%; animation: float 7s ease-in-out infinite -2s; }
.float-shape--3 { bottom: 10%; right: 8%; animation: float 8s ease-in-out infinite -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (max-width: 980px) { .float-shape { display: none; } }

/* =================================================================
   SECTION SHELLS
   ================================================================= */
.section { padding: 80px 0; position: relative; }
.section--tight { padding: 60px 0; }
.section--dark {
  background: var(--ink);
  color: var(--cream);
}
.section--dark .section__title { color: var(--white); }
.section--paper { background: var(--paper); }
.section--blue {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: var(--white);
}
.section--blue .section__title { color: var(--white); }
.section--blue .section__sub { color: rgba(255,255,255,0.85); }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.section__eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 18px; height: 2px;
  background: var(--red); transform: translateY(-50%);
}
.section--blue .section__eyebrow,
.section--dark .section__eyebrow { color: var(--gold); }
.section--blue .section__eyebrow::before,
.section--dark .section__eyebrow::before { background: var(--gold); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.95;
  margin-bottom: 16px;
  color: var(--ink);
}
.section__sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* =================================================================
   STATS BAND
   ================================================================= */
.stats-band {
  background: var(--ink);
  color: var(--white);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--white) 50%, var(--blue));
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 720px) { .stats-band__grid { grid-template-columns: repeat(2, 1fr); } }

.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.stat-item__num .accent { color: var(--red-bright); }
.stat-item__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* =================================================================
   SERVICES GRID
   ================================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.svc-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--red), var(--blue));
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--red);
}
.svc-card:hover::before { transform: scaleY(1); }

.svc-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--paper), var(--white));
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
  transition: all 0.3s;
}
.svc-card:hover .svc-card__icon {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white);
  border-color: transparent;
  transform: rotate(-6deg) scale(1.05);
}
.svc-card__icon svg { width: 30px; height: 30px; }

.svc-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.svc-card__desc { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.svc-card__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 6px;
}
.svc-card__list li {
  font-size: 13px;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.svc-card__list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 2px; background: var(--red);
}

/* =================================================================
   PRICING ESTIMATOR
   ================================================================= */
.estimator {
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(212, 167, 44, 0.08), transparent),
    var(--paper);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.estimator__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .estimator__grid { grid-template-columns: 1fr; } }

.estimator__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
  margin-bottom: 20px;
}
.estimator__intro h2 .accent { color: var(--red); }
.estimator__intro p { color: var(--muted); margin-bottom: 16px; font-size: 17px; }
.estimator__note {
  display: inline-flex; gap: 10px; align-items: flex-start;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

.estimator__panel {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
  position: relative;
}
.estimator__panel::before {
  content: 'INSTANT ESTIMATE';
  position: absolute; top: -12px; left: 32px;
  background: var(--ink); color: var(--white);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; padding: 6px 12px; border-radius: 4px;
}

.est-field { margin-bottom: 20px; }
.est-field__label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.est-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}
.est-option {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 12px;
  background: var(--paper);
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.2s;
  user-select: none;
}
.est-option input { position: absolute; opacity: 0; pointer-events: none; }
.est-option:hover { border-color: var(--blue); }
.est-option.is-selected, .est-option:has(input:checked) {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.est-result {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--ink), #2a2e38);
  color: var(--white);
  padding: 28px;
  border-radius: var(--r);
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center;
}
.est-result__price {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--white);
}
.est-result__price small { font-size: 22px; opacity: 0.7; }
.est-result__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.est-result__detail {
  font-size: 13px; color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.est-result__cta {
  margin-top: 18px;
  display: flex; gap: 10px; flex-wrap: wrap;
}

/* =================================================================
   ABOUT — Jim & Anthony
   ================================================================= */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
}
.team-card--jim::before { background: linear-gradient(90deg, var(--red), var(--red-deep)); }
.team-card--anthony::before { background: linear-gradient(90deg, var(--blue), var(--blue-deep)); }

.team-card__head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 22px;
}
.team-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--paper), var(--cream));
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--ink);
  flex-shrink: 0;
}
.team-card--jim .team-card__avatar {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white); border-color: transparent;
}
.team-card--anthony .team-card__avatar {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--white); border-color: transparent;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--ink);
  line-height: 1; margin: 0 0 4px;
}
.team-card__role {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.team-card__bio { color: var(--ink); line-height: 1.65; }
.team-card__stats {
  display: flex; gap: 18px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.team-card__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--red);
  line-height: 1;
}
.team-card--anthony .team-card__stat strong { color: var(--blue); }
.team-card__stat span {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}

/* =================================================================
   BRANDS SERVICED — marquee
   ================================================================= */
.brands {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.brands__head {
  text-align: center; margin-bottom: 36px;
}
.brands__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.brands__marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.brands__track {
  display: flex; gap: 60px;
  align-items: center;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.brands__item {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--ink);
  opacity: 0.55;
  transition: opacity 0.3s, color 0.3s;
  white-space: nowrap;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.brands__item:hover { opacity: 1; color: var(--red); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =================================================================
   SERVICE AREA MAP
   ================================================================= */
.area {
  padding: 80px 0;
  background: var(--paper);
  position: relative;
}
.area__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .area__grid { grid-template-columns: 1fr; } }

.area__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
  margin-bottom: 20px;
}
.area__intro h2 .accent { color: var(--blue); }

.area__counter {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 22px;
  margin-top: 24px;
  box-shadow: var(--sh-sm);
}
.area__counter strong {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--red);
  line-height: 1;
}
.area__counter span {
  font-size: 13px; letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.area__panel {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
}
.area__search {
  position: relative;
  margin-bottom: 24px;
}
.area__search input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: var(--paper);
  border: 2px solid var(--border);
  border-radius: var(--r);
  font-size: 16px;
  font-weight: 600;
  transition: border-color 0.2s;
}
.area__search input:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.area__search svg {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; color: var(--muted);
}

.area__towns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 6px;
  max-height: 420px;
  overflow-y: auto;
  padding: 4px;
}
.area__town {
  padding: 10px 14px;
  background: var(--paper);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  border: 1px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.area__town:hover {
  border-color: var(--blue);
  background: var(--white);
  color: var(--blue);
}
.area__town::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.area__town.is-hidden { display: none; }
.area__empty {
  text-align: center;
  padding: 30px;
  color: var(--muted);
  font-style: italic;
}

/* =================================================================
   REVIEWS / TESTIMONIALS
   ================================================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

.review-card__stars {
  color: var(--gold); letter-spacing: 2px; font-size: 18px;
  margin-bottom: 12px;
}
.review-card__text {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}
.review-card__text::before {
  content: '"';
  position: absolute; left: -4px; top: -10px;
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--red);
  opacity: 0.3;
  line-height: 1;
}
.review-card__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.review-card__author-info strong {
  display: block; font-size: 15px; color: var(--ink);
}
.review-card__author-info span {
  font-size: 12px; color: var(--muted); letter-spacing: 0.05em;
}
.review-card__source {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 4px 8px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: 4px;
}

/* =================================================================
   BOOKING / SERVICE REQUEST FORM
   ================================================================= */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 980px) { .book-grid { grid-template-columns: 1fr; } }

.book__sidebar {
  background:
    radial-gradient(400px 200px at 0% 0%, rgba(255,255,255,0.08), transparent),
    linear-gradient(180deg, var(--ink), var(--steel-2));
  color: var(--white);
  padding: 36px;
  border-radius: var(--r-xl);
  position: relative; overflow: hidden;
}
.book__sidebar::before {
  content: '';
  position: absolute; right: -80px; bottom: -80px;
  width: 220px; height: 220px;
  background: var(--red);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(40px);
}
.book__sidebar h3 {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--white);
}
.book__sidebar p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin-bottom: 24px;
}
.book__perks {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; gap: 14px;
}
.book__perks li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px;
  color: var(--white);
}
.book__perks li svg {
  width: 22px; height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.book__phone-cta {
  margin-top: 28px;
  padding: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r);
  position: relative;
  z-index: 1;
}
.book__phone-cta small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.book__phone-cta a {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  letter-spacing: 0.01em;
  display: block;
}
.book__phone-cta a:hover { color: var(--red-bright); }

/* Form */
.book__form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row--single { grid-template-columns: 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-weight: 700; font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 8px;
}
.form-field label .req { color: var(--red); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  background: var(--paper);
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.form-urgency {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.urgency-pill {
  padding: 12px 16px;
  background: var(--paper);
  border: 2px solid var(--border);
  border-radius: 100px;
  font-weight: 600; font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  user-select: none;
}
.urgency-pill input { position: absolute; opacity: 0; pointer-events: none; }
.urgency-pill:has(input:checked) {
  background: var(--red); color: white; border-color: var(--red);
}
.urgency-pill--urgent:has(input:checked) {
  background: var(--red); border-color: var(--red);
  animation: urgent-pulse 1.5s infinite;
}
@keyframes urgent-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(185, 28, 28, 0); }
}

.form-submit {
  margin-top: 8px;
  width: 100%;
  padding: 18px;
  font-size: 17px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white);
  border: none;
  border-radius: var(--r);
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--sh-red);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(185, 28, 28, 0.5); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-message {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--r-sm);
  display: none;
  font-weight: 600;
}
.form-message.is-success { display: block; background: #dcfce7; color: #14532d; border-left: 4px solid #16a34a; }
.form-message.is-error { display: block; background: #fee2e2; color: #7f1d1d; border-left: 4px solid var(--red); }

/* =================================================================
   FOOTER
   ================================================================= */
.footer-cta-band {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  color: var(--white);
  padding: 40px 0;
  position: relative; overflow: hidden;
}
.footer-cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px);
}
.footer-cta-band__inner {
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
  position: relative;
}
.footer-cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 6px;
  line-height: 1;
}
.footer-cta-band__sub { color: rgba(255,255,255,0.85); margin: 0; font-size: 15px; }
@media (max-width: 720px) {
  .footer-cta-band__inner { flex-direction: column; text-align: center; }
}

.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); }
.footer-main { padding: 64px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.brand-link--footer .brand-name,
.brand-link--footer .brand-sub { color: var(--white); }
.brand-link--footer { color: var(--white); }

.footer-blurb { margin: 18px 0 16px; font-size: 14px; line-height: 1.6; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  display: inline-flex; gap: 6px; align-items: center;
  background: rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
}
.badge strong { color: var(--gold); }

.footer-title {
  font-family: var(--font-display);
  font-size: 22px; color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  position: relative; padding-bottom: 10px;
}
.footer-title::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 32px; height: 2px; background: var(--red);
}
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-list a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-list a:hover { color: var(--white); padding-left: 4px; }
.footer-list--contact li {
  font-size: 14px; color: rgba(255,255,255,0.7);
}
.footer-phone strong {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.footer-hours {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px !important;
  font-style: italic;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
}
.footer-bottom__inner {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-meta { color: rgba(255,255,255,0.5); }
.footer-meta .dot { margin: 0 6px; opacity: 0.5; }

/* =================================================================
   STICKY MOBILE CALL BAR
   ================================================================= */
.sticky-call {
  position: fixed; left: 0; right: 0; bottom: 0;
  display: none;
  z-index: 80;
  padding: 10px;
  background: rgba(13, 15, 20, 0.95);
  backdrop-filter: blur(10px);
  gap: 8px;
}
.sticky-call__btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}
.sticky-call__btn--call {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white);
}
.sticky-call__btn--book {
  background: var(--white);
  color: var(--ink);
}
@media (max-width: 720px) {
  .sticky-call { display: flex; }
  body { padding-bottom: 80px; }
}

/* =================================================================
   PAGE HERO (interior pages)
   ================================================================= */
.page-hero {
  padding: 80px 0 60px;
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(185, 28, 28, 0.08), transparent),
    radial-gradient(800px 400px at 100% 100%, rgba(30, 58, 138, 0.08), transparent),
    var(--cream);
  position: relative;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,15,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,15,20,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 80%);
}
.page-hero__breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  position: relative;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 16px;
  position: relative;
}
.page-hero__sub {
  font-size: 19px; color: var(--muted);
  max-width: 620px; line-height: 1.55;
  position: relative;
}

/* =================================================================
   ANIMATION HELPERS — reveal on scroll
   ================================================================= */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.is-visible {
  opacity: 1; transform: translateY(0);
}

/* =================================================================
   CONTACT CARDS
   ================================================================= */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.contact-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  margin: 0 auto 16px;
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--ink);
}
.contact-card__value {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}
.contact-card__value a { color: var(--blue); font-weight: 700; }
