/* ============================================================
   City Plumbing Services — Minimal Template
   style.css
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --dark:        #0c1f3f;
  --navy:        #1a3561;
  --accent:      #f97316;
  --accent-dark: #ea580c;
  --light:       #f8fafc;
  --light2:      #f1f5f9;
  --text:        #1e293b;
  --muted:       #64748b;
  --white:       #ffffff;
  --border:      #e2e8f0;
  --radius:      12px;
  --radius-sm:   6px;
  --whatsapp:    #25D366;
}

/* Dark theme */
[data-theme="dark"] {
  --dark:        #0f172a;
  --navy:        #1e293b;
  --accent:      #06b6d4;
  --accent-dark: #0891b2;
}
/* Plum theme */
[data-theme="plum"] {
  --dark:        #2d1b69;
  --navy:        #3b2491;
  --accent:      #f59e0b;
  --accent-dark: #d97706;
}
/* Red theme */
[data-theme="red"] {
  --dark:        #18181b;
  --navy:        #27272a;
  --accent:      #dc2626;
  --accent-dark: #b91c1c;
}
/* Teal theme */
[data-theme="teal"] {
  --dark:        #0f4c3a;
  --navy:        #166534;
  --accent:      #22c55e;
  --accent-dark: #16a34a;
  --light:       #f0fdf4;
  --light2:      #dcfce7;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   ACCENT STRIPE
   ============================================================ */
.accent-stripe {
  height: 3px;
  background: var(--accent);
  width: 100%;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
header { background: var(--white); position: sticky; top: 0; z-index: 200; }
nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; max-width: 1100px; margin: 0 auto; }
.logo { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 900; color: var(--text); letter-spacing: -.3px; }
.logo span { color: var(--accent); font-style: italic; }
.nav-links { list-style: none; display: flex; gap: 40px; }
.nav-links a { color: var(--muted); font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: .85rem; letter-spacing: 1.2px; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); text-decoration: none; }
.nav-cta { display: inline-block; border: 2px solid var(--accent); color: var(--accent) !important; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .85rem; letter-spacing: .5px; text-transform: uppercase; padding: 8px 18px; border-radius: 3px; text-decoration: none; transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--accent); color: var(--white) !important; text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); margin: 5px 0; }

/* ============================================================
   HERO — SPLIT LAYOUT
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  background: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.3px;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.btn-ghost:hover {
  color: var(--accent);
  gap: 12px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-badge .icon {
  font-size: 1rem;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.trust-stat {
  text-align: center;
  padding: 0 24px;
}

.trust-stat + .trust-stat {
  border-left: 1px solid var(--border);
}

.trust-stat .number {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -1px;
  display: block;
  margin-bottom: 4px;
}

.trust-stat .label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section {
  padding: 96px 0;
}

.section-eyebrow {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-heading.accented {
  border-bottom: 3px solid var(--accent);
  padding-bottom: 16px;
  display: inline-block;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
}

.section-sub.wide {
  max-width: 640px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--light);
}

.services-header {
  margin-bottom: 60px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  position: relative;
  cursor: pointer;
}

.service-item:hover {
  background: var(--light2);
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
  border-radius: 4px;
}

.service-item:first-child {
  border-top: 1px solid var(--border);
}

a.service-item {
  text-decoration: none;
  color: inherit;
}

.service-emoji {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1;
}

.service-info .service-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 4px;
}

.service-info .service-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s;
}

.service-item:hover .service-link {
  gap: 10px;
}

/* ============================================================
   ABOUT / SPLIT SECTION
   ============================================================ */
