:root {
  --bg: #f4efe6;
  --bg-deep: #ebe3d2;
  --bg-card: #faf6ee;
  --ink: #0f1410;
  --ink-soft: #2c3530;
  --forest: #1f3a2e;
  --forest-deep: #142822;
  --moss: #5d6b50;
  --rust: #a8492a;
  --gold: #b8893d;
  --muted: #6b6a60;
  --line: rgba(15, 20, 16, 0.14);
}

body {
  font-family: 'Geist', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.005em;
  line-height: 1.02;
}

.mono {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;
}

.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--rust);
  border-radius: 50%;
}

/* ============ TOP BAR ============ */

/* ============ NAV ============ */

/* ============ HERO ============ */

.hero {
  position: relative;
  padding: 90px 0 120px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
}

.hero h1 {
  font-size: clamp(56px, 8.5vw, 130px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 0;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.btn-primary {
  background: var(--forest);
  color: var(--bg);
  padding: 18px 30px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.btn-primary .arrow {
  transition: transform 0.25s;
}

/* Hero footer strip with stats */

.hero-strip {
  margin-top: 90px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.strip-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.strip-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--forest);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.strip-num em {
  font-style: italic;
  color: var(--rust);
}

.strip-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 180px;
}

/* ============ AUTHORITY STATEMENT ============ */

.authority {
  background: var(--forest);
  color: var(--bg);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.authority::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(244, 239, 230, 0.05) 1px, transparent 0);
  background-size: 36px 36px;
}

.authority::after {
  content: "MW";
  position: absolute;
  bottom: -80px;
  right: -40px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 380px;
  font-weight: 400;
  color: rgba(244, 239, 230, 0.04);
  line-height: 1;
  pointer-events: none;
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.authority-left .mono {
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.authority-left h2 {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.authority-left h2 em {
  font-style: italic;
  color: var(--gold);
}

.authority-right {
  padding-top: 12px;
}

.authority-right p {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(244, 239, 230, 0.85);
  margin-bottom: 24px;
}

.authority-right strong {
  color: var(--bg);
  font-weight: 500;
}

.authority-signature {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(244, 239, 230, 0.18);
  display: flex;
  align-items: center;
  gap: 24px;
}

.sig-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
}

.sig-text {
  font-size: 14px;
  color: rgba(244, 239, 230, 0.7);
  line-height: 1.5;
}

.sig-text strong {
  color: var(--bg);
  font-weight: 500;
  display: block;
}

/* ============ CREDENTIALS BAR ============ */

.credentials {
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}

.cred-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--line);
}

.cred-item:last-child {
  border-right: none;
}

.cred-icon {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--rust);
  line-height: 1;
}

.cred-label {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.3;
  font-weight: 500;
}

/* ============ SERVICES ============ */

.services {
  padding: 130px 0;
  background: var(--bg);
}

.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.services-head h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: 20px;
}

.services-head h2 em {
  font-style: italic;
  color: var(--forest);
}

.services-head p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  padding-bottom: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  min-height: 280px;
}

.service-card:hover {
  background: var(--forest);
  color: var(--bg);
  transform: translateY(-4px);
  border-color: var(--forest);
}

.service-card:hover .service-meta, .service-card:hover .service-desc {
  color: rgba(244, 239, 230, 0.78);
}

.service-card:hover .service-arrow {
  background: var(--gold);
  color: var(--forest);
  transform: rotate(-45deg) translateX(4px);
}

.service-card:hover .service-num {
  color: var(--gold);
}

/* Featured (popcorn) service card */

.service-card.featured {
  grid-column: span 6;
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  min-height: 380px;
  padding: 40px 36px 36px;
}

.service-card.featured .service-meta, .service-card.featured .service-desc {
  color: rgba(244, 239, 230, 0.75);
}

.service-card.featured .service-num {
  color: var(--gold);
}

.service-card.featured:hover {
  background: var(--rust);
  border-color: var(--rust);
}

.service-card.featured:hover .service-arrow {
  background: var(--ink);
  color: var(--bg);
}

.service-card.span-4 {
  grid-column: span 4;
}

.service-card.span-6 {
  grid-column: span 6;
}

.service-num {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--rust);
  margin-bottom: 16px;
  transition: color 0.3s;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.service-card.featured h3 {
  font-size: 42px;
}

.service-card h3 em {
  font-style: italic;
  color: var(--rust);
}

.service-card.featured h3 em {
  color: var(--gold);
}

.service-card:hover h3 em {
  color: var(--gold);
}

.service-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
  transition: color 0.3s;
}

.service-card.featured .service-desc {
  font-size: 16px;
}

.service-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  transition: color 0.3s;
}

