/* ==========================================================================
   CJ's Painting Decoration, Inc. — Design System
   Brand: black / white / green→gold→orange gradient (from logo)
   ========================================================================== */

:root {
  /* Brand neutrals */
  --color-black: #0b0b0c;
  --color-black-soft: #161618;
  --color-ink: #1a1a1a;
  --color-muted: #61646b;
  --color-muted-light: #9a9da3;
  --color-white: #ffffff;
  --color-offwhite: #f6f6f4;
  --color-border: #e7e7e4;
  --color-border-dark: #2a2a2d;

  /* Brand gradient (from bristle art in the logo) */
  --grad-green: #3fae63;
  --grad-gold: #f2c230;
  --grad-orange: #ea6a1f;
  --gradient-brand: linear-gradient(100deg, var(--grad-green) 0%, var(--grad-gold) 52%, var(--grad-orange) 100%);
  --gradient-brand-soft: linear-gradient(100deg, rgba(63, 174, 99, 0.14) 0%, rgba(242, 194, 48, 0.14) 52%, rgba(234, 106, 31, 0.14) 100%);

  /* Accent (solid, accessible against white) */
  --color-accent: #c2560f;
  --color-accent-dark: #9c4409;
  --color-star: #f2b02c;

  /* Semantic */
  --color-bg: var(--color-white);
  --color-bg-alt: var(--color-offwhite);
  --color-text: var(--color-ink);
  --color-text-muted: var(--color-muted);

  /* Type */
  --font-heading: 'Outfit', 'Segoe UI', sans-serif;
  --font-body: 'Work Sans', 'Segoe UI', sans-serif;

  /* Spacing scale (standard density) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(11, 11, 12, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 11, 12, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 11, 12, 0.22);

  --transition: 200ms ease;
  --header-h: 132px;
}

@media (max-width: 720px) {
  :root { --header-h: 76px; }
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }
img, picture, video { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-black);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.25rem; }
p { color: var(--color-text-muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-2);
}

.section-heading { max-width: 720px; margin-bottom: var(--space-6); }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading p { margin-top: var(--space-3); font-size: 1.05rem; }

/* Gradient pill used inline in headings, e.g. "<span class=pill>High-Quality</span> Painting" */
.pill-word {
  display: inline-block;
  background: var(--gradient-brand);
  color: var(--color-black);
  padding: 0.05em 0.5em;
  border-radius: 100px;
  font-weight: 800;
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--grad-gold);
  outline-offset: 2px;
}

