:root {
  --ink: #18232d;
  --muted: #5d6874;
  --paper: #ffffff;
  --soft-paper: #f8f4ef;
  --warm-paper: #fff8f2;
  --line: rgba(24, 35, 45, 0.14);
  --accent: #e85f32;
  --accent-dark: #b9401f;
  --accent-soft: rgba(232, 95, 50, 0.10);
  --deep: #243444;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
  --photo-hero: url("assets/hero-modern-house.webp?v=20260708-testimonials-2");
  --photo-intro: url("assets/intro-floor-plan.webp?v=20260708-testimonials-2");
  --photo-value: url("assets/value-architects-outdoor.webp?v=20260708-testimonials-2");
  --photo-services: url("assets/services-blueprint-desk.webp?v=20260708-testimonials-2");
  --photo-proof: url("assets/proof-architect-floor-plans.webp?v=20260708-testimonials-2");
  --photo-service-area: url("assets/service-area-architectural-plan.webp?v=20260708-testimonials-2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--soft-paper);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

p,
ul,
ol {
  margin: 0;
}

p + p {
  margin-top: 16px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.12;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.65rem, 7vw, 5.7rem);
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.section {
  padding: clamp(62px, 8vw, 110px) 0;
}


/* Consistent content spacing */
main h2 + p,
main h3 + p,
main h2 + ul,
main h3 + ul,
main h2 + ol,
main h3 + ol {
  margin-top: 18px;
}

main p + h2,
main p + h3,
main ul + h2,
main ul + h3,
main ol + h2,
main ol + h3 {
  margin-top: 30px;
}

.section-heading {
  margin-bottom: 34px;
}

.plan-card,
.feature-card,
.service-card,
.about-card,
.included-list-card,
.highlight-card,
.pricing-order-card,
.service-area-card,
details {
  overflow-wrap: anywhere;
}

.feature-card,
.service-card,
.about-card,
.included-list-card,
.highlight-card,
.pricing-order-card,
.service-area-card {
  padding: clamp(26px, 3vw, 34px);
}

.faq-grid,
.service-area-grid,
.feature-grid,
.plan-grid,
.process-list {
  gap: clamp(16px, 2.2vw, 24px);
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--deep);
  border-radius: 10px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img,
.footer-brand img {
  display: block;
  width: 164px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 0.9rem;
}

.primary-nav a {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 11px;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: var(--soft-paper);
  text-decoration: none;
}

.primary-nav .nav-cta {
  margin-left: 5px;
  padding: 10px 16px;
  color: #ffffff;
  background: var(--accent-dark);
  border-radius: 999px;
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  color: #ffffff;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-color: var(--deep);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--deep);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, var(--soft-paper));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.42fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.hero h1,
.hero h2,
.hero p {
  color: #ffffff;
}

.hero-text {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
  display: flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(232, 95, 50, 0.78);
  border-radius: 999px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 14px 32px rgba(185, 64, 31, 0.28);
}

.button.secondary {
  color: var(--accent-dark);
  background: #ffffff;
  border-color: rgba(185, 64, 31, 0.24);
}

.button.secondary.light {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-card,
.plan-card,
.feature-card,
.highlight-card,
.included-list-card,
.pricing-order-card,
.service-card,
.service-area-card,
.about-card,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.08);
}

.hero-card {
  padding: 28px;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.hero-card h2,
.hero-card p {
  color: var(--ink);
}

.hero-card p {
  margin-top: 12px;
  color: var(--muted);
}

.phone-link,
.email-link,
.location-text {
  display: block;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 15px;
  background: var(--warm-paper);
}

.phone-link {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  font-size: 1.35rem;
}

.location-text {
  color: var(--muted);
  font-weight: 800;
}

.intro-section {
  padding-top: 82px;
}

.intro-section p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.split-grid > div > p:not(.eyebrow),
.service-card p:not(.eyebrow),
.service-area-copy p:not(.eyebrow),
.about-card p:not(.eyebrow),
.highlight-card p:not(.eyebrow),
.included-list-card,
.faq-grid p,
.final-cta p:not(.eyebrow),
.site-footer p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  margin-top: 0;
  margin-bottom: 10px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  position: relative;
  min-height: 260px;
  padding: clamp(26px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

.plan-card p {
  margin-top: 14px;
  color: var(--muted);
}

.plan-card a {
  margin-top: auto;
  padding-top: 20px;
}

.value-section,
.services-section,
.faq-section {
  background: #ffffff;
}

.split-grid,
.included-grid,
.card-row,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.proof-section .button {
  margin-top: 24px;
}

.about-card a {
  display: inline-block;
  margin-top: 22px;
}

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

.feature-card,
.service-card,
.about-card,
.included-list-card,
.highlight-card {
  padding: clamp(26px, 3vw, 34px);
}

.feature-card p,
.service-card p,
.about-card p,
.highlight-card p {
  margin-top: 12px;
}

.included-section {
  background: var(--warm-paper);
}

.included-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
}

.highlight-card {
  background: #ffffff;
}

.highlight-card .button {
  margin-top: 24px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.card-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.service-card a {
  margin-top: auto;
  padding-top: 22px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  position: relative;
  min-height: 250px;
  padding: 80px clamp(24px, 2.5vw, 30px) clamp(24px, 2.5vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  counter-increment: step;
  box-shadow: 0 12px 32px rgba(16, 24, 32, 0.08);
}

.process-list li::before {
  content: counter(step);
  position: absolute;
  top: 22px;
  left: 22px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  background: var(--accent-dark);
  border-radius: 50%;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 10px;
  color: var(--muted);
}

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

.service-area-section {
  background: var(--warm-paper);
}

.service-area-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(560px, 1.42fr);
  gap: 18px;
  align-items: start;
}

.service-area-copy {
  padding-right: clamp(0px, 2vw, 28px);
}

.service-area-copy h2 {
  font-size: clamp(2rem, 3.3vw, 3.05rem);
}

.service-area-copy p:not(.eyebrow) {
  margin-top: 18px;
}

.service-area-card {
  padding: 26px;
}

.service-area-lists {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: start;
}

.area-list {
  display: grid;
  gap: 10px 22px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  color: var(--muted);
  font-weight: 800;
}

.area-list.columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.area-list.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.area-list li {
  position: relative;
  padding-left: 20px;
}

.area-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

details {
  padding: 0;
  overflow: hidden;
}

summary {
  padding: 22px 24px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
}

details p {
  padding: 0 24px 24px;
}

.final-cta {
  color: #ffffff;
  background: var(--deep);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
  color: #ffffff;
}

.final-cta p:not(.eyebrow) {
  max-width: 740px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 48px 0;
  color: #ffffff;
  background: #0b1219;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) minmax(220px, 0.7fr);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: block;
  margin-top: 7px;
  color: #ffffff;
}

.footer-brand img {
  margin-bottom: 14px;
  padding: 8px;
  background: #ffffff;
  border-radius: 14px;
}


@media (max-width: 1120px) {
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav a {
    justify-content: flex-start;
    width: 100%;
    padding: 11px 12px;
  }

  .primary-nav .nav-cta {
    margin: 6px 0 0;
    justify-content: center;
  }

  .hero-grid,
  .split-grid,
  .included-grid,
  .card-row,
  .reverse,
  .service-area-grid,
  .final-cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-area-copy {
    padding-right: 0;
  }

  .service-area-lists {
    grid-template-columns: 1fr;
  }

  .plan-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

  .brand img,
  .footer-brand img {
    width: 152px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .button,
  .button-row,
  .button-row a {
    width: 100%;
  }

  .plan-grid,
  .feature-grid,
  .process-list,
  .faq-grid,
  .service-area-grid,
  .service-area-lists,
  .area-list.columns,
  .area-list.compact {
    grid-template-columns: 1fr;
  }

  .service-area-card {
    padding: 22px;
  }

  .plan-card,
  .process-list li,
  .service-card {
    min-height: auto;
  }

  .phone-link {
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Temporary inactive links: keep normal visual styling while preventing navigation during buildout. */
a.inactive-link {
  cursor: default;
}

/* Section background rhythm: medium-dark plain sections alternate with lighter image sections. Each image is used once. */
:root {
  --section-dark: #2c3d4e;
  --section-dark-alt: #33485a;
  --section-dark-soft: #405464;
  --image-overlay: rgba(255, 255, 255, 0.95);
  --image-overlay-soft: rgba(255, 255, 255, 0.90);
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(36, 52, 68, 0.82), rgba(36, 52, 68, 0.48) 48%, rgba(36, 52, 68, 0.76)),
    var(--photo-hero) center / cover no-repeat;
}

.intro-section,
.value-section,
.services-section,
.proof-section,
.service-area-section {
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Light image sections */
.intro-section {
  background:
    linear-gradient(90deg, var(--image-overlay), var(--image-overlay-soft)),
    var(--photo-intro) center / cover no-repeat;
}

.value-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.91)),
    var(--photo-value) center / cover no-repeat;
}

.services-section {
  background:
    linear-gradient(90deg, rgba(250, 244, 237, 0.88), rgba(250, 244, 237, 0.76)),
    var(--photo-services) center / cover no-repeat;
}

.proof-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.92)),
    var(--photo-proof) center / cover no-repeat;
}

.service-area-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.92)),
    var(--photo-service-area) center / cover no-repeat;
}

