/* ============================================
   KIRKSTALL ROOFING — SHARED DESIGN SYSTEM
   ============================================ */
:root {
  /* Backgrounds — light dominant */
  --bg-white: #FFFFFF;
  --bg-cream: #FAF6F0;
  --bg-soft: #F5F0E8;
  --bg-bone: #EDE6D7;

  /* Dark contrast surfaces */
  --bg-dark: #19180A;
  --bg-dark-elevated: #1F1A0E;
  --bg-dark-coffee: #3F220F;

  /* Accent palette */
  --punch-red: #E71D36;
  --rusty-spice: #AF4319;
  --dark-wine: #772014;
  --dark-coffee: #3F220F;
  --pitch-black: #19180A;

  /* Text */
  --text-primary: #19180A;
  --text-secondary: #3F220F;
  --text-muted: #6B6452;
  --text-on-dark: #F5F0E8;
  --text-on-dark-muted: #A39B8B;

  /* Borders */
  --border-light: rgba(63, 34, 15, 0.10);
  --border-medium: rgba(63, 34, 15, 0.22);
  --border-strong: rgba(63, 34, 15, 0.4);
  --border-dark: rgba(245, 240, 232, 0.12);

  /* Layout */
  --container: 1280px;
  --gutter: 32px;

  /* Type */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-primary);
}
.display-xl { font-size: clamp(44px, 7vw, 84px); font-weight: 900; line-height: 0.98; }
.display-lg { font-size: clamp(36px, 5vw, 60px); font-weight: 800; }
.display-md { font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; }
.display-sm { font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--punch-red);
  margin-bottom: 24px;
  display: inline-block;
}
.lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 620px;
}

/* PROSE — for service/area page rich text */
.prose { max-width: 760px; }
.prose p { color: var(--text-secondary); font-size: 17px; line-height: 1.75; margin-bottom: 20px; }
.prose p strong { color: var(--text-primary); font-weight: 600; }
.prose h2 { font-size: clamp(28px, 3.5vw, 40px); margin-top: 56px; margin-bottom: 20px; }
.prose h3 { font-size: clamp(22px, 2.4vw, 28px); margin-top: 40px; margin-bottom: 16px; }
.prose h4 { font-size: 19px; margin-top: 28px; margin-bottom: 12px; }
.prose ul, .prose ol { margin: 0 0 20px 24px; color: var(--text-secondary); font-size: 17px; line-height: 1.75; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--punch-red); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; font-weight: 500; }
.prose a:hover { color: var(--dark-wine); }
.prose blockquote {
  border-left: 4px solid var(--punch-red);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.4;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-primary { background: var(--punch-red); color: #FFFFFF; border-color: var(--punch-red); }
.btn-primary:hover { background: var(--dark-wine); border-color: var(--dark-wine); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(119, 32, 20, 0.25); }
.btn-secondary { background: transparent; color: var(--text-primary); border-color: var(--text-primary); }
.btn-secondary:hover { background: var(--text-primary); color: var(--text-on-dark); }
.btn-dark { background: var(--pitch-black); color: var(--text-on-dark); border-color: var(--pitch-black); }
.btn-dark:hover { background: var(--dark-coffee); border-color: var(--dark-coffee); }
.btn-on-dark { background: transparent; color: var(--text-on-dark); border-color: var(--text-on-dark); }
.btn-on-dark:hover { background: var(--text-on-dark); color: var(--pitch-black); }
.btn-arrow::after { content: '→'; font-size: 16px; transition: transform 200ms ease; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* USP MARQUEE */
.usp-bar {
  background: var(--pitch-black);
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 101;
}
.usp-track {
  display: flex;
  gap: 56px;
  animation: scroll-marquee 45s linear infinite;
  white-space: nowrap;
  padding-left: 56px;
}
.usp-item {
  color: var(--text-on-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.usp-item svg { color: var(--punch-red); flex-shrink: 0; }
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* NAVIGATION */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 84px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: color 200ms ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--punch-red);
  transition: width 250ms ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--punch-red); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { color: var(--text-primary); text-decoration: none; font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 10px; }
.nav-phone-icon { width: 40px; height: 40px; background: var(--bg-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--punch-red); flex-shrink: 0; }
.nav-phone-label { display: flex; flex-direction: column; line-height: 1.2; }
.nav-phone-label small { font-size: 10px; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.nav-phone-label span { font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: var(--text-primary); letter-spacing: -0.01em; }
.nav-phone:hover .nav-phone-label span { color: var(--punch-red); }
.mobile-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 26px; cursor: pointer; text-decoration: none; padding: 8px 12px; line-height: 1; }

/* HERO (homepage / dark hero) */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--pitch-black);
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
  padding: 120px 0 96px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(25, 24, 10, 0.92) 0%, rgba(25, 24, 10, 0.70) 45%, rgba(63, 34, 15, 0.55) 100%),
    url("../images/hero/hero-leeds-rooftops.jpg") center/cover no-repeat;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero h1, .hero h2, .hero h3 { color: var(--text-on-dark); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: rgba(245, 240, 232, 0.05);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 32px;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--punch-red); border-radius: 50%; box-shadow: 0 0 8px var(--punch-red); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(44px, 7.5vw, 92px);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}