/* ---- Layout helpers ---- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-4); }
.section { padding: var(--space-8) 0; }
@media (max-width: 720px) { .section { padding: var(--space-6) 0; } }
.section.tight { padding: var(--space-6) 0; }
.bg-black { background: var(--color-black); color: var(--color-white); }
.bg-black h1, .bg-black h2, .bg-black h3, .bg-black h4 { color: var(--color-white); }
.bg-black p { color: rgba(255,255,255,0.72); }
.bg-alt { background: var(--color-bg-alt); }

.grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.6em;
  border-radius: 100px;
  border: 2px solid transparent;
  min-height: 44px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-accent { background: var(--color-accent); color: var(--color-white); box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--color-accent-dark); box-shadow: var(--shadow-md); }

.btn-gradient { background: var(--gradient-brand); color: var(--color-black); box-shadow: var(--shadow-sm); }
.btn-gradient:hover { box-shadow: var(--shadow-md); filter: saturate(1.08); }

.btn-outline-light { background: transparent; color: var(--color-white); border-color: rgba(255,255,255,0.55); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--color-white); }

.btn-outline-dark { background: transparent; color: var(--color-black); border-color: var(--color-black); }
.btn-outline-dark:hover { background: var(--color-black); color: var(--color-white); }

.btn-block { width: 100%; }
.btn-lg { padding: 1.1em 2em; font-size: 1.02rem; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.4em; font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-accent-dark); }
.link-arrow svg { width: 14px; height: 14px; transition: transform var(--transition); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--color-black); }
.utility-bar { border-bottom: 1px solid rgba(255,255,255,0.08); }
.utility-bar .container { display: flex; align-items: center; justify-content: flex-end; gap: var(--space-5); min-height: 44px; font-size: 0.85rem; }
.utility-item { display: flex; align-items: center; gap: 0.5em; color: rgba(255,255,255,0.85); font-weight: 600; }
.utility-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--grad-gold); }
.utility-item:hover { color: var(--color-white); }
@media (max-width: 860px) { .utility-bar { display: none; } }

.main-nav { min-height: 88px; }
.main-nav .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); min-height: inherit; }
.brand { display: flex; align-items: center; gap: 0.6em; flex-shrink: 0; }
.brand svg, .brand img { height: 46px; width: auto; }

.nav-links { display: flex; align-items: center; gap: var(--space-5); }
.nav-links > a { font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem; color: rgba(255,255,255,0.85); padding: 0.4em 0; position: relative; }
.nav-links > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--gradient-brand); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.nav-links > a:hover, .nav-links > a[aria-current="page"] { color: var(--color-white); }
.nav-links > a:hover::after, .nav-links > a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.nav-phone { display: flex; align-items: center; gap: 0.5em; color: var(--color-white); font-family: var(--font-heading); font-weight: 700; }
.nav-phone svg { width: 18px; height: 18px; color: var(--grad-gold); }

.nav-mobile-cta { display: none; }

.nav-toggle { display: none; background: none; border: none; padding: 8px; width: 44px; height: 44px; align-items: center; justify-content: center; position: relative; }
.nav-toggle svg { width: 26px; height: 26px; color: var(--color-white); }
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-active .icon-menu { display: none; }
.nav-toggle.is-active .icon-close { display: block; }

@media (max-width: 980px) {
  .nav-links { position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--color-black); flex-direction: column; align-items: stretch; padding: var(--space-5) var(--space-4); gap: var(--space-4); overflow-y: auto; transform: translateX(100%); transition: transform 260ms ease; }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links > a { font-size: 1.15rem; padding: 0.5em 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-mobile-cta { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-4); padding-top: var(--space-4); }
  .nav-phone span { display: none; }
  .nav-toggle { display: flex; }
  .main-nav { min-height: 76px; }
}

@media (max-width: 480px) {
  .nav-cta > .btn.btn-gradient { display: none; }
  .brand svg, .brand img { height: 38px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; background: var(--color-black); }
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.3) saturate(1.08); }
.hero-media video { transform-origin: top left; transform: scale(1.4); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(9,9,10,0.66) 0%, rgba(9,9,10,0.4) 42%, rgba(9,9,10,0.08) 75%); }
.hero-inner { position: relative; z-index: 1; width: 100%; padding-top: var(--space-8); padding-bottom: var(--space-8); }
.hero-copy { max-width: 720px; }
.hero-copy .eyebrow { color: var(--grad-gold); }
.hero-copy h1 { color: var(--color-white); text-shadow: 0 2px 24px rgba(0,0,0,0.45); }
.hero-copy p.lead { color: rgba(255,255,255,0.9); font-size: 1.15rem; max-width: 46ch; margin-top: var(--space-3); text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }
.hero-badges { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-6); }
.hero-badge { display: flex; align-items: center; gap: 0.6em; color: rgba(255,255,255,0.85); font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; }
.hero-badge svg { width: 20px; height: 20px; color: var(--grad-gold); flex-shrink: 0; }

@media (max-width: 980px) {
  .hero-inner { padding-top: var(--space-6); padding-bottom: var(--space-6); }
  .hero { min-height: unset; padding-top: var(--space-6); }
}

@media (max-width: 700px) {
  /* hero-mobile.mp4 is shot in portrait (9:16) to match the phone screen,
     so cover needs only a small top-left-anchored nudge (vs. desktop's 1.4)
     to crop the watermark out of the bottom-right corner. */
  .hero-media { background: var(--color-black); }
  .hero-media video { transform-origin: top left; transform: scale(1.25); object-fit: cover; }
}

/* Quote card (used in its own section, and on the Contact page) */
.quote-card { background: var(--color-white); border-radius: var(--radius-lg); padding: var(--space-5); box-shadow: var(--shadow-lg); max-width: 640px; margin: 0 auto; }
.quote-card .quote-card-head { text-align: center; margin-bottom: var(--space-4); padding-bottom: var(--space-3); border-bottom: 2px dashed var(--color-border); }
.quote-card .quote-card-head .eyebrow { color: var(--color-accent-dark); margin-bottom: 0; }
.quote-card .quote-card-head h3 { margin-top: 4px; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-field { margin-bottom: var(--space-3); }
.form-field label { display: block; font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
  padding: 0.85em 1em; font-size: 0.95rem; background: var(--color-white); color: var(--color-ink);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 46px;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--color-accent); box-shadow: 0 0 0 4px rgba(194, 86, 15, 0.12); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-error { color: #b3261e; font-size: 0.8rem; margin-top: 4px; display: none; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: #b3261e; }
.form-field.has-error .form-error { display: block; }
.form-note { font-size: 0.82rem; color: var(--color-muted); margin-top: var(--space-3); }
.form-success { display: none; background: #eefaf1; border: 1.5px solid #3fae63; color: #1c6b38; padding: var(--space-4); border-radius: var(--radius-sm); font-weight: 600; margin-bottom: var(--space-4); }
.form-success.is-visible { display: block; }

/* ==========================================================================
   Trust bar / stats
   ========================================================================== */
.trust-bar { background: var(--color-offwhite); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.trust-bar .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-4); padding: var(--space-5) var(--space-4); }
.trust-item { display: flex; align-items: center; gap: var(--space-3); flex: 1 1 200px; }
.trust-item .icon-badge { flex-shrink: 0; }
.trust-copy strong { display: block; font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-black); }
.trust-copy span { display: block; font-size: 0.82rem; color: var(--color-muted); font-weight: 600; }

.icon-badge { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--gradient-brand); }
.icon-badge svg { width: 26px; height: 26px; color: var(--color-black); }
.icon-badge.dark { background: var(--color-black); }
.icon-badge.dark svg { color: var(--grad-gold); }