/* Light readable panels on image sections. */
.intro-section .narrow,
.value-section .split-grid > div:first-child,
.proof-section .split-grid > div:first-child,
.service-area-copy {
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(16, 24, 32, 0.10);
  backdrop-filter: blur(2px);
}

.service-area-copy {
  padding-right: clamp(26px, 3vw, 40px);
}

/* Medium-dark plain sections */
.plans-section,
.included-section,
.process-section,
.faq-section,
.final-cta {
  color: #ffffff;
  background: var(--section-dark);
}

.included-section,
.faq-section {
  background: var(--section-dark-alt);
}

.process-section,
.final-cta {
  background: var(--section-dark-soft);
}

.plans-section h2,
.plans-section .eyebrow,
.included-section h2,
.included-section .eyebrow,
.process-section h2,
.process-section .eyebrow,
.faq-section h2,
.faq-section .eyebrow,
.final-cta h2,
.final-cta .eyebrow {
  color: #ffffff;
}

.plans-section .section-heading p:not(.eyebrow),
.included-section .section-heading p:not(.eyebrow),
.included-section .highlight-card > p:not(.eyebrow),
.process-section .section-heading p:not(.eyebrow),
.faq-section .section-heading p:not(.eyebrow),
.final-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

/* Keep card content readable on medium-dark sections. */
.plans-section .plan-card,
.included-section .highlight-card,
.included-section .included-list-card,
.included-section .pricing-order-card,
.process-section .process-list li,
.faq-section details {
  color: var(--ink);
  background: #ffffff;
}

