:root {
  --clay: #B7613D;
  --clay-deep: #8A4426;
  --bg: #F5EDDF;
  --bg-soft: #EBE0CC;
  --card: #FDF8EE;
  --ink: #231F1B;
  --ink-soft: #5C544A;
  --rule: #C9BCA4;
  --teal: #3C6E71;
  --shadow: rgba(35, 31, 27, 0.08);
  --display: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  --body: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  --ui: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 0.2em;
  transition: text-decoration-color 0.2s, color 0.2s;
}
a:hover { text-decoration-color: var(--clay); color: var(--clay-deep); }

h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); line-height: 1.2; }
h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
h2 {
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 500;
  line-height: 1.2;
}
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
p { margin-bottom: 1em; }

.smallcaps {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--ink-soft);
  display: inline-block;
}
.smallcaps--clay { color: var(--clay); }

.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap--narrow { max-width: 38rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap--medium { max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  z-index: 200;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
}

/* ============ HEADER ============ */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.brand-block { display: flex; flex-direction: column; }
.wordmark {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.wordmark:hover { color: var(--ink); text-decoration: none; }
.wordmark-sub {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 0.25rem;
}
.site-nav { display: flex; gap: 1.75rem; align-items: center; }
.site-nav a {
  font-family: var(--ui);
  font-size: 0.9375rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover { color: var(--clay-deep); border-bottom-color: var(--clay); }
.site-nav a.is-current { border-bottom-color: var(--clay); }
.header-phone {
  font-family: var(--ui);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.header-phone:hover { color: var(--clay-deep); }
.header-phone .phone-icon { color: var(--clay); font-size: 1rem; }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.4rem;
  color: var(--ink);
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--rule);
    margin-top: 1rem;
  }
  .site-nav.is-open { display: flex; }
  .menu-toggle { display: block; }
  .header-inner { gap: 0.75rem; }
}

/* ============ HERO (Pattern #2 — full-bleed photo + centered card) ============ */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 31, 27, 0.18) 0%, rgba(35, 31, 27, 0.35) 100%);
}
.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(253, 248, 238, 0.94);
  backdrop-filter: blur(2px);
  padding: 3rem clamp(2rem, 4vw, 3.5rem);
  max-width: 38rem;
  text-align: center;
  border: 1px solid rgba(201, 188, 164, 0.5);
  box-shadow: 0 8px 32px var(--shadow);
}
.hero-card .smallcaps { margin-bottom: 1.25rem; }
.hero-card h1 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero-card .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}
.hero-buttons {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.hero-trust {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.hero-available {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  font-weight: 500;
}
.hero-available .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}
.hero-signature {
  font-family: 'Caveat', 'Brush Script MT', cursive;
  font-size: 1.625rem;
  color: var(--clay-deep);
  margin-top: 0.5rem;
  line-height: 1;
}

/* ============ PAGE HERO (interior pages) ============ */
.page-hero {
  background: var(--bg-soft);
  padding: 4.5rem 0 2.5rem;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.005em;
  max-width: 28ch;
  text-wrap: balance;
}
.page-hero .smallcaps { display: block; margin-bottom: 1rem; }
.breadcrumb {
  font-family: var(--ui);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 1.25rem;
  font-weight: 500;
}
.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--clay-deep); }
.breadcrumb .sep { margin: 0 0.5rem; color: var(--rule); }

/* ============ BUTTONS ============ */
.btn {
  font-family: var(--ui);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.375rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1.5px solid var(--clay);
  background: transparent;
  color: var(--clay);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
  line-height: 1.2;
}
.btn:hover {
  background: var(--clay);
  color: var(--bg);
  text-decoration: none;
}
.btn--primary {
  background: var(--clay);
  color: var(--bg);
}
.btn--primary:hover { background: var(--clay-deep); border-color: var(--clay-deep); }
.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* ============ SECTIONS ============ */
section { padding: 4rem 0; }
section.tight { padding: 2.5rem 0; }
.bg-soft { background: var(--bg-soft); }

