/* Veteran Plumbing & Drains — service-business design system */

:root {
  --navy:   #0a2540;
  --navy-2: #11365c;
  --steel:  #1b2940;
  --paper:  #f7f5f0;
  --paper-2:#efece5;
  --ink:    #1a1f2e;
  --muted:  #5d6577;
  --line:   #e3e1da;
  --red:    #c0392b;
  --red-2:  #a82e22;
  --gold:   #d4a017;
  --green:  #2d8659;
  --max:    1180px;
  --radius: 10px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 245, 240, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 700; font-size: 16px; color: var(--navy); letter-spacing: -0.01em; }
.brand-tag { font-size: 11px; color: var(--muted); margin-top: 3px; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  text-decoration: none; font-size: 14px; font-weight: 500; color: var(--ink);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--red); }
.nav-call {
  display: flex; flex-direction: column; align-items: flex-end;
  text-decoration: none;
  padding: 8px 16px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.1;
  transition: background 0.15s, transform 0.1s;
}
.nav-call:hover { background: var(--red-2); }
.nav-call:active { transform: translateY(1px); }
.call-label {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500; opacity: 0.9; margin-bottom: 2px;
}
.call-number { font-size: 16px; font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(212, 160, 23, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(192, 57, 43, 0.22) 0%, transparent 55%),
    linear-gradient(135deg, #0a2540 0%, #11365c 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg,  rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 75%);
}
.hero-inner { position: relative; max-width: var(--max); margin: 0 auto; padding: 88px 24px 72px; }

.hero-grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  aspect-ratio: 4 / 5;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-card {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  background: rgba(255,255,255,0.97);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}
.card-avatars { display: flex; }
.card-avatars .avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
  border: 2px solid #fff;
  margin-left: -8px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}
.card-avatars .avatar:first-child { margin-left: 0; }
.card-avatars .avatar:nth-child(2) { background: var(--red); }
.card-avatars .avatar:nth-child(3) { background: var(--gold); color: var(--navy); }
.card-text { display: flex; flex-direction: column; line-height: 1.2; }
.card-text strong { color: var(--navy); font-size: 13.5px; font-weight: 700; }
.card-text span { color: var(--muted); font-size: 11.5px; margin-top: 2px; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 28px;
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
}
.badge-pill.verified {
  background: rgba(45, 134, 89, 0.18);
  border-color: rgba(45, 134, 89, 0.5);
  color: #6ee7a0;
}
.badge-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.05); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(46px, 7.5vw, 90px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.hero-accent { color: var(--gold); display: inline-block; }
.hero-sub {
  font-size: 18px; line-height: 1.55;
  max-width: 580px;
  color: rgba(255,255,255,0.82);
  margin: 0 0 32px;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.1s, background 0.15s, border-color 0.15s, color 0.15s;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover:not(:disabled) { background: var(--red-2); border-color: var(--red-2); }
.btn-secondary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-secondary:hover { background: #b88813; border-color: #b88813; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-ghost-dark {
  background: transparent; color: var(--navy);
  border-color: rgba(10, 37, 64, 0.25);
}
.btn-ghost-dark:hover:not(:disabled) { background: rgba(10, 37, 64, 0.05); border-color: var(--navy); }
.btn-full { width: 100%; justify-content: center; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}
.trust-item { display: flex; flex-direction: column; }
.trust-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 6px;
  display: flex; align-items: baseline; gap: 4px;
}
.trust-star { font-size: 22px; color: var(--gold); }
.trust-plus { font-size: 22px; opacity: 0.7; }
.trust-label { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.4; }

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.kicker {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin: 0 0 12px;
}
.section-head h2, .why h2, .contact-copy h2, .quote-copy h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--navy);
  margin: 0;
  text-transform: uppercase;
}
.head-sub { color: var(--muted); margin: 16px 0 0; font-size: 16px; }

/* ---------- Services ---------- */
.services { padding: 96px 24px; max-width: var(--max); margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  display: flex; flex-direction: column; align-items: flex-start;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(10, 37, 64, 0.1);
  border-color: var(--navy);
}
.service-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 18px; font-weight: 700;
  margin: 0 0 6px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.55;
}
.card-action {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: auto;
}
.services-foot {
  text-align: center; margin-top: 36px;
  color: var(--muted); font-size: 15px;
}
.services-foot a {
  color: var(--red); font-weight: 700; text-decoration: none;
  border-bottom: 2px solid var(--red);
  margin: 0 6px;
}