.hero h1 .accent { display: inline-block; position: relative; color: var(--punch-red); }
.hero h1 .accent::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 100%; height: 4px; background: var(--punch-red); }
.hero-lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--text-on-dark-muted); max-width: 580px; margin-bottom: 40px; line-height: 1.7; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.trust-strip { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border-dark); font-size: 13px; font-weight: 500; color: var(--text-on-dark-muted); letter-spacing: 0.04em; }
.trust-strip span { display: flex; align-items: center; gap: 8px; }
.trust-strip svg { color: var(--punch-red); }

/* SUB-HERO (service/area pages) — image-backed by default */
.sub-hero {
  position: relative;
  background: var(--pitch-black);
  color: var(--text-on-dark);
  padding: 140px 0 100px;
  overflow: hidden;
}
.sub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(25, 24, 10, 0.92) 0%, rgba(25, 24, 10, 0.72) 50%, rgba(63, 34, 15, 0.58) 100%),
    url("../images/hero/hero-heritage.jpg") center/cover no-repeat;
}
.sub-hero.hero-service::before {
  background:
    linear-gradient(115deg, rgba(25, 24, 10, 0.95) 0%, rgba(25, 24, 10, 0.78) 50%, rgba(63, 34, 15, 0.62) 100%),
    url("../images/hero/hero-roof-detail.jpg") center/cover no-repeat;
}
.sub-hero.hero-area::before {
  background:
    linear-gradient(115deg, rgba(25, 24, 10, 0.90) 0%, rgba(25, 24, 10, 0.65) 50%, rgba(63, 34, 15, 0.52) 100%),
    url("../images/hero/hero-heritage.jpg") center/cover no-repeat;
}
.sub-hero.hero-leeds::before {
  background:
    linear-gradient(115deg, rgba(25, 24, 10, 0.92) 0%, rgba(25, 24, 10, 0.70) 45%, rgba(63, 34, 15, 0.55) 100%),
    url("../images/hero/hero-leeds-rooftops.jpg") center/cover no-repeat;
}
.sub-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(231, 29, 54, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.sub-hero-inner { position: relative; z-index: 1; max-width: 900px; }
.sub-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--text-on-dark);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 28px;
}
.sub-hero h1 .accent { color: var(--punch-red); }
.sub-hero .lead { color: var(--text-on-dark-muted); font-size: clamp(16px, 1.4vw, 19px); margin-bottom: 36px; max-width: 640px; }
.sub-hero .eyebrow { color: var(--punch-red); }
.sub-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.breadcrumbs a { color: var(--text-on-dark-muted); text-decoration: none; transition: color 200ms ease; }
.breadcrumbs a:hover { color: var(--text-on-dark); }
.breadcrumbs .sep { color: var(--text-on-dark-muted); opacity: 0.5; }
.breadcrumbs .current { color: var(--text-on-dark); }

/* ACCREDITATIONS */
.accreditations { background: var(--bg-cream); padding: 56px 0; border-bottom: 1px solid var(--border-light); }
.accreditations-inner { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; }
.accreditations-label { font-family: var(--font-heading); font-size: 11px; color: var(--text-secondary); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; max-width: 200px; line-height: 1.6; border-right: 1px solid var(--border-medium); padding-right: 56px; }
.accreditations-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; align-items: center; }
.acc-badge { height: 70px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-primary); font-family: var(--font-heading); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-align: center; line-height: 1.2; transition: all 250ms ease; border: 1px solid var(--border-light); border-radius: 6px; padding: 10px 8px; background: var(--bg-white); }
.acc-badge:hover { border-color: var(--rusty-spice); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(63, 34, 15, 0.08); }
.acc-badge small { display: block; font-family: var(--font-body); font-size: 9px; font-weight: 500; letter-spacing: 0.18em; color: var(--text-muted); margin-top: 4px; }

