/* ============================================
   Every Detail Painting — v4
   Refined contractor aesthetic
   ============================================ */

:root {
  /* Brand — restrained */
  --lime: #84cc16;            /* used sparingly, accent only */
  --lime-dark: #4d7c0f;
  --lime-soft: #f0f7e3;
  --sky: #0284c7;             /* deeper, more confident than v3 */
  --sky-soft: #eff6fb;

  /* Editorial neutrals */
  --ink: #11131a;
  --ink-2: #1c1f2a;
  --graphite: #2c303d;
  --slate-700: #3a4151;
  --slate-600: #525a6b;
  --slate-500: #6b7280;
  --slate-400: #9ca3af;
  --slate-300: #d1d5db;
  --slate-200: #e5e7eb;
  --slate-100: #f3f4f6;
  --bone: #f5f3ee;            /* warmer paper, more refined than gray */
  --bone-dark: #e8e3d8;
  --paper: #faf8f3;
  --white: #ffffff;
  --gold: #b08c4f;            /* muted, classic gold instead of vivid amber */

  /* Soft shadows — less floaty than v3 */
  --shadow-xs: 0 1px 2px rgba(17, 19, 26, 0.04);
  --shadow-sm: 0 2px 6px rgba(17, 19, 26, 0.05);
  --shadow: 0 6px 18px -4px rgba(17, 19, 26, 0.08);
  --shadow-lg: 0 24px 48px -16px rgba(17, 19, 26, 0.18);
  --shadow-xl: 0 32px 64px -20px rgba(17, 19, 26, 0.22);

  /* Editorial typography */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--lime-dark); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--lime-soft); color: var(--ink); }

/* Editorial type scale */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-feature-settings: 'ss01';
}
h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
}
h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.625rem);
  font-weight: 500;
  letter-spacing: -0.015em;
}
h4 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; font-family: var(--font-body); }
p + p { margin-top: 1em; }

/* Italic display variant for accents */
.serif-italic {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-weight: 400;
}

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

/* Eyebrow style */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 18px;
}
.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow-line::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--slate-400);
}

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--bone-dark);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; max-width: var(--container); margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.3rem; color: var(--ink);
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 36;
}
.logo-mark {
  width: 40px; height: 40px;
  border: 1.5px solid var(--ink);
  border-radius: 0;
  display: grid; place-items: center;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  font-style: italic;
  background: var(--bone);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--ink); letter-spacing: -0.02em; }
.logo-text-tagline { font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; color: var(--slate-500); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links > li { position: relative; }
.nav-links a { color: var(--slate-700); font-weight: 500; font-size: 0.92rem; letter-spacing: -0.005em; }
.nav-links a:hover { color: var(--ink); }
.nav-dropdown > a::after {
  content: ''; display: inline-block; width: 5px; height: 5px;
  border-right: 1.2px solid var(--slate-500); border-bottom: 1.2px solid var(--slate-500);
  transform: rotate(45deg) translate(-2px, -2px); margin-left: 8px; vertical-align: middle;
}
.dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%);
  background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 240px; opacity: 0; visibility: hidden;
  transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
  border: 1px solid var(--bone-dark);
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(-2px);
}
.dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: var(--radius-sm);
  font-weight: 500; font-size: 0.9rem; color: var(--slate-700);
}
.dropdown-menu a:hover { background: var(--bone); color: var(--ink); }
.nav-cta {
  background: var(--ink); color: white !important;
  padding: 11px 22px; border-radius: var(--radius);
  font-weight: 500; font-size: 0.9rem;
  transition: all 0.2s ease;
  letter-spacing: -0.005em;
}
.nav-cta:hover { background: var(--graphite); color: white; }
.menu-toggle { display: none; padding: 8px; color: var(--ink); }

@media (max-width: 980px) {
  .nav-links {
    position: fixed; inset: 78px 0 auto 0; background: var(--bone);
    flex-direction: column; align-items: stretch; padding: 24px 28px; gap: 4px;
    box-shadow: var(--shadow-lg); transform: translateY(-110%);
    transition: transform 0.3s ease; border-bottom: 1px solid var(--bone-dark);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 14px; border-radius: var(--radius-sm); }
  .menu-toggle { display: block; }
  .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; padding: 4px 0 4px 16px; min-width: auto; background: transparent; }
  .nav-dropdown > a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .logo-text { display: none; }
}

