/* =========================================================
   A to Z Towing — shared stylesheet
   Aesthetic: rugged industrial — deep navy + safety amber
   ========================================================= */

:root {
  --ink: #0f1922;          /* deep almost-black navy */
  --ink-2: #18242f;
  --steel: #2a3a48;
  --bone: #f4efe6;         /* warm off-white */
  --paper: #fbf8f2;
  --amber: #ffb800;        /* safety amber */
  --amber-dk: #e09e00;
  --rust: #c0492b;
  --line: rgba(15,25,34,.12);
  --line-dk: rgba(255,255,255,.12);

  --serif: 'Oswald', 'Bebas Neue', 'Impact', sans-serif;
  --body: 'Barlow', 'Helvetica Neue', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Barlow:wght@400;500;600;700&family=JetBrains+Mono:wght@500&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
  padding-bottom: 84px; /* room for mobile sticky bar */
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

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

a { color: inherit; }

/* =========== TOP CALL BAR (above nav) =========== */
.alert-bar {
  background: var(--amber);
  color: var(--ink);
  text-align: center;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 14px;
  letter-spacing: .02em;
  border-bottom: 2px solid var(--ink);
}
.alert-bar .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #d6202a;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 1px;
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }
.alert-bar a {
  text-decoration: none;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 1px;
  font-weight: 800;
}

/* =========== NAV =========== */
.nav {
  background: var(--ink);
  color: var(--bone);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-dk);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--bone);
}
.brand-mark {
  width: 44px; height: 44px;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  display: grid; place-items: center;
  font-size: 22px;
  border-radius: 4px;
  letter-spacing: -.03em;
  position: relative;
}
.brand-mark::after {
  content: '';
  position: absolute; inset: 3px;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  pointer-events: none;
}
.brand-text { line-height: 1; }
.brand-text strong {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .03em;
  display: block;
}
.brand-text span {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
}

.nav-links { display: none; gap: 28px; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--bone);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active {
  border-color: var(--amber);
  color: var(--amber);
}

.nav-call {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--ink) !important;
  padding: 11px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .02em;
  font-weight: 700;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .15s, box-shadow .15s;
}
.nav-call:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
.nav-call svg { width: 18px; height: 18px; }

.menu-btn {
  background: transparent;
  border: 1px solid var(--line-dk);
  color: var(--bone);
  padding: 9px 12px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 3px;
  line-height: 1;
}

@media (min-width: 1000px) {
  .nav-links, .nav-call { display: flex; }
  .menu-btn { display: none; }
}

/* mobile menu drawer */
.mobile-menu {
  display: none;
  background: var(--ink);
  border-top: 1px solid var(--line-dk);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 16px 22px;
  text-decoration: none;
  color: var(--bone);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-dk);
}
.mobile-menu a:hover { background: var(--ink-2); color: var(--amber); }

/* =========== MOBILE STICKY CALL BAR =========== */
.sticky-call {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  border-top: 3px solid var(--amber);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  z-index: 100;
  box-shadow: 0 -6px 24px rgba(0,0,0,.18);
}
.sticky-call a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .04em;
  padding: 14px 10px;
  border-radius: 4px;
  font-weight: 700;
}
.sticky-call .call {
  background: var(--amber);
  color: var(--ink);
  flex: 2;
}
.sticky-call .map {
  background: transparent;
  color: var(--bone);
  border: 1.5px solid var(--bone);
  font-size: 14px;
  letter-spacing: .08em;
}
.sticky-call svg { width: 20px; height: 20px; }
@media (min-width: 900px) {
  .sticky-call { display: none; }
}

/* =========== HERO =========== */
.hero {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--amber);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 24px, rgba(255,184,0,.05) 24px 25px);
  pointer-events: none;
}
.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 22px 60px;
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    padding: 80px 22px 90px;
    align-items: center;
  }
}

.tag-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,184,0,.12);
  border: 1px solid rgba(255,184,0,.4);
  color: var(--amber);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  font-weight: 500;
}
.tag-strip .pulse {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--amber);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,184,0,.7); }
  70% { box-shadow: 0 0 0 12px rgba(255,184,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,184,0,0); }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 8vw, 84px);
  line-height: .95;
  letter-spacing: -.01em;
  font-weight: 700;
  text-transform: uppercase;
}
.hero h1 .amber { color: var(--amber); }
.hero h1 .strike {
  position: relative;
  display: inline-block;
}
.hero h1 .strike::after {
  content:'';
  position: absolute;
  left: -4px; right: -4px;
  bottom: 8%;
  height: 14%;
  background: var(--amber);
  z-index: -1;
  transform: skewX(-8deg);
}
.hero p.lede {
  font-size: 18px;
  color: rgba(244,239,230,.78);
  max-width: 540px;
  margin-top: 22px;
  line-height: 1.55;
}

.hero-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}
@media (min-width: 520px) {
  .hero-cta { flex-direction: row; }
}