/* SECTIONS */
section { padding: 120px 0; position: relative; background: var(--bg-white); }
.section-cream { background: var(--bg-cream); }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--pitch-black); color: var(--text-on-dark); }
.section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5 { color: var(--text-on-dark); }
.section-dark .eyebrow { color: var(--punch-red); }
.section-dark .lead { color: var(--text-on-dark-muted); }
.section-tight { padding: 80px 0; }
.section-header { max-width: 720px; margin-bottom: 72px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { margin-bottom: 20px; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--border-light); border: 1px solid var(--border-light); border-radius: 6px; overflow: hidden; }
.services-grid > * { border: 1px solid var(--border-light); margin: -1px; }
.service-card { background: var(--bg-white); padding: 48px 36px; transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; position: relative; display: block; text-decoration: none; color: inherit; }
.service-card:hover { background: var(--bg-cream); z-index: 2; }
.service-card:hover .service-title { color: var(--punch-red); }
.service-card:hover .service-arrow { transform: translateX(6px); color: var(--punch-red); }
.service-card:hover .service-icon-wrap { background: var(--punch-red); color: var(--bg-white); }
.service-icon-wrap { width: 56px; height: 56px; background: var(--bg-soft); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--rusty-spice); margin-bottom: 28px; transition: all 250ms ease; }
.service-icon { width: 32px; height: 32px; stroke-width: 1.5; }
.service-title { font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin-bottom: 14px; color: var(--text-primary); transition: color 200ms ease; letter-spacing: -0.01em; }
.service-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 28px; }
.service-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--rusty-spice); text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: all 200ms ease; }

/* SERVICE PAGE DETAILS */
.service-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: start; }
.service-detail-main { min-width: 0; }
.service-detail-aside { position: sticky; top: 140px; }
.quote-card { background: var(--pitch-black); color: var(--text-on-dark); border-radius: 8px; padding: 36px; overflow: hidden; position: relative; }
.quote-card::before { content: ''; position: absolute; top: -50%; right: -20%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(231, 29, 54, 0.15) 0%, transparent 70%); }
.quote-card h3 { color: var(--text-on-dark); font-family: var(--font-heading); font-size: 22px; font-weight: 800; margin-bottom: 12px; position: relative; letter-spacing: -0.02em; }
.quote-card p { color: var(--text-on-dark-muted); font-size: 14px; margin-bottom: 24px; position: relative; }
.quote-card-phone { display: block; font-family: var(--font-heading); font-size: 28px; font-weight: 900; color: var(--punch-red); text-decoration: none; margin-bottom: 8px; letter-spacing: -0.02em; position: relative; }
.quote-card-phone:hover { color: var(--text-on-dark); }
.quote-card-label { font-size: 11px; color: var(--text-on-dark-muted); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px; font-weight: 600; position: relative; }
.quote-card .btn { width: 100%; position: relative; }
.quote-card-checks { list-style: none; margin: 24px 0 24px; position: relative; padding-top: 24px; border-top: 1px solid var(--border-dark); }
.quote-card-checks li { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: 13px; color: var(--text-on-dark); font-weight: 500; }
.quote-card-checks li svg { color: var(--punch-red); flex-shrink: 0; }

/* FEATURES LIST */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 32px 0 48px; }
.feature-tile { background: var(--bg-cream); border: 1px solid var(--border-light); border-radius: 6px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.feature-tile-icon { width: 36px; height: 36px; background: var(--punch-red); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--bg-white); flex-shrink: 0; }
.feature-tile h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; letter-spacing: -0.01em; }
.feature-tile p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin: 0 !important; }

/* HERITAGE / OUR STORY */
.heritage-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 96px; align-items: center; }
.heritage-visual { aspect-ratio: 4/5; background: url("../images/work/heritage-leeds-rooftops.jpg") center/cover no-repeat; background-color: var(--dark-coffee); border-radius: 6px; position: relative; overflow: hidden; }
.heritage-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(25, 24, 10, 0.05) 0%, rgba(25, 24, 10, 0.55) 60%, rgba(25, 24, 10, 0.95) 100%); }
.heritage-quote { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; background: linear-gradient(to top, rgba(25, 24, 10, 0.96) 0%, transparent 100%); color: var(--text-on-dark); }
.heritage-quote-mark { font-family: var(--font-heading); font-size: 80px; line-height: 0.5; color: var(--punch-red); margin-bottom: 20px; display: block; font-weight: 900; }
.heritage-quote p { font-family: var(--font-heading); font-size: 19px; font-weight: 600; line-height: 1.4; color: var(--text-on-dark); letter-spacing: -0.01em; }
.heritage-quote cite { display: block; margin-top: 16px; font-family: var(--font-body); font-size: 11px; font-style: normal; font-weight: 600; color: var(--punch-red); letter-spacing: 0.15em; text-transform: uppercase; }
.heritage-body h2 { margin-bottom: 28px; }
.heritage-body p { color: var(--text-secondary); font-size: 17px; line-height: 1.75; margin-bottom: 20px; }
.heritage-body p strong { color: var(--text-primary); font-weight: 600; }
.heritage-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border-medium); }
.heritage-stat-num { font-family: var(--font-heading); font-size: 48px; font-weight: 900; color: var(--text-primary); line-height: 1; letter-spacing: -0.04em; }
.heritage-stat-num .accent { color: var(--punch-red); }
.heritage-stat-label { font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 10px; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.why-list { list-style: none; margin-top: 40px; }
.why-list li { padding: 28px 0; border-top: 1px solid var(--border-light); display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-items: start; }
.why-list li:last-child { border-bottom: 1px solid var(--border-light); }
.why-num { font-family: var(--font-heading); color: var(--punch-red); font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.why-list h4 { font-family: var(--font-heading); font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); letter-spacing: -0.01em; }
.why-list p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.why-card { background: var(--pitch-black); color: var(--text-on-dark); border-radius: 8px; padding: 48px; position: sticky; top: 140px; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: -50%; right: -20%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(231, 29, 54, 0.15) 0%, transparent 70%); }
.why-card h3 { color: var(--text-on-dark); font-family: var(--font-heading); font-size: 28px; font-weight: 800; margin-bottom: 16px; position: relative; letter-spacing: -0.02em; }
.why-card p { color: var(--text-on-dark-muted); font-size: 15px; margin-bottom: 32px; position: relative; }
.why-card-checks { list-style: none; margin-bottom: 32px; position: relative; }
.why-card-checks li { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 14px; color: var(--text-on-dark); font-weight: 500; }
.why-card-checks li svg { color: var(--punch-red); flex-shrink: 0; }
.why-card .btn { width: 100%; position: relative; }
.why-card-phone { text-align: center; margin-top: 16px; font-size: 13px; color: var(--text-on-dark-muted); position: relative; }
.why-card-phone a { color: var(--text-on-dark); text-decoration: none; font-weight: 700; margin-left: 4px; }
.why-card-phone a:hover { color: var(--punch-red); }

