/* =========================================================
   Campbell Appliance Repair — Chatsworth
   A warm, hand-painted editorial sheet, not a tech site.
   Sandstone cream paper, espresso ink, terracotta accent.
   ========================================================= */

:root {
  --ink:        #231f1c;
  --ink-soft:   #4a3f37;
  --paper:      #f4ead8;
  --paper-dim:  #ebe0c8;
  --paper-warm: #fbf3df;
  --terracotta: #b7513a;
  --poppy:      #e8772c;
  --sage:       #7a8466;
  --rule:       #cbb992;

  --serif:    "Fraunces", "Newsreader", Georgia, serif;
  --news:     "Newsreader", Georgia, serif;
  --hand:     "Caveat", "Bradley Hand", cursive;
  --sans:     ui-sans-serif, -apple-system, "Segoe UI", system-ui, sans-serif;

  --measure: 64ch;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--news);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  /* faint paper grain via radial speckle */
  background-image:
    radial-gradient(rgba(35,31,28,0.035) 1px, transparent 1px),
    radial-gradient(rgba(35,31,28,0.025) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1.5px 1.5px;
}

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

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

/* ---------- shop-status strip (very top) ---------- */
.openstrip {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  padding: 9px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.openstrip .dot {
  display: inline-block; width: 8px; height: 8px;
  background: #6cd58e; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(108,213,142,0.18);
  margin-right: 8px;
  vertical-align: middle;
}
.openstrip a { color: var(--paper); text-decoration: underline; text-decoration-color: rgba(244,234,216,0.4); }
.openstrip .right { display: flex; gap: 22px; align-items: center; }
@media (max-width: 720px) {
  .openstrip { font-size: 12.5px; padding: 8px 14px; }
  .openstrip .right span:first-child { display: none; }
}

/* ---------- THE CONTACT CARD (pinned top of landing) ---------- */
.contact-card-wrap {
  background: var(--paper);
  padding: 28px 22px 8px;
  display: flex;
  justify-content: center;
}
.contact-card {
  width: min(100%, 980px);
  background: var(--paper-warm);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 22px 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  position: relative;
  box-shadow:
    4px 4px 0 0 var(--ink),
    0 14px 30px -18px rgba(35,31,28,0.45);
}
/* tiny pin / corner sticker */
.contact-card::before {
  content: "";
  position: absolute;
  top: -9px; left: 28px;
  width: 18px; height: 18px;
  background: var(--terracotta);
  border-radius: 50%;
  box-shadow: 0 1px 0 rgba(0,0,0,0.25);
}
.cc-portrait {
  width: 84px; height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ink);
  background: var(--paper-dim);
}
.cc-message {
  font-family: var(--news);
  line-height: 1.45;
}
.cc-message .lede {
  font-family: var(--hand);
  font-size: 26px;
  color: var(--terracotta);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.cc-message .body {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
}
.cc-message .meta {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.cc-call {
  text-align: right;
}
.cc-call a {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  display: block;
  line-height: 1;
}
.cc-call .label {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cc-call a:hover { color: var(--terracotta); }

/* ---------- THE QUICKFORM (top right, on-load visible) ---------- */
.quickform {
  background: #fffaf0;
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.quickform::before {
  content: "";
  position: absolute;
  top: -8px; right: 22px;
  width: 14px; height: 14px;
  background: var(--poppy);
  border-radius: 50%;
  box-shadow: 0 1px 0 rgba(0,0,0,0.25);
}
.qf-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--rule);
}
.qf-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(183,81,58,0.10);
  padding: 4px 10px;
  border-radius: 999px;
}
.qf-note {
  font-family: var(--hand);
  font-size: 20px;
  color: var(--ink);
  line-height: 1;
}

.qf-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.qf-field > span {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.qf-field input,
.qf-field textarea {
  font-family: var(--news);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
  resize: vertical;
  min-width: 0;
  width: 100%;
}
.qf-field input:focus,
.qf-field textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(183,81,58,0.12);
}
.qf-field input::placeholder,
.qf-field textarea::placeholder {
  color: rgba(35,31,28,0.35);
  font-style: italic;
}

.qf-send {
  margin-top: 6px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  box-shadow: 0 8px 0 -4px var(--terracotta);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.qf-send:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
  box-shadow: 0 10px 0 -4px var(--poppy);
}
.qf-send span { margin-left: 6px; }

.qf-alt {
  margin: 6px 0 0;
  font-family: var(--news);
  font-style: italic;
  font-size: 13.5px;
  color: var(--ink-soft);
  text-align: center;
}
.qf-alt a {
  color: var(--terracotta);
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
  border-bottom: 1px solid rgba(183,81,58,0.4);
}
.qf-alt a:hover { color: var(--poppy); border-bottom-color: var(--poppy); }

@media (max-width: 760px) {
  .contact-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 22px 24px;
    text-align: left;
  }
  .cc-portrait { width: 64px; height: 64px; }
  .cc-call { text-align: left; }
  .cc-call a { font-size: 28px; }
}
@media (max-width: 560px) {
  .quickform { padding: 18px 18px 16px; }
}

