/* ============================================
   Brian Butcher Appraisals — Custom Stylesheet
   No frameworks. No utilities. Hand-written CSS.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@400;600&display=swap');

/* --- Reset --- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{min-height:100vh;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale padding-bottom: 2.25rem; }
img,picture,video,canvas,svg{display:block;max-width:100%}
input,button,textarea,select{font:inherit}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
blockquote{margin:0}

/* --- Custom Properties --- */
:root {
  --bg: #f5f0e8;
  --bg-alt: #ebe4d6;
  --bg-card: #fffdf7;
  --bg-dark: #2c2418;
  --text: #2c2418;
  --text-muted: #5c5244;
  --text-faint: #8a8070;
  --primary: #8b3a2a;
  --primary-rgb: 139, 58, 42;
  --primary-light: #f2e0db;
  --accent: #9a7b4f;
  --accent-light: #eee4d0;
  --border: #c9bfa8;
  --border-light: #ddd5c4;
  --font-heading: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif;
}

html.dark {
  --bg: #1a1510;
  --bg-alt: #231d15;
  --bg-card: #2c2418;
  --bg-dark: #110e0a;
  --text: #e8e0d0;
  --text-muted: #b5a890;
  --text-faint: #7a6f5e;
  --primary: #c4604e;
  --primary-rgb: 196, 96, 78;
  --primary-light: #3a2520;
  --accent: #c49a60;
  --accent-light: #302618;
  --border: #3d3428;
  --border-light: #2f2920;
}

/* --- Base --- */
body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.0625rem);
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text);
}

h1 {
  font-size: clamp(2.25rem, 1.8rem + 2.25vw, 3.75rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 1.45rem + 1.5vw, 2.75rem);
  letter-spacing: -0.015em;
  line-height: 1.25;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.375rem, 1.2rem + 0.875vw, 1.875rem);
  letter-spacing: -0.01em;
  line-height: 1.3;
  font-weight: 700;
}

p + p { margin-top: 1.25em; }

/* --- Utilities --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

html.dark .site-header.scrolled {
  box-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  white-space: nowrap;
  transition: color 0.3s;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
  color: var(--primary);
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .nav__link::after { transition: none; }
}

.nav__cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--primary);
  padding: 0.5rem 1.125rem;
  border-radius: 4px;
  transition: background-color 0.2s;
  white-space: nowrap;
}
.nav__cta-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.nav__cta-phone:hover {
  background-color: var(--accent);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  border-radius: 4px;
}
.theme-toggle:hover { color: var(--primary); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-moon,
html.dark .theme-toggle .icon-sun { display: none; }
html.dark .theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: block; }

/* Hamburger */
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  flex-direction: column;
  gap: 5px;
  z-index: 110;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dark hero nav overrides */
.has-dark-hero .site-header:not(.scrolled) .nav__logo,
.has-dark-hero .site-header:not(.scrolled) .nav__link,
.has-dark-hero .site-header:not(.scrolled) .nav__hamburger span { color: #fff; }
.has-dark-hero .site-header:not(.scrolled) .theme-toggle { color: #fff; }
.has-dark-hero .site-header:not(.scrolled) .nav__hamburger span { background-color: #fff; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 1.5rem 6rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.25) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}
.hero__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 1.8rem + 2.25vw, 3.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 34rem;
}
.hero__cta {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s;
}
.hero__cta:hover { color: var(--accent); }

/* ============================================
   INTRO
   ============================================ */
.intro {
  padding: 5rem 1.5rem;
}
.intro__prose {
  max-width: 42rem;
  margin: 0 auto;
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  line-height: 1.8;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================
   EST. DIVIDER
   ============================================ */
.est-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.est-divider__line {
  flex: 1;
  height: 1px;
  background-color: var(--border);
}
.est-divider__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--text-faint);
  white-space: nowrap;
}

/* ============================================
   SERVICES (Two-column: descriptions left, sticky photo right)
   ============================================ */
.services {
  padding: 5rem 1.5rem;
}
.services__inner {
  max-width: 72rem;
  margin: 0 auto;
}
.services__heading {
  margin-bottom: 3.5rem;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.services__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.service-item__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  margin-bottom: 0.75rem;
  color: var(--text);
}
.service-item__desc {
  color: var(--text-muted);
  line-height: 1.75;
}
.services__photo-col {
  position: relative;
}
.services__photo-wrap {
  position: sticky;
  top: 6rem;
}
.services__photo-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}