/* ============================================
   Hero — editorial, restrained
   ============================================ */
.hero {
  position: relative;
  padding: 100px 28px 120px;
  background: var(--bone);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(17, 19, 26, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 60% 60% at 100% 30%, black, transparent);
  pointer-events: none;
}
.hero-inner {
  position: relative; max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: center;
}
.hero-rule { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-rule-line { width: 48px; height: 1px; background: var(--ink); }
.hero-rule-text {
  font-family: var(--font-body); font-weight: 500; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
}
.hero h1 {
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero h1 .serif-italic { color: var(--lime-dark); }
.hero-sub {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--slate-700);
  margin-bottom: 40px;
  max-width: 540px;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

/* Hero attribution / signature row */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--bone-dark);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.hero-meta-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  font-variation-settings: 'opsz' 36;
}
.hero-meta-stars { color: var(--gold); letter-spacing: 1px; font-size: 0.95rem; }

.hero-visual {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-xl);
  background: linear-gradient(180deg, var(--slate-100) 0%, var(--slate-200) 100%);
}
.hero-visual::after {
  content: 'Hero photograph';
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--slate-500); font-weight: 400; font-style: italic; font-size: 0.95rem;
  font-family: var(--font-display);
}
.hero-visual.has-image::after { display: none; }
.hero-quote {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  background: white;
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 36, 'SOFT' 100;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.45;
  margin-bottom: 12px;
}
.hero-quote-attr {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.hero-quote-attr strong { color: var(--ink); font-weight: 600; }

@media (max-width: 980px) {
  .hero { padding: 64px 28px 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { aspect-ratio: 4/3; max-width: 540px; }
}

/* ============================================
   Credentials strip
   ============================================ */
.creds {
  background: var(--ink);
  color: var(--bone);
  padding: 28px 28px;
}
.creds-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; align-items: center;
}
.cred {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--bone);
  border-right: 1px solid rgba(245, 243, 238, 0.12);
  padding-right: 16px;
}
.cred:last-child { border-right: none; }
.cred-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: white;
  margin-bottom: 4px;
  font-variation-settings: 'opsz' 144;
}
.cred-num .stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
@media (max-width: 1000px) {
  .creds-inner { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .cred:nth-child(3) { border-right: none; }
  .cred:nth-child(4), .cred:nth-child(5), .cred:nth-child(6) { border-top: 1px solid rgba(245, 243, 238, 0.12); padding-top: 24px; }
}
@media (max-width: 600px) {
  .creds-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cred { border-right: none !important; padding-right: 0; }
  .cred:nth-child(odd) { border-right: 1px solid rgba(245, 243, 238, 0.12) !important; padding-right: 16px; }
}

/* ============================================
   Buttons — squarer, more architectural
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  font-family: var(--font-body);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  letter-spacing: -0.005em;
}
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { background: var(--graphite); color: white; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: white; }
.btn-light {
  background: white;
  color: var(--ink);
  border-color: var(--slate-300);
}
.btn-light:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: white; border-color: rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); color: white; border-color: white; }
.btn-lg { padding: 17px 32px; font-size: 0.98rem; }
.btn-arrow::after {
  content: '→'; display: inline-block; transition: transform 0.2s ease;
}
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(3px); }

/* ============================================
   Sections
   ============================================ */
section { padding: 120px 28px; }
@media (max-width: 700px) { section { padding: 80px 24px; } }
.bg-bone { background: var(--bone); }
.bg-ink { background: var(--ink); color: var(--slate-300); }

.section-head { max-width: 760px; margin: 0 auto 80px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; max-width: 720px; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { color: var(--slate-600); font-size: 1.12rem; line-height: 1.6; }

/* ============================================
   Approach / Why us
   ============================================ */
.approach {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 96px; align-items: start;
}
.approach-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--slate-100) 0%, var(--slate-200) 100%);
  display: grid; place-items: center;
  color: var(--slate-500); font-style: italic; font-family: var(--font-display); font-size: 0.95rem;
  position: sticky; top: 100px;
}
.approach-content h2 { margin-bottom: 24px; }
.approach-content > p {
  color: var(--slate-700); font-size: 1.18rem; line-height: 1.6; margin-bottom: 48px;
  max-width: 540px;
}
.approach-list { display: flex; flex-direction: column; gap: 32px; }
.approach-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--bone-dark);
}
.approach-item:last-child { border-bottom: none; padding-bottom: 0; }
.approach-num {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.4rem; color: var(--lime-dark);
  font-variation-settings: 'opsz' 36;
  font-style: italic;
  line-height: 1;
  padding-top: 4px;
}
.approach-item-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.4rem; color: var(--ink); margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.approach-item p { color: var(--slate-600); font-size: 1rem; line-height: 1.6; }
@media (max-width: 980px) {
  .approach { grid-template-columns: 1fr; gap: 56px; }
  .approach-image { max-width: 480px; aspect-ratio: 4/3; position: static; }
}