/* PROCESS — DARK */
.process-section { background: var(--pitch-black); color: var(--text-on-dark); }
.process-section h2, .process-section h3, .process-section h4 { color: var(--text-on-dark); }
.process-section .lead { color: var(--text-on-dark-muted); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-dark); }
.process-step { background: var(--bg-dark-elevated); padding: 48px 36px; position: relative; border-right: 1px solid var(--border-dark); transition: background 250ms ease; }
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--dark-coffee); }
.process-num { font-family: var(--font-heading); font-size: 64px; font-weight: 900; color: var(--punch-red); line-height: 1; margin-bottom: 24px; letter-spacing: -0.04em; opacity: 0.85; }
.process-step h4 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--text-on-dark); letter-spacing: -0.01em; }
.process-step p { font-size: 14px; color: var(--text-on-dark-muted); line-height: 1.65; }

/* WORK */
.work-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; margin-bottom: 24px; }
.work-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.work-item { position: relative; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; cursor: pointer; border: 1px solid var(--border-light); }
.work-item.tall { aspect-ratio: 3/4; }
.work-item.wide { aspect-ratio: 16/10; }
.work-bg { position: absolute; inset: 0; transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1); }
.work-item:hover .work-bg { transform: scale(1.05); }
.work-bg.b1 { background: url("../images/work/victorian-terrace-headingley.jpg") center/cover no-repeat; }
.work-bg.b2 { background: url("../images/work/stone-cottage-kirkstall.jpg") center/cover no-repeat; }
.work-bg.b3 { background: url("../images/work/chimney-period-terrace.jpg") center/cover no-repeat; }
.work-bg.b4 { background: url("../images/work/slate-reroof-edwardian.jpg") center/cover no-repeat; }
.work-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(25, 24, 10, 0.95) 0%, rgba(25, 24, 10, 0.2) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; transition: background 300ms ease; }
.work-item:hover .work-overlay { background: linear-gradient(to top, rgba(25, 24, 10, 0.98) 0%, rgba(231, 29, 54, 0.25) 60%, rgba(231, 29, 54, 0.05) 100%); }
.work-tag { font-family: var(--font-heading); font-size: 11px; color: var(--punch-red); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px; font-weight: 700; }
.work-title { font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: var(--text-on-dark); letter-spacing: -0.02em; }
.work-location { font-size: 13px; font-weight: 500; color: var(--text-on-dark-muted); margin-top: 6px; }