/* ==========================================================================
   Cards: services / gallery / testimonials
   ========================================================================== */
.card { background: var(--color-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); border: 1px solid var(--color-border); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--color-black-soft); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: var(--space-4); }
.card-body h3 { margin-bottom: var(--space-2); }
.card-body p { font-size: 0.94rem; margin-bottom: var(--space-3); }

.service-card-icon-panel { aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-3); background: var(--color-black); position: relative; overflow: hidden; }
.service-card-icon-panel::before { content: ""; position: absolute; inset: -40%; background: var(--gradient-brand); opacity: 0.18; filter: blur(40px); }
.service-card-icon-panel .icon-badge { width: 76px; height: 76px; position: relative; }
.service-card-icon-panel .icon-badge svg { width: 36px; height: 36px; }
.service-card-icon-panel span { position: relative; color: rgba(255,255,255,0.6); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* Gallery strip on homepage */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.gallery-strip a { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.gallery-strip a:hover img { transform: scale(1.08); }
.gallery-strip .view-all { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,11,12,0.86), rgba(11,11,12,0.3)); display: flex; align-items: flex-end; justify-content: center; padding-bottom: var(--space-4); color: var(--color-white); font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.85rem; }
@media (max-width: 780px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }

/* Gallery page grid */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
.gallery-grid figure { aspect-ratio: 4 / 3; border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: zoom-in; box-shadow: var(--shadow-sm); margin: 0; }
.gallery-grid img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 400ms ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--space-3); background: linear-gradient(0deg, rgba(11,11,12,0.85), transparent); color: var(--color-white); font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: 1fr; } }

.lightbox { position: fixed; inset: 0; background: rgba(6,6,7,0.92); z-index: 200; display: none; align-items: center; justify-content: center; padding: var(--space-5); }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: var(--space-4); right: var(--space-4); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; }
.lightbox-close svg { width: 22px; height: 22px; color: var(--color-white); }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* Testimonials */
.rating-summary { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.rating-summary .score { font-family: var(--font-heading); font-weight: 800; font-size: 2.6rem; color: var(--color-black); line-height: 1; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 18px; height: 18px; color: var(--color-star); }
.stars.lg svg { width: 24px; height: 24px; }

.testimonial-card { background: var(--color-white); border: 1.5px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-5); position: relative; box-shadow: var(--shadow-sm); }
.testimonial-card .stars { margin-bottom: var(--space-3); }
.testimonial-card p.quote { color: var(--color-ink); font-size: 1.02rem; font-style: italic; margin-bottom: var(--space-4); }
.testimonial-card .attribution { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); font-family: var(--font-heading); }
.testimonial-card .attribution strong { display: block; font-size: 0.95rem; color: var(--color-black); }
.testimonial-card .attribution span { display: block; font-size: 0.78rem; color: var(--color-muted); font-weight: 500; }
.testimonial-card .source-badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-accent-dark); background: rgba(194,86,15,0.08); padding: 0.3em 0.7em; border-radius: 100px; white-space: nowrap; }