/* ============================================
   Services — editorial list
   ============================================ */
.services-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--bone-dark);
}
.service-row {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 32px; align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--bone-dark);
  text-decoration: none;
  color: inherit;
  transition: padding 0.3s ease;
}
.service-row:hover { padding-left: 12px; }
.service-row:hover .service-row-title { color: var(--lime-dark); }
.service-row:hover .service-row-arrow { transform: translateX(8px); color: var(--ink); }
.service-row:nth-child(odd) { padding-right: 32px; }
.service-row:nth-child(even) { padding-left: 32px; }
.service-row-num {
  font-family: var(--font-display); font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 36;
  font-size: 1rem; color: var(--slate-500);
  letter-spacing: 0;
  min-width: 36px;
}
.service-row-content { flex: 1; }
.service-row-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.5rem; color: var(--ink);
  margin-bottom: 6px; letter-spacing: -0.02em;
  transition: color 0.2s ease;
  line-height: 1.2;
}
.service-row-desc { color: var(--slate-600); font-size: 0.94rem; line-height: 1.5; }
.service-row-arrow {
  color: var(--slate-400); font-size: 1.4rem; font-weight: 300;
  transition: transform 0.2s ease, color 0.2s ease;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-row { padding-left: 0 !important; padding-right: 0 !important; }
  .service-row:hover { padding-left: 8px !important; }
}

/* ============================================
   Gallery
   ============================================ */
.gallery {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 200px; gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(180deg, var(--slate-100), var(--slate-200));
  position: relative; display: grid; place-items: center;
  color: var(--slate-500); font-weight: 400; font-size: 0.85rem;
  font-style: italic; font-family: var(--font-display);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 19, 26, 0.7) 100%);
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-1 { grid-column: span 7; grid-row: span 2; }
.gallery-item-2 { grid-column: span 5; grid-row: span 1; }
.gallery-item-3 { grid-column: span 5; grid-row: span 1; }
.gallery-item-4 { grid-column: span 4; grid-row: span 1; }
.gallery-item-5 { grid-column: span 4; grid-row: span 1; }
.gallery-item-6 { grid-column: span 4; grid-row: span 1; }
.gallery-label {
  position: absolute; bottom: 20px; left: 24px; right: 24px; z-index: 2;
  color: white; font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: 1.05rem;
  font-variation-settings: 'opsz' 36;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }
@media (max-width: 920px) {
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; }
  .gallery-item-1 { grid-column: span 6; }
  .gallery-item-2, .gallery-item-3 { grid-column: span 3; }
  .gallery-item-4, .gallery-item-5, .gallery-item-6 { grid-column: span 2; }
}

/* ============================================
   Process
   ============================================ */
