/* ============================================================
   Hunter & Sons AC & Cooling — Lowell, MA
   Aesthetic: warm editorial / community letterhead.
   Deep cordovan, warm cream, aged brass. Fraunces + IBM Plex.
   The ampersand is the visual identity. No gradients.
   ============================================================ */

:root {
  /* Palette ------------------------------------------------- */
  --ink:        #2a1410;   /* near-black with red bias */
  --cord:       #5a1f1a;   /* cordovan, dominant brand */
  --cord-deep:  #3d1411;   /* darker cordovan */
  --cord-soft:  #7a3c34;   /* lighter cordovan for accents */
  --cream:      #f3ead8;   /* page background */
  --cream-deep: #ebe1cd;   /* secondary cream */
  --cream-lite: #faf4e6;   /* tertiary cream */
  --brass:      #a67c30;   /* aged brass accent */
  --brass-deep: #6f4f17;
  --rule:       rgba(42, 20, 16, 0.18);
  --rule-soft:  rgba(42, 20, 16, 0.10);

  /* Typography --------------------------------------------- */
  --f-display: "Fraunces", "Times New Roman", Georgia, serif;
  --f-body:    "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Layout ------------------------------------------------- */
  --col: min(1180px, 92vw);
  --pad: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "kern", "liga";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  /* paper grain via faint radial spots, not a full wash */
  background-image:
    radial-gradient(circle at 18% 22%, rgba(122, 60, 52, 0.05) 0, transparent 38%),
    radial-gradient(circle at 82% 78%, rgba(122, 60, 52, 0.04) 0, transparent 42%);
}

a { color: var(--cord); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--cord-deep); }

img, svg { display: block; max-width: 100%; }
em { font-style: italic; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ============================================================
   STICKY CALL BAR (mobile-first, persistent)
   ============================================================ */
.cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--cord);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--f-body);
  border-top: 1px solid var(--brass);
  box-shadow: 0 -8px 24px rgba(42, 20, 16, 0.18);
}
.cta-bar__lead {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 234, 216, 0.72);
}
.cta-bar__num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 19px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
@media (min-width: 900px) { .cta-bar { display: none; } }

/* ============================================================
   MASTHEAD — editorial newspaper top
   ============================================================ */
.masthead {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--rule);
}
.masthead__rule {
  height: 6px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--cord) 0 14px,
      transparent 14px 22px
    );
}
.masthead__rule--bottom { height: 2px; background: var(--cord); }
.masthead__wrap {
  width: var(--col);
  margin: 0 auto;
  padding: 18px 0 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px 28px;
}
.masthead__brand {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto;
  gap: 0 14px;
  align-items: center;
  text-decoration: none;
  color: var(--cord);
  line-height: 1;
}
.masthead__line1,
.masthead__line2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 38px);
  letter-spacing: -0.01em;
}
.masthead__amp {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 56px);
  color: var(--brass);
  line-height: 0.8;
  transform: translateY(2px);
}
.masthead__sub {
  grid-column: 1 / -1;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cord-soft);
  margin-top: 4px;
}

.masthead__nav { display: none; }
.masthead__nav a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.masthead__nav a:hover { border-bottom-color: var(--brass); }
.masthead__nav--pri { color: var(--cord) !important; font-weight: 500; }

.masthead__phone {
  display: none;
  text-decoration: none;
  text-align: right;
  line-height: 1.15;
}
.masthead__phone-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cord-soft);
}
.masthead__phone-num {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--cord);
  font-variant-numeric: tabular-nums;
}

@media (min-width: 760px) {
  .masthead__nav {
    display: flex;
    gap: 22px;
    grid-row: 2;
    grid-column: 1;
    padding-top: 14px;
    border-top: 1px solid var(--rule-soft);
  }
  .masthead__wrap { grid-template-columns: auto auto; }
  .masthead__phone { display: block; grid-row: 1; grid-column: 2; }
}

/* ============================================================
   LEDE — hero with giant ampersand on left
   ============================================================ */
.lede {
  position: relative;
  padding: clamp(32px, 6vw, 68px) 0 clamp(40px, 7vw, 80px);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.lede__edition {
  width: var(--col);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cord-soft);
  font-family: var(--f-mono);
}
.lede__edition-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brass);
}
.lede__grid {
  width: var(--col);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 900px) {
  .lede__grid {
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.4fr);
    gap: 56px;
  }
}