.plans-section .plan-card h3,
.included-section .highlight-card h2,
.included-section .included-list-card h3,
.included-section .pricing-order-card h2,
.included-section .pricing-order-card h3,
.process-section .process-list strong,
.faq-section summary {
  color: var(--ink);
}

.plans-section .plan-card p,
.included-section .highlight-card p:not(.eyebrow),
.included-section .included-list-card,
.included-section .pricing-order-card p:not(.eyebrow),
.included-section .pricing-order-card .check-list,
.process-section .process-list span,
.faq-section details p {
  color: var(--muted);
}

.included-section .highlight-card .eyebrow,
.included-section .pricing-order-card .eyebrow {
  color: var(--accent-dark);
}

/* Asset version note: update the ?v=20260708-testimonials-2 value in index.html and CSS image URLs when testing fresh assets. */

/* Service area full-width text layout update. */
.service-area-section {
  padding: clamp(34px, 4vw, 56px) 0;
}

.service-area-layout {
  display: block;
}

.service-area-unified {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 34px);
  overflow-wrap: normal;
}

.service-area-text-full {
  display: block;
  width: 100%;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.service-area-text-full .eyebrow {
  margin-bottom: 10px;
}

.service-area-text-full h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.12;
}

.service-area-text-full p:not(.eyebrow) {
  max-width: none;
  margin: 0;
  color: var(--muted);
}

