/* ==========================================================================
   INDIANA PAINTING EXPERTS — Design System
   Editorial Craftsman: Cormorant Garamond + DM Sans
   ========================================================================== */

:root {
  /* Palette */
  --ivory: #faf6ef;
  --ivory-deep: #f2ecdf;
  --charcoal: #15130f;
  --charcoal-soft: #211d17;
  --ink: #211d17;
  --ink-soft: #52493c;
  --gold: #c19a5b;
  --gold-soft: #d8bd8c;
  --terracotta: #a85c3f;
  --terracotta-soft: #c17c5f;
  --sage: #7c8768;
  --line: rgba(33, 29, 23, 0.12);
  --line-dark: rgba(250, 246, 239, 0.14);
  --shadow-soft: 0 20px 60px rgba(21, 19, 15, 0.10);
  --shadow-deep: 0 30px 80px rgba(21, 19, 15, 0.35);

  /* Type */
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "DM Sans", -apple-system, sans-serif;

  /* Rhythm */
  --section-pad: clamp(5rem, 9vw, 9rem);
  --container-max: 1320px;
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --radius-sm: 0.75rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--charcoal-soft);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--ivory); }

h1 { font-size: clamp(2.75rem, 5.4vw, 5.25rem); }
h2 { font-size: clamp(2.1rem, 3.6vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
h4 { font-size: clamp(1.15rem, 1.5vw, 1.35rem); }

p { margin: 0 0 1rem; color: var(--ink-soft); }
.on-dark p { color: rgba(250, 246, 239, 0.72); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- Brushstroke signature divider ---------- */
.brush-divider {
  width: 148px;
  height: 22px;
  margin: 1.5rem 0;
  display: block;
}
.brush-divider.center { margin-left: auto; margin-right: auto; }
.brush-divider path { fill: var(--gold); }
.on-dark .brush-divider path { fill: var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 0.95rem 0.95rem 1.65rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  transition: transform 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft);
  will-change: transform;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--terracotta);
  color: var(--ivory);
  box-shadow: 0 12px 30px rgba(168, 92, 63, 0.35);
}
.btn-primary:hover { box-shadow: 0 16px 38px rgba(168, 92, 63, 0.48); }
.btn-ghost {
  background: transparent;
  color: var(--charcoal-soft);
  border: 1.5px solid var(--line);
  padding: 0.9rem 1.5rem;
}
.on-dark .btn-ghost { color: var(--ivory); border-color: var(--line-dark); }
.btn-ghost:hover { border-color: var(--gold); }
.btn-ghost svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.7; flex-shrink: 0; }
.btn-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: rgba(250, 246, 239, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-soft);
  flex-shrink: 0;
}
.btn:hover .btn-icon { transform: translate(3px, -2px) scale(1.06); }
.btn-icon svg { width: 15px; height: 15px; }

/* ---------- Nav ---------- */
.nav-wrap {
  position: fixed;
  top: 1.1rem;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  width: 100%;
  max-width: 1180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.6rem 0.6rem 0.6rem 1.4rem;
  border-radius: 999px;
  background: rgba(21, 19, 15, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(250, 246, 239, 0.1);
  box-shadow: var(--shadow-soft);
  transition: background 0.4s var(--ease-soft);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ivory);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-logo span { color: var(--gold-soft); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(250, 246, 239, 0.82);
  transition: background 0.35s var(--ease-soft), color 0.35s var(--ease-soft);
}
.nav-link:hover, .nav-link.active { background: rgba(250, 246, 239, 0.12); color: var(--ivory); }
.nav-link svg { width: 11px; height: 11px; transition: transform 0.35s var(--ease-soft); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 560px;
  background: var(--ivory);
  border-radius: 1.5rem;
  padding: 1.6rem;
  box-shadow: var(--shadow-deep);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-soft), transform 0.4s var(--ease-soft), visibility 0.4s;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-link {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  transition: background 0.3s var(--ease-soft);
}
.mega-link:hover { background: var(--ivory-deep); }
.mega-link .name { font-weight: 700; font-size: 0.92rem; color: var(--charcoal-soft); }
.mega-link .sub { font-size: 0.78rem; color: var(--ink-soft); }
.mega-foot {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mega-foot a { font-size: 0.82rem; font-weight: 700; color: var(--terracotta); }

.nav-cta { display: flex; align-items: center; gap: 0.5rem; }
.nav-phone {
  display: none;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ivory);
  padding: 0.5rem 0.9rem;
}
.nav-call-btn {
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-burger {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(250, 246, 239, 0.12);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-burger span { display: block; width: 16px; height: 1.5px; background: var(--ivory); position: relative; }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; width: 16px; height: 1.5px; background: var(--ivory); left: 0; transition: transform 0.4s var(--ease-soft); }
.nav-burger span::before { top: -5px; }
.nav-burger span::after { top: 5px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(21, 19, 15, 0.97);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  padding: 6rem 1.75rem 3rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease-soft), visibility 0.5s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: rgba(250,246,239,0.1); display: flex; align-items: center; justify-content: center;
}
.mobile-menu-close svg { width: 16px; height: 16px; stroke: var(--ivory); }
.mobile-group { margin-bottom: 2rem; }
.mobile-group-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 0.9rem; font-weight: 700; }
.mobile-link {
  display: block;
  padding: 0.7rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ivory);
  border-bottom: 1px solid rgba(250,246,239,0.08);
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.mobile-menu.open .mobile-link { opacity: 1; transform: translateY(0); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(21,19,15,0.55) 0%, rgba(21,19,15,0.35) 38%, rgba(21,19,15,0.82) 100%),
              linear-gradient(90deg, rgba(21,19,15,0.72) 0%, rgba(21,19,15,0.15) 55%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 720px; }