/* the ampersand column ------------------------------------- */
.lede__col-amp {
  position: relative;
  align-self: stretch;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lede__amp-wrap {
  position: relative;
  line-height: 0.7;
  padding-top: 8px;
}
.lede__amp,
.lede__amp-shadow {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(260px, 38vw, 460px);
  display: block;
  font-feature-settings: "ss01", "swsh" 1, "salt" 1;
  letter-spacing: -0.02em;
}
.lede__amp {
  color: var(--cord);
  position: relative;
  z-index: 2;
}
.lede__amp-shadow {
  position: absolute;
  inset: 0;
  color: var(--brass);
  opacity: 0.35;
  transform: translate(8px, 8px);
  z-index: 1;
}
.lede__amp-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 0;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cord-soft);
}
.lede__amp-caption-rule {
  flex: 1;
  height: 1px;
  background: var(--cord-soft);
  opacity: 0.4;
}

/* the copy column ----------------------------------------- */
.lede__col-copy { max-width: 640px; }
.lede__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cord-soft);
  margin: 0 0 22px;
}
.lede__eyebrow-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brass);
}
.lede__h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 28px;
}
.lede__h1 em { font-style: italic; color: var(--cord); font-weight: 400; }
.lede__h1-rule {
  display: block;
  width: 140px;
  height: 1px;
  background: var(--brass);
  margin: 14px 0 10px;
}
.lede__h1-time { font-family: var(--f-display); font-style: italic; color: var(--cord); }
.lede__deck {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 32px;
  max-width: 56ch;
}

/* CTAs (buttons) ------------------------------------------ */
.lede__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 44px;
}
.btn {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 22px;
  text-decoration: none;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
  border-radius: 2px;
}
.btn__lead {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.78;
  font-weight: 500;
}
.btn__main {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 19px;
  font-variant-numeric: tabular-nums;
}
.btn--primary { background: var(--cord); color: var(--cream); border-color: var(--cord); }
.btn--primary:hover { background: var(--cord-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--cord); border: 1px solid var(--cord); }
.btn--ghost:hover { background: var(--cord); color: var(--cream); }
.btn--block { display: flex; justify-content: center; width: 100%; }

/* proof under hero --------------------------------------- */
.lede__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.lede__proof-cell {
  padding: 18px 16px 16px 0;
  border-right: 1px solid var(--rule-soft);
}
.lede__proof-cell:last-child { border-right: none; padding-right: 0; }
.lede__proof-cell + .lede__proof-cell { padding-left: 18px; }
.lede__proof dt {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cord-soft);
  margin: 0 0 8px;
}
.lede__proof dd { margin: 0; color: var(--ink); }
.lede__proof-num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1;
  color: var(--cord);
  font-variant-numeric: tabular-nums;
}
.lede__proof-sep {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--brass);
  margin: 0 4px;
}
.lede__proof-meta {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--cord-soft);
}
.lede__proof-foot {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--cord-soft);
}

/* corner seal --------------------------------------------- */
.lede__seal {
  display: none;
  position: absolute;
  top: 40px;
  right: max(20px, calc((100vw - var(--col)) / 2));
  width: 130px;
  height: 130px;
  color: var(--cord);
  opacity: 0.85;
  pointer-events: none;
  transform: rotate(-6deg);
}
@media (min-width: 1180px) { .lede__seal { display: block; } }

/* ============================================================
   SECTION HEADS — shared
   ============================================================ */
.section-head { margin: 0 0 36px; max-width: 700px; }
.section-head__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cord-soft);
  margin: 0 0 14px;
}
.section-head__h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--ink);
}
.section-head__h2 em { font-style: italic; color: var(--cord); }
.section-head__deck {
  font-size: 17px;
  color: var(--ink);
  max-width: 54ch;
  margin: 0;
}
.section-head--inv .section-head__eyebrow { color: rgba(243, 234, 216, 0.65); }
.section-head--inv .section-head__h2 { color: var(--cream); }
.section-head--inv .section-head__h2 em { color: var(--brass); }
.section-head--inv .section-head__deck { color: rgba(243, 234, 216, 0.86); }

/* ============================================================
   SERVICES — editorial numbered grid
   ============================================================ */