.service-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(168, 73, 42, 0.12);
  color: var(--rust);
  border-radius: 20px;
  font-size: 11px;
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  align-self: flex-start;
}

.service-card.featured .service-tag {
  background: rgba(184, 137, 61, 0.2);
  color: var(--gold);
}

.service-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  align-self: flex-end;
  margin-top: auto;
  color: var(--ink);
  transition: all 0.3s;
}

.service-card.featured .service-arrow {
  background: var(--bg);
  color: var(--ink);
  border-color: transparent;
}

/* ============ TESTIMONIAL FEATURE ============ */

.testimonial-stars {
  margin-top: 24px;
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 6px;
}

/* ============ PROCESS ============ */

.process {
  padding: 130px 0;
  background: var(--bg);
}

.process-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.process-head h2 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 20px 0 24px;
}

.process-head h2 em {
  font-style: italic;
  color: var(--forest);
}

.process-head p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  /*font-size: 26px;*/
  color: var(--forest);
  font-weight: 500;
}

.process-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============ SERVICE AREA ============ */

.area {
  padding: 130px 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.area-left h2 {
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 20px 0 24px;
}

.area-left h2 em {
  font-style: italic;
  color: var(--forest);
}

.area-left p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 18px;
}

.area-left p strong {
  color: var(--ink);
  font-weight: 500;
}

.area-base {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--bg-card);
  border-left: 3px solid var(--rust);
  border-radius: 2px;
}

.area-base .mono {
  color: var(--rust);
  margin-bottom: 8px;
  display: block;
}

.area-base p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
}

.area-right-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--forest);
  margin-bottom: 28px;
}

.featured-towns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.town-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 18px 20px;
  border-radius: 2px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.25s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.town-card:hover {
  background: var(--forest);
  color: var(--bg);
  border-color: var(--forest);
  transform: translateY(-2px);
}

.town-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
}

.town-arrow {
  font-size: 14px;
  opacity: 0.5;
  transition: all 0.25s;
}

.town-card:hover .town-arrow {
  opacity: 1;
  color: var(--gold);
  transform: translateX(2px);
}

.expand-trigger {
  background: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 16px 22px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.25s;
}

.expand-trigger:hover {
  border-color: var(--forest);
  color: var(--ink);
}

.expand-trigger .chevron {
  transition: transform 0.3s;
  font-size: 12px;
  color: var(--rust);
}

.all-towns {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.expand-toggle:checked ~ .all-towns {
  max-height: 1200px;
}

.expand-toggle:checked ~ .expand-trigger .chevron {
  transform: rotate(180deg);
}

.expand-toggle {
  display: none;
}

.county-block {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bg-card);
  border-radius: 2px;
}

.county-block h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
}

.county-block p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* ============ CTA STRIP ============ */

.cta-strip {
  padding: 110px 0;
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(244, 239, 230, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
}

.cta-strip > .container {
  position: relative;
  z-index: 1;
}

.cta-strip .mono {
  color: var(--gold);
  margin-bottom: 28px;
  display: inline-block;
}

.cta-strip h2 {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin-bottom: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-strip p {
  font-size: 19px;
  color: rgba(244, 239, 230, 0.78);
  max-width: 620px;
  margin: 0 auto 48px;
}

.cta-row {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-light {
  background: var(--bg);
  color: var(--ink);
  padding: 20px 36px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s;
}

.btn-light:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.cta-phone {
  color: var(--bg);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
}

.cta-phone:hover {
  color: var(--gold);
}

/* ============ FOOTER ============ */

.footer {
  background: var(--forest-deep);
  color: rgba(244, 239, 230, 0.7);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(244, 239, 230, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
  .hero-grid, .authority-grid, .area-grid, .services-head {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 1024px) {
  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
}

@media (max-width: 1024px) {
  .process-steps::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .cred-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 1024px) {
  .cred-item {
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }
}

@media (max-width: 1024px) {
  .cred-item:nth-last-child(-n + 1) {
    border-bottom: none;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .services-grid > * {
    grid-column: span 12 !important;
  }
}

@media (max-width: 1024px) {
  .service-card.featured {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 22px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 0 90px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 54px;
  }
}

@media (max-width: 640px) {
  .hero-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .strip-num {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .authority {
    padding: 90px 0;
  }
}

@media (max-width: 640px) {
  .services, .process, .area, .testimonial-feature {
    padding: 90px 0;
  }
}

@media (max-width: 640px) {
  .cta-strip {
    padding: 80px 0;
  }
}

@media (max-width: 640px) {
  .featured-towns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .service-card.featured h3 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .service-card h3 {
    font-size: 26px;
  }
}

