/* =============================================================
   MASS H.V.A.C — documentary photo-journal HVAC
   Editorial stat-led / Boston harbor + copper / no industrial-blue
   ============================================================= */

:root {
  /* Boston-coded palette: ink + harbor slate + warm copper + cream paper */
  --ink:        #16181B;
  --ink-2:      #1F2328;
  --slate:      #2C3E50;
  --slate-2:    #3A4A5C;
  --slate-3:    #54677A;
  --copper:     #B8623F;
  --copper-2:   #D17B55;
  --paper:      #F4EFE6;
  --paper-2:    #ECE5D7;
  --rule:       #2A2F35;
  --rule-soft:  rgba(244,239,230,0.14);
  --ink-on-paper: #1A1D21;
  --muted-on-paper: #5C5750;
  --muted-on-ink: #8B8A86;

  --serif: 'Cormorant Garamond', 'Tiempos Headline', 'GT Sectra', 'Charter', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-on-paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01","cv11","kern";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}

/* ---------- Preview banner (Bradley's context tag) ---------- */
.preview-banner {
  background: var(--ink);
  color: #B8B5AE;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 7px 16px;
  border-bottom: 1px solid #2A2D32;
}
.preview-banner em { font-style: italic; }

/* ---------- Header ---------- */
.site-head {
  background: var(--paper);
  border-bottom: 1px solid rgba(26,29,33,0.12);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.head-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: 22px;
}
.brand-mark-bar {
  display: block;
  height: 3px;
  background: var(--ink);
  border-radius: 1px;
}
.brand-mark-bar:nth-child(1) { width: 100%; }
.brand-mark-bar:nth-child(2) { width: 70%; background: var(--copper); }
.brand-mark-bar:nth-child(3) { width: 100%; }
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand-name-dot { color: var(--copper); }

.head-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  color: var(--muted-on-paper);
}
.head-nav a {
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.head-nav a:hover { color: var(--ink); }
.head-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--copper);
}

.head-cta {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: background .2s;
}
.head-cta:hover { background: var(--copper); }
.head-cta-label { font-weight: 600; }
.head-cta-handle { font-family: var(--mono); font-size: 12px; opacity: 0.85; }

/* ---------- Hero ---------- */
.hero {
  background: var(--paper);
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* Subtle harbor-slate horizon line behind the stat */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink-on-paper) 35%, var(--ink-on-paper) 65%, transparent);
  opacity: 0.15;
}
.hero-grid {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.hero-meta {
  border-top: 1px solid rgba(26,29,33,0.5);
  padding-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted-on-paper);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-transform: uppercase;
}
.meta-line { display: flex; gap: 8px; }
.meta-label { color: var(--ink); font-weight: 600; min-width: 54px; }
.meta-sep { opacity: 0.5; }
.meta-val { color: var(--muted-on-paper); }

.hero-stat { padding-top: 0; }

.stat-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-on-paper);
  margin-bottom: clamp(18px, 3vw, 32px);
}
.stat-eyebrow .rule {
  flex: 0 0 64px;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
}

.stat-number {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(110px, 22vw, 280px);
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin: 0 0 6px;
  display: flex;
  align-items: baseline;
  gap: 0;
  font-feature-settings: "lnum","tnum";
}
.stat-number-tail {
  color: var(--copper);
  font-style: italic;
  font-weight: 500;
}

.stat-descriptor {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.stat-descriptor .dot {
  width: 5px; height: 5px;
  background: var(--copper);
  border-radius: 50%;
  display: inline-block;
}

.hero-h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 18ch;
  text-wrap: balance;
}
.hero-ig {
  font-style: italic;
  color: var(--copper);
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-on-paper);
  max-width: 48ch;
  margin: 0 0 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 2px;
  font-size: 15px;
  letter-spacing: 0.01em;
  font-weight: 500;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.btn-ig {
  background: var(--ink);
  color: var(--paper);
  padding: 18px 26px;
  font-weight: 600;
  font-size: 16px;
}
.btn-ig:hover {
  background: var(--copper);
  transform: translateY(-1px);
}
.btn-ig .btn-arrow { margin-left: 6px; transition: transform .2s; }
.btn-ig:hover .btn-arrow { transform: translateX(4px); }
.btn-ig-lg { padding: 22px 30px; font-size: 18px; }

.btn-phone {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(26,29,33,0.25);
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 13px 22px;
}
.btn-phone:hover {
  border-color: var(--ink);
}
.btn-phone-lg { padding: 18px 28px; }
.phone-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-on-paper);
}
.phone-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.phone-note {
  font-size: 12px;
  color: var(--muted-on-paper);
  margin: 12px 0 0;
  font-style: italic;
  max-width: 44ch;
}