.services {
  background: var(--cream-lite);
  padding: clamp(60px, 9vw, 110px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.services__wrap { width: var(--col); margin: 0 auto; }
.services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
}
@media (min-width: 700px) { .services__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services__list { grid-template-columns: repeat(3, 1fr); } }

.svc {
  position: relative;
  padding: 32px 28px 28px 28px;
  border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule);
  transition: background 160ms ease;
}
.svc:hover { background: var(--cream); }
.svc:nth-child(3n) { border-right: none; }
@media (max-width: 999px) {
  .svc:nth-child(3n) { border-right: 1px solid var(--rule-soft); }
  .svc:nth-child(2n) { border-right: none; }
}
@media (max-width: 699px) { .svc { border-right: none; } }

.svc__num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  color: var(--brass);
}
.svc__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--cord);
  max-width: calc(100% - 40px);
}
.svc__copy {
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
}
.svc__tag {
  margin: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cord-soft);
}

/* ============================================================
   PROOF — reviews block
   ============================================================ */
.proof { padding: clamp(60px, 9vw, 110px) 0; background: var(--cream); }
.proof__wrap {
  width: var(--col);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 900px) {
  .proof__wrap { grid-template-columns: 1.2fr 1fr; gap: 60px; }
}
.proof__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cord-soft);
  margin: 0 0 14px;
}
.proof__h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  color: var(--ink);
}
.proof__h2 em { font-style: italic; color: var(--cord); }
.proof__deck { font-size: 17px; margin: 0 0 22px; max-width: 50ch; }
.proof__link {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--cord);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
}
.proof__link:hover { color: var(--cord-deep); border-bottom-color: var(--cord); }

.proof__column--score { display: flex; justify-content: center; }
.proof__score {
  text-align: center;
  padding: 36px 28px;
  border: 1px solid var(--rule);
  background: var(--cream-lite);
  max-width: 320px;
  width: 100%;
  position: relative;
}
.proof__score::before,
.proof__score::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--brass);
}
.proof__score::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.proof__score::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.proof__score-num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 100px;
  line-height: 0.9;
  color: var(--cord);
  margin: 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.proof__score-stars {
  margin: 14px 0 14px;
  letter-spacing: 4px;
  color: var(--brass);
  font-size: 20px;
}
.proof__star-half {
  position: relative;
  display: inline-block;
  color: var(--brass);
  opacity: 0.42;
}
.proof__score-meta {
  margin: 0;
  font-size: 13px;
  color: var(--cord-soft);
  font-family: var(--f-mono);
  letter-spacing: 0.08em;
}
.proof__score-meta strong { color: var(--cord); font-weight: 500; }

/* quotes ---------------------------------------------------- */
.proof__quotes {
  list-style: none;
  padding: 0;
  margin: 48px auto 0;
  width: var(--col);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 760px) { .proof__quotes { grid-template-columns: repeat(3, 1fr); } }
.proof__quote {
  padding: 28px 28px 24px;
  border-left: 1px solid var(--rule-soft);
  position: relative;
}
.proof__quote:first-child { border-left: none; }
@media (max-width: 759px) {
  .proof__quote { border-left: none; border-top: 1px solid var(--rule-soft); }
  .proof__quote:first-child { border-top: none; padding-top: 0; }
}
.proof__quote-mark {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 72px;
  line-height: 0.7;
  color: var(--brass);
  margin: 0 0 6px;
}
.proof__quote blockquote {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.proof__quote blockquote strong { font-weight: 500; color: var(--cord); }
.proof__quote-attr {
  margin: 14px 0 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cord-soft);
}

/* ============================================================
   AREA — dark band, the route
   ============================================================ */
.area {
  background: var(--cord-deep);
  color: var(--cream);
  padding: clamp(60px, 9vw, 110px) 0;
  border-top: 1px solid var(--cord);
  position: relative;
  overflow: hidden;
}
.area::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(166, 124, 48, 0.07) 0, transparent 36%),
    radial-gradient(circle at 92% 82%, rgba(166, 124, 48, 0.08) 0, transparent 40%);
  pointer-events: none;
}
.area__wrap { width: var(--col); margin: 0 auto; position: relative; }
.area__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(243, 234, 216, 0.18);
}
@media (min-width: 700px) { .area__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .area__list { grid-template-columns: repeat(3, 1fr); } }