/* REVIEWS */
.reviews-header { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; margin-bottom: 64px; padding-bottom: 48px; border-bottom: 1px solid var(--border-light); }
.reviews-score { text-align: right; }
.reviews-score-num { font-family: var(--font-heading); font-size: 64px; font-weight: 900; color: var(--text-primary); line-height: 1; letter-spacing: -0.04em; }
.reviews-score-stars { display: flex; justify-content: flex-end; gap: 2px; margin: 10px 0; color: var(--punch-red); }
.reviews-score-count { font-size: 13px; color: var(--text-secondary); letter-spacing: 0.05em; font-weight: 500; }
.reviews-score-count .google { font-weight: 700; color: var(--text-primary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: var(--bg-cream); border: 1px solid var(--border-light); padding: 36px 32px; border-radius: 8px; transition: all 300ms ease; display: flex; flex-direction: column; }
.testimonial:hover { border-color: var(--rusty-spice); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(63, 34, 15, 0.1); }
.testimonial-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.stars { display: flex; gap: 3px; color: var(--punch-red); }
.testimonial-date { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; font-weight: 500; }
.testimonial-quote { font-family: var(--font-heading); font-size: 17px; font-weight: 600; line-height: 1.5; color: var(--text-primary); margin-bottom: 28px; flex: 1; letter-spacing: -0.01em; }
.testimonial-author { padding-top: 20px; border-top: 1px solid var(--border-light); display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--punch-red); color: var(--bg-white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; font-size: 16px; flex-shrink: 0; }
.testimonial-name { font-family: var(--font-heading); font-weight: 700; color: var(--text-primary); font-size: 14px; }
.testimonial-location { font-size: 12px; color: var(--text-muted); margin-top: 2px; font-weight: 500; }
.reviews-footer { margin-top: 48px; text-align: center; font-size: 14px; color: var(--text-secondary); }
.reviews-footer a { color: var(--punch-red); text-decoration: none; font-weight: 700; }

/* AREAS */
.areas-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.areas-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; list-style: none; background: var(--bg-white); border: 1px solid var(--border-light); border-radius: 8px; overflow: hidden; }
.areas-list li { padding: 0; border-bottom: 1px solid var(--border-light); border-right: 1px solid var(--border-light); transition: all 200ms ease; }
.areas-list li:nth-child(2n) { border-right: none; }
.areas-list li a { padding: 18px 24px; display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 500; color: var(--text-primary); text-decoration: none; transition: all 200ms ease; }
.areas-list li:hover { background: var(--bg-cream); }
.areas-list li:hover a { color: var(--punch-red); }
.areas-list li a::before { content: ''; width: 6px; height: 6px; background: var(--punch-red); border-radius: 50%; flex-shrink: 0; }
.areas-list li small { color: var(--text-muted); font-size: 12px; margin-left: auto; letter-spacing: 0.05em; font-weight: 600; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.faq-list { list-style: none; }
.faq-item { border-top: 1px solid var(--border-medium); transition: border-color 200ms ease; }
.faq-item:last-child { border-bottom: 1px solid var(--border-medium); }
.faq-item.open { border-color: var(--punch-red); }
.faq-question { width: 100%; background: none; border: none; padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; cursor: pointer; color: var(--text-primary); font-family: var(--font-heading); font-size: 20px; font-weight: 700; text-align: left; letter-spacing: -0.01em; transition: color 200ms ease; }
.faq-question:hover { color: var(--punch-red); }
.faq-toggle { width: 32px; height: 32px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; color: var(--punch-red); border: 1px solid var(--border-medium); border-radius: 50%; background: var(--bg-white); transition: all 300ms ease; font-size: 18px; font-weight: 600; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--punch-red); color: var(--bg-white); border-color: var(--punch-red); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1); }
.faq-answer-inner { padding: 0 0 32px 0; color: var(--text-secondary); font-size: 16px; line-height: 1.7; max-width: 720px; }
.faq-item.open .faq-answer { max-height: 600px; }