.about-section {
  background: var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-grid.reverse {
  direction: rtl;
}

.split-grid.reverse > * {
  direction: ltr;
}

.split-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.split-content {
  padding: 16px 0;
}

.split-content .section-heading {
  margin-bottom: 20px;
}

.split-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.checklist {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.checklist li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-header {
  margin-bottom: 64px;
  text-align: center;
}

.why-header .section-sub {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-item {
  padding: 32px 24px;
  border-left: 3px solid var(--accent);
  background: var(--light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.why-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  opacity: 0.85;
}

.why-item h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.why-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--light);
}

.testimonials-header {
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-item {
  position: relative;
  padding: 12px 0;
}

.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.12;
  position: absolute;
  top: -12px;
  left: -8px;
  pointer-events: none;
  user-select: none;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}

.testimonial-author span {
  display: block;
  color: var(--accent);
  margin-top: 2px;
}

.stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 96px 0;
  text-align: center;
}

.cta-phone {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  display: block;
  margin: 16px 0 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.cta-phone:hover {
  opacity: 0.8;
}

.cta-tagline {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 40px;
}

.cta-section .section-heading {
  margin-bottom: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo {
  color: var(--white);
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand .logo span {
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

footer h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links li a:hover {
  color: var(--accent);
}

.footer-links li:not(:has(a)) {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}

.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -1.5px;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.values-section {
  background: var(--light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.value-item {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
}

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

.value-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.value-item h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.credentials-section {
  background: var(--white);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.credential-item {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.credential-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.credential-item h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 6px;
}

.credential-item p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-page-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.service-page-item:first-child {
  border-top: 1px solid var(--border);
}

.service-page-emoji {
  font-size: 2.2rem;
  text-align: center;
}

.service-page-info h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 6px;
}

.service-page-info p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
}

.pricing-note {
  background: var(--light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 32px;
  margin: 60px 0 0;
}

.pricing-note p {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.7;
}

.pricing-note strong {
  color: var(--accent);
}

/* ============================================================
   SERVICE FEATURE ROWS (services page alternating layout)
   ============================================================ */
.service-feature { padding: 60px 0; border-top: 1px solid var(--border); position: relative; cursor: pointer; }
.service-feature:first-child { border-top: none; }
.service-feature-grid { display: grid; grid-template-columns: 200px 1fr; gap: 64px; align-items: center; }
.service-feature-grid.reverse { grid-template-columns: 1fr 200px; }
.service-feature-grid.reverse .service-feature-icon { order: 2; }
.service-feature-grid.reverse .service-feature-content { order: 1; }
.service-feature-icon {
  width: 160px; height: 160px;
  background: rgba(0,0,0,.04);
  border: 2px solid var(--border);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}
.service-feature:hover .service-feature-icon { border-color: var(--accent); background: rgba(0,0,0,.02); }
.service-feature-icon::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.service-feature:hover .service-feature-icon::after { transform: scaleX(1); }
.service-feature-label { font-family: 'DM Sans', sans-serif; font-size: .7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.service-feature-content h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
.service-feature-content p { color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.service-feature-link { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .9rem; color: var(--accent); text-decoration: none; letter-spacing: .3px; }
.service-feature-link:hover { color: var(--accent-dark); text-decoration: none; }
.service-feature-link::after { content: ' →'; }
.service-feature-link::before { content: ''; position: absolute; inset: 0; z-index: 1; }

/* ============================================================
   SERVICE CARD — flat hover (accent left border)
   ============================================================ */
.service-card {
  background: var(--white);
  border-radius: 0;
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-left: 4px solid transparent;
  transition: border-left-color .25s, background .25s;
}
.service-card:hover {
  border-left-color: var(--accent);
  background: rgba(249,115,22,.02);
  transform: none;
  box-shadow: none;
}

/* ============================================================
   ACCENT OPPORTUNITIES
   ============================================================ */
.heading-with-rule { position: relative; display: inline-block; padding-bottom: 14px; margin-bottom: 20px; }
.heading-with-rule::after { content: ''; position: absolute; bottom: 0; left: 0; width: 48px; height: 3px; background: var(--accent); }

.accent-frame { position: relative; }
.accent-frame::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  right: 10px; bottom: 10px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  z-index: 0;
  opacity: .3;
  transition: opacity .3s;
}
.accent-frame:hover::before { opacity: .6; }
.accent-frame img { position: relative; z-index: 1; }

.accent-section-bg { background: linear-gradient(135deg, rgba(249,115,22,.04) 0%, rgba(249,115,22,.01) 100%); }

.accent-divider { height: 2px; background: linear-gradient(90deg, var(--accent), transparent); margin: 48px 0; border: none; opacity: .4; }

.accent-number { font-family: 'Playfair Display', Georgia, serif; font-size: 3.5rem; font-weight: 900; color: var(--accent); opacity: .25; line-height: 1; margin-bottom: -10px; }

.areas-section {
  background: var(--light);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.area-tag {
  display: block;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.area-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--white);
}

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

.contact-info h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.contact-detail-text a:hover {
  color: var(--accent);
}

.emergency-box {
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 8px;
}

.emergency-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #dc2626;
  margin-bottom: 8px;
}

.emergency-box p {
  font-size: 0.875rem;
  color: #7f1d1d;
  line-height: 1.6;
  margin-bottom: 14px;
}

.emergency-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dc2626;
  color: white;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}

.emergency-phone:hover {
  background: #b91c1c;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--light);
  border-radius: var(--radius);
  padding: 44px 40px;
  border: 1px solid var(--border);
}

.contact-form-wrap h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 0.9rem;
  margin-top: 8px;
  justify-content: center;
}

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 260px;
  overflow: hidden;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.photo-strip img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .photo-strip {
    height: 180px;
  }
}

/* ============================================================
   PALETTE SWITCHER
   ============================================================ */
.palette-switcher {
  position: fixed;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  z-index: 998;
  backdrop-filter: blur(8px);
}

.palette-switcher-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #6b7280;
  margin-right: 4px;
}

.palette-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  padding: 0;
}

.palette-btn:hover {
  transform: scale(1.2);
}

.palette-btn.active {
  border-color: #374151;
  transform: scale(1.1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-left {
    padding: 60px 40px 60px 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    gap: 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  header {
    position: relative;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 60px 20px 48px;
  }

  .hero-right {
    height: 55vw;
    min-height: 260px;
  }

  /* Trust bar */
  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .trust-stat + .trust-stat {
    border-left: none;
  }

  .trust-stat:nth-child(2) {
    border-left: 1px solid var(--border);
  }

  .trust-stat:nth-child(3),
  .trust-stat:nth-child(4) {
    border-top: 1px solid var(--border);
    padding-top: 24px;
  }

  /* Sections */
  section {
    padding: 64px 0;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-grid.reverse {
    direction: ltr;
  }

  .split-photo {
    aspect-ratio: 16 / 9;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .value-item:last-child {
    border-bottom: none;
  }

  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-item {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .service-link {
    grid-column: 1 / -1;
    margin-left: 60px;
  }

  .service-page-item {
    grid-template-columns: 56px 1fr;
    gap: 20px;
  }

  .service-page-item .btn-ghost {
    grid-column: 1 / -1;
    margin-left: 76px;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-phone {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .service-feature-grid,
  .service-feature-grid.reverse { grid-template-columns: 1fr; gap: 32px; }
  .service-feature-grid.reverse .service-feature-icon,
  .service-feature-grid.reverse .service-feature-content { order: 0; }
  .service-feature-icon { width: 100%; height: 120px; }
}

/* ── Area page improvements ───────────────────────── */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.postcode-list { list-style: none; padding: 0; margin: 16px 0; }
.postcode-list li { padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.postcode-list li:last-child { border-bottom: none; }
@media (max-width: 768px) { .content-grid { grid-template-columns: 1fr; } }
