/* ============================================================
   Biviano Modular Builders — Shared Town Page Stylesheet
   ============================================================ */

:root {
  --coal:        #111110;
  --coal-mid:    #1C1C1A;
  --coal-light:  #2A2A27;
  --stone:       #8C7B6B;
  --stone-light: #BBA898;
  --stone-pale:  #E8DDD5;
  --sand:        #F0E8DF;
  --cream:       #FAF7F4;
  --blue:        #4A90C4;
  --blue-mid:    #3A7EBF;
  --white:       #FFFFFF;
  --rule-dark:   rgba(255,255,255,0.07);
  --rule-light:  rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--coal);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 72px;
  background: rgba(17,17,16,0.96);
  border-bottom: 1px solid var(--rule-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.nav-crest-wrap { width: 38px; height: 38px; border: 1px solid rgba(74,144,196,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-crest { width: 28px; height: 28px; }
.nav-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.12em; color: var(--white); line-height: 1; }
.nav-sub { font-family: 'Outfit', sans-serif; font-size: 9px; font-weight: 300; letter-spacing: 0.28em; color: var(--blue); text-transform: uppercase; margin-top: 2px; }
.nav-links { list-style: none; display: flex; gap: 32px; align-items: center; }
.nav-links a { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.25s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 0.15em; color: var(--coal); background: var(--blue); padding: 10px 28px; text-decoration: none; transition: background 0.3s; white-space: nowrap; flex-shrink: 0; }
.nav-cta:hover { background: var(--stone-light); }
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; width: 36px; height: 36px; flex-shrink: 0; }
.nav-hamburger span { display: block; width: 24px; height: 1px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { position: fixed; top: 72px; left: 0; right: 0; height: calc(100dvh - 72px); max-height: calc(100dvh - 72px); background: var(--coal-mid); z-index: 99; display: flex; flex-direction: column; padding: 32px 28px calc(40px + env(safe-area-inset-bottom)); transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 0.06em; color: rgba(255,255,255,0.45); text-decoration: none; border-bottom: 1px solid var(--rule-dark); padding: 16px 0; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--white); }
.mobile-cta { margin-top: 24px; color: var(--coal) !important; background: var(--blue); text-align: center; padding: 16px !important; border-bottom: none !important; font-size: 16px !important; }

/* ── HERO ── */
.town-hero {
  min-height: 70vh;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.35) brightness(0.28); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(17,17,16,0.92) 45%, rgba(17,17,16,0.3) 100%), linear-gradient(to top, rgba(17,17,16,0.85) 0%, transparent 50%); }
.hero-content { position: relative; z-index: 2; padding: 60px 56px 56px; }
.hero-breadcrumb { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-breadcrumb a { font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.hero-breadcrumb a:hover { color: var(--blue); }
.hero-breadcrumb-sep { color: rgba(255,255,255,0.15); font-size: 12px; }
.hero-breadcrumb-cur { font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); }
.hero-eyebrow { font-family: 'Outfit', sans-serif; font-size: 9px; font-weight: 300; letter-spacing: 0.35em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; display: block; }
.town-h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 8vw, 112px); line-height: 0.92; letter-spacing: 0.02em; color: var(--white); margin-bottom: 24px; }
.town-h1 .em { color: var(--blue); }
.town-h1 .outline { -webkit-text-stroke: 1px rgba(255,255,255,0.22); color: transparent; }
.hero-sub { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 560px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 0.18em; color: var(--coal); background: var(--blue); padding: 14px 32px; text-decoration: none; display: inline-block; transition: background 0.3s; }
.btn-primary:hover { background: var(--stone-light); }
.btn-ghost { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.38); text-decoration: none; display: flex; align-items: center; gap: 10px; transition: color 0.25s, gap 0.25s; }
.btn-ghost:hover { color: var(--white); gap: 18px; }
.btn-ghost::after { content: '→'; }

/* ── CRED BAR ── */
.cred-bar { background: var(--coal-mid); border-bottom: 1px solid var(--rule-dark); }
.cred-bar-inner { display: flex; justify-content: stretch; }
.cred-item { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 24px 16px; border-right: 1px solid var(--rule-dark); text-align: center; }
.cred-item:last-child { border-right: none; }
.cred-num { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.06em; color: var(--blue); line-height: 1; }
.cred-label { font-family: 'Outfit', sans-serif; font-size: 9px; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-top: 4px; line-height: 1.4; }

/* ── TYPOGRAPHY UTILITIES ── */
.overline { font-family: 'Outfit', sans-serif; font-size: 9px; font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 14px; }
.overline-light { color: rgba(255,255,255,0.28); }
.section-heading { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 5.5vw, 72px); letter-spacing: 0.03em; line-height: 0.95; }
.section-heading .em { color: var(--blue); }
.section-heading-light { color: var(--white); }
.section-heading-dark { color: var(--coal); }
.serif-body { font-family: 'Libre Baskerville', serif; font-size: 16px; font-style: italic; font-weight: 400; line-height: 1.9; color: var(--stone); }