.hero-content h1 { color: var(--ivory); margin-bottom: 1.5rem; }
.hero-content .lede { color: rgba(250,246,239,0.82); font-size: 1.2rem; max-width: 560px; margin-bottom: 2.25rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-trust { display: flex; gap: 1.75rem; margin-top: 2.75rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item .num { font-family: var(--font-display); font-size: 2rem; color: var(--gold-soft); font-weight: 600; }
.hero-trust-item .lbl { font-size: 0.78rem; color: rgba(250,246,239,0.65); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Section shells ---------- */
.section { padding: var(--section-pad) 0; position: relative; }
.section.dark { background: var(--charcoal); }
.section.ivory-deep { background: var(--ivory-deep); }
.section-head { max-width: 700px; margin-bottom: 3.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .brush-divider { margin-top: 0.25rem; }

/* ---------- Reveal (GSAP hook classes) ---------- */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-scale { opacity: 0; transform: scale(0.94); }

/* ---------- Bento / Card grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
  gap: 1.25rem;
}
.bento .span-2 { grid-column: span 2; }
.bento .span-3 { grid-column: span 3; }
.bento .span-4 { grid-column: span 4; }
.bento .span-6 { grid-column: span 6; }

.card {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  transition: transform 0.6s var(--ease-soft), box-shadow 0.6s var(--ease-soft);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.card-inner {
  background: var(--ivory-deep);
  border-radius: calc(var(--radius-lg) - 0.5rem);
  padding: 1.9rem;
  height: 100%;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
}
.on-dark .card { background: rgba(250,246,239,0.04); border-color: var(--line-dark); }
.on-dark .card-inner { background: rgba(250,246,239,0.03); box-shadow: inset 0 1px 1px rgba(255,255,255,0.05); }

.card-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(193, 154, 91, 0.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
}
.card-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.4; }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; margin-bottom: 1.1rem; flex-grow: 1; }
.card-link { font-size: 0.85rem; font-weight: 700; color: var(--terracotta); display: inline-flex; align-items: center; gap: 0.4rem; }
.card-link svg { width: 12px; height: 12px; transition: transform 0.4s var(--ease-soft); }
.card:hover .card-link svg { transform: translateX(4px); }
.card-price { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--ink-soft); }
.card-price strong { color: var(--charcoal-soft); font-family: var(--font-display); font-size: 1.15rem; }
.on-dark .card-price { border-color: var(--line-dark); }
.on-dark .card-price strong { color: var(--ivory); }

/* Image card */
.img-card { overflow: hidden; }
.img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-soft); min-height: 260px; }
.img-card:hover img { transform: scale(1.06); }
.img-card-cap { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; color: var(--ivory); z-index: 2; }
.img-card { position: relative; }
.img-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(21,19,15,0.75) 100%); z-index: 1; border-radius: inherit; }

/* ---------- Area / service list rows ---------- */
.row-list { display: flex; flex-direction: column; }
.row-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 0.5rem;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease-soft);
}
.on-dark .row-item { border-color: var(--line-dark); }
.row-item:hover { padding-left: 0.75rem; }
.row-item .row-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal-soft); }
.on-dark .row-item .row-name { color: var(--ivory); }
.row-item .row-meta { font-size: 0.85rem; color: var(--ink-soft); }
.row-arrow { width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.4s var(--ease-soft), transform 0.4s var(--ease-soft); }
.on-dark .row-arrow { border-color: var(--line-dark); }
.row-item:hover .row-arrow { background: var(--gold); transform: rotate(45deg); }
.row-arrow svg { width: 14px; height: 14px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 2.5rem; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  position: absolute; top: 0; left: 0;
  letter-spacing: 0.05em;
}
.step-line { position: absolute; top: 0.7rem; left: 2.6rem; right: -1.5rem; height: 1px; background: var(--line); }
.on-dark .step-line { background: var(--line-dark); }
.step:last-child .step-line { display: none; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.6rem 0; }
.on-dark .faq-item { border-color: var(--line-dark); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; cursor: pointer; }
.faq-q h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; }
.faq-plus { width: 1.75rem; height: 1.75rem; border-radius: 50%; border: 1.5px solid var(--line); flex-shrink: 0; position: relative; transition: transform 0.4s var(--ease-soft); }
.on-dark .faq-plus { border-color: var(--line-dark); }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--charcoal-soft); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.on-dark .faq-plus::before, .on-dark .faq-plus::after { background: var(--ivory); }
.faq-plus::before { width: 9px; height: 1.4px; }
.faq-plus::after { width: 1.4px; height: 9px; }
.faq-item.open .faq-plus { transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-soft); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-top: 1rem; margin: 0; font-size: 0.98rem; }