/* Form placed in the hero column (replaces the polaroid) */
.hero-form {
  align-self: start;
}

/* ---------- masthead with big logo ---------- */
.masthead {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 22px 4px;
}
.masthead .logo {
  width: min(360px, 80%);
  height: auto;
}
.masthead .formerly {
  margin-top: 12px;
  font-family: var(--news);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 14.5px;
  letter-spacing: 0.02em;
}
.masthead .formerly em {
  color: var(--terracotta);
  font-style: normal;
  font-weight: 600;
}
.masthead .place {
  margin-top: 4px;
  font-family: var(--hand);
  color: var(--terracotta);
  font-size: 22px;
  letter-spacing: 0.01em;
}
.masthead .rule {
  margin-top: 14px;
  width: min(720px, 86%);
  border: 0;
  border-top: 1px solid var(--rule);
  position: relative;
}
.masthead .rule::after {
  content: "✶";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  padding: 0 10px;
  color: var(--rule);
  font-size: 14px;
}

/* ---------- hero (editorial, asymmetric) ---------- */
.hero {
  max-width: var(--container);
  margin: 22px auto 0;
  padding: 18px 26px 56px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-text .kicker {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.hero-text h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0 0 22px;
  color: var(--ink);
}
.hero-text h1 em {
  font-style: italic;
  font-family: var(--news);
  color: var(--terracotta);
  font-weight: 400;
}
.hero-text .lede {
  font-family: var(--news);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 26px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 0 -4px var(--terracotta);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hero-cta:hover {
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: 0 10px 0 -4px var(--poppy);
}
.hero-cta::after {
  content: "→";
  font-size: 18px;
  display: inline-block;
  transform: translateY(-1px);
}
.hero-second {
  display: inline-block;
  margin-left: 18px;
  font-family: var(--news);
  font-size: 16px;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--rule);
  text-decoration: none;
  padding-bottom: 1px;
}
.hero-second:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }

.hero-trust {
  margin-top: 26px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.hero-trust span::before {
  content: "•";
  color: var(--terracotta);
  margin-right: 8px;
}

.hero-photo {
  position: relative;
  padding: 14px 14px 18px;
  background: #fbf3df;
  border: 1px solid var(--rule);
  border-radius: 4px;
  transform: rotate(1.3deg);
  box-shadow:
    0 18px 30px -16px rgba(35,31,28,0.35),
    0 2px 0 0 var(--rule);
}
.hero-photo img {
  width: 100%;
  border-radius: 2px;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.hero-photo .caption {
  margin-top: 10px;
  font-family: var(--hand);
  color: var(--ink-soft);
  font-size: 20px;
  text-align: center;
  line-height: 1.1;
}
.hero-photo .stamp {
  position: absolute;
  top: -14px; right: -14px;
  background: var(--terracotta);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  transform: rotate(8deg);
  box-shadow: 0 6px 14px -6px rgba(35,31,28,0.5);
  text-align: center;
  line-height: 1.1;
}

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 8px; }
  .hero-photo { transform: rotate(0); margin: 0 auto; max-width: 480px; }
}