/* CTA BAND */
.cta-band { background: var(--pitch-black); color: var(--text-on-dark); padding: 96px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--dark-wine), var(--punch-red), var(--rusty-spice)); }
.cta-band::after { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(231, 29, 54, 0.1) 0%, transparent 70%); pointer-events: none; }
.cta-band-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center; position: relative; }
.cta-band h2 { color: var(--text-on-dark); font-family: var(--font-heading); font-size: clamp(28px, 3.8vw, 44px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-band p { color: var(--text-on-dark-muted); font-size: 17px; }
.cta-band-actions { display: flex; gap: 16px; justify-content: flex-end; flex-wrap: wrap; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-phone { display: block; font-family: var(--font-heading); font-size: clamp(36px, 5vw, 60px); color: var(--punch-red); text-decoration: none; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; line-height: 1; }
.contact-phone:hover { color: var(--dark-wine); }
.contact-phone-label { color: var(--text-muted); font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 48px; }
.contact-perks { display: grid; gap: 12px; margin-bottom: 48px; }
.contact-perk { display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; background: var(--bg-cream); border: 1px solid var(--border-light); border-radius: 6px; transition: all 200ms ease; }
.contact-perk:hover { border-color: var(--rusty-spice); transform: translateX(4px); }
.contact-perk-icon { width: 40px; height: 40px; background: var(--punch-red); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--bg-white); flex-shrink: 0; }
.contact-perk h5 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; letter-spacing: -0.01em; }
.contact-perk p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.contact-info { padding-top: 32px; border-top: 1px solid var(--border-light); display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-info-item h5 { font-family: var(--font-heading); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--punch-red); margin-bottom: 10px; font-weight: 700; }
.contact-info-item p { font-size: 14px; color: var(--text-primary); line-height: 1.6; font-weight: 500; }
.contact-form { background: var(--bg-cream); border: 1px solid var(--border-light); border-radius: 8px; padding: 40px; }
.contact-form h3 { font-family: var(--font-heading); font-size: 26px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.contact-form .form-intro { color: var(--text-secondary); font-size: 14px; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-body); font-size: 12px; color: var(--text-secondary); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--bg-white); border: 1px solid var(--border-medium); border-radius: 4px; padding: 14px 16px; color: var(--text-primary); font-family: var(--font-body); font-size: 15px; font-weight: 400; transition: border-color 200ms ease, box-shadow 200ms ease; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--punch-red); box-shadow: 0 0 0 3px rgba(231, 29, 54, 0.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.file-upload { border: 1px dashed var(--border-strong); border-radius: 4px; padding: 24px; text-align: center; cursor: pointer; transition: all 200ms ease; background: var(--bg-white); display: block; }
.file-upload:hover { border-color: var(--punch-red); background: rgba(231, 29, 54, 0.03); }
.file-upload svg { color: var(--punch-red); margin-bottom: 8px; }
.file-upload p { font-size: 13px; color: var(--text-secondary); }
.file-upload p strong { color: var(--text-primary); font-weight: 600; }
.form-submit { width: 100%; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 16px; text-align: center; font-weight: 500; }

/* MAP PLACEHOLDER */
.map-block { background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-soft) 100%); border-radius: 8px; aspect-ratio: 21/9; position: relative; overflow: hidden; border: 1px solid var(--border-light); margin-top: 48px; display: flex; align-items: center; justify-content: center; }
.map-block::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(119, 32, 20, 0.04) 30px, rgba(119, 32, 20, 0.04) 60px); }
.map-block-content { position: relative; text-align: center; padding: 32px; }
.map-block svg { color: var(--punch-red); margin-bottom: 12px; }
.map-block h4 { font-family: var(--font-heading); color: var(--text-primary); font-size: 20px; margin-bottom: 4px; }
.map-block p { color: var(--text-secondary); font-size: 14px; }

/* FOOTER */
footer { background: var(--pitch-black); color: var(--text-on-dark-muted); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand-img { height: 96px; width: auto; display: block; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-brand p { color: var(--text-on-dark-muted); font-size: 14px; max-width: 320px; line-height: 1.65; }
.footer-col h6 { font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--punch-red); margin-bottom: 20px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-on-dark-muted); text-decoration: none; font-size: 14px; font-weight: 400; transition: color 200ms ease; }
.footer-col a:hover { color: var(--text-on-dark); }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--border-dark); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-on-dark-muted); flex-wrap: wrap; gap: 16px; font-weight: 500; }

/* MOBILE STICKY CTA */
/* ============================================
   MOBILE STICKY CTA BAR (with live Open Now)
   ============================================ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--bg-white);
  border-top: 1px solid var(--border-medium);
  box-shadow: 0 -10px 32px rgba(25, 24, 10, 0.18);
  flex-direction: column;
  padding: 0;
}
.mobile-sticky-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--pitch-black);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.status-dot-open { background: #2ECC71; box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.25); }
.status-dot-open::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid rgba(46, 204, 113, 0.5);
  animation: pulse-dot 1.8s ease-out infinite;
}
.status-dot-closed { background: #F39C12; box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.25); }
@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}
.status-text { display: flex; flex-direction: column; line-height: 1.2; }
.status-text .status-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #fff;
}
.status-text .status-time {
  font-size: 10px;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.02em;
  margin-top: 1px;
}
.mobile-sticky-actions {
  display: flex;
  gap: 0;
  padding: 0;
}
.ms-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 8px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 200ms ease, transform 200ms ease;
  border: none;
  position: relative;
}
.ms-btn-call {
  background: var(--punch-red);
  color: #fff;
}
.ms-btn-call:hover, .ms-btn-call:active { background: var(--dark-wine); }
.ms-btn-quote {
  background: var(--pitch-black);
  color: #fff;
}
.ms-btn-quote:hover, .ms-btn-quote:active { background: var(--dark-coffee); }
.ms-btn svg {
  flex-shrink: 0;
}
.ms-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.ms-btn-text small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .accreditations-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-aside { position: static; }
}
@media (max-width: 968px) {
  .nav-links, .nav-phone { display: none; }
  .mobile-toggle { display: block; }
  .nav-logo img { height: 64px; }
  section { padding: 80px 0; }
  .section-header { margin-bottom: 56px; }
  .usp-bar { height: 36px; }
  .usp-item { font-size: 11px; }
  .accreditations { padding: 36px 0; }
  .accreditations-inner { grid-template-columns: 1fr; gap: 24px; }
  .accreditations-label { border-right: none; padding-right: 0; max-width: none; text-align: center; }
  .accreditations-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .acc-badge { height: 56px; font-size: 11px; }
  .services-grid { grid-template-columns: 1fr; }
  .heritage-grid { grid-template-columns: 1fr; gap: 48px; }
  .heritage-visual { aspect-ratio: 4/3; }
  .heritage-stats { gap: 16px; }
  .heritage-stat-num { font-size: 36px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-card { position: static; padding: 32px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--border-dark); }
  .work-grid, .work-grid-2 { grid-template-columns: 1fr; }
  .work-item.tall, .work-item.wide { aspect-ratio: 4/3; }
  .reviews-header { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .reviews-score { text-align: left; }
  .reviews-score-stars { justify-content: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-question { font-size: 17px; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-band-actions { justify-content: flex-start; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .mobile-sticky { display: flex; }
  body { padding-bottom: 108px; }
  .hero { padding-bottom: 64px; padding-top: 80px; min-height: 80vh; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .sub-hero { padding: 100px 0 72px; }
  .sub-hero-cta { flex-direction: column; align-items: stretch; }
  .sub-hero-cta .btn { width: 100%; }
  .contact-info { grid-template-columns: 1fr; gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  :root { --gutter: 20px; }
  body { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step:nth-child(-n+3) { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .accreditations-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-list { grid-template-columns: 1fr; }
  .areas-list li { border-right: none; }
  .nav-logo img { height: 54px; }
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   FULL-SCREEN MOBILE MENU
   ============================================ */