.area__city {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(243, 234, 216, 0.14);
}
@media (min-width: 700px) {
  .area__city { padding-right: 28px; border-right: 1px solid rgba(243, 234, 216, 0.10); }
  .area__city:nth-child(2n) { border-right: none; padding-left: 28px; padding-right: 0; }
}
@media (min-width: 1000px) {
  .area__city { padding-left: 0; padding-right: 28px; border-right: 1px solid rgba(243, 234, 216, 0.10); }
  .area__city:nth-child(3n) { border-right: none; padding-right: 0; }
  .area__city:nth-child(3n+2),
  .area__city:nth-child(3n) { padding-left: 28px; }
}

.area__city-mark { color: var(--brass); font-size: 18px; line-height: 1; }
.area__city-name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.area__city-foot {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 234, 216, 0.6);
}
.area__city--hq .area__city-mark { color: var(--brass); font-size: 22px; }
.area__city--hq .area__city-name { color: var(--brass); font-style: italic; }
.area__city--hq .area__city-foot { color: rgba(243, 234, 216, 0.82); }

.area__foot {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  color: rgba(243, 234, 216, 0.86);
  max-width: 56ch;
  margin: 0;
}

/* ============================================================
   SHOP — Wood Street anchor with CSS shop sign
   ============================================================ */
.shop {
  padding: clamp(60px, 9vw, 110px) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.shop__wrap {
  width: var(--col);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .shop__wrap { grid-template-columns: 1.1fr 1fr; gap: 72px; } }

.shop__h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 5.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 0 0 22px;
  color: var(--ink);
}
.shop__h2 em { font-style: italic; color: var(--cord); }
.shop__deck { font-size: 17px; margin: 0 0 32px; max-width: 50ch; }

.shop__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.shop__facts > div { margin: 0; }
.shop__facts dt {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cord-soft);
  margin-bottom: 6px;
}
.shop__facts dd {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
}
.shop__facts dd span {
  display: block;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--cord-soft);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.shop__facts dd a { color: var(--cord); text-decoration: none; font-variant-numeric: tabular-nums; }
.shop__facts dd a:hover { color: var(--cord-deep); text-decoration: underline; }

/* the CSS shop sign --------------------------------------- */
.shop__sign {
  position: relative;
  margin: 0 auto;
  width: min(360px, 90%);
}
.shop__sign-board {
  position: relative;
  background: var(--cord);
  color: var(--cream);
  padding: 36px 28px 32px;
  border: 4px double var(--brass);
  border-radius: 4px;
  box-shadow:
    0 1px 0 var(--cord-deep) inset,
    -1px -1px 0 rgba(0,0,0,0.2) inset,
    0 14px 30px -10px rgba(42, 20, 16, 0.45),
    0 4px 10px -4px rgba(42, 20, 16, 0.3);
  transform: rotate(-1.4deg);
  /* subtle vertical grain via repeating stripe (not a wash) */
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.04) 0 1px,
      transparent 1px 3px
    );
}
.shop__sign-rope {
  position: absolute;
  top: -36px;
  width: 2px;
  height: 40px;
  background: var(--cord-soft);
}
.shop__sign-rope--l { left: 22%; transform: rotate(-12deg); }
.shop__sign-rope--r { right: 22%; transform: rotate(12deg); }
.shop__sign-rope::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--brass);
  border: 1px solid var(--brass-deep);
}
.shop__sign-bolts { position: absolute; inset: 0; pointer-events: none; }
.shop__sign-bolts span {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass);
  border: 1px solid var(--brass-deep);
}
.shop__sign-bolts span:nth-child(1) { top: 10px; left: 10px; }
.shop__sign-bolts span:nth-child(2) { top: 10px; right: 10px; }
.shop__sign-bolts span:nth-child(3) { bottom: 10px; left: 10px; }
.shop__sign-bolts span:nth-child(4) { bottom: 10px; right: 10px; }

.shop__sign-top,
.shop__sign-foot {
  margin: 0;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}
.shop__sign-amp {
  margin: 4px 0 -10px;
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--brass);
}
.shop__sign-main {
  margin: 8px 0 6px;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.shop__sign-main span { font-style: italic; color: var(--brass); font-weight: 300; }
.shop__sign-sub {
  margin: 0 0 16px;
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: rgba(243, 234, 216, 0.82);
}
.shop__sign-caption {
  margin: 22px 0 0;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cord-soft);
}

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote {
  padding: clamp(60px, 9vw, 110px) 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.quote__wrap {
  width: var(--col);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) { .quote__wrap { grid-template-columns: 1fr 1.1fr; gap: 64px; } }
.quote__h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 14px 0 14px;
  color: var(--ink);
}
.quote__h2 em { font-style: italic; color: var(--cord); }
.quote__deck { font-size: 17px; margin: 0; max-width: 44ch; }
.quote__deck a { color: var(--cord); font-weight: 500; }