.steps { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.step { padding-top: 32px; border-top: 1px solid var(--bone-dark); }
.step-number {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 36;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--lime-dark);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.step h4 { margin-bottom: 10px; font-size: 1.2rem; font-family: var(--font-display); font-weight: 500; color: var(--ink); letter-spacing: -0.015em; }
.step p { color: var(--slate-600); font-size: 0.95rem; line-height: 1.55; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* ============================================
   Reviews — editorial pull-quote style
   ============================================ */
.reviews-head { text-align: center; margin-bottom: 64px; }
.reviews-rating-line {
  font-family: var(--font-body); font-weight: 500; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-500);
  margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 14px;
}
.reviews-rating-line .gold-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
.reviews { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.review-card {
  position: relative;
  padding: 0 0 0 32px;
  border-left: 2px solid var(--lime);
}
.review-text {
  color: var(--ink); font-size: 1.1rem; line-height: 1.6; margin-bottom: 24px;
  font-family: var(--font-display); font-weight: 400;
  font-variation-settings: 'opsz' 36;
  letter-spacing: -0.01em;
}
.review-text::before { content: '“'; }
.review-text::after { content: '”'; }
.review-author {
  font-family: var(--font-body);
  font-weight: 600; color: var(--ink); font-size: 0.92rem;
}
.review-author span {
  display: block; color: var(--slate-500); font-weight: 500; font-size: 0.82rem;
  margin-top: 2px; letter-spacing: 0.02em;
}
@media (max-width: 920px) { .reviews { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================
   Service area — editorial directory
   ============================================ */
.areas-wrap { max-width: var(--container); margin: 0 auto; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border-top: 1px solid var(--bone-dark); border-bottom: 1px solid var(--bone-dark); }
.area-col {
  padding: 40px 32px;
  border-right: 1px solid var(--bone-dark);
}
.area-col:last-child { border-right: none; }
.area-col-label {
  font-family: var(--font-body); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-500);
  margin-bottom: 8px;
}
.area-col h3 { margin-bottom: 8px; font-size: 1.6rem; font-family: var(--font-display); font-weight: 500; }
.area-col h3 a { color: var(--ink); }
.area-col h3 a:hover { color: var(--lime-dark); }
.area-col-county { font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: var(--slate-500); margin-bottom: 24px; }
.area-list { display: flex; flex-direction: column; gap: 4px; }
.area-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  color: var(--slate-700); font-weight: 500; font-size: 0.94rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.area-list a::after { content: '→'; color: var(--slate-400); transition: transform 0.2s ease; }
.area-list a:hover { color: var(--ink); border-bottom-color: var(--bone-dark); }
.area-list a:hover::after { transform: translateX(4px); color: var(--lime-dark); }
@media (max-width: 900px) {
  .areas-grid { grid-template-columns: 1fr; }
  .area-col { border-right: none; border-bottom: 1px solid var(--bone-dark); }
  .area-col:last-child { border-bottom: none; }
}

/* ============================================
   Quote form
   ============================================ */
.quote-section {
  background: var(--ink); color: white;
  padding: 120px 28px; position: relative;
}
.quote-inner {
  position: relative; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start;
}
.quote-content { padding-top: 8px; }
.quote-content h2 { color: white; margin-bottom: 24px; font-family: var(--font-display); font-weight: 400; }
.quote-content > p { color: var(--slate-300); font-size: 1.12rem; line-height: 1.6; margin-bottom: 32px; }
.quote-features { display: flex; flex-direction: column; gap: 16px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.quote-feature {
  display: flex; align-items: baseline; gap: 14px;
  color: var(--bone); font-weight: 400; font-size: 1rem;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 36;
}
.quote-feature::before {
  content: '—'; color: var(--lime); font-weight: 400; flex-shrink: 0;
}
.quote-form {
  background: var(--bone); border-radius: var(--radius); padding: 40px;
  color: var(--slate-700);
}
.quote-form-rule {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-500);
  margin-bottom: 16px;
}
.quote-form-rule::after { content: ''; flex: 1; height: 1px; background: var(--bone-dark); }
.quote-form h3 { color: var(--ink); margin-bottom: 8px; font-size: 1.6rem; font-family: var(--font-display); font-weight: 500; }
.quote-form > p { color: var(--slate-600); font-size: 0.94rem; margin-bottom: 28px; }
.quote-form > p a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--lime); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-grid.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-family: var(--font-body);
  font-weight: 500; color: var(--slate-600); font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 14px;
  border: 1px solid var(--bone-dark); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.95rem; background: white;
  transition: border 0.2s, box-shadow 0.2s; color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.18);
}
.form-field textarea { min-height: 100px; resize: vertical; font-family: inherit; }
.form-submit { width: 100%; justify-content: center; margin-top: 12px; }
.form-note {
  font-size: 0.78rem; color: var(--slate-500); text-align: center;
  margin-top: 16px; font-style: italic; font-family: var(--font-display);
  font-variation-settings: 'opsz' 14;
}
@media (max-width: 980px) { .quote-inner { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================================
   CTA banner
   ============================================ */
.cta-banner {
  background: var(--bone);
  padding: 96px 28px;
  border-top: 1px solid var(--bone-dark);
  border-bottom: 1px solid var(--bone-dark);
}
.cta-banner-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr; align-items: center; gap: 56px;
}
.cta-banner h2 { color: var(--ink); margin-bottom: 12px; font-family: var(--font-display); font-weight: 400; }
.cta-banner p { color: var(--slate-700); font-size: 1.1rem; line-height: 1.55; }
.cta-banner-actions { text-align: right; display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 800px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-actions { justify-content: flex-start; }
}

/* ============================================
   Footer
   ============================================ */
.footer { background: var(--ink); color: var(--slate-400); padding: 96px 28px 40px; }
.footer-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-brand { max-width: 380px; }
.footer-brand .logo { color: white; margin-bottom: 24px; }
.footer-brand .logo-mark { border-color: white; color: white; background: transparent; }
.footer-brand .logo-text-name { color: white; }
.footer-brand .logo-text-tagline { color: var(--slate-400); }
.footer-brand p { font-size: 0.95rem; color: var(--slate-400); margin-bottom: 24px; line-height: 1.65; }
.footer-contact a {
  color: white; font-weight: 500; font-size: 1.4rem;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 36;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--lime);
  padding-bottom: 4px;
}
.footer-contact a:hover { color: var(--lime); }
.footer h4 { color: white; font-size: 0.78rem; margin-bottom: 20px; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul a { color: var(--slate-400); font-size: 0.92rem; font-weight: 400; }
.footer ul a:hover { color: white; }
.footer-bottom {
  max-width: var(--container); margin: 0 auto; padding-top: 32px;
  border-top: 1px solid #2a2d39;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.84rem; color: var(--slate-500);
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px 32px; } }
@media (max-width: 540px) { .footer-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================
   Inner page hero
   ============================================ */
.page-hero {
  position: relative; padding: 80px 28px 80px;
  background: var(--bone);
  border-bottom: 1px solid var(--bone-dark);
}
.page-hero-inner {
  max-width: var(--container-narrow); margin: 0 auto;
}
.page-hero .breadcrumb {
  font-family: var(--font-body);
  color: var(--slate-500); font-size: 0.78rem;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.page-hero .breadcrumb a { color: var(--slate-500); }
.page-hero .breadcrumb a:hover { color: var(--ink); }
.page-hero .breadcrumb-sep { color: var(--slate-300); margin: 0 10px; }
.page-hero h1 { margin-bottom: 24px; max-width: 800px; }
.page-hero .lede { max-width: 720px; color: var(--slate-700); font-size: 1.2rem; line-height: 1.55; margin-bottom: 36px; }
.page-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================
   Content body
   ============================================ */
.content-wrap { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }
.content-wrap > p {
  font-size: 1.15rem; line-height: 1.7; color: var(--slate-700); margin-bottom: 32px;
}
.content-wrap > p:first-of-type::first-line { font-weight: 500; }
.content-wrap h2 { margin-top: 64px; margin-bottom: 24px; font-size: 2rem; font-family: var(--font-display); font-weight: 400; }
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap h3 { margin-top: 40px; margin-bottom: 14px; font-size: 1.4rem; }
.content-wrap p, .content-wrap ul li { color: var(--slate-700); font-size: 1.05rem; line-height: 1.7; }
.content-wrap ul {
  padding: 0; margin: 20px 0; display: flex; flex-direction: column; gap: 14px;
  border-top: 1px solid var(--bone-dark);
  padding-top: 20px;
}
.content-wrap ul li {
  padding-left: 32px; position: relative;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bone-dark);
}
.content-wrap ul li:last-child { border-bottom: none; padding-bottom: 0; }
.content-wrap ul li::before {
  content: '—'; position: absolute; left: 0; top: 0;
  color: var(--lime-dark); font-weight: 400;
  font-family: var(--font-display);
}
.content-wrap blockquote {
  border-left: 2px solid var(--lime);
  padding: 8px 32px; margin: 40px 0;
  font-size: 1.35rem; color: var(--ink);
  font-family: var(--font-display); font-weight: 400; line-height: 1.4;
  font-variation-settings: 'opsz' 144;
  font-style: italic;
}
.contact-card {
  background: var(--ink); color: white;
  border-radius: var(--radius); padding: 48px 40px;
  margin: 64px 0;
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
}
.contact-card h3 { color: white; margin-bottom: 8px; font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; }
.contact-card p { color: var(--slate-300); margin-bottom: 0; font-size: 1rem; }
.contact-card-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 700px) {
  .contact-card { grid-template-columns: 1fr; }
}