/* ---------- "what i fix" services ---------- */
.fixes {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 76px 22px;
}
.fixes .inner { max-width: var(--container); margin: 0 auto; }
.fixes .head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 38px;
}
.fixes h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.015em;
}
.fixes h2 em {
  font-family: var(--hand);
  font-style: normal;
  color: var(--terracotta);
  font-size: 0.85em;
  margin-left: 4px;
}
.fixes .head-aside {
  font-family: var(--news);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 38ch;
  text-align: right;
}

.fix-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.fix {
  padding: 26px 24px 30px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  position: relative;
}
.fix:nth-child(3n) { border-right: 0; }
.fix-num {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.fix h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.fix p {
  margin: 0;
  font-family: var(--news);
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .fix-list { grid-template-columns: repeat(2, 1fr); }
  .fix:nth-child(3n) { border-right: 1px solid var(--rule); }
  .fix:nth-child(2n) { border-right: 0; }
}
@media (max-width: 540px) {
  .fix-list { grid-template-columns: 1fr; }
  .fix { border-right: 0; }
}

.fixes .footnote {
  margin-top: 28px;
  font-family: var(--news);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 16px;
}
.fixes .footnote a { color: var(--terracotta); }

/* ---------- "why call me" — three asymmetric blocks ---------- */
.why {
  padding: 80px 22px 64px;
  max-width: var(--container);
  margin: 0 auto;
}
.why h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.why .sub {
  font-family: var(--hand);
  font-size: 24px;
  color: var(--terracotta);
  margin: 0 0 38px;
}
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.reason {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  padding: 28px 26px 30px;
  border-radius: 4px;
  position: relative;
}
.reason .num {
  position: absolute;
  top: -18px; left: 22px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 0 -1px var(--terracotta);
}
.reason h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  margin: 6px 0 10px;
  letter-spacing: -0.01em;
}
.reason p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.55;
}
@media (max-width: 880px) { .reasons { grid-template-columns: 1fr; } }

/* ---------- Meet Mark — portrait block lives here now ---------- */
.meet-mark {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 80px 22px;
}
.mm-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.mm-photo {
  margin: 0;
  padding: 14px 14px 18px;
  background: #fbf3df;
  border: 1px solid var(--rule);
  border-radius: 4px;
  transform: rotate(-1.5deg);
  box-shadow:
    0 18px 30px -16px rgba(35,31,28,0.35),
    0 2px 0 0 var(--rule);
  position: relative;
  max-width: 460px;
  justify-self: center;
}
.mm-photo img {
  width: 100%;
  border-radius: 2px;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.mm-photo figcaption {
  margin-top: 10px;
  font-family: var(--hand);
  color: var(--ink-soft);
  font-size: 20px;
  text-align: center;
  line-height: 1.1;
}
.mm-stamp {
  position: absolute;
  top: -14px; right: -14px;
  background: var(--terracotta);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  transform: rotate(8deg);
  box-shadow: 0 6px 14px -6px rgba(35,31,28,0.5);
}
.mm-text .mm-kicker {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.mm-text h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--ink);
}
.mm-text h2 em {
  font-style: italic;
  font-family: var(--news);
  color: var(--terracotta);
  font-weight: 400;
}
.mm-text p {
  font-family: var(--news);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 14px;
  max-width: 52ch;
}
.mm-text .mm-sig {
  font-family: var(--hand);
  font-size: 24px;
  color: var(--ink);
  margin-top: 18px;
}
@media (max-width: 880px) {
  .mm-inner { grid-template-columns: 1fr; gap: 36px; }
  .mm-photo { transform: rotate(0); }
}