.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--amber);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 18px 24px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--amber-dk);
  transition: transform .15s, box-shadow .15s;
  flex: 1;
}
.btn-call:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 var(--amber-dk);
}
.btn-call .label {
  font-size: 11px;
  letter-spacing: .25em;
  display: block;
  font-family: var(--body);
  font-weight: 600;
  margin-bottom: 2px;
  opacity: .75;
}
.btn-call .num { display: block; line-height: 1; }
.btn-call svg { width: 28px; height: 28px; flex-shrink: 0; }

.btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: var(--bone);
  border: 1.5px solid rgba(244,239,230,.35);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 4px;
  font-weight: 600;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

.hero-stats {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 540px;
}
.hero-stats div {
  border-top: 1px solid var(--line-dk);
  padding-top: 12px;
}
.hero-stats strong {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--amber);
  display: block;
  line-height: 1;
}
.hero-stats span {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(244,239,230,.6);
  display: block;
  margin-top: 6px;
}

.hero-photo {
  position: relative;
  margin: 0 -22px;
}
@media (min-width: 900px) {
  .hero-photo { margin: 0; }
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  border: 4px solid var(--amber);
}
.hero-photo .corner-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--ink);
  color: var(--amber);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .15em;
  border: 1px solid var(--amber);
  text-transform: uppercase;
}

/* =========== SECTION SHELL =========== */
section { padding: 64px 22px; }
.container { max-width: 1240px; margin: 0 auto; }

.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--rust);
}
.h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 1;
  letter-spacing: -.005em;
  text-transform: uppercase;
  font-weight: 700;
  max-width: 18ch;
}
.h2 .amber { color: var(--amber-dk); }
.section-intro {
  display: grid;
  gap: 22px;
  margin-bottom: 44px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .section-intro { grid-template-columns: 1.2fr 1fr; align-items: end; }
}
.section-intro p {
  color: var(--steel);
  font-size: 17px;
  max-width: 50ch;
}

/* =========== SERVICES GRID =========== */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3,1fr); } }

.svc-card {
  background: var(--ink);
  color: var(--bone);
  padding: 28px 24px 24px;
  text-decoration: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 4px;
  border: 1px solid var(--ink);
  overflow: hidden;
  transition: transform .2s;
  min-height: 240px;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--amber);
  transform: scaleX(.2);
  transform-origin: left;
  transition: transform .3s;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { transform: translateY(-3px); }
.svc-card .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--amber);
  letter-spacing: .15em;
}
.svc-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: .01em;
}
.svc-card p {
  font-size: 14.5px;
  color: rgba(244,239,230,.68);
  flex: 1;
}
.svc-card .arrow {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--amber);
  letter-spacing: .15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =========== FEATURE BLOCK / WHY =========== */
.why {
  background: var(--ink);
  color: var(--bone);
}
.why .kicker { color: var(--amber); }
.why .kicker::before { background: var(--amber); }
.why .h2 { color: var(--bone); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-dk);
}
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(4,1fr); } }

.why-grid > div {
  padding: 32px 24px;
  border-bottom: 1px solid var(--line-dk);
  border-right: 1px solid var(--line-dk);
}
.why-grid > div:last-child { border-right: 1px solid var(--line-dk); }
.why-grid .icon {
  width: 48px; height: 48px;
  background: var(--amber);
  color: var(--ink);
  display: grid; place-items: center;
  margin-bottom: 18px;
  border-radius: 4px;
}
.why-grid .icon svg { width: 26px; height: 26px; }
.why-grid h4 {
  font-family: var(--serif);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 10px;
}
.why-grid p {
  font-size: 14.5px;
  color: rgba(244,239,230,.7);
}

/* =========== BIG CTA STRIP =========== */
.cta-strip {
  background: var(--amber);
  color: var(--ink);
  padding: 50px 22px;
  text-align: center;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  position: relative;
}
.cta-strip h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.005em;
  margin-bottom: 18px;
}
.cta-strip p {
  font-size: 16px;
  margin-bottom: 26px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip a.big-num {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--amber);
  text-decoration: none;
  padding: 18px 30px;
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: .02em;
  border-radius: 4px;
  font-weight: 700;
  transition: transform .15s;
}
.cta-strip a.big-num:hover { transform: scale(1.03); }
.cta-strip a.big-num svg { width: 32px; height: 32px; }

/* =========== AREAS GRID =========== */
.area-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .area-grid { grid-template-columns: repeat(4, 1fr); } }

.area-grid a {
  text-decoration: none;
  color: var(--ink);
  background: var(--bone);
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .2s, border-color .2s;
}
.area-grid a:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.area-grid a:hover .pin { color: var(--amber); }
.area-grid .pin {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--rust);
}
.area-grid .city {
  font-family: var(--serif);
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
}
.area-grid .state {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .65;
}