/* IG card on right */
.hero-stats { padding-top: 0; }
.ig-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 2px;
  padding: 22px 22px 18px;
  position: relative;
}
.ig-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #B8B5AE;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: 16px;
}
.ig-card-handle { color: var(--paper); font-weight: 600; }
.ig-card-dot {
  width: 6px; height: 6px;
  background: var(--copper-2);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(209,123,85,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(209,123,85,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(209,123,85,0.05); }
}
.ig-card-live { letter-spacing: 0.12em; text-transform: uppercase; font-size: 10px; }

.ig-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
}
.ig-cell { display: grid; grid-template-columns: 70px 1fr; align-items: baseline; gap: 6px 14px; }
.ig-cell dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #908D86;
  margin: 0;
}
.ig-cell .num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  color: var(--paper);
  margin: 0;
  font-feature-settings: "lnum","tnum";
}
.ig-cell .cap {
  grid-column: 1 / -1;
  font-size: 11px;
  color: #B8B5AE;
  margin: 0;
  padding-top: 2px;
  border-top: 1px dotted var(--rule-soft);
}

.ig-card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding: 12px 0 0;
  border-top: 1px solid var(--rule-soft);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--copper-2);
  transition: color .2s;
}
.ig-card-link:hover { color: var(--paper); }

/* ---------- Section primitives ---------- */
.section-head {
  margin-bottom: clamp(36px, 5vw, 60px);
  max-width: 720px;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow.eyebrow-r { color: var(--copper-2); }
.section-h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 18px;
  text-wrap: balance;
}
.section-lede {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--ink-on-paper);
  max-width: 58ch;
  margin: 0;
}
.section-lede a {
  color: var(--copper);
  border-bottom: 1px solid rgba(184,98,63,0.4);
}
.section-lede a:hover { border-bottom-color: var(--copper); }

/* ---------- Archive grid ---------- */
.archive {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 8vw, 100px) 0;
}
.archive .section-eyebrow { color: var(--copper-2); }
.archive .section-h2 { color: var(--paper); }
.archive .section-lede { color: #D8D3C8; }
.archive .section-lede a { color: var(--copper-2); border-bottom-color: rgba(209,123,85,0.5); }

.grid-archive {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tile {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--ink-2);
  border: 1px solid rgba(244,239,230,0.06);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s, background .25s;
  isolation: isolate;
}
.tile::before {
  /* documentary-feel texture: subtle dot grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244,239,230,0.05) 1px, transparent 1px);
  background-size: 8px 8px;
  z-index: -1;
}
.tile::after {
  /* "view on IG" hover affordance */
  content: "Open on IG →";
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--copper-2);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s, transform .25s;
}
.tile:hover {
  background: #21262C;
  border-color: var(--copper);
  transform: translateY(-2px);
}
.tile:hover::after { opacity: 1; transform: translateX(0); }

.tile-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--copper-2);
  font-weight: 600;
}
.tile-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--paper);
  line-height: 1.15;
  margin-top: auto;
}
.tile-place {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8B8A86;
}