/* Hector's intro block */
.hector-intro {
  background: var(--bg-soft);
  padding: 4rem 1.5rem;
}
.hector-intro-inner {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}
.hector-intro p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.hector-intro-attr {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clay);
  font-weight: 500;
  margin-top: 1.5rem;
  display: inline-block;
}

/* Services row list (homepage) */
.services-list {
  margin-top: 2.5rem;
}
.services-list .smallcaps { display: block; margin-bottom: 0.75rem; }
.services-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--rule);
}
.services-row:last-child { border-bottom: 0; }
.services-row-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay);
}
.services-row-icon svg { width: 100%; height: 100%; }
.services-row-body h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--ink);
}
.services-row-body p {
  font-family: var(--body);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.services-row-arrow {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--clay);
  text-decoration: none;
  padding: 0.5rem;
}
.services-row-arrow:hover { color: var(--clay-deep); }
@media (max-width: 700px) {
  .services-row { grid-template-columns: 40px 1fr auto; gap: 1rem; padding: 1.25rem 0; }
  .services-row-icon { width: 36px; height: 36px; }
}

/* Estimate block */
.estimate-block {
  background: var(--bg-soft);
}
.estimate-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 3.5rem;
  align-items: center;
}
.estimate-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 6px 24px var(--shadow);
}
.estimate-grid h2 { margin-bottom: 1.25rem; }
.estimate-grid .smallcaps { margin-bottom: 0.75rem; }
.estimate-grid p {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
@media (max-width: 800px) {
  .estimate-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Area + Map */
.area-block {
  background: var(--bg);
}
.area-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 3rem;
  align-items: center;
}
.area-grid h2 { margin-bottom: 1rem; }
.area-grid p { font-size: 1.0625rem; line-height: 1.7; }
.area-map {
  width: 100%;
  aspect-ratio: 4/3;
  border: 0;
  filter: saturate(0.9) sepia(0.05);
  box-shadow: 0 4px 16px var(--shadow);
}
@media (max-width: 800px) {
  .area-grid { grid-template-columns: 1fr; gap: 2rem; }
  .area-map { aspect-ratio: 16/10; }
}

/* Reviews preview */
.reviews-preview { background: var(--bg-soft); }
.reviews-preview h2 { margin-bottom: 0.5rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 1.5rem;
}
.review-card {
  background: var(--card);
  padding: 1.75rem;
  border: 1px solid var(--rule);
  border-radius: 6px;
  box-shadow: 0 2px 8px var(--shadow);
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: var(--clay);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
}
.review-body {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1rem;
  flex: 1;
}
.review-attr {
  font-family: var(--ui);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.review-note {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 0.25rem;
}
.reviews-more {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: var(--clay);
  font-family: var(--ui);
  font-weight: 500;
  font-size: 0.95rem;
}
@media (max-width: 800px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Final CTA (homepage) */
.final-cta {
  text-align: center;
  padding: 4.5rem 1.5rem;
}
.final-cta-inner { max-width: 34rem; margin: 0 auto; }
.final-cta h2 {
  font-style: italic;
  margin-bottom: 1rem;
}
.final-cta p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}
.final-cta .hero-buttons { justify-content: center; }

/* ============ ARTICLE / ABOUT PROSE ============ */
.article-prose {
  max-width: 38rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--ink);
}
.article-prose p { margin-bottom: 1.25rem; }
.article-prose h2 {
  margin: 3rem 0 1.25rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.625rem;
  letter-spacing: -0.005em;
}
.article-prose img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  margin: 2rem 0;
  box-shadow: 0 6px 20px var(--shadow);
}
.article-prose img.archive { filter: sepia(0.18) saturate(0.85); }
.article-prose blockquote {
  font-style: italic;
  font-size: 1.125rem;
  border-left: 2px solid var(--clay);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--ink-soft);
}
.article-signoff {
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: 2.5rem;
}
.article-signature {
  font-family: 'Caveat', 'Brush Script MT', cursive;
  font-size: 2rem;
  color: var(--clay-deep);
  margin-top: 0.5rem;
}

