/* Global visual polish for the local redesign preview. */
:root {
  --bg: #f4f6f1;
  --surface: #ffffff;
  --surface-muted: #eaf0e8;
  --ink: #111816;
  --ink-soft: #4d5a55;
  --brand: #102f2a;
  --brand-2: #236f61;
  --accent: #c9362a;
  --accent-2: #d28a24;
  --line: #d7ded6;
  --shadow: 0 18px 42px rgba(13, 22, 20, .1);
  --shadow-soft: 0 8px 22px rgba(13, 22, 20, .07);
  --radius: 8px;
}

html {
  background: var(--bg);
}

body {
  background:
    linear-gradient(180deg, #f7f9f4 0, var(--bg) 520px),
    var(--bg);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

a,
button,
summary,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(210, 138, 36, .55);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  color: inherit;
  text-wrap: balance;
}

p,
li {
  line-height: 1.64;
}

.container {
  width: min(var(--max), calc(100% - 44px));
}

.site-header {
  background: rgba(248, 250, 246, .94);
  border-bottom: 1px solid rgba(215, 222, 214, .94);
  box-shadow: 0 10px 28px rgba(13, 22, 20, .05);
}

.header-inner {
  min-height: 74px;
}

.brand img {
  width: min(220px, 46vw);
}

.brand span {
  color: #40514b;
  font-size: .8rem;
  line-height: 1.25;
}

.main-nav {
  gap: 16px;
}

.main-nav a,
.icon-link {
  border-radius: 999px;
  color: #3f4f49;
  padding: 8px 2px;
  transition: color .16s ease, background .16s ease;
}

.main-nav a:hover,
.icon-link:hover {
  color: var(--accent);
}

.button,
button.button {
  box-shadow: 0 10px 22px rgba(194, 56, 40, .18);
  font-size: .95rem;
  letter-spacing: 0;
}

.button-light {
  border: 1px solid rgba(215, 222, 214, .96);
  box-shadow: 0 8px 18px rgba(13, 22, 20, .07);
}

.button-light:hover {
  box-shadow: 0 10px 22px rgba(13, 22, 20, .1);
}

.text-link {
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.section {
  padding: clamp(54px, 7vw, 86px) 0;
}

.section-muted {
  background: #edf2ea;
}

.section-heading,
.split-heading {
  margin-bottom: 28px;
}

.split-heading {
  gap: 26px;
}

.split-heading > p,
.page-hero p,
.hero-lead {
  color: rgba(77, 90, 85, .96);
}

.page-hero {
  min-height: 420px;
  padding: clamp(84px, 10vw, 126px) 0 clamp(62px, 8vw, 88px);
}

.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.02;
  max-width: 980px;
}

.page-hero p {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  max-width: 720px;
}

.page-hero-shade,
.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 13, 12, .9), rgba(7, 13, 12, .68) 52%, rgba(7, 13, 12, .22)),
    linear-gradient(0deg, rgba(7, 13, 12, .78), rgba(7, 13, 12, .04) 58%);
}

.eyebrow {
  color: var(--accent);
  letter-spacing: .11em;
}

.photo-card,
.journey-card,
.method-card,
.price-card,
.city-card,
.proof-card,
.article-card,
.content-card,
.contact-form,
.faq-list details,
.document-grid article,
.quick-proof-panel,
.problem-card,
.flow-card,
.guarantee-card,
.answer-tile,
.quick-cta-card {
  border-color: rgba(202, 213, 203, .94);
  box-shadow: var(--shadow-soft);
}