body.menu-open { overflow: hidden; }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--pitch-black);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1), visibility 400ms;
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-menu-overlay:target, .mobile-menu-overlay.open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.mobile-menu-overlay::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 90vw;
  height: 90vw;
  background: radial-gradient(circle, rgba(231, 29, 54, 0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.mobile-menu-overlay::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -30%;
  width: 90vw;
  height: 90vw;
  background: radial-gradient(circle, rgba(175, 67, 25, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.mobile-menu-logo { text-decoration: none; }
.mobile-menu-logo img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
}
.mobile-menu-close {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}
.mobile-menu-close:hover, .mobile-menu-close:active {
  background: var(--punch-red);
  border-color: var(--punch-red);
  transform: rotate(90deg);
}

.mobile-menu-nav {
  list-style: none;
  padding: 32px var(--gutter);
  margin: 0;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.mobile-menu-nav li {
  border-bottom: 1px solid var(--border-dark);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1), transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu-overlay:target .mobile-menu-nav li, .mobile-menu-overlay.open .mobile-menu-nav li {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-overlay:target .mobile-menu-nav li:nth-child(1), .mobile-menu-overlay.open .mobile-menu-nav li:nth-child(1) { transition-delay: 120ms; }
.mobile-menu-overlay:target .mobile-menu-nav li:nth-child(2), .mobile-menu-overlay.open .mobile-menu-nav li:nth-child(2) { transition-delay: 170ms; }
.mobile-menu-overlay:target .mobile-menu-nav li:nth-child(3), .mobile-menu-overlay.open .mobile-menu-nav li:nth-child(3) { transition-delay: 220ms; }
.mobile-menu-overlay:target .mobile-menu-nav li:nth-child(4), .mobile-menu-overlay.open .mobile-menu-nav li:nth-child(4) { transition-delay: 270ms; }
.mobile-menu-overlay:target .mobile-menu-nav li:nth-child(5), .mobile-menu-overlay.open .mobile-menu-nav li:nth-child(5) { transition-delay: 320ms; }
.mobile-menu-overlay:target .mobile-menu-nav li:nth-child(6), .mobile-menu-overlay.open .mobile-menu-nav li:nth-child(6) { transition-delay: 370ms; }
.mobile-menu-overlay:target .mobile-menu-nav li:nth-child(7), .mobile-menu-overlay.open .mobile-menu-nav li:nth-child(7) { transition-delay: 420ms; }

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  color: var(--text-on-dark);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: color 250ms ease, padding 250ms ease, transform 250ms ease;
  line-height: 1;
}
.mobile-menu-nav a .arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-muted);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.mobile-menu-nav a:hover, .mobile-menu-nav a:active {
  color: var(--punch-red);
  padding-left: 8px;
}
.mobile-menu-nav a:hover .arrow, .mobile-menu-nav a:active .arrow {
  background: var(--punch-red);
  color: #fff;
  transform: translateX(4px);
}

.mobile-menu-footer {
  padding: 32px var(--gutter);
  border-top: 1px solid var(--border-dark);
  background: var(--bg-dark-elevated);
  position: relative;
  z-index: 2;
  margin-top: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1), transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 480ms;
}
.mobile-menu-overlay:target .mobile-menu-footer, .mobile-menu-overlay.open .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-phone {
  display: block;
  font-family: var(--font-heading);
  color: var(--punch-red);
  font-size: 38px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.mobile-menu-phone:hover { color: #fff; }
.mobile-menu-phone-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mobile-menu-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.mobile-menu-actions .btn {
  flex: 1;
  padding: 16px 12px;
  font-size: 12px;
}
.mobile-menu-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
  font-size: 11px;
  color: var(--text-on-dark-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.mobile-menu-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.mobile-menu-trust svg {
  color: var(--punch-red);
  flex-shrink: 0;
}

/* Hide the entire overlay on desktop */
@media (min-width: 969px) {
  .mobile-menu-overlay { display: none !important; }
}

/* ============================================
   POSTCODE FINDER PAGE
   ============================================ */
.finder-hero {
  position: relative;
  background: var(--pitch-black);
  color: var(--text-on-dark);
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.finder-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 24, 10, 0.82) 0%, rgba(25, 24, 10, 0.95) 100%),
    url("../images/hero/hero-leeds-rooftops.jpg") center/cover no-repeat;
}
.finder-hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(231, 29, 54, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.finder-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.finder-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 900;
  color: var(--text-on-dark);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 24px;
}
.finder-hero h1 .accent { color: var(--punch-red); position: relative; }
.finder-hero p.lead { color: var(--text-on-dark-muted); font-size: clamp(16px, 1.5vw, 20px); max-width: 580px; margin: 0 auto 48px; }

.postcode-form {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}
.postcode-input-wrap {
  position: relative;
  display: flex;
  background: rgba(245, 240, 232, 0.08);
  border: 2px solid rgba(245, 240, 232, 0.25);
  border-radius: 8px;
  padding: 8px;
  backdrop-filter: blur(8px);
  transition: all 250ms ease;
}
.postcode-input-wrap:focus-within {
  border-color: var(--punch-red);
  background: rgba(245, 240, 232, 0.12);
  box-shadow: 0 0 0 6px rgba(231, 29, 54, 0.18);
}
.postcode-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.postcode-input::placeholder {
  color: rgba(245, 240, 232, 0.35);
  font-weight: 600;
}
.postcode-btn {
  background: var(--punch-red);
  color: #FFFFFF;
  border: none;
  padding: 0 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.postcode-btn:hover { background: var(--dark-wine); transform: translateY(-1px); }
.postcode-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.postcode-helper {
  margin-top: 16px;
  color: var(--text-on-dark-muted);
  font-size: 13px;
  font-weight: 500;
}
.postcode-helper a { color: var(--text-on-dark); text-decoration: underline; text-decoration-color: var(--punch-red); text-underline-offset: 4px; }

/* Result Card (shown after search) */
.finder-result {
  position: relative;
  z-index: 1;
  margin: 48px auto 0;
  max-width: 640px;
  background: var(--bg-white);
  color: var(--text-primary);
  border-radius: 12px;
  padding: 48px;
  text-align: left;
  box-shadow: 0 32px 80px rgba(25, 24, 10, 0.5);
  display: none;
  animation: pop-in 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.finder-result.visible { display: block; }
@keyframes pop-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.finder-result-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--punch-red);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.finder-result-icon.success { background: var(--punch-red); }
.finder-result-icon.warning { background: var(--rusty-spice); }
.finder-result h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.finder-result p { color: var(--text-secondary); font-size: 16px; line-height: 1.6; margin-bottom: 24px; }
.finder-result .postcode-display {
  display: inline-block;
  background: var(--bg-cream);
  border: 1px solid var(--border-medium);
  padding: 6px 14px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-right: 6px;
}
.finder-result-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.finder-result-meta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.finder-result-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.finder-result-meta-item svg { color: var(--punch-red); }

/* All Areas Grid */
.finder-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 0;
}
.finder-area-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 20px;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.finder-area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(231, 29, 54, 0.06) 100%);
  opacity: 0;
  transition: opacity 250ms ease;
}
.finder-area-card:hover {
  border-color: var(--punch-red);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(63, 34, 15, 0.12);
}
.finder-area-card:hover::before { opacity: 1; }
.finder-area-card-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  position: relative;
}
.finder-area-card-postcode {
  font-size: 12px;
  font-weight: 600;
  color: var(--punch-red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}

/* Stats strip */
.finder-stats {
  background: var(--bg-cream);
  padding: 48px 0;
  border-bottom: 1px solid var(--border-light);
}
.finder-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.finder-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.04em;
}
.finder-stat-num .accent { color: var(--punch-red); }
.finder-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .postcode-input-wrap { flex-direction: column; padding: 6px; }
  .postcode-input { padding: 14px 16px; text-align: center; }
  .postcode-btn { padding: 14px 24px; justify-content: center; }
  .finder-result { padding: 32px 24px; margin: 32px 16px 0; }
  .finder-areas-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .finder-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .finder-stats-grid { grid-template-columns: 1fr 1fr; }
}