/* ── TOWN INTRO ── */
.town-intro { display: grid; grid-template-columns: 1fr 1fr; background: var(--sand); color: var(--coal); }
.intro-left { padding: 88px 64px; border-right: 1px solid var(--rule-light); }
.intro-right { padding: 88px 64px; display: flex; flex-direction: column; gap: 32px; }
.intro-body { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--stone); margin-top: 24px; }
.intro-body p { margin-bottom: 16px; }
.intro-body p:last-child { margin-bottom: 0; }
.intro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 36px; border-top: 1px solid var(--rule-light); }
.istat-num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; letter-spacing: 0.02em; color: var(--blue); line-height: 1; }
.istat-label { font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-top: 4px; }
.local-trust { background: var(--coal); border: 1px solid var(--rule-dark); padding: 32px; }
.trust-title { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.08em; color: var(--white); margin-bottom: 16px; }
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.trust-list li { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.6; display: flex; gap: 12px; }
.trust-list li::before { content: '—'; color: var(--blue); flex-shrink: 0; }
.intro-cta-link { display: flex; align-items: center; gap: 14px; text-decoration: none; transition: gap 0.25s; }
.intro-cta-link:hover { gap: 22px; }
.intro-cta-link span { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 0.18em; color: var(--coal); }
.intro-cta-arrow { width: 48px; height: 1px; background: var(--blue); position: relative; flex-shrink: 0; }
.intro-cta-arrow::after { content: ''; position: absolute; right: 0; top: -4px; width: 8px; height: 8px; border-right: 1px solid var(--blue); border-top: 1px solid var(--blue); transform: rotate(45deg); }

/* ── WHY BMB TILES ── */
.why-section { padding: 100px 56px; background: var(--coal-mid); }
.why-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 40px; }
.why-sub { max-width: 340px; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.35); }
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.tile { background: var(--coal-light); padding: 44px 36px; position: relative; overflow: hidden; cursor: default; transition: background 0.3s; }
.tile::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.tile:hover { background: rgba(74,144,196,0.06); }
.tile:hover::after { transform: scaleX(1); }
.tile-num { font-family: 'Bebas Neue', sans-serif; font-size: 72px; color: rgba(255,255,255,0.04); line-height: 1; position: absolute; top: 20px; right: 20px; }
.tile-icon { width: 40px; height: 40px; color: var(--blue); margin-bottom: 20px; display: block; }
.tile-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 10px; line-height: 1; }
.tile-desc { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.38); }

/* ── PROCESS ── */
.process-section { background: var(--coal); padding: 100px 56px; }
.process-top { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 56px; padding-bottom: 48px; border-bottom: 1px solid var(--rule-dark); }
.process-right-text { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.32); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
.step { background: var(--coal-mid); padding: 36px 28px; border-top: 2px solid transparent; transition: border-color 0.3s, background 0.3s; }
.step:hover { border-color: var(--blue); background: var(--coal-light); }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: rgba(255,255,255,0.05); line-height: 1; margin-bottom: 14px; }
.step-title { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.06em; color: var(--white); margin-bottom: 10px; line-height: 1.1; }
.step-desc { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.3); }

/* ── FAQ ── */
.faq-section { background: var(--coal-mid); padding: 100px 56px; }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-header { margin-bottom: 56px; }
.faq-heading { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 5.5vw, 68px); letter-spacing: 0.03em; line-height: 0.92; color: var(--white); margin-top: 14px; }
.faq-heading .em { color: var(--blue); }
.faq-item { border-bottom: 1px solid var(--rule-dark); }
.faq-item:first-of-type { border-top: 1px solid var(--rule-dark); }
.faq-q { width: 100%; background: none; border: none; color: var(--white); font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 400; text-align: left; padding: 26px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; transition: color 0.25s; }
.faq-q:hover { color: var(--blue); }
.faq-icon { width: 22px; height: 22px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; color: var(--blue); transition: transform 0.35s, background 0.3s, border-color 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); border-color: var(--blue); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.42); padding-bottom: 26px; }