.photo-card,
.journey-card,
.method-card,
.price-card,
.city-card,
.proof-card,
.article-card,
.content-card,
.contact-form,
.faq-list details {
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.article-card:hover,
.city-card:hover,
.photo-card:hover,
.answer-tile:hover {
  border-color: rgba(194, 56, 40, .38);
  box-shadow: 0 16px 34px rgba(13, 22, 20, .1);
  transform: translateY(-2px);
}

.photo-card img,
.journey-card img,
.method-card img,
.media-content-card img,
.image-stack img,
.contact-photo,
.contact-photo img {
  background: #dfe6df;
}

.content-card,
.price-card,
.proof-card,
.article-card {
  padding: clamp(20px, 2.2vw, 28px);
}

.content-card h2,
.section-heading h2,
.split-heading h2,
.quick-heading h2 {
  font-size: clamp(1.75rem, 3.4vw, 3.35rem);
}

.content-card h3,
.price-card h3,
.proof-card h3,
.article-card h3,
.city-card strong,
.faq-list summary {
  color: #13221f;
}

.city-pills {
  gap: 8px;
}

.city-pills a {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 7px 16px rgba(13, 22, 20, .05);
  font-size: .92rem;
}

.city-pills a:hover {
  background: #fff;
}

.inline-cta,
.journey-callout,
.contact-band {
  background:
    linear-gradient(135deg, #112f2a 0, #0e201d 100%);
}

.inline-cta,
.journey-callout {
  box-shadow: 0 16px 36px rgba(13, 22, 20, .12);
}

.method-section,
.quick-method,
.facebook-library {
  background:
    linear-gradient(180deg, #12342e 0, #0b1715 100%);
}

.method-card,
.document-grid article,
.method-feature,
.quick-proof-panel {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .2);
}

.method-card h3,
.method-card p,
.document-grid p {
  color: #fff;
}

.faq-list details {
  background: #fff;
}

.faq-list summary {
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:after {
  color: var(--accent);
  content: "+";
  float: right;
  font-weight: 900;
}

.faq-list details[open] summary:after {
  content: "-";
}

.contact-form input,
.contact-form textarea {
  background: #fbfcf9;
  border-color: #cfd8cf;
  min-height: 46px;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: rgba(194, 56, 40, .55);
  box-shadow: 0 0 0 4px rgba(194, 56, 40, .1);
  outline: 0;
}

.contact-form .form-note {
  color: var(--ink-soft);
}

.contact-photo div {
  background: rgba(13, 22, 20, .86);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}

.site-footer {
  background: #091310;
  padding: clamp(48px, 7vw, 70px) 0 88px;
}

.site-footer .brand img {
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.footer-grid {
  gap: 26px;
}

.footer-bottom {
  color: rgba(255, 255, 255, .68);
}

.sticky-cta summary {
  box-shadow: 0 16px 34px rgba(13, 22, 20, .22);
}

.sticky-panel {
  box-shadow: 0 22px 52px rgba(13, 22, 20, .2);
}

.quick-hero {
  min-height: min(720px, 82svh);
}

.quick-hero-copy h1 {
  font-size: clamp(2.45rem, 5.1vw, 5rem);
  line-height: 1.02;
  max-width: 900px;
}

.quick-hero-copy p {
  max-width: 670px;
}

.quick-heading {
  margin-bottom: 24px;
}

.problem-card img,
.method-feature img {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
}

.answer-tile {
  text-decoration: none;
}

.local-story {
  align-items: stretch;
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
}

.local-story > * {
  min-width: 0;
}

.local-story-figure {
  background: #dfe6df;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin: 0;
  overflow: hidden;
}

.local-story-figure img {
  aspect-ratio: 16 / 10;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  width: 100%;
}

.local-story-figure figcaption {
  background: var(--surface);
  color: var(--ink-soft);
  font-size: .82rem;
  line-height: 1.4;
  padding: 10px 14px;
}

.local-story-copy {
  align-self: center;
}

.local-story-copy h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  margin-bottom: 14px;
}

.local-checklist {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.local-checklist li {
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-weight: 720;
  padding: 8px 0 8px 14px;
}

.local-story-copy .answer-links {
  gap: 18px;
  margin-top: 24px;
}

.local-nearby {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 32px;
  padding-top: 20px;
}

.local-nearby .city-pills {
  margin-top: 0;
}

.contact-hero .hero-actions {
  margin-top: 24px;
}

.contact-choice-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-choice {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
}

.contact-choice > span {
  color: var(--accent);
  font-size: .8rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.contact-choice h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.contact-choice .button {
  margin-top: auto;
}

.contact-phone-value {
  color: var(--accent);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  margin: 4px 0 18px;
  text-decoration: none;
}

.contact-prep {
  align-items: center;
}

.contact-info-list {
  counter-reset: contact-info;
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.contact-info-list li {
  align-items: start;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 2px 12px;
  grid-template-columns: 34px 1fr;
  padding: 12px;
}

.contact-info-list li:before {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  color: #fff;
  content: counter(contact-info);
  counter-increment: contact-info;
  display: flex;
  font-size: .78rem;
  font-weight: 900;
  grid-row: 1 / 3;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.contact-info-list strong,
.contact-info-list span {
  grid-column: 2;
}

.contact-info-list span {
  color: var(--ink-soft);
  font-size: .9rem;
}

.contact-value-band .document-grid h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.contact-worth .hero-actions {
  align-items: center;
  margin-top: 22px;
}

@media (max-width: 1080px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    gap: 10px;
  }

  .main-nav {
    gap: 8px 14px;
  }

  .quick-hero-grid {
    grid-template-columns: 1fr;
  }

  .quick-proof-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-proof-panel div {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .local-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--max), calc(100% - 26px));
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 0;
    padding: 12px 0;
  }

  .brand {
    gap: 6px;
  }

  .brand img {
    width: min(188px, 58vw);
  }

  .brand span {
    font-size: .74rem;
  }

  .main-nav {
    gap: 6px 10px;
    max-width: 100%;
  }

  .main-nav a {
    font-size: .82rem;
    padding: 4px 0;
  }

  .button,
  button.button {
    min-height: 48px;
    padding: 13px 16px;
    width: 100%;
  }

  .button-small {
    min-height: 42px;
    width: auto;
  }

  .section {
    padding: 48px 0;
  }

  .page-hero {
    min-height: 360px;
    padding: 72px 0 56px;
  }

  .page-hero h1,
  h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.06;
  }

  .page-hero p {
    font-size: 1rem;
  }

  h2,
  .content-card h2,
  .section-heading h2,
  .split-heading h2,
  .quick-heading h2 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
    line-height: 1.08;
  }

  .quick-hero {
    min-height: auto;
    padding: 66px 0 30px;
  }

  .quick-hero-copy h1 {
    font-size: clamp(2.05rem, 11vw, 3rem);
    line-height: 1.04;
  }

  .quick-hero-copy p {
    font-size: 1rem;
  }

  .quick-proof-panel {
    grid-template-columns: 1fr;
  }

  .quick-heading,
  .split-heading {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .content-card,
  .price-card,
  .proof-card,
  .article-card,
  .contact-form,
  .faq-list details {
    padding: 18px;
  }

  .city-pills a {
    font-size: .86rem;
    padding: 7px 10px;
  }

  .contact-choice-grid {
    grid-template-columns: 1fr;
  }

  .local-story {
    gap: 22px;
  }

  .local-story-figure img {
    aspect-ratio: 4 / 3;
  }

  .local-nearby {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-phone-value {
    font-size: 2rem;
  }

  .sticky-cta summary span {
    display: none;
  }

  .sticky-cta summary {
    padding: 8px;
  }
}