.service-area-text-full p + p {
  margin-top: 22px;
}

.area-groups {
  display: grid;
  grid-template-columns: minmax(310px, 0.8fr) minmax(0, 1.8fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  margin-top: 20px;
}

.area-groups h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.12;
}

.area-groups .area-list {
  gap: 8px 26px;
  margin-top: 12px;
  overflow-wrap: normal;
}

.area-groups .county-list {
  grid-template-columns: repeat(2, minmax(145px, 1fr));
}

.area-groups .city-list {
  grid-template-columns: repeat(4, minmax(118px, 1fr));
}

.area-groups .area-list li {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  line-height: 1.28;
}

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

  .area-groups .county-list {
    grid-template-columns: repeat(3, minmax(145px, 1fr));
  }

  .area-groups .city-list {
    grid-template-columns: repeat(4, minmax(118px, 1fr));
  }
}

@media (max-width: 760px) {
  .area-groups .county-list,
  .area-groups .city-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .service-area-section {
    padding: 32px 0;
  }

  .service-area-unified {
    padding: 22px;
  }

  .area-groups .county-list,
  .area-groups .city-list {
    grid-template-columns: 1fr;
  }

  .area-groups .area-list li {
    white-space: normal;
  }
}


/* Service area paragraph spacing fix. Use a dedicated grid gap so spacing does not depend on default paragraph margins. */
.service-area-text-full .service-area-copy-block {
  display: grid;
  gap: 22px;
}

.service-area-text-full .service-area-copy-block p {
  margin: 0 !important;
  max-width: none;
  color: var(--muted);
}

.service-area-text-full .service-area-copy-block p + p {
  margin-top: 0 !important;
}


/* Service area list overlap fix. Keep each place name on one line without letting columns collide. */
.area-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 20px;
}

.area-groups .service-list-block {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: clamp(18px, 3vw, 34px);
  row-gap: 10px;
  align-items: start;
}

.area-groups .service-list-block h3 {
  white-space: nowrap;
  margin: 0;
}

.area-groups .area-list,
.area-groups .county-list,
.area-groups .city-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  grid-template-columns: none;
  gap: 8px clamp(18px, 2.4vw, 30px);
  margin: 0;
  min-width: 0;
}

.area-groups .area-list li {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
  overflow: visible;
  padding-left: 18px;
}

.area-groups .area-list li::before {
  top: 0.65em;
}

@media (max-width: 900px) {
  .area-groups .service-list-block {
    grid-template-columns: 1fr;
  }

  .area-groups .area-list,
  .area-groups .county-list,
  .area-groups .city-list {
    margin-top: 2px;
  }
}

@media (max-width: 520px) {
  .area-groups .area-list li {
    white-space: normal;
  }
}


/* Final service area layout fix.
   Simple full-width copy, then two clean list groups with no overlap. */
.service-area-section {
  padding: clamp(28px, 3.2vw, 46px) 0;
}

.service-area-layout {
  display: block;
}

.service-area-unified {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(22px, 2.8vw, 32px);
}

.service-area-text-full {
  display: block;
  width: 100%;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
}

.service-area-text-full h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.4rem, 1.75vw, 1.8rem);
  line-height: 1.12;
}

.service-area-text-full .service-area-copy-block {
  display: grid;
  gap: 18px;
  max-width: none;
}

.service-area-text-full .service-area-copy-block p {
  margin: 0 !important;
  max-width: none;
  color: var(--muted);
}

.area-groups {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(560px, 1.45fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
  margin-top: 20px;
}

.area-groups .service-list-block {
  display: block;
}

.area-groups .service-list-block h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.15;
  white-space: normal;
}

.area-groups .area-list,
.area-groups .county-list,
.area-groups .city-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: none;
  gap: 8px 18px;
}