/* ============ SERVICES PAGE ============ */
.services-intro {
  max-width: 38rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink);
}
.svc-section {
  padding: 4rem 0;
  border-top: 1px solid var(--rule);
}
.svc-section:first-of-type { border-top: 0; }
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.svc-grid.reverse > .svc-img { order: 2; }
.svc-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 4px 16px var(--shadow);
}
.svc-body .smallcaps { margin-bottom: 0.5rem; }
.svc-body h2 { margin-bottom: 1rem; }
.svc-body p {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.svc-pricing {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
}
.svc-pricing dt {
  font-family: var(--body);
  font-size: 0.9375rem;
  color: var(--ink);
}
.svc-pricing dd {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--clay-deep);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.svc-note {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-top: 0.75rem;
}
@media (max-width: 800px) {
  .svc-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .svc-grid.reverse > .svc-img { order: 0; }
}
.dont-do {
  max-width: 44rem;
  margin: 2rem auto 0;
  padding: 2rem 1.5rem 4rem;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============ AREA-SERVED PAGE ============ */
.area-page-body {
  max-width: 44rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
.area-page-body p {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.area-page-body .area-map {
  aspect-ratio: 16/9;
  margin: 2rem 0;
}
.area-page-body h2 {
  margin: 2.5rem 0 1.25rem;
}
.towns-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem 1.5rem;
  list-style: none;
  padding: 0;
  font-family: var(--ui);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.towns-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
@media (max-width: 700px) {
  .towns-list { grid-template-columns: 1fr 1fr; }
}

/* ============ REVIEWS PAGE ============ */
.reviews-intro {
  max-width: 38rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 1rem;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
.reviews-external {
  text-align: center;
  padding: 0 1.5rem 4rem;
}
.reviews-external a {
  color: var(--clay);
  font-family: var(--ui);
  font-weight: 500;
  font-size: 1rem;
}
@media (max-width: 700px) {
  .reviews-page-grid { grid-template-columns: 1fr; }
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 3rem;
  max-width: 68rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}
.contact-form-card {
  background: var(--card);
  padding: 2rem;
  border: 1px solid var(--rule);
  border-radius: 6px;
  box-shadow: 0 2px 10px var(--shadow);
}
.contact-form-card h2 { margin-bottom: 0.5rem; }
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
}
.form-row input:focus,
.form-row textarea:focus { border-color: var(--clay); }
.form-row textarea { resize: vertical; min-height: 7rem; }
.form-submit {
  background: var(--clay);
  color: var(--bg);
  border: 0;
  padding: 0.85rem 1.5rem;
  font-family: var(--ui);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--clay-deep); }
.form-note {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}
.nap-card {
  background: var(--card);
  padding: 2rem;
  border: 1px solid var(--rule);
  border-radius: 6px;
  box-shadow: 0 2px 10px var(--shadow);
}
.nap-card .label {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clay);
  font-weight: 600;
  margin: 1.25rem 0 0.4rem;
  display: block;
}
.nap-card .label:first-of-type { margin-top: 0; }
.nap-card .big-phone {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.nap-card .big-phone:hover { color: var(--clay-deep); }
.nap-card p { font-size: 1rem; line-height: 1.6; margin-bottom: 0.25rem; }
.nap-card a { color: var(--ink); }
.contact-map-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
}
.contact-map {
  width: 100%;
  aspect-ratio: 21/9;
  border: 0;
  filter: saturate(0.9) sepia(0.04);
  box-shadow: 0 4px 14px var(--shadow);
}
.contact-mapnote {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-map { aspect-ratio: 4/3; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-soft);
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer h3 {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-wordmark {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-tag {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}
.footer-tag em {
  font-family: var(--display);
  font-style: italic;
  display: block;
  margin-top: 0.5rem;
  color: var(--ink);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  font-family: var(--ui);
  font-size: 0.9375rem;
  color: var(--ink);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--clay-deep); text-decoration: underline; text-decoration-color: var(--clay); }
.footer-contact p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.footer-contact a { color: var(--ink); }
.footer-phone-big {
  font-family: var(--ui);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.25rem;
}
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--ui);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  opacity: 0.85;
}
.footer-bottom em {
  font-family: var(--ui);
  font-style: italic;
  font-weight: 400;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
}