/* ---------- Booking widget ---------- */
.book {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  padding: 96px 24px;
}
.book-inner { max-width: var(--max); margin: 0 auto; }
.booking-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.08);
  max-width: 760px;
  margin: 0 auto;
}

.steps {
  display: flex;
  list-style: none;
  padding: 0; margin: 0 0 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 17px; left: 8%; right: 8%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.step {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 1;
  gap: 8px;
}
.step-num {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 2px solid var(--line);
  color: var(--muted);
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
}
.step.active .step-num { background: var(--navy); border-color: var(--navy); color: #fff; }
.step.done .step-num {
  background: var(--green); border-color: var(--green); color: #fff;
}
.step.done .step-num::after { content: '✓'; }
.step.done .step-num span { display: none; }
.step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.step.active .step-label { color: var(--navy); }
.step.done .step-label { color: var(--green); }

.step-panel { display: none; min-height: 280px; }
.step-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 22px;
  font-weight: 400;
}
.step-hint {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.chip {
  padding: 14px 16px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
}
.chip:hover { border-color: var(--navy); background: #fff; }
.chip.selected {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.urgent-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(192, 57, 43, 0.06);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--red);
  font-weight: 600;
  cursor: pointer;
}
.urgent-row input { width: 18px; height: 18px; accent-color: var(--red); }

.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.date-cell {
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 8px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  gap: 4px;
}
.date-cell:hover { border-color: var(--navy); background: #fff; }
.date-cell.selected { background: var(--navy); color: #fff; border-color: var(--navy); }
.date-cell.selected .date-day, .date-cell.selected .date-month { color: #fff; }
.date-dow { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.date-cell.selected .date-dow { color: rgba(255,255,255,0.7); }
.date-day { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--navy); line-height: 1; }
.date-month { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.date-cell.today { position: relative; }
.date-cell.today::after {
  content: 'Today';
  position: absolute;
  top: -8px; left: 50%; transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.time-slot {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 10px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.15s;
  gap: 4px;
}
.time-slot:hover { border-color: var(--navy); background: #fff; }
.time-slot.selected { background: var(--navy); color: #fff; border-color: var(--navy); }
.time-slot small {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.time-slot.selected small { color: rgba(255,255,255,0.7); }

.summary {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.summary-item { display: flex; flex-direction: column; gap: 2px; }
.summary-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.summary-value { font-size: 14.5px; font-weight: 600; color: var(--navy); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-grid label.span-2 { grid-column: span 2; }
.form-grid input, .form-grid textarea {
  display: block; width: 100%;
  padding: 11px 14px;
  margin-top: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14.5px; font-weight: 400;
  letter-spacing: 0; text-transform: none;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}
.form-grid input:focus, .form-grid textarea:focus {
  outline: none; border-color: var(--navy); background: #fff;
}
.form-grid textarea { resize: vertical; min-height: 60px; }
.optional { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; }

.step-nav {
  display: flex; justify-content: space-between;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.step-nav.hidden { display: none; }

.confirm-icon {
  display: flex; justify-content: center;
  color: var(--green);
  margin-bottom: 16px;
}
.confirm-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  text-align: center;
  color: var(--navy);
  margin: 0 0 8px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.confirm-sub {
  text-align: center;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
}
.confirm-sub strong {
  color: var(--navy); font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: 0.04em;
}
.confirm-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 24px;
  display: grid; gap: 10px;
}
.confirm-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 14.5px; }
.confirm-row strong { color: var(--navy); }
.confirm-foot {
  margin: 24px 0 0;
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
  line-height: 1.55;
}
.confirm-foot a { color: var(--red); font-weight: 700; text-decoration: none; }

/* ---------- Quote section ---------- */
.quote { padding: 96px 24px; background: var(--paper); }
.quote-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.quote-copy h2 { margin-bottom: 16px; }
.quote-copy > p { color: var(--muted); margin: 0 0 24px; font-size: 16px; }
.quote-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.quote-list li { font-size: 14.5px; color: var(--ink); padding-left: 4px; }
.quote-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 10px 38px rgba(10, 37, 64, 0.06);
}
.quote-form h3 {
  margin: 0 0 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-transform: uppercase;
}
.quote-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}
.quote-form input, .quote-form select, .quote-form textarea {
  display: block; width: 100%;
  padding: 11px 14px;
  margin-top: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14.5px; font-weight: 400;
  letter-spacing: 0; text-transform: none;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none; border-color: var(--navy); background: #fff;
}
.quote-form textarea { resize: vertical; min-height: 80px; }
.discount-row {
  display: flex; align-items: center; gap: 10px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}
.discount-row input { width: 18px; height: 18px; accent-color: var(--gold); }
.form-fine {
  text-align: center; font-size: 12.5px; color: var(--muted);
  margin: 14px 0 0; letter-spacing: 0; text-transform: none;
}
.form-fine a { color: var(--red); font-weight: 700; text-decoration: none; }

/* ---------- Why ---------- */
.why { padding: 96px 24px; background: var(--navy); color: #fff; }
.why-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-copy .kicker { color: var(--gold); }
.why-copy h2 { color: #fff; margin-bottom: 24px; }
.why-copy p { color: rgba(255,255,255,0.78); font-size: 16px; max-width: 560px; }
.why-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 14px; }
.why-list li {
  padding-left: 28px;
  position: relative;
  font-size: 15.5px;
  color: rgba(255,255,255,0.9);
}
.why-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-weight: 700; font-size: 17px;
}
.why-list strong { color: #fff; font-weight: 700; }

.why-figure { display: flex; justify-content: center; }
.badge {
  position: relative;
  width: 240px; height: 240px;
  display: flex; align-items: center; justify-content: center;
}
.badge-ring {
  position: absolute; inset: 0;
  border: 4px double var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  padding: 18px 16px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.badge-top { font-size: 26px; }
.badge-mid { font-size: 16px; color: rgba(255,255,255,0.85); }
.badge-bot { font-size: 14px; color: rgba(255,255,255,0.7); }
.badge-star {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; font-weight: 700;
  box-shadow: 0 8px 26px rgba(0,0,0,0.3);
}

/* ---------- Team ---------- */
.team {
  padding: 96px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.team .section-head { margin-bottom: 48px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(10, 37, 64, 0.12);
}
.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.team-card figcaption {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column;
  gap: 6px;
}
.team-card strong {
  font-size: 17px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.team-card span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Service area (rebuilt) ---------- */
.area {
  padding: 96px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.area .section-head { margin-bottom: 48px; }
.area-counties {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.county {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.county-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.county-badge {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(45, 134, 89, 0.12);
  border: 1px solid rgba(45, 134, 89, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
}
.city-chips {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.city-chips li {
  font-size: 13px;
  font-weight: 500;
  padding: 5px 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
}
.area-foot {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.area-map {
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eee;
}
.area-map iframe { width: 100%; height: 100%; border: 0; }
.area-note-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.area-note-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.area-note-card p {
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0 0 18px;
}
.area-note-card strong { color: var(--gold); }
.area-note-card .btn { align-self: flex-start; }

/* ---------- Reviews ---------- */
.reviews {
  padding: 96px 24px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews .section-head { margin-bottom: 56px; }
.review-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  margin: 0;
  padding: 28px 24px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.stars { color: var(--gold); letter-spacing: 0.15em; font-size: 15px; margin-bottom: 12px; }
.review blockquote { margin: 0 0 16px; font-size: 15.5px; line-height: 1.55; color: var(--ink); }
.review figcaption { font-size: 13px; color: var(--muted); font-weight: 500; }
.review-foot {
  max-width: var(--max);
  margin: 40px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--steel);
  color: rgba(255,255,255,0.8);
  padding: 32px 24px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-name { font-weight: 700; color: #fff; font-size: 15px; }
.footer-license { font-size: 12px; opacity: 0.7; }
.footer-meta {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap; font-size: 13px;
}
.footer-meta a { color: var(--gold); text-decoration: none; font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px; }
  .hero-photo { aspect-ratio: 16 / 11; max-height: 420px; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 22px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .area-counties { grid-template-columns: 1fr; }
  .area-foot { grid-template-columns: 1fr; }
  .why-grid, .quote-inner { grid-template-columns: 1fr; gap: 40px; }
  .review-grid { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: 1fr 1fr; }
  .date-grid { grid-template-columns: repeat(4, 1fr); }
  .time-grid { grid-template-columns: 1fr 1fr; }
  .summary { grid-template-columns: 1fr; gap: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.span-2 { grid-column: span 1; }
  .booking-widget { padding: 28px 22px; }
  .steps::before { left: 14%; right: 14%; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 68px 20px 56px; }
  .nav-call { padding: 6px 12px; }
  .call-label { font-size: 9px; }
  .call-number { font-size: 14px; }
  .badge { width: 200px; height: 200px; }
  .badge-star { width: 80px; height: 80px; font-size: 44px; }
  .chip-grid { grid-template-columns: 1fr; }
  .date-grid { grid-template-columns: repeat(3, 1fr); }
  .step-label { display: none; }
}