/* ---------- testimonials — notes from neighbors ---------- */
.notes {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-dim) 100%);
  padding: 78px 22px;
  border-top: 1px solid var(--rule);
}
.notes .inner { max-width: var(--container); margin: 0 auto; }
.notes h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px);
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}
.notes .sub {
  font-family: var(--hand);
  color: var(--terracotta);
  font-size: 24px;
  margin: 0 0 40px;
}
.note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.note {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  padding: 26px 26px 22px;
  border-radius: 2px;
  font-family: var(--news);
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--ink);
  position: relative;
}
.note:nth-child(2) { transform: rotate(-0.6deg); }
.note:nth-child(3) { transform: rotate(0.7deg); }
.note .open {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta);
  font-size: 50px;
  line-height: 0.5;
  display: block;
  margin-bottom: 10px;
}
.note .sig {
  margin-top: 18px;
  border-top: 1px dashed var(--rule);
  padding-top: 12px;
  font-family: var(--hand);
  font-size: 22px;
  color: var(--ink);
}
.note .sig small {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
@media (max-width: 880px) { .note-grid { grid-template-columns: 1fr; } .note { transform: none !important; } }

/* ---------- service area ---------- */
.area {
  padding: 80px 22px 70px;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.area h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px);
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}
.area p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
  max-width: 46ch;
}
.hood-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.hood-list li {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.area-aside {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  padding: 26px 28px;
  border-radius: 4px;
  font-family: var(--news);
}
.area-aside .head {
  font-family: var(--hand);
  font-size: 26px;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.area-aside .big {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.area-aside ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  font-size: 16px;
  color: var(--ink-soft);
}
.area-aside ul li { margin: 4px 0; padding-left: 18px; position: relative; }
.area-aside ul li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--terracotta);
}
@media (max-width: 880px) { .area { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- closing CTA ---------- */
.closing {
  background: var(--ink);
  color: var(--paper);
  padding: 90px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before, .closing::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.18;
  filter: blur(10px);
}
.closing::before { top: -120px; left: -80px; }
.closing::after  { bottom: -140px; right: -100px; background: var(--poppy); opacity: 0.14; }
.closing .inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.closing .pre {
  font-family: var(--hand);
  color: #f0c8a8;
  font-size: 26px;
  margin: 0 0 8px;
}
.closing h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.015em;
}
.closing h2 em {
  font-style: italic;
  color: #f0c8a8;
  font-family: var(--news);
  font-weight: 400;
}
.closing .phone {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 54px);
  color: var(--paper);
  text-decoration: none;
  letter-spacing: -0.01em;
  border-bottom: 2px solid var(--terracotta);
  padding-bottom: 6px;
}
.closing .phone:hover { color: var(--poppy); border-bottom-color: var(--poppy); }
.closing .meta {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(244,234,216,0.72);
  text-transform: uppercase;
}

/* ---------- footer ---------- */
footer.foot {
  background: var(--paper-dim);
  border-top: 1px solid var(--rule);
  padding: 44px 22px 30px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
}
footer.foot .inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
footer.foot .foot-logo { width: 220px; height: auto; }
footer.foot .foot-bio {
  margin-top: 14px;
  font-family: var(--news);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 38ch;
}
footer.foot h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 10px;
}
footer.foot ul { list-style: none; padding: 0; margin: 0; }
footer.foot li { margin: 4px 0; }
footer.foot a { color: var(--ink); text-decoration: none; }
footer.foot a:hover { color: var(--terracotta); }
footer.foot .bottom {
  border-top: 1px solid var(--rule);
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
  letter-spacing: 0.03em;
}
@media (max-width: 880px) {
  footer.foot .inner { grid-template-columns: 1fr; gap: 28px; }
  footer.foot .bottom { flex-direction: column; }
}

/* ---------- mobile fixed phone bar ---------- */
.mphone {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0.04em;
  text-decoration: none;
  z-index: 99;
  border-top: 2px solid var(--terracotta);
}
.mphone strong { color: var(--paper); }
.mphone .small { display: block; font-size: 11px; letter-spacing: 0.18em; color: rgba(244,234,216,0.72); text-transform: uppercase; margin-bottom: 2px; }
@media (max-width: 720px) {
  .mphone { display: block; }
  body { padding-bottom: 64px; }
}