/* =========== TESTIMONIAL =========== */
.review-strip { background: var(--paper); }
.review-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .review-grid { grid-template-columns: repeat(3,1fr); } }
.review {
  background: var(--bone);
  padding: 28px 24px;
  border-left: 4px solid var(--amber);
  border-radius: 0 4px 4px 0;
}
.review .stars { color: var(--amber); font-size: 16px; letter-spacing: 4px; margin-bottom: 12px; }
.review blockquote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: .01em;
}
.review cite {
  font-style: normal;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--steel);
  font-weight: 600;
}

/* =========== FAQ ACCORDION =========== */
.faq-list {
  border-top: 1px solid var(--line);
  max-width: 880px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  line-height: 1.15;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 32px;
  color: var(--amber-dk);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer {
  padding: 0 0 26px;
  color: var(--steel);
  font-size: 16px;
  max-width: 72ch;
  line-height: 1.6;
}

/* =========== BREADCRUMB =========== */
.crumb {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
}
.crumb .container { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.crumb a { color: var(--steel); text-decoration: none; }
.crumb a:hover { color: var(--ink); }
.crumb span.sep { color: var(--rust); }

/* =========== PAGE HEADER (non-home pages) =========== */
.page-head {
  background: var(--ink);
  color: var(--bone);
  padding: 56px 22px 56px;
  border-bottom: 4px solid var(--amber);
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 24px, rgba(255,184,0,.04) 24px 25px);
  pointer-events: none;
}
.page-head .container { position: relative; }
.page-head .kicker { color: var(--amber); }
.page-head .kicker::before { background: var(--amber); }
.page-head h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.005em;
  max-width: 20ch;
}
.page-head h1 .amber { color: var(--amber); }
.page-head p {
  margin-top: 20px;
  color: rgba(244,239,230,.78);
  font-size: 18px;
  max-width: 60ch;
}
.page-head .head-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--amber);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .02em;
  padding: 14px 22px;
  border-radius: 4px;
  border: 2px solid var(--bone);
  font-weight: 700;
}
.page-head .head-cta svg { width: 22px; height: 22px; }

/* =========== PROSE BLOCKS =========== */
.prose { max-width: 780px; }
.prose h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  letter-spacing: -.005em;
  margin: 40px 0 14px;
  line-height: 1.05;
}
.prose h3 {
  font-family: var(--serif);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 28px 0 10px;
}
.prose p { margin-bottom: 16px; color: var(--steel); font-size: 17px; }
.prose ul { margin: 8px 0 20px 22px; }
.prose li { margin-bottom: 8px; color: var(--steel); }
.prose strong { color: var(--ink); }

.two-col {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .two-col { grid-template-columns: 1.4fr 1fr; } }

.sidecard {
  background: var(--ink);
  color: var(--bone);
  padding: 28px 26px;
  border-radius: 4px;
  position: sticky;
  top: 92px;
  align-self: start;
}
.sidecard h4 {
  font-family: var(--serif);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
  color: var(--amber);
}
.sidecard .call-block {
  display: block;
  text-decoration: none;
  background: var(--amber);
  color: var(--ink);
  padding: 16px;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 16px;
}
.sidecard .call-block span {
  display: block;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.sidecard .call-block strong {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: .02em;
}
.sidecard ul { list-style: none; padding: 0; margin: 0; }
.sidecard ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-dk);
  font-size: 14.5px;
  color: rgba(244,239,230,.78);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidecard ul li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
}
.sidecard ul li:last-child { border-bottom: none; }
.sidecard .addr {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(244,239,230,.65);
  line-height: 1.5;
}

/* =========== SERVICE/AREA LIST CHIPS =========== */
.chip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) { .chip-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .chip-grid { grid-template-columns: repeat(3,1fr); } }
.chip {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--bone);
  padding: 14px 16px;
  border-radius: 4px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s, border-color .15s, color .15s;
}
.chip:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.chip:hover .ar { color: var(--amber); }
.chip .ar {
  font-family: var(--serif);
  color: var(--rust);
  font-size: 18px;
}

/* =========== GALLERY =========== */
.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid var(--ink);
}

/* =========== FOOTER =========== */
footer {
  background: var(--ink);
  color: rgba(244,239,230,.7);
  padding: 60px 22px 30px;
  border-top: 4px solid var(--amber);
  position: relative;
}
.foot-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 700px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.foot-brand strong {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: .04em;
  display: block;
  margin-bottom: 12px;
}
.foot-brand p { font-size: 14px; max-width: 38ch; }
footer h5 {
  color: var(--amber);
  font-family: var(--serif);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 14px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer a {
  color: rgba(244,239,230,.7);
  text-decoration: none;
  font-size: 14px;
}
footer a:hover { color: var(--amber); }
.foot-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--ink) !important;
  padding: 12px 18px;
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-top: 14px;
  text-decoration: none;
}
.foot-bottom {
  max-width: 1240px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-dk);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--mono);
}

/* =========== UTIL =========== */
.center-text { text-align: center; }
.divider {
  height: 1px;
  background: var(--line);
  margin: 40px 0;
}
.list-clean { list-style: none; padding: 0; }
.list-clean li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--steel);
}
.list-clean li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--amber);
  flex-shrink: 0;
}