/* ============================================
   CREDENTIALS (full-bleed dark)
   ============================================ */
.credentials {
  background-color: var(--bg-dark);
  padding: 5rem 1.5rem;
}
html.dark .credentials {
  background-color: var(--bg-dark);
}
.credentials__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
}
.credentials__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(5rem, 3.5rem + 7.5vw, 9rem);
  line-height: 0.85;
  color: var(--accent);
}
html.dark .credentials__number {
  color: var(--accent);
}
.credentials__text-block {
  padding-top: 0.75rem;
}
.credentials__text {
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 36rem;
}
.credentials__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.credentials__item {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0 1.25rem;
}
.credentials__item:first-child { padding-left: 0; }
.credentials__item:not(:last-child) {
  border-right: 2px solid var(--accent);
}

/* ============================================
   SERVICE AREA
   ============================================ */
.service-area {
  background-color: var(--bg-alt);
  padding: 5rem 1.5rem;
}
.service-area__inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
.service-area__heading {
  margin-bottom: 0.75rem;
}
.service-area__sub {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.service-area__counties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 3rem;
  max-width: 28rem;
  margin: 0 auto;
  text-align: left;
}
.service-area__county {
  font-size: 1rem;
  color: var(--text);
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--border-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.service-area.is-visible .service-area__county {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .service-area__county { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 5rem 1.5rem;
}
.testimonials__inner {
  max-width: 48rem;
  margin: 0 auto;
}
.testimonials__heading {
  margin-bottom: 3rem;
}
.testimonial {
  border-left: 4px solid transparent;
  padding: 1.5rem 0 1.5rem 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.testimonial::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary);
  transition: height 0.6s ease;
}
.testimonials.is-visible .testimonial::before {
  height: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .testimonial::before { height: 100%; transition: none; }
}
.testimonial:last-child { margin-bottom: 0; }
.testimonial__quote {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.125rem);
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial__cite {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq {
  padding: 5rem 1.5rem;
  background-color: var(--bg-alt);
}
.faq__inner {
  max-width: 48rem;
  margin: 0 auto;
}
.faq__heading {
  margin-bottom: 2.5rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: var(--text);
  text-align: left;
  padding: 1.25rem 0;
  gap: 1rem;
  line-height: 1.4;
}
.faq-item__question:hover { color: var(--primary); }
.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.is-open .faq-item__answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}
.faq-item__answer p {
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   CTA SECTION (Split)
   ============================================ */
.cta-section {
  padding: 5rem 1.5rem;
}
.cta-section__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.cta-section__heading {
  margin-bottom: 1.25rem;
}
.cta-section__text {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.cta-section__phone {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.cta-section__phone svg { width: 22px; height: 22px; flex-shrink: 0; }
.cta-section__email {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.cta-section__email svg { width: 18px; height: 18px; flex-shrink: 0; }
.cta-section__btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background-color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.cta-section__btn:hover { background-color: var(--accent); }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  padding: 0.625rem 0;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--primary);
}
.form-group {
  position: relative;
}
.form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease, left 0.3s ease;
}
.form-group:focus-within::after {
  width: 100%;
  left: 0;
}
@media (prefers-reduced-motion: reduce) {
  .form-group::after { transition: none; }
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c5244' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}
html.dark .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b5a890' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.form-group textarea {
  resize: vertical;
  min-height: 5rem;
}
.form-submit {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background-color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  align-self: flex-start;
}
.form-submit:hover { background-color: var(--accent); }
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-status {
  font-size: 0.9375rem;
  padding: 0.75rem 0;
}
.form-status.success { color: #2e7d32; }
.form-status.error { color: var(--primary); }
html.dark .form-status.success { color: #66bb6a; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--bg-dark);
  padding: 3.5rem 1.5rem 5rem;
  text-align: center;
}
.site-footer__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.site-footer__license {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.site-footer__contact {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.375rem;
}
.site-footer__contact a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.site-footer__contact a:hover { color: var(--accent); }
.site-footer__credit {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.site-footer__credit a {
  color: rgba(255,255,255,0.72);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.site-footer__credit a:hover { color: var(--accent); }

/* ============================================
   DISCLAIMER BAR
   ============================================ */
.disclaimer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.625rem 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding: 8rem 1.5rem 3.5rem;
  background-color: var(--bg);
}
.page-header__inner {
  max-width: 48rem;
  margin: 0 auto;
}
.page-header__title {
  margin-bottom: 1rem;
}
.page-header__intro {
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 40rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  padding: 4rem 1.5rem;
}
.about-story__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
.about-story__text p {
  color: var(--text-muted);
  line-height: 1.8;
}
.about-story__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}

.about-photo-full {
  padding: 0 1.5rem 4rem;
}
.about-photo-full__inner {
  max-width: 48rem;
  margin: 0 auto;
}
.about-photo-full img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 2px;
}

.about-values {
  background-color: var(--bg-alt);
  padding: 5rem 1.5rem;
}
.about-values__inner {
  max-width: 48rem;
  margin: 0 auto;
}
.about-values__heading {
  margin-bottom: 2.5rem;
}
.about-values__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-value__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.about-value__desc {
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-split {
  padding: 4rem 1.5rem 5rem;
}
.contact-split__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}
.contact-info__heading:first-child { margin-top: 0; }
.contact-info__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.contact-info__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-info__item a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.contact-info__item a:hover { color: var(--primary); }

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */
.service-detail {
  padding: 0 1.5rem 4rem;
}
.service-detail__inner {
  max-width: 48rem;
  margin: 0 auto;
}
.service-detail__photo {
  margin: 0 auto 3rem;
  max-width: 48rem;
  padding: 0 1.5rem;
}
.service-detail__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 2px;
}
.service-detail__inner p {
  color: var(--text-muted);
  line-height: 1.8;
}
.service-detail__inner h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
.service-detail__inner h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.service-detail__steps {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.service-detail__step {
  counter-increment: steps;
  display: flex;
  gap: 1rem;
  align-items: baseline;
  color: var(--text-muted);
  line-height: 1.75;
}
.service-detail__step::before {
  content: counter(steps) ".";
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
  flex-shrink: 0;
}
.service-detail__list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.service-detail__list li {
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}
.service-detail__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
}

/* CTA Band */
.cta-band {
  background-color: var(--bg-alt);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.cta-band__inner {
  max-width: 36rem;
  margin: 0 auto;
}
.cta-band__heading {
  margin-bottom: 1rem;
}
.cta-band__phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  display: block;
  margin-bottom: 1.5rem;
}
.cta-band__link {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background-color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.cta-band__link:hover { background-color: var(--accent); }

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta-phone { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg);
    z-index: 105;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .nav__links.is-open .nav__link {
    font-size: 1.25rem;
    color: var(--text);
  }

  .hero { min-height: 85vh; padding-bottom: 4rem; }
  .hero__headline { font-size: clamp(1.75rem, 1.5rem + 2vw, 2.75rem); }

  .services__grid { grid-template-columns: 1fr; }
  .services__photo-col { order: -1; }
  .services__photo-wrap { position: static; }

  .credentials__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .credentials__number { font-size: clamp(4rem, 3rem + 5vw, 6rem); }
  .credentials__list { justify-content: center; }

  .cta-section__inner { grid-template-columns: 1fr; }

  .about-story__inner { grid-template-columns: 1fr; }
  .about-story__photo { order: -1; }

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

  .service-area__counties {
    gap: 0.5rem 2rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes subtlePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.35); }
    50% { box-shadow: 0 0 0 6px rgba(var(--primary-rgb), 0); }
  }
  .cta-band__link,
  .cta-section__btn {
    animation: subtlePulse 3s ease-in-out 2s 3;
  }
  @keyframes driftIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .est-divider.is-visible .est-divider__text {
    animation: driftIn 0.8s ease both 0.3s;
  }
}

@media (max-width: 480px) {
  .credentials__list { flex-direction: column; gap: 0.75rem; }
  .credentials__item { border-right: none !important; padding: 0; }
  .credentials__item:not(:last-child) {
    border-bottom: 1px solid var(--accent);
    padding-bottom: 0.75rem;
  }
  .service-area__counties { grid-template-columns: 1fr; }
}