/* ---------- Benefits list ---------- */
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 2rem; list-style: none; margin: 0; padding: 0; }
.check-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.98rem; color: var(--ink-soft); }
.on-dark .check-list li { color: rgba(250,246,239,0.75); }
.check-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 0.15rem; stroke: var(--gold); fill: none; stroke-width: 1.6; }

/* ---------- Local note / callout ---------- */
.callout {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.75rem;
  background: var(--ivory-deep);
  border-radius: 0 1rem 1rem 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.on-dark .callout { background: rgba(250,246,239,0.04); color: rgba(250,246,239,0.75); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.8rem; color: var(--ink-soft); flex-wrap: wrap; margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb .sep { opacity: 0.5; }

/* ---------- Final CTA band ---------- */
.cta-band {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5.5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(193,154,91,0.18), transparent 60%);
}
.cta-band .inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: var(--ivory); margin-bottom: 1rem; }
.cta-band p { color: rgba(250,246,239,0.72); margin-bottom: 2.25rem; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Sibling links grid (internal linking) ---------- */
.sibling-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
.sibling-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.jump-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.85rem; }
.cta-split { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: center; max-width: 100%; }
.sibling-link {
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  transition: border-color 0.3s var(--ease-soft), background 0.3s var(--ease-soft);
}
.on-dark .sibling-link { border-color: var(--line-dark); color: var(--ivory); }
.sibling-link:hover { border-color: var(--gold); background: var(--ivory-deep); }
.on-dark .sibling-link:hover { background: rgba(250,246,239,0.05); }

/* ---------- Two-image pair (hero + 2 images pattern) ---------- */
.img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2.5rem 0; }
.img-pair .img-card { min-height: 340px; height: 100%; border-radius: var(--radius-md); }
@media (max-width: 700px) {
  .img-pair { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
footer { background: var(--charcoal); padding: 4.5rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; color: var(--ivory); margin-bottom: 1rem; }
.footer-logo span { color: var(--gold-soft); }
.footer-desc { color: rgba(250,246,239,0.6); font-size: 0.92rem; max-width: 320px; }
.footer-col-title { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.1rem; font-weight: 700; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: rgba(250,246,239,0.68); font-size: 0.92rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-region {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--gold-soft); font-weight: 700; font-size: 0.92rem;
  padding: 0.6rem 0.85rem; margin-top: 0.25rem;
  background: rgba(193,154,91,0.1); border: 1px solid rgba(193,154,91,0.25); border-radius: 0.6rem;
}
.footer-region svg { width: 15px; height: 15px; flex-shrink: 0; stroke: var(--gold-soft); fill: none; stroke-width: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.75rem; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { color: rgba(250,246,239,0.45); font-size: 0.82rem; margin: 0; }
.footer-credit { color: rgba(250,246,239,0.45); font-size: 0.82rem; }
.footer-credit a { color: var(--gold-soft); font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  display: none;
  padding: 0.85rem 1.1rem;
  background: rgba(21,19,15,0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-dark);
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.mobile-call-bar a { color: var(--ivory); font-weight: 800; font-size: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.mobile-call-bar svg { width: 18px; height: 18px; stroke: var(--gold); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 861px) {
  .nav-phone { display: block; }
}

@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: flex; }
  .nav-pill { padding: 0.55rem 0.55rem 0.55rem 1.1rem; }
  .hero { align-items: flex-end; padding-bottom: 5rem; padding-top: 6.5rem; }
  .hero-content .eyebrow { font-size: 0.62rem; letter-spacing: 0.14em; margin-bottom: 0.75rem; }
  .hero-content h1 { font-size: 2.15rem !important; line-height: 1.15; margin-bottom: 1rem !important; }
  .hero-content .lede { font-size: 1rem; margin-bottom: 1.5rem !important; }
  .hero-trust { margin-top: 1.5rem !important; gap: 1.1rem; }
  .hero-trust-item .num { font-size: 1.5rem; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .span-2, .bento .span-3, .bento .span-4, .bento .span-6 { grid-column: span 2; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step-line { display: none; }
  .check-list { grid-template-columns: 1fr; }
  .sibling-grid, .sibling-grid-2col { grid-template-columns: 1fr 1fr; }
  .jump-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-split { grid-template-columns: 1fr; text-align: center; }
  .cta-split .btn { justify-self: center !important; }
  .footer-top { grid-template-columns: 1fr; gap: 2.25rem; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 4rem; }
}

@media (max-width: 540px) {
  .bento .span-2, .bento .span-3, .bento .span-4, .bento .span-6 { grid-column: span 1; }
  .bento { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .sibling-grid, .sibling-grid-2col, .jump-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.25rem; }
  .mega { min-width: 88vw; left: 50%; }
}