.area-groups .county-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.area-groups .city-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.area-groups .area-list li {
  position: relative;
  min-width: 0;
  width: auto;
  max-width: none;
  padding-left: 16px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
  overflow: visible;
}

.area-groups .area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

@media (max-width: 1100px) {
  .area-groups {
    grid-template-columns: 1fr;
  }

  .area-groups .county-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .area-groups .county-list,
  .area-groups .city-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .service-area-section {
    padding: 30px 0;
  }

  .service-area-unified {
    padding: 20px;
  }

  .area-groups .county-list,
  .area-groups .city-list {
    grid-template-columns: 1fr;
  }

  .area-groups .area-list li {
    white-space: normal;
  }
}


/* Customizing / Ordering page additions. */
.primary-nav a[aria-current="page"] {
  color: var(--accent-dark);
  background: var(--soft-paper);
}

.site-footer a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.compact-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.order-process-list li {
  min-height: 230px;
}

.pricing-order-card {
  background: #ffffff;
}

.pricing-order-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(18px, 4vw, 54px);
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.pricing-order-header p:not(.eyebrow) {
  max-width: 760px;
}

.pricing-order-header .button {
  white-space: nowrap;
}

.pricing-order-content {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  margin-top: 26px;
  align-items: start;
}

.pricing-column,
.order-details-column {
  min-width: 0;
}

.compact-check-list {
  gap: 12px;
  margin-top: 18px;
}

.pricing-order-card .price-list {
  margin-bottom: 0;
}

.price-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 28px;
  list-style: none;
}

.price-list li {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--warm-paper);
  overflow: hidden;
}

.price-list-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 13px 15px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.price-list-link:hover,
.price-list-link:focus-visible {
  background: #fff8f2;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.price-list-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(202, 68, 25, 0.22), 0 8px 18px rgba(15, 23, 42, 0.08);
}

.price-list span {
  color: var(--ink);
  font-weight: 900;
}

.price-list strong {
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.plain-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 800;
}

.note {
  margin-top: 16px;
  font-size: 0.96rem;
  color: var(--muted);
}

.order-plan-grid .plan-card {
  min-height: 230px;
}

@media (max-width: 900px) {
  .pricing-order-header,
  .pricing-order-content {
    grid-template-columns: 1fr;
  }

  .pricing-order-header {
    align-items: start;
  }

  .pricing-order-header .button {
    width: fit-content;
  }
}

@media (max-width: 1120px) {
  .compact-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .compact-feature-grid {
    grid-template-columns: 1fr;
  }

  .price-list-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}


/* Testimonials page additions. */
.testimonials-section {
  background: var(--section-dark-alt);
  color: #ffffff;
}

.testimonials-section h2,
.testimonials-section .eyebrow {
  color: #ffffff;
}

.testimonials-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 28px);
}

.testimonial-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.08);
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.testimonial-card p + p {
  margin-top: 16px;
}

.testimonial-author {
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink) !important;
  font-weight: 900;
}

/* Desktop header update: left-align the wrapping navigation inside its menu area. */
@media (min-width: 1121px) {
  .header-inner {
    min-height: 100px;
    justify-content: flex-start;
  }

  .brand {
    flex: 0 0 auto;
  }

  .primary-nav {
    flex: 0 1 740px;
    max-width: 740px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    row-gap: 6px;
    column-gap: 4px;
  }

  .primary-nav a {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.88rem;
  }

  .primary-nav .nav-cta {
    margin-left: 0;
    padding: 8px 14px;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    min-height: 78px;
  }

  .primary-nav {
    flex: none;
    max-width: none;
    flex-wrap: nowrap;
    row-gap: 0;
  }
}


/* Desktop logo spacing and mobile dropdown reliability update. */
@media (min-width: 1121px) {
  .header-inner {
    column-gap: clamp(32px, 3vw, 46px);
  }

  .primary-nav {
    margin-left: 4px;
  }
}

@media (max-width: 1120px) {
  .site-header {
    overflow: visible;
  }

  .header-inner {
    position: relative;
  }

  .primary-nav {
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 250;
  }

  .primary-nav.is-open {
    display: flex !important;
  }
}