.quote__form {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: var(--cream-lite);
  border: 1px solid var(--rule);
  position: relative;
}
.quote__form::before,
.quote__form::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--brass);
}
.quote__form::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.quote__form::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.quote__row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .quote__row { grid-template-columns: 1fr 1fr; } }

.quote__label { display: grid; gap: 6px; }
.quote__label > span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cord-soft);
}
.quote__label > span em {
  text-transform: none;
  letter-spacing: 0.02em;
  font-style: italic;
  opacity: 0.8;
}

.quote__form input,
.quote__form select,
.quote__form textarea {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 12px 14px;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.quote__form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--cord) 50%),
    linear-gradient(135deg, var(--cord) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.quote__form textarea {
  resize: vertical;
  min-height: 88px;
}
.quote__form input:focus,
.quote__form select:focus,
.quote__form textarea:focus {
  outline: none;
  border-color: var(--cord);
  box-shadow: 0 0 0 3px rgba(90, 31, 26, 0.12);
}

.quote__thanks {
  margin: 4px 0 0;
  padding: 14px 16px;
  background: var(--cord);
  color: var(--cream);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  text-align: center;
  border-radius: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--cream);
  padding-bottom: calc(80px + env(safe-area-inset-bottom));
}
@media (min-width: 900px) { .footer { padding-bottom: 0; } }

.footer__band { background: var(--ink); color: var(--cream); padding: 28px 0; }
.footer__band-wrap {
  width: var(--col);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}
@media (min-width: 700px) { .footer__band-wrap { grid-template-columns: 1fr auto; gap: 32px; } }
.footer__band-lede {
  margin: 0;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
  color: var(--cream);
}
.footer__band-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  padding: 14px 22px;
  background: var(--cream);
  color: var(--cord);
  border-radius: 2px;
  border: 1px solid var(--brass);
  transition: transform 120ms ease;
}
.footer__band-cta:hover { transform: translateY(-1px); }
.footer__band-cta-lead {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cord-soft);
}
.footer__band-cta-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 24px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.footer__main { padding: 56px 0 24px; }
.footer__wrap {
  width: var(--col);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 760px) {
  .footer__wrap { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
}
.footer__brand {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
  margin: 0;
  color: var(--cord);
  letter-spacing: -0.01em;
}
.footer__brand span { font-style: italic; font-weight: 300; color: var(--brass); }
.footer__brand-sub {
  margin: 4px 0 16px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cord-soft);
}
.footer__addr {
  font-style: normal;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px;
  color: var(--ink);
}
.footer__hours {
  margin: 0;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cord-soft);
}
.footer__h {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cord-soft);
  margin: 0 0 10px;
}
.footer__cities {
  margin: 0;
  font-family: var(--f-display);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
}
.footer__trade {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}
.footer__meta {
  width: var(--col);
  margin: 22px auto 0;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--cord-soft);
}
@media (min-width: 760px) {
  .footer__meta { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer__meta a {
  color: var(--cord);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 1px;
}
.footer__meta a:hover { color: var(--cord-deep); border-bottom-color: var(--cord); }

/* ============================================================
   PAGE-LOAD MICRO-MOTION (one orchestrated reveal)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .lede__edition,
  .lede__amp,
  .lede__amp-shadow,
  .lede__amp-caption,
  .lede__eyebrow,
  .lede__h1,
  .lede__deck,
  .lede__ctas,
  .lede__proof {
    opacity: 0;
    transform: translateY(8px);
    animation: rise 0.9s cubic-bezier(0.16, 0.84, 0.34, 1) forwards;
  }
  .lede__edition       { animation-delay: 0.05s; }
  .lede__amp-shadow    { animation-delay: 0.10s; }
  .lede__amp           { animation-delay: 0.18s; }
  .lede__amp-caption   { animation-delay: 0.45s; }
  .lede__eyebrow       { animation-delay: 0.12s; }
  .lede__h1            { animation-delay: 0.20s; }
  .lede__deck          { animation-delay: 0.32s; }
  .lede__ctas          { animation-delay: 0.42s; }
  .lede__proof         { animation-delay: 0.52s; }

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

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .cta-bar, .masthead__nav, .footer__band { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: none; }
}