/* Vary tile backgrounds — documentary visual rhythm */
.tile-1  { background: linear-gradient(160deg, #1F2328, #181B1F); }
.tile-2  { background: linear-gradient(160deg, #232A33, #1A1E24); }
.tile-3  { background: linear-gradient(160deg, #1F2328, #1A1D21); }
.tile-4  { background: linear-gradient(140deg, #2C3E50, #1F2A36); }
.tile-5  { background: linear-gradient(160deg, #1A1D21, #14171A); }
.tile-6  { background: linear-gradient(160deg, #232A33, #1A1F25); }
.tile-7  { background: linear-gradient(160deg, #1F2328, #181B1F); }
.tile-8  { background: linear-gradient(140deg, #3A4A5C, #232E3B); }
.tile-9  { background: linear-gradient(160deg, #1A1D21, #16181B); }
.tile-10 { background: linear-gradient(160deg, #232A33, #1A1E24); }
.tile-11 { background: linear-gradient(160deg, #1F2328, #1A1D21); }
.tile-12 { background: linear-gradient(140deg, #2C3E50, #1F2A36); }

.archive-foot {
  margin-top: 36px;
  display: flex;
  justify-content: flex-end;
}
.archive-open {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--copper-2);
  padding: 14px 22px;
  border: 1px solid var(--copper);
  border-radius: 2px;
  transition: background .2s, color .2s;
}
.archive-open:hover {
  background: var(--copper);
  color: var(--ink);
}

/* ---------- Services ---------- */
.services {
  background: var(--paper-2);
  padding: clamp(60px, 8vw, 100px) 0;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(26,29,33,0.15);
}
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: baseline;
  padding: clamp(22px, 3vw, 32px) 0;
  border-bottom: 1px solid rgba(26,29,33,0.15);
  transition: padding-left .2s;
}
.service-row:hover { padding-left: 8px; }
.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.02em;
}
.service-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(16px, 3vw, 48px);
  align-items: baseline;
}
.service-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.service-blurb {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.5;
  color: var(--ink-on-paper);
  margin: 0;
}

/* ---------- Area ---------- */
.area {
  background: var(--paper);
  padding: clamp(60px, 8vw, 100px) 0;
}
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.area-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-pills li {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  transition: background .2s, color .2s;
}
.area-pills li:nth-child(1),
.area-pills li:nth-child(4),
.area-pills li:nth-child(7) {
  background: var(--ink);
  color: var(--paper);
}
.area-pills li:hover {
  background: var(--copper);
  color: var(--paper);
  border-color: var(--copper);
}

/* ---------- About ---------- */
.about {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 8vw, 100px) 0;
}
.about .section-eyebrow { color: var(--copper-2); }
.about .section-h2 { color: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.about-h2 br { display: inline; }
.about-body {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  color: #D8D3C8;
  margin-bottom: 40px;
  max-width: 56ch;
}
.about-body p { margin: 0 0 16px; }
.about-body strong { color: var(--paper); font-weight: 600; }

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--rule-soft);
}
.point {
  padding: 22px 22px 22px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.point:nth-child(odd) { border-right: 1px solid var(--rule-soft); padding-right: 22px; }
.point:nth-child(even) { padding-left: 22px; padding-right: 0; }
.point-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8B8A86;
  margin: 0 0 6px;
}
.point-val {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  color: var(--copper-2);
  margin: 0 0 8px;
  font-feature-settings: "lnum","tnum";
}
.point-cap {
  font-size: 13px;
  line-height: 1.4;
  color: #B8B5AE;
  margin: 0;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--paper-2);
  padding: clamp(60px, 8vw, 100px) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.contact-lede {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--ink-on-paper);
  max-width: 50ch;
  margin: 0 0 32px;
}
.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hours-block {
  border-left: 1px solid rgba(26,29,33,0.2);
  padding-left: clamp(20px, 3vw, 40px);
}
.hours-list { margin: 0; padding: 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26,29,33,0.12);
  gap: 16px;
}
.hours-row dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-on-paper);
}
.hours-row dd {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.hours-note {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted-on-paper);
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.site-foot {
  background: var(--ink);
  color: #B8B5AE;
  padding: 40px 0 22px;
  border-top: 4px solid var(--copper);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-soft);
}
.foot-brand { display: flex; flex-direction: column; gap: 4px; }
.foot-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--paper);
  letter-spacing: 0.01em;
}
.foot-tag { font-size: 12px; letter-spacing: 0.04em; }

.foot-ig {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.foot-ig a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--copper-2);
  font-weight: 500;
}
.foot-ig a:hover { color: var(--paper); }
.foot-stat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; }

.foot-credit { text-align: right; font-size: 13px; }
.foot-credit a {
  color: var(--paper);
  border-bottom: 1px solid rgba(184,98,63,0.5);
  transition: color .2s, border-bottom-color .2s;
}
.foot-credit a:hover { color: var(--copper-2); border-bottom-color: var(--copper-2); }

.foot-fine {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #6E6C68;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: var(--ink);
  border-top: 1px solid #2A2D32;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  align-items: stretch;
}
.mcta-ig {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--copper);
  color: var(--paper);
  font-weight: 600;
  font-size: 14px;
  padding: 14px;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.mcta-ig:active { background: var(--copper-2); }
.mcta-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 18px;
  border: 1px solid #3A3D42;
  color: var(--paper);
  font-size: 13px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}
.mcta-tel:active { background: #21262C; }

/* =============================================================
   Responsive
   ============================================================= */

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 180px 1fr; }
  .hero-stats { grid-column: 1 / -1; max-width: 520px; margin-top: 16px; }
}

@media (max-width: 840px) {
  .head-nav { display: none; }
  .head-cta-handle { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
  }
  .grid-archive { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .hours-block { border-left: 0; padding-left: 0; border-top: 1px solid rgba(26,29,33,0.2); padding-top: 28px; }
  .foot-grid { grid-template-columns: 1fr; text-align: left; }
  .foot-ig, .foot-credit { text-align: left; }
  .service-body { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; padding-bottom: 70px; }
  .preview-banner { font-size: 10px; padding: 6px 12px; letter-spacing: 0.04em; }
  .head-row { padding: 14px 0; }
  .brand-name { font-size: 19px; }
  .head-cta { padding: 8px 12px; font-size: 12px; }
  .hero { padding: 32px 0 56px; }
  .stat-number { font-size: clamp(96px, 32vw, 160px); }
  .stat-eyebrow .rule { flex: 0 0 32px; }
  .hero-h1 { font-size: 30px; }
  .hero-sub { font-size: 16px; }
  .btn-ig { padding: 16px 22px; font-size: 15px; width: 100%; justify-content: space-between; }
  .btn-phone { width: 100%; padding: 12px 18px; }
  .grid-archive { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .tile { padding: 12px; }
  .tile-tag { font-size: 17px; }
  .tile-num { font-size: 11px; }
  .tile-place { font-size: 9px; }
  .archive-foot { justify-content: stretch; }
  .archive-open { width: 100%; justify-content: space-between; font-size: 12px; padding: 14px 18px; }
  .service-row { grid-template-columns: 50px 1fr; padding: 18px 0; }
  .service-title { font-size: 22px; }
  .about-points { grid-template-columns: 1fr; }
  .point:nth-child(odd) { border-right: 0; padding-right: 0; }
  .point:nth-child(even) { padding-left: 0; }
  .mobile-cta { display: flex; }
}

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