/* ── CTA FORM ── */
.cta-section { display: grid; grid-template-columns: 55% 1fr; min-height: 640px; }
.cta-img-side { position: relative; overflow: hidden; }
.cta-img-side img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.38) brightness(0.38); }
.cta-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(17,17,16,0.15), rgba(17,17,16,0.6) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 56px; }
.cta-tag { font-family: 'Outfit', sans-serif; font-size: 9px; font-weight: 300; letter-spacing: 0.38em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; display: block; }
.cta-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 6vw, 84px); letter-spacing: 0.03em; line-height: 0.9; color: var(--white); margin-bottom: 20px; }
.cta-title .em { color: var(--blue); }
.cta-body-text { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 380px; margin-bottom: 32px; }
.cta-contact-label { font-family: 'Outfit', sans-serif; font-size: 9px; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 4px; }
.cta-contact-val { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.08em; color: var(--white); }
.cta-contact-val a { color: inherit; text-decoration: none; transition: color 0.2s; }
.cta-contact-val a:hover { color: var(--blue); }
.cta-form-side { background: var(--coal-mid); padding: 56px 48px; border-left: 1px solid var(--rule-dark); display: flex; flex-direction: column; justify-content: center; }
.form-hd { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.06em; color: var(--white); margin-bottom: 4px; }
.form-sub { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.28); margin-bottom: 28px; letter-spacing: 0.05em; }
.form-group { margin-bottom: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-label { display: block; font-family: 'Outfit', sans-serif; font-size: 9px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 7px; }
.form-input { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: var(--white); font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 300; padding: 12px 14px; outline: none; transition: border-color 0.3s, background 0.3s; -webkit-appearance: none; border-radius: 0; }
.form-input:focus { border-color: var(--blue); background: rgba(74,144,196,0.05); }
.form-input::placeholder { color: rgba(255,255,255,0.18); }
.form-select { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 300; padding: 12px 14px; outline: none; -webkit-appearance: none; cursor: pointer; transition: border-color 0.3s; border-radius: 0; }
.form-select:focus { border-color: var(--blue); }
.form-select option { background: var(--coal-mid); color: var(--white); }
.form-submit { width: 100%; background: var(--blue); color: var(--coal); font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 0.2em; padding: 16px; border: none; cursor: pointer; margin-top: 6px; transition: background 0.3s, transform 0.2s; border-radius: 0; }
.form-submit:hover { background: var(--stone-light); transform: translateY(-1px); }
.form-privacy { font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 300; color: rgba(255,255,255,0.18); text-align: center; margin-top: 10px; }

/* ── TOWNS NAV (footer service area links) ── */
.towns-strip { background: var(--sand); padding: 64px 56px; color: var(--coal); }
.towns-strip-inner { max-width: 1200px; margin: 0 auto; }
.towns-strip-title { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 0.22em; color: var(--stone); margin-bottom: 24px; }
.towns-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.town-link { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 300; color: var(--stone); text-decoration: none; border: 1px solid var(--rule-light); padding: 10px 20px; transition: background 0.25s, color 0.25s, border-color 0.25s; }
.town-link:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.town-link.active { background: var(--coal); color: var(--white); border-color: var(--coal); }

/* ── FOOTER ── */
footer { background: var(--coal-mid); padding: 56px 56px 32px; border-top: 1px solid var(--rule-dark); }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--rule-dark); }
.footer-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.1em; color: var(--white); margin-bottom: 2px; }
.footer-brand-sub { font-family: 'Outfit', sans-serif; font-size: 9px; font-weight: 300; letter-spacing: 0.28em; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
.footer-tagline { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.2); max-width: 240px; }
.footer-col-title { font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 0.2em; color: rgba(255,255,255,0.22); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.26); text-decoration: none; transition: color 0.25s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 300; color: rgba(255,255,255,0.16); }
.footer-lic { font-family: 'Bebas Neue', sans-serif; font-size: 10px; letter-spacing: 0.18em; color: rgba(74,144,196,0.32); }

/* ── ANIMATIONS ── */
@keyframes revealUp { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 48px 24px 40px; }
  .town-intro { grid-template-columns: 1fr; }
  .intro-left { padding: 64px 24px; border-right: none; border-bottom: 1px solid var(--rule-light); }
  .intro-right { padding: 48px 24px 64px; }
  .why-section { padding: 72px 24px; }
  .why-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
  .tiles { grid-template-columns: 1fr; }
  .process-section { padding: 72px 24px; }
  .process-top { grid-template-columns: 1fr; gap: 20px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .faq-section { padding: 72px 24px; }
  .cta-section { grid-template-columns: 1fr; }
  .cta-img-side { min-height: 380px; }
  .cta-img-overlay { padding: 36px 24px; }
  .cta-form-side { padding: 44px 24px; border-left: none; border-top: 1px solid var(--rule-dark); }
  .towns-strip { padding: 48px 24px; }
  footer { padding: 48px 24px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cred-bar-inner { flex-wrap: wrap; }
  .cred-item { flex: 1 1 33%; border-bottom: 1px solid var(--rule-dark); }
}

@media (max-width: 600px) {
  .town-h1 { font-size: clamp(48px, 14vw, 72px); }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .cred-item { flex: 1 1 50%; }
}