.speech-quote { position: relative; background: var(--color-white); border: 2px solid var(--grad-gold); border-radius: var(--radius-lg); padding: var(--space-6); }
.speech-quote::after { content: ""; position: absolute; left: 48px; bottom: -18px; width: 32px; height: 32px; background: var(--color-white); border-right: 2px solid var(--grad-gold); border-bottom: 2px solid var(--grad-gold); transform: rotate(45deg); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner { background: var(--gradient-brand); }
.cta-banner .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4); padding: var(--space-6) var(--space-4); }
.cta-banner h2 { color: var(--color-black); margin-bottom: var(--space-1); }
.cta-banner p { color: rgba(11,11,12,0.75); font-weight: 600; }
.cta-banner .btn-accent { background: var(--color-black); }
.cta-banner .btn-accent:hover { background: #000; }

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-header { background: var(--color-black); padding: var(--space-7) 0 var(--space-6); position: relative; overflow: hidden; }
.page-header::before { content: ""; position: absolute; inset: 0; background: var(--gradient-brand); opacity: 0.08; }
.page-header .container { position: relative; }
.breadcrumb { display: flex; align-items: center; gap: 0.5em; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: var(--space-3); font-weight: 600; }
.breadcrumb a:hover { color: var(--color-white); }
.page-header h1 { color: var(--color-white); }
.page-header p { color: rgba(255,255,255,0.75); max-width: 60ch; margin-top: var(--space-2); }

/* ==========================================================================
   Alternating feature rows (services detail, about)
   ========================================================================== */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.feature-row.reverse .feature-media { order: 2; }
.feature-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-text ul.checklist { margin-top: var(--space-4); display: grid; gap: var(--space-2); }
.feature-text ul.checklist li { display: flex; align-items: flex-start; gap: 0.6em; color: var(--color-ink); font-weight: 500; }
.feature-text ul.checklist svg { width: 20px; height: 20px; color: var(--grad-green); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 900px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-media { order: 0; }
}

/* Icon panel for services without a photo (e.g. Exterior Painting) */
.feature-media.icon-panel { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; background: var(--color-black); position: relative; }
.feature-media.icon-panel::before { content: ""; position: absolute; inset: -30%; background: var(--gradient-brand); opacity: 0.22; filter: blur(60px); }
.feature-media.icon-panel .icon-badge { width: 120px; height: 120px; position: relative; }
.feature-media.icon-panel .icon-badge svg { width: 58px; height: 58px; }

/* ==========================================================================
   Who we are / dark panel
   ========================================================================== */
.split-panel { position: relative; }
.split-panel-bg { position: absolute; inset: 0; z-index: 0; }
.split-panel-bg .bg-half { position: absolute; top: 0; bottom: 0; width: 55%; }
.split-panel-bg .bg-half.left { left: 0; background: var(--color-black); }
.split-panel-bg .bg-half.right { right: 0; width: 45%; }
.split-panel-bg .bg-half.right img { width: 100%; height: 100%; object-fit: cover; }
.split-panel-inner { position: relative; z-index: 1; }
.split-panel-card { background: var(--color-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-width: 620px; overflow: hidden; }
.split-panel-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.split-panel-card .split-panel-body { padding: var(--space-5); }
.split-panel-card h1, .split-panel-card h2, .split-panel-card h3, .split-panel-card h4 { color: var(--color-black); }
.split-panel-card p { color: var(--color-text-muted); }
@media (max-width: 900px) {
  .split-panel-bg .bg-half.right { display: none; }
  .split-panel-bg .bg-half.left { width: 100%; }
}

/* ==========================================================================
   Why-choose-us list
   ========================================================================== */
.reason-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
@media (max-width: 700px) { .reason-grid { grid-template-columns: 1fr; } }
.reason-item { display: flex; gap: var(--space-3); }
.reason-item h4 { margin-bottom: 4px; }
.reason-item p { font-size: 0.92rem; }

/* ==========================================================================
   Service area chips
   ========================================================================== */
.area-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.area-chip { display: inline-flex; align-items: center; gap: 0.4em; padding: 0.5em 1em; border-radius: 100px; background: var(--color-offwhite); border: 1px solid var(--color-border); font-weight: 600; font-size: 0.88rem; }
.area-chip svg { width: 14px; height: 14px; color: var(--color-accent-dark); }
.area-chip.primary { background: var(--color-black); color: var(--color-white); border-color: var(--color-black); }
.area-chip.primary svg { color: var(--grad-gold); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--color-black); color: rgba(255,255,255,0.75); padding-top: var(--space-7); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-6); padding-bottom: var(--space-6); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand svg, .footer-brand img { height: 50px; width: auto; margin-bottom: var(--space-3); }
.footer-brand p { color: rgba(255,255,255,0.62); font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 { color: var(--color-white); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--space-3); }
.footer-col ul { display: grid; gap: var(--space-2); list-style: none; padding: 0; margin: 0; }
.footer-col a, .footer-col li { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-col a:hover { color: var(--color-white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6em; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--grad-gold); flex-shrink: 0; margin-top: 3px; }
.social-row { display: flex; gap: var(--space-2); margin-top: var(--space-4); }
.social-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.social-icon svg { width: 18px; height: 18px; color: var(--color-white); }
.social-icon:hover { background: var(--gradient-brand); }
.social-icon:hover svg { color: var(--color-black); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2); padding: var(--space-4) 0; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; text-align: left; } }

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top { position: fixed; right: var(--space-4); bottom: var(--space-4); width: 48px; height: 48px; border-radius: 50%; background: var(--color-black); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; z-index: 80; opacity: 0; pointer-events: none; transition: opacity var(--transition), transform var(--transition); }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.back-to-top svg { width: 20px; height: 20px; color: var(--color-white); }
.back-to-top:hover { transform: translateY(-3px); }

/* Utility */
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-6 { margin-top: var(--space-6); }