/* ============================================
   Blog
   ============================================ */
.blog-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform 0.3s ease;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-image {
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, var(--slate-100), var(--slate-200));
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--slate-500); font-size: 0.85rem; font-style: italic; font-family: var(--font-display);
  margin-bottom: 24px;
}
.blog-card-meta {
  font-family: var(--font-body); color: var(--slate-500);
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 600; margin-bottom: 12px;
}
.blog-card h3 { margin-bottom: 14px; font-size: 1.35rem; line-height: 1.25; font-family: var(--font-display); font-weight: 500; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--lime-dark); }
.blog-card p { color: var(--slate-600); font-size: 0.96rem; line-height: 1.6; }
.blog-card-link {
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 600; color: var(--ink); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.blog-card-link::after { content: ' →'; color: var(--lime-dark); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.article-body { max-width: 720px; margin: 0 auto; padding: 0 28px; }
.article-body p { margin-bottom: 22px; line-height: 1.78; font-size: 1.08rem; color: var(--slate-700); }
.article-body p:first-of-type {
  font-size: 1.25rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.5;
  font-variation-settings: 'opsz' 36;
}
.article-body h2 { margin: 56px 0 22px; font-size: 1.85rem; font-family: var(--font-display); font-weight: 400; }
.article-body h3 { margin: 40px 0 14px; font-size: 1.35rem; }
.article-body ul { margin: 20px 0 32px; padding-left: 0; }
.article-body img { border-radius: var(--radius); margin: 32px 0; }
.article-meta {
  color: var(--slate-500); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 12px; font-family: var(--font-body); font-weight: 600;
}

/* ============================================
   404
   ============================================ */
.notfound {
  min-height: calc(100vh - 80px);
  display: grid; place-items: center; text-align: center;
  padding: 100px 28px; background: var(--bone);
}
.notfound-inner { max-width: 560px; }
.notfound-num {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(8rem, 22vw, 16rem); font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  line-height: 0.9; color: var(--ink);
  margin-bottom: 24px;
}
.notfound h1 { margin-bottom: 18px; }
.notfound p { color: var(--slate-600); margin-bottom: 36px; font-size: 1.1rem; }

/* Util */
.text-center { text-align: center; }
.hidden { display: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards; }

/* ============================================
   Mobile sticky call bar
   ============================================ */
.sticky-call-bar { display: none; }

@media (max-width: 920px) {
  .sticky-call-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 -4px 24px rgba(17, 19, 26, 0.1);
    border-top: 1px solid var(--bone-dark);
  }
  .sticky-call-bar a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 12px; border-radius: var(--radius);
    font-weight: 500; font-size: 0.95rem; text-decoration: none;
    transition: transform 0.15s ease;
    font-family: var(--font-body); letter-spacing: -0.005em;
  }
  .sticky-call-bar a:active { transform: scale(0.97); }
  .sticky-call-bar .scb-call { background: var(--ink); color: white; }
  .sticky-call-bar .scb-quote {
    background: white; color: var(--ink);
    border: 1.5px solid var(--ink);
  }
  .sticky-call-bar .scb-icon { width: 16px; height: 16px; flex-shrink: 0; }

  body { padding-bottom: 80px; }
  .footer { padding-bottom: 110px; }
}

/* Floating call button (desktop, on inner pages only) */
.float-call { display: none; }
@media (min-width: 921px) {
  body.has-float-call .float-call {
    display: flex;
    position: fixed; bottom: 28px; right: 28px; z-index: 90;
    align-items: center; gap: 10px;
    padding: 14px 22px;
    background: var(--ink); color: white;
    border-radius: var(--radius);
    font-weight: 500; font-size: 0.92rem;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: -0.005em;
  }
  body.has-float-call .float-call:hover {
    background: var(--graphite); color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
  }
  body.has-float-call .float-call svg { width: 16px; height: 16px; }
}
