/* ==========================================================================
   Mister Painter — Design System
   Warm craftsman palette · indigo primary · red accent · cream base
   ========================================================================== */

:root {
  --blue: #2d1fdc;
  --blue-dark: #1e1499;
  --blue-soft: #4a3de6;
  --blue-tint: rgba(45, 31, 220, 0.08);
  --blue-tint-strong: rgba(45, 31, 220, 0.14);

  --red: #c8442c;
  --red-dark: #a6331f;
  --red-tint: rgba(200, 68, 44, 0.1);

  --cream: #faf6ed;
  --cream-warm: #f3ebd8;
  --cream-dark: #ebe2cc;

  --ink: #1a1816;
  --ink-soft: #4a4540;
  --muted: #8a7f74;

  --navy: #10142a;
  --navy-soft: #1a1f3d;
  --navy-line: rgba(255, 255, 255, 0.08);

  --white: #ffffff;
  --border: #e6dec8;
  --border-dark: #d4c8ae;

  --font-serif: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout tokens — use these everywhere; do not add ad-hoc widths */
  --container: 1440px;          /* default outer container */
  --container-narrow: 860px;    /* prose-led outer container (FAQ, legal) */
  --head-width: 880px;          /* section head (eyebrow + h2 + deck) max-width */
  --prose-width: 680px;         /* continuous body prose max-width */
  --gutter: 40px;               /* side padding on containers */
  --gutter-mobile: 20px;

  --radius: 6px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 8px rgba(26, 24, 22, 0.06);
  --shadow: 0 4px 24px rgba(26, 24, 22, 0.08);
  --shadow-lg: 0 24px 60px rgba(26, 24, 22, 0.14);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ----- Typography ----- */
/* Single source of truth for heading scale, weight, family.
   Sections should only override color / margin / max-width / text-transform. */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--ink);
  text-transform: none;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 700; line-height: 1.06; letter-spacing: -0.022em; }
h3 { font-size: clamp(1.3rem, 1.7vw, 1.55rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h4 { font-size: 1.1rem; font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
h5 { font-size: 1rem; font-weight: 700; }
h6 { font-size: 0.9rem; font-weight: 700; }

p { color: var(--ink-soft); }
p + p { margin-top: 1em; }

a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-dark); }

em { font-style: italic; }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--red);
  display: inline-block;
  margin-bottom: 18px;
}
.eyebrow.on-dark { color: #ff9f85; }

/* ----- Layout ----- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
@media (max-width: 720px) {
  .container,
  .container-narrow { padding: 0 var(--gutter-mobile); }
}

section { padding: 64px 0; }
section.compact { padding: 44px 0; }

.section-head { max-width: var(--head-width); margin-bottom: 24px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.1rem; margin-top: 18px; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(45, 31, 220, 0.28); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(200, 68, 44, 0.28); }
.btn-ghost { background: transparent; color: var(--blue); padding: 14px 20px; }
.btn-ghost:hover { background: var(--blue-tint); color: var(--blue-dark); }
.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-white:hover { background: var(--cream); color: var(--blue-dark); }
.btn-white-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 237, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 32px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--blue); }
.logo-accent { color: var(--red); }

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}
.nav a:hover { color: var(--blue); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--red);
}

.header-cta { display: flex; gap: 14px; align-items: center; }
.phone-link {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.phone-link:hover { color: var(--blue); }

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--border-dark);
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--ink);
  z-index: 260;
  transition: var(--transition);
}
.mobile-toggle:hover {
  background: var(--blue-tint);
  border-color: var(--blue);
  color: var(--blue);
}
@media (max-width: 960px) {
  .mobile-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ----- Utility bar (top dark band with free-estimate CTA) ----- */
.utility-bar {
  background: var(--ink);
  padding: 14px 0;
  text-align: center;
  position: relative;
  z-index: 110;
}
.utility-bar .btn-utility {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 32px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--blue-soft);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition);
  text-decoration: none;
}
.utility-bar .btn-utility:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

/* ----- Centered-logo header (overrides the default split header when .header-center is applied) ----- */
.header-center {
  position: relative;
  top: auto;
  background: var(--cream);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.header-center .header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px var(--gutter);
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.header-center .nav-left,
.header-center .nav-right {
  display: flex;
  list-style: none;
}
.header-center .nav-left { justify-content: flex-end; }
.header-center .nav-right { justify-content: flex-start; }
.header-center .nav-left > ul,
.header-center .nav-right > ul {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
.header-center .nav-left .dropdown-menu,
.header-center .nav-right .dropdown-menu {
  display: block;
}
.header-center .nav-left a,
.header-center .nav-right a {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.header-center .nav-left a:hover,
.header-center .nav-right a:hover { color: var(--blue); }

.logo-center {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo-center img {
  display: block;
  max-height: 52px;
  width: auto;
}
.logo-center:hover { opacity: 0.9; }

/* Dropdowns — click to open (toggled via JS) */
.has-dropdown { position: relative; }
.has-dropdown > a {
  cursor: pointer;
  user-select: none;
}
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 8px;
  opacity: 0.55;
  transition: transform 0.2s ease, opacity 0.2s ease;
  vertical-align: middle;
}
.has-dropdown.open > a::after,
.has-dropdown:hover > a::after {
  transform: rotate(-135deg) translateY(2px);
  opacity: 1;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 6px 0;
  margin-top: 6px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 200;
  list-style: none;
}
/* Bridge — invisible hover area between parent link and menu so hover doesn't break over the gap */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.has-dropdown.open .dropdown-menu,
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
  display: block !important;
  padding: 12px 22px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em !important;
  color: var(--ink) !important;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 600;
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu a:hover { background: var(--blue-tint); color: var(--blue) !important; }

/* ----- Cinematic hero (full-bleed photo + centered text) ----- */
.hero-cinematic {
  position: relative;
  min-height: 500px;
  padding: 64px 24px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  overflow: hidden;
  color: var(--white);
}
.hero-cinematic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 20, 112, 0.52) 0%, rgba(13, 16, 38, 0.62) 100%);
  backdrop-filter: blur(3px) saturate(115%);
  -webkit-backdrop-filter: blur(3px) saturate(115%);
  z-index: 0;
}
.hero-cinematic-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
}
.hero-eyebrow-small {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-title-large {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 28px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.hero-title-large em {
  font-style: normal;
  color: var(--red);
  display: block;
  margin-top: 6px;
}
.hero-cinematic .btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  padding: 18px 48px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(45, 31, 220, 0.4);
}
.hero-cinematic .btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(45, 31, 220, 0.5);
}
.hero-phone {
  display: block;
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.hero-phone:hover { color: #ff9d7a; }

/* ----- Marquee ticker ----- */
.marquee {
  background: var(--cream);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee-scroll 45s linear infinite;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.marquee-track span.accent { color: var(--red); }
.marquee-track span.dot {
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .header-center .nav-left,
  .header-center .nav-right { display: none; }
  .header-center .header-inner { grid-template-columns: 1fr auto 1fr; }
  .hero-cinematic { min-height: 440px; padding: 48px 20px 56px; }
  .hero-title-large { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .utility-bar { padding: 10px 0; }
  .utility-bar .btn-utility { padding: 8px 20px; font-size: 0.72rem; }
}

/* ----- Hero (home) — LEGACY frosted glass styles (kept for reference if needed) ----- */
.hero {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200, 68, 44, 0.55), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(74, 61, 230, 0.8), transparent 55%),
    linear-gradient(135deg, #1a1470 0%, #2d1fdc 45%, #1e1499 100%);
  min-height: 720px;
  display: flex;
  align-items: center;
}

/* Large brand watermark that shows THROUGH the frosted glass */
.hero-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -0.04em;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Subtle diagonal stripe pattern also showing through */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    42deg,
    transparent,
    transparent 120px,
    rgba(255, 255, 255, 0.035) 120px,
    rgba(255, 255, 255, 0.035) 121px
  );
  pointer-events: none;
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-card-wrap {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-card-wrap > .eyebrow {
  color: #ffd1bf;
  background: rgba(0, 0, 0, 0.18);
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* True frosted glass — translucent blue tint, white text, backdrop blur */
.hero-glass {
  background: rgba(30, 20, 153, 0.35);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  box-shadow:
    0 40px 100px rgba(10, 5, 60, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
}

.hero-glass h1 {
  font-size: clamp(2.3rem, 4.9vw, 4.1rem);
  line-height: 1.04;
  margin-bottom: 22px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.025em;
}
.hero-glass h1 em {
  font-style: normal;
  color: #ffb499;
  position: relative;
  display: inline-block;
}
.hero-glass h1 em::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%;
  bottom: 4px;
  height: 14px;
  background: var(--red);
  opacity: 0.35;
  z-index: -1;
  border-radius: 2px;
}
.hero-glass-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero .btn-primary { background: var(--white); color: var(--blue); border-color: var(--white); }
.hero .btn-primary:hover { background: var(--cream); color: var(--blue-dark); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.hero .btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.hero .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }

.hero-below {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  text-align: center;
}
.hero-below-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-below-badges {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
}
.hero-below-badges span strong {
  color: var(--white);
  font-weight: 700;
  margin-right: 6px;
  display: inline-block;
}

/* Make the header blend with the dark hero on home */
body.home .site-header {
  background: rgba(26, 20, 112, 0.35);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
body.home .site-header .logo,
body.home .site-header .nav a,
body.home .site-header .phone-link,
body.home .site-header .mobile-toggle { color: var(--white); }
body.home .site-header .logo-accent { color: #ffb499; }
body.home .site-header .nav a:hover,
body.home .site-header .phone-link:hover { color: #ffb499; }
body.home .site-header .mobile-toggle { border-color: rgba(255,255,255,0.3); }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}
.hero-card-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
}
.hero-card h3 { margin-bottom: 16px; }
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-card-stat .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--blue);
  line-height: 1;
}
.hero-card-stat .lbl {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 6px;
}

.trust-strip {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.trust-strip strong { color: var(--ink); }

/* ----- Page Hero (non-home) ----- */
.page-hero {
  padding: 72px 0 80px;
  background: linear-gradient(170deg, var(--cream) 0%, var(--cream-warm) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: -15%;
  width: 50%; height: 100%;
  background: radial-gradient(circle at center, var(--blue-tint), transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { max-width: 820px; margin-bottom: 20px; }
.page-hero-lead { max-width: 660px; font-size: 1.15rem; }
.page-hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ----- Service page full-bleed hero with glass form card ----- */
section.service-hero-full {
  position: relative;
  padding: 0;
  margin: 0;
  min-height: 680px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
section.service-hero-full .service-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 12, 25, 0.82) 0%, rgba(10, 12, 25, 0.5) 55%, rgba(10, 12, 25, 0.7) 100%),
    linear-gradient(180deg, rgba(10, 12, 25, 0.35) 0%, rgba(10, 12, 25, 0) 30%);
  pointer-events: none;
}
section.service-hero-full .service-hero-wrap {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 64px;
  align-items: center;
  min-height: 640px;
}
section.service-hero-full .service-hero-copy {
  color: var(--white);
}
section.service-hero-full .service-hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
section.service-hero-full .service-hero-stars .stars-icon {
  color: #ffb24d;
  font-size: 1rem;
  letter-spacing: 0.06em;
}
section.service-hero-full .service-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffb499;
  margin-bottom: 22px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
section.service-hero-full h1 {
  color: var(--white);
  margin-bottom: 22px;
  max-width: 640px;
  text-shadow: 0 6px 32px rgba(0, 0, 0, 0.45);
}
section.service-hero-full h1 em {
  font-style: normal;
  color: var(--red);
}
section.service-hero-full .service-hero-sub {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 36px;
  max-width: 580px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
section.service-hero-full .service-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
section.service-hero-full .hero-logos {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
section.service-hero-full .hero-logos li {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Liquid-glass form card */
.glass-card {
  background:
    linear-gradient(160deg, rgba(20, 24, 48, 0.55) 0%, rgba(10, 12, 25, 0.65) 100%);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  box-shadow:
    0 30px 80px rgba(10, 12, 25, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
section.service-hero-full .service-hero-form {
  padding: 34px 32px;
  color: var(--white);
}
section.service-hero-full .service-hero-form-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffb499;
  margin-bottom: 8px;
}
section.service-hero-full .service-hero-form h3 {
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
section.service-hero-full .service-hero-form > p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 22px;
}
section.service-hero-full .service-hero-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.service-hero-full .service-hero-form .form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
section.service-hero-full .service-hero-form input,
section.service-hero-full .service-hero-form textarea,
section.service-hero-full .service-hero-form select {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.94rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: var(--transition);
}
section.service-hero-full .service-hero-form input::placeholder,
section.service-hero-full .service-hero-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.88);
}
section.service-hero-full .service-hero-form select option {
  color: var(--ink);
  background: var(--white);
}
section.service-hero-full .service-hero-form input:focus,
section.service-hero-full .service-hero-form textarea:focus,
section.service-hero-full .service-hero-form select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}
section.service-hero-full .service-hero-form textarea {
  min-height: 78px;
  resize: vertical;
}
section.service-hero-full .service-hero-form button[type="submit"] {
  width: 100%;
  padding: 15px;
  margin-top: 8px;
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
section.service-hero-full .service-hero-form button[type="submit"]:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(45, 31, 220, 0.45);
}
section.service-hero-full .service-hero-form .form-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
}

/* Glass ghost button (for the phone number in the hero) */
.btn.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.48);
  color: var(--white);
}
.btn.btn-glass:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  transform: translateY(-1px);
}

@media (max-width: 960px) {
  section.service-hero-full { min-height: auto; }
  section.service-hero-full .service-hero-wrap {
    grid-template-columns: 1fr;
    padding: 72px 20px 72px;
    gap: 32px;
    min-height: auto;
  }
  section.service-hero-full .service-hero-form { padding: 26px 22px; }
}

/* ----- Service intro section (SEO-rich paragraph below cinematic hero) ----- */
.service-intro {
  background: var(--white);
  padding: 64px 0;
}
.service-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}
.service-intro .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.service-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
  text-transform: none;
}
.service-intro h2 em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.service-intro .deck {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.35;
  margin-bottom: 32px;
}
.service-intro-prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.service-intro-prose p:last-child { margin-bottom: 0; }
.service-intro-prose p strong {
  color: var(--ink);
  font-weight: 600;
}
.service-intro-figure {
  margin: 8px 0 0;
  position: sticky;
  top: 120px;
}
.service-intro-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: var(--shadow);
  background-color: var(--cream-dark);
}
.service-intro-figure figcaption {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 900px) {
  .service-intro { padding: 72px 0 64px; }
  .service-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-intro-figure { position: static; }
  .service-intro-img { aspect-ratio: 16 / 10; }
}

/* ----- Trust bar (sits directly under hero, soft cream treatment) ----- */
section.trust-bar {
  padding: 22px 0;
  background: var(--cream);
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.trust-bar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 36px;
}
.trust-bar-list li {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.trust-bar-list li + li::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border-dark);
}
.trust-stars {
  color: #d97e3a;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
}
@media (max-width: 720px) {
  section.trust-bar { padding: 18px 0; }
  .trust-bar-list { gap: 10px 22px; }
  .trust-bar-list li + li::before { left: -13px; }
  .trust-bar-list li { font-size: 0.7rem; }
}

/* ----- Numbered list pattern (shared across value-rows, sub-services, process) ----- */
.numbered-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.numbered-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  align-items: baseline;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.numbered-list .numbered-item:last-child {
  border-bottom: 1px solid var(--border);
}
.numbered-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.numbered-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.numbered-body p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
}
@media (max-width: 720px) {
  .numbered-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 0;
  }
}

/* ----- Shared: section head em accent (red highlight on key word) ----- */
.value-rows .section-head h2 em,
.sub-services .section-head h2 em,
.process .section-head h2 em,
.gallery .section-head h2 em,
.reviews .section-head h2 em,
.benefits .section-head h2 em,
.services-section .section-head h2 em,
.work-section .section-head h2 em,
.contact-section h2 em,
.area-strip h3 em {
  font-style: normal;
  color: var(--red);
}

/* ----- Section: Why Choose Us — photo + checklist ----- */
section.why-choose {
  background: var(--white);
  padding: 64px 0;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.why-choose-figure {
  margin: 0;
  position: relative;
}
.why-choose-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-dark);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.why-choose-text h2 {
  margin-bottom: 22px;
  max-width: 560px;
}
.why-choose-lead {
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 560px;
}
.why-choose-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.why-choose-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}
.why-choose-list li:last-child { border-bottom: 1px solid var(--border); }
.why-choose-list li strong {
  font-weight: 600;
  color: var(--ink);
}
.why-choose-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 1px;
}
.why-choose-cta {
  align-self: flex-start;
}
@media (max-width: 900px) {
  section.why-choose { padding: 72px 0; }
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-choose-img { aspect-ratio: 4 / 3; }
  .why-choose-text h2,
  .why-choose-lead { max-width: none; }
}

/* ----- Section: Why Us (legacy, no longer referenced) ----- */
section.value-rows {
  background: var(--cream);
  padding: 64px 0;
}
.value-rows .section-head {
  max-width: var(--head-width);
  margin-bottom: 32px;
}
.section-head-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 18px;
  max-width: var(--prose-width);
}
.value-grid-5 {
  grid-template-columns: repeat(2, 1fr);
}
.value-grid-5 > .value-card:nth-child(5) {
  grid-column: 1 / -1;
  max-width: calc(50% - 20px);
}
.value-cta {
  margin-top: 48px;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 720px) {
  .value-grid-5 > .value-card:nth-child(5) { max-width: none; }
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
}
.value-card {
  padding: 28px 0 0;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-card-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--blue);
  font-feature-settings: "tnum";
}
.value-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 1.9vw, 1.65rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.value-card p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-width: 440px;
}
@media (max-width: 720px) {
  section.value-rows { padding: 72px 0; }
  .value-grid { grid-template-columns: 1fr; gap: 24px; }
  .value-card { padding-top: 22px; }
}

/* ----- Section: Sub-services (photo card grid) ----- */
section.sub-services {
  background: var(--white);
  padding: 64px 0;
}
.sub-services .section-head {
  max-width: var(--head-width);
  margin-bottom: 36px;
}
.sub-services .deck {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--ink-soft);
  margin-top: 14px;
  max-width: var(--prose-width);
  line-height: 1.4;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-dark);
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img {
  transform: scale(1.04);
}
.service-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card h3 {
  margin: 0;
}
.service-card p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 980px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  section.sub-services { padding: 72px 0; }
  .sub-services .section-head { margin-bottom: 36px; }
  .service-cards { grid-template-columns: 1fr; gap: 20px; }
}

/* ----- Sub-services: portrait variant (image-led, no card frame) ----- */
.sub-services .section-head h2 em {
  font-style: normal;
  color: var(--red);
}
.sub-services .section-head-lead {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: 14px;
}
.service-cards-portrait {
  gap: 36px 28px;
}
.service-cards-portrait .service-card {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-cards-portrait .service-card:hover {
  transform: none;
  box-shadow: none;
}
.service-cards-portrait .service-card-img {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.service-cards-portrait .service-card:hover .service-card-img {
  transform: none;
}
.service-cards-portrait .service-card h3 {
  margin: 4px 0 0;
}
.service-cards-portrait .service-card p {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 980px) {
  .service-cards-portrait { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (max-width: 640px) {
  .service-cards-portrait { grid-template-columns: 1fr; gap: 28px; }
  .service-cards-portrait .service-card-img { aspect-ratio: 4 / 4; }
}

/* ----- Section: Process — 4-card horizontal row ----- */
section.process {
  background: var(--cream);
  padding: 64px 0;
}
.process .section-head {
  max-width: var(--head-width);
  margin-bottom: 36px;
}
.process-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-cards-3 {
  grid-template-columns: repeat(3, 1fr);
}
.process-cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.process-card-step {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}
.process-card h3 {
  color: var(--ink);
  margin: 0;
}
.process-card p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.process-card + .process-card::before {
  content: '';
  position: absolute;
  left: -13px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
}
@media (max-width: 980px) {
  .process-cards,
  .process-cards-3 { grid-template-columns: repeat(2, 1fr); }
  .process-card + .process-card::before { display: none; }
}
@media (max-width: 560px) {
  section.process { padding: 72px 0; }
  .process .section-head { margin-bottom: 36px; }
  .process-cards { grid-template-columns: 1fr; gap: 14px; }
}

/* ----- Process: dark callout variant ----- */
.process-dark .section-head h2 em {
  font-style: normal;
  color: var(--red);
}
.process-shell {
  background: var(--navy);
  border-radius: 24px;
  padding: 48px 56px 40px;
  box-shadow: 0 24px 60px rgba(15, 18, 38, 0.18);
}
.process-dark .process-cards {
  gap: 0;
  position: relative;
}
.process-dark .process-card {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 8px 36px;
  position: relative;
}
.process-dark .process-card:first-child { padding-left: 0; }
.process-dark .process-card:last-child { padding-right: 0; }
.process-dark .process-card + .process-card {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.process-dark .process-card + .process-card::before { display: none; }
.process-dark .process-card-step {
  color: var(--red);
  margin-bottom: 4px;
  letter-spacing: 0.12em;
}
.process-dark .process-card h3 {
  color: var(--white);
}
.process-dark .process-card p {
  color: rgba(255, 255, 255, 0.72);
}
.process-dark .process-cta {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  justify-content: flex-start;
  gap: 16px;
}
.process-dark .process-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.process-dark .process-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}
.process-dark .process-cta .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
@media (max-width: 980px) {
  .process-dark .process-card { padding: 16px 24px; }
  .process-dark .process-card + .process-card { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.12); }
}
@media (max-width: 560px) {
  .process-shell { padding: 32px 24px 28px; border-radius: 18px; }
  .process-dark .process-card { padding: 14px 0; }
  .process-dark .process-card + .process-card { padding-top: 18px; margin-top: 4px; }
  .process-dark .process-cta { justify-content: center; }
}

/* ----- Section: Gallery ----- */
section.gallery {
  background: var(--white);
  padding: 64px 0;
}
.gallery .section-head {
  max-width: var(--head-width);
  margin-bottom: 32px;
}
.gallery .section-head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-transform: none;
}
.gallery .deck {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  margin-top: 10px;
  max-width: var(--prose-width);
  line-height: 1.4;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-dark);
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.gallery-cta {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }
  section.gallery { padding: 72px 0; }
}

/* ----- Section: Reviews ----- */
section.reviews {
  background: var(--cream);
  padding: 64px 0;
}
.reviews-head {
  margin-bottom: 32px;
}
.reviews-head h2 {
  margin: 0;
}
.reviews-head h2 em {
  font-style: normal;
  color: var(--red);
}
.reviews-head-rating {
  margin: 10px 0 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.reviews-logos {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
}
.reviews-logos li {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.reviews-rating {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  padding-bottom: 6px;
}
.rating-num {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.02em;
}
.rating-stars {
  font-size: 1.1rem;
  color: var(--red);
  letter-spacing: 0.06em;
}
.rating-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 28px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.review-stars {
  color: var(--red);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.review p {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  font-style: normal;
  flex: 1;
}
.review footer {
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream-dark, #ede3cf);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.3;
}
.review-meta strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
}
.review-meta > span {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.reviews-cta {
  margin-top: 40px;
  text-align: center;
}
.review-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.review-link:hover { border-bottom-color: var(--blue); }
.reviews-trustindex {
  margin-top: 24px;
  min-height: 200px;
}
.reviews-trust-line {
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  section.reviews { padding: 72px 0; }
  .reviews-head {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }
  .reviews-rating {
    text-align: left;
    align-items: flex-start;
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }
  .rating-num { font-size: 2.2rem; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .review { padding: 24px; }
}

/* ----- Section: Service Area ----- */
section.service-area {
  background: var(--white);
  padding: 64px 0;
}
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.service-area h2 {
  margin-bottom: 20px;
}
.service-area-subhead {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 20px 0 8px;
}
.service-area-cities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.service-area-cities li {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.service-area-cities li a {
  color: var(--ink);
  text-decoration: none;
}
.service-area-cities li a:hover { color: var(--blue); }
.service-area-cities li.service-area-cities-end {
  background: transparent;
  border: none;
  color: var(--muted);
  font-weight: 500;
  padding-left: 6px;
}
.service-area-neighborhoods,
.service-area-zips {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.service-area-callout {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 1rem;
  color: var(--ink);
}
.service-area-callout a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.service-area-callout a:hover { text-decoration: underline; }
.service-area-map {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-dark);
  min-height: 480px;
}
.service-area-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
/* ----- Service Area: stacked variant (heading + meta left, vertical city list right) ----- */
.service-area-stacked .service-area-stacked-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}
.service-area-stacked-intro h2 {
  margin: 0 0 18px;
}
.service-area-stacked-intro h2 em {
  font-style: normal;
  color: var(--red);
}
.service-area-stacked-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 420px;
}
.service-area-stacked-phone {
  margin-bottom: 32px;
}
.service-area-stacked-intro .service-area-subhead {
  margin: 22px 0 8px;
}
.service-area-stacked-intro .service-area-neighborhoods,
.service-area-stacked-intro .service-area-zips {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.service-area-stacked-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-area-stacked-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-area-stacked-list li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: var(--border-dark);
}
.service-area-stacked-list a,
.service-area-stacked-list span {
  display: block;
  padding: 18px 26px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--ink);
  text-decoration: none;
}
.service-area-stacked-list a:hover { color: var(--red); }
@media (max-width: 900px) {
  .service-area-stacked .service-area-stacked-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service-area-stacked-list a,
  .service-area-stacked-list span { padding: 16px 22px; }
}

@media (max-width: 900px) {
  section.service-area { padding: 72px 0; }
  .service-area-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-area-map {
    aspect-ratio: 4 / 3;
    min-height: 340px;
  }
}

/* ----- Section: Giving Back (dark rounded callout card) ----- */
section.giving-back {
  background: var(--cream);
  padding: 56px 0;
  border-top: none;
}
.giving-back-card {
  background: var(--navy);
  border-radius: 28px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: 48px;
  align-items: center;
  color: var(--white);
  box-shadow: 0 24px 60px rgba(15, 18, 38, 0.18);
}
.giving-back-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.giving-back-card h2 {
  color: var(--white);
}
.giving-back-card h2 em {
  font-style: normal;
  color: var(--red);
}
.giving-back-card-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 18px;
}
.giving-back-card-body strong {
  color: var(--white);
  font-weight: 700;
}
.giving-back-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 60, 50, 0.4);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.giving-back-link:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}
@media (max-width: 820px) {
  section.giving-back { padding: 40px 0; }
  .giving-back-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 32px;
    border-radius: 20px;
  }
  .giving-back-card-body p { font-size: 1rem; }
}

/* ----- Section: Final CTA ----- */
section.final-cta {
  padding: 0;
  background: var(--cream);
}
.final-cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px var(--gutter);
  text-align: left;
}
.final-cta h2 {
  margin-bottom: 18px;
  max-width: 900px;
}
.final-cta h2 em {
  font-style: normal;
  color: var(--red);
  display: block;
}
.final-cta p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 720px;
}
.final-cta p a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.final-cta p a:hover { color: var(--red); }
.final-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.final-cta .btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.final-cta .btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 10px 24px rgba(200, 68, 44, 0.28);
}
@media (max-width: 720px) {
  .final-cta-inner { padding: 56px 20px; }
  .final-cta p { font-size: 1rem; }
}

/* ----- Breadcrumb ----- */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--cream-warm);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { margin: 0 8px; color: var(--border-dark); }

/* ----- Showcase (dark intro band under hero) ----- */
.showcase {
  background: #0d1026;
  padding: 112px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.showcase-watermark {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(22rem, 38vw, 44rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.045);
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.06em;
  white-space: nowrap;
}
.showcase-watermark .dot { color: rgba(200, 68, 44, 0.35); font-style: normal; }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.showcase-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, #2d1fdc 0%, #1a1470 100%),
    var(--cream);
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.showcase-image::after {
  content: 'Team Photo';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  letter-spacing: 0.02em;
}
.showcase-image.has-photo::after { display: none; }
.showcase-text .eyebrow-top {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: #ff9f85;
  line-height: 1.2;
  display: inline-block;
  margin-bottom: 18px;
}
.showcase-text h2 {
  color: var(--white);
  margin-bottom: 22px;
}
.showcase-text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 16px;
}
.showcase-text a {
  color: #8ec6ff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.showcase-text a:hover { color: #b5dcff; }

@media (max-width: 960px) {
  .showcase { padding: 72px 0; }
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
  .showcase-watermark { font-size: clamp(16rem, 60vw, 24rem); right: -15%; opacity: 0.6; }
}

/* ----- Benefits ----- */
.benefits { background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.benefit-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--blue-tint);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-family: var(--font-serif);
  font-weight: 600;
}
.benefit-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.benefit-card p { font-size: 0.95rem; }

/* ----- Services grid ----- */
.services-section { background: var(--cream-warm); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.service-card-photo {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-dark);
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-photo { transform: scale(1.04); }
.service-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { margin-bottom: 24px; flex: 1; font-size: 0.98rem; }
.service-card .arrow {
  color: var(--blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}
.service-card:hover .arrow { gap: 10px; }

/* ----- Our Recent Work (home page portfolio grid) ----- */
.work-section {
  background: var(--cream);
  padding: 96px 0;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 48px;
}
.work-grid > a:first-child,
.work-grid > a:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}
.work-item {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: var(--transition);
  background-color: var(--ink);
}
.work-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 16, 38, 0.82) 100%);
  transition: background 0.3s ease;
  pointer-events: none;
}
.work-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.work-item:hover::before {
  background: linear-gradient(180deg, rgba(13, 16, 38, 0.3) 0%, rgba(13, 16, 38, 0.88) 100%);
}
.work-item-caption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  color: var(--white);
  z-index: 1;
}
.work-item-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #ffb499;
  margin-bottom: 6px;
}
.work-item-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--white);
  font-weight: 500;
}
.work-grid > a:first-child .work-item-title,
.work-grid > a:nth-child(6) .work-item-title {
  font-size: 1.5rem;
}

@media (max-width: 900px) {
  .work-section { padding: 64px 0; }
  .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 12px; }
  .work-grid > a:first-child,
  .work-grid > a:nth-child(6) { grid-column: span 2; grid-row: span 1; }
  .work-grid > a:first-child .work-item-title,
  .work-grid > a:nth-child(6) .work-item-title { font-size: 1.25rem; }
}

/* ----- What's included (service pages) ----- */
.included { background: var(--white); }
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
  align-items: start;
}
.included-list { list-style: none; }
.included-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: start;
}
.included-list li:first-child { padding-top: 0; }
.included-list li:last-child { border-bottom: 0; }
.included-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 2px;
}
.included-list h4 { font-size: 1.05rem; margin-bottom: 4px; font-weight: 600; font-family: var(--font-sans); }
.included-list p { font-size: 0.95rem; margin: 0; }

.included-aside {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.included-aside h3 { margin-bottom: 16px; }
.included-aside p { margin-bottom: 24px; }

/* ----- Trust badges strip ----- */
.badges {
  background: var(--cream);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.badges-row {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.85;
}
.badge-item {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.badge-item .star { color: #f5a623; font-size: 1.2rem; }
.badge-item .lbl { font-family: var(--font-sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; }

/* ----- Process ----- */
.process { background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 64px;
  position: relative;
}
.process-step {
  position: relative;
  padding-left: 24px;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--red);
  line-height: 0.9;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--red);
  width: fit-content;
}
.process-step h3 { margin-bottom: 10px; margin-top: 12px; }
.process-step p { font-size: 0.98rem; }

/* ----- Testimonials ----- */
.testimonials {
  background: var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; right: -20%;
  width: 60%; height: 100%;
  background: radial-gradient(circle at center, rgba(255, 180, 160, 0.15), transparent 60%);
}
.testimonials h2, .testimonials .section-head p {
  color: var(--white);
  position: relative;
}
.testimonials .section-head p { color: rgba(255,255,255,0.8); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
  position: relative;
}
.testimonial {
  background: rgba(255,255,255,0.06);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.testimonial .stars { color: #ffb84d; margin-bottom: 14px; font-size: 1.1rem; letter-spacing: 0.1em; }
.testimonial p {
  color: rgba(255,255,255,0.95);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.5;
  font-style: italic;
  margin: 0 0 20px;
}
.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.testimonial-author strong { color: var(--white); font-weight: 600; }

/* ----- Stats bar ----- */
.stats-bar {
  background: var(--cream);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--blue);
  line-height: 1;
  font-weight: 500;
}
.stat-num .accent { color: var(--red); }
.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 600;
}

/* ----- FAQ ----- */
section.faq {
  background: var(--cream);
  padding: 64px 0;
}
.faq .section-head {
  max-width: var(--head-width);
  margin: 0 auto 32px;
}
.faq-list {
  max-width: var(--head-width);
  margin-left: auto;
  margin-right: auto;
}
.faq-callout {
  max-width: var(--head-width);
  margin: 40px auto 0;
  font-size: 1rem;
  color: var(--ink);
  text-align: center;
}
.faq-callout a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.faq-callout a:hover { text-decoration: underline; }
@media (max-width: 720px) {
  section.faq { padding: 72px 0; }
}
.faq-item {
  border-bottom: 1px solid var(--border-dark);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border-dark); }
.faq-item summary {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  gap: 20px;
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 16px;
  max-width: 720px;
}

/* ----- FAQ: dark variant ----- */
section.faq-dark {
  background: var(--navy);
  padding: 80px 0;
}
.faq-dark .section-head {
  max-width: none;
  margin: 0 0 40px;
  text-align: left;
}
.faq-dark .section-head h2 {
  color: var(--white);
}
.faq-dark .section-head h2 em {
  font-style: normal;
  color: var(--red);
  display: inline-block;
}
.faq-dark .faq-list {
  max-width: none;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}
.faq-dark .faq-item {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 0;
  transition: background 0.2s ease;
}
.faq-dark .faq-item:first-child { border-top: none; }
.faq-dark .faq-item:hover { background: rgba(255, 255, 255, 0.025); }
.faq-dark .faq-item[open] { background: rgba(255, 255, 255, 0.025); }
.faq-dark .faq-item summary {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  padding: 24px 28px;
  letter-spacing: -0.005em;
}
.faq-dark .faq-item summary::after {
  content: '+';
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 400;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  line-height: 1;
}
.faq-dark .faq-item[open] summary::after { transform: rotate(45deg); }
.faq-dark .faq-item p {
  margin: 0;
  padding: 0 28px 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 900px;
}
.faq-dark .faq-callout {
  max-width: none;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
}
.faq-dark .faq-callout a {
  color: var(--red);
}
.faq-dark .faq-callout a:hover { color: var(--white); }
@media (max-width: 720px) {
  section.faq-dark { padding: 56px 0; }
  .faq-dark .faq-item summary { padding: 20px 22px; font-size: 1rem; gap: 16px; }
  .faq-dark .faq-item p { padding: 0 22px 22px; }
  .faq-dark .faq-item summary::after { width: 30px; height: 30px; font-size: 1rem; }
}

/* ----- CTA banner ----- */
.cta-banner {
  background: var(--blue);
  color: var(--white);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(200,68,44,0.18), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(255,255,255,0.08), transparent 50%);
  pointer-events: none;
}
.cta-banner > .container { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 20px; }
.cta-banner p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 36px;
}
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ----- Contact section (bottom of home) ----- */
.contact-section {
  background: var(--white);
  padding: 104px 0;
  border-top: 1px solid var(--border);
}
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.contact-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 210px;
  transition: var(--transition);
  text-decoration: none;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-card-dark {
  background: var(--ink);
  color: var(--white);
}
.contact-card-dark:hover { color: var(--white); }
.contact-card-light {
  background: var(--white);
  border: 1px solid var(--border-dark);
  color: var(--ink);
}
.contact-card-light:hover { color: var(--ink); border-color: var(--blue); }
.contact-card-icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-card-icon svg { width: 36px; height: 36px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.contact-card-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
}
.contact-card-value {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.contact-card-sub { font-size: 0.95rem; color: var(--muted); }

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}
.contact-detail-icon svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.contact-detail h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-detail p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.contact-hours-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  row-gap: 4px;
  column-gap: 20px;
  font-size: 0.92rem;
}
.contact-hours-list dt {
  font-weight: 600;
  color: var(--ink);
}
.contact-hours-list dd {
  color: var(--ink-soft);
  margin: 0;
}
.contact-hours-list dt.closed + dd { color: var(--red); font-weight: 600; }

.contact-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.95rem;
}
.contact-directions:hover { color: var(--blue-dark); gap: 12px; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-sm);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact-form-block h2 {
  color: var(--ink);
  margin-bottom: 14px;
}
.contact-form-block > p {
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 40px;
  font-size: 1.05rem;
}
.contact-form-block .form-field label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.contact-form-block .form-field label .req { color: var(--red); margin-left: 2px; }
.contact-form-block .btn-submit {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  padding: 16px 40px;
  margin-top: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}
.contact-form-block .btn-submit:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(45, 31, 220, 0.3);
}

@media (max-width: 960px) {
  .contact-section { padding: 72px 0; }
  .contact-section-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-cards-row { grid-template-columns: 1fr; gap: 14px; }
  .contact-card { min-height: 180px; }
}

/* ----- Footer ----- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.footer-brand h3 .accent { color: var(--red); }
.footer-brand p { color: rgba(255,255,255,0.65); max-width: 340px; font-size: 0.95rem; }
.footer-contact { margin-top: 20px; font-size: 0.92rem; }
.footer-contact a { color: var(--white); font-weight: 500; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ----- Location pages ----- */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 56px;
  align-items: start;
}
.expertise-list { list-style: none; }
.expertise-list li {
  padding: 24px 0 24px 44px;
  border-top: 1px solid var(--border);
  position: relative;
}
.expertise-list li:last-child { border-bottom: 1px solid var(--border); }
.expertise-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 34px;
  width: 28px; height: 2px;
  background: var(--red);
}
.expertise-list h4 { margin-bottom: 6px; font-size: 1.1rem; }
.expertise-list p { font-size: 0.95rem; margin: 0; }

.expertise-aside {
  background: var(--blue);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
}
.expertise-aside h3 { color: var(--white); margin-bottom: 16px; }
.expertise-aside p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.expertise-aside .stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.expertise-aside .stats-mini .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.expertise-aside .stats-mini .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
  font-weight: 600;
}

.split-services { background: var(--cream-warm); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.split-col {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.split-col h3 { margin-bottom: 8px; }
.split-col .tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.split-col ul { list-style: none; margin: 20px 0 24px; }
.split-col li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
}
.split-col li:last-child { border-bottom: none; }
.split-col li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.area-strip {
  background: var(--cream);
  padding: 64px 0;
  text-align: center;
}
.area-strip h3 { margin-bottom: 12px; }
.area-strip p { max-width: 580px; margin: 0 auto 36px; }
.area-cities {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.area-city {
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  transition: var(--transition);
}
.area-city:hover, .area-city.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ----- Forms ----- */
.form-card {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 680px;
  margin: 0 auto;
}
.form-card h2 { margin-bottom: 10px; }
.form-card > p { margin-bottom: 32px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--ink-soft);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: var(--transition);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field-full { grid-column: 1 / -1; }
.form-submit { margin-top: 12px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 16px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.contact-info-item { margin-bottom: 28px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .lbl {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 6px;
  display: block;
}
.contact-info-item strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 500;
}
.contact-info-item p { margin-top: 4px; }

/* ----- Gallery ----- */
.gallery-filters {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-chip {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition);
}
.filter-chip:hover, .filter-chip.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
/* (legacy gallery rules removed — use the canonical .gallery-grid/.gallery-item rules above) */

/* ----- Coupons ----- */
.coupon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.coupon {
  background: var(--white);
  border: 2px dashed var(--red);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}
.coupon-featured {
  background: var(--blue);
  border-color: var(--white);
  color: var(--white);
}
.coupon-featured h3, .coupon-featured .coupon-amount { color: var(--white); }
.coupon-featured p { color: rgba(255,255,255,0.85); }
.coupon-featured .coupon-code { background: rgba(255,255,255,0.15); color: var(--white); }
.coupon-amount {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 500;
}
.coupon-amount .currency { font-size: 2rem; vertical-align: top; }
.coupon h3 { margin-bottom: 12px; }
.coupon p { font-size: 0.95rem; margin-bottom: 20px; }
.coupon-code {
  display: inline-block;
  background: var(--cream);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: 'SF Mono', 'Menlo', monospace;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}
.coupon-terms { font-size: 0.78rem; color: var(--muted); }

/* ----- Awards (reviews page) ----- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.award-card {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.award-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: var(--blue);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
}
.award-card h3 { margin-bottom: 8px; font-size: 1.3rem; }
.award-years {
  font-size: 0.85rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

/* ----- Platforms row (reviews) ----- */
.platforms-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.platform-tile {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}
.platform-tile .rating {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--blue);
  line-height: 1;
  font-weight: 500;
}
.platform-tile .name {
  margin-top: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ----- Paint preview page ----- */
.preview-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
  padding: 80px 0;
  text-align: center;
}
.color-swatches {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  max-width: 820px;
  margin: 48px auto 0;
}
.swatch {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}
.swatch:hover { transform: scale(1.12); box-shadow: var(--shadow); }

/* ----- Careers ----- */
.job-list { margin-top: 48px; max-width: 860px; margin-left: auto; margin-right: auto; }
.job-card {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: var(--transition);
}
.job-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.job-card h3 { margin-bottom: 6px; font-size: 1.3rem; }
.job-meta {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ----- About page ----- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.about-story-aside {
  background: var(--cream-warm);
  padding: 40px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--red);
  position: sticky;
  top: 100px;
}
.about-story-aside h4 { margin-bottom: 16px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.value-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 4px solid var(--red);
}
.value-card h3 { margin-bottom: 12px; font-size: 1.25rem; }

/* ----- Legal pages ----- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 0;
}
.legal-content h2 { margin: 40px 0 16px; }
.legal-content h3 { margin: 28px 0 12px; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { margin: 16px 0 16px 24px; }
.legal-content li { color: var(--ink-soft); margin-bottom: 8px; }

/* ----- Utility ----- */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }

/* ----- Mobile ----- */
@media (max-width: 960px) {
  .nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .header-cta .phone-link { display: none; }
  .hero { padding: 72px 0 96px; min-height: 560px; }
  .hero-glass { padding: 48px 32px; }
  .hero-glass h1 { font-size: clamp(2rem, 7vw, 2.6rem); }
  .hero-below-badges { gap: 20px; font-size: 0.82rem; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .expertise-grid { grid-template-columns: 1fr; gap: 40px; }
  .expertise-aside { position: static; }
  .split-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .coupon-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .platforms-row { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-story-aside { position: static; }
  .values-grid { grid-template-columns: 1fr; }
  .color-swatches { grid-template-columns: repeat(6, 1fr); }
  section { padding: 64px 0; }
  .page-hero { padding: 48px 0 56px; }
  .cta-banner { padding: 64px 0; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .header-inner { padding: 14px 18px; gap: 12px; }
  .header-cta .btn { padding: 10px 16px; font-size: 0.85rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .job-card { flex-direction: column; align-items: start; }
  .form-card { padding: 32px 24px; }
  .color-swatches { grid-template-columns: repeat(4, 1fr); }
  .award-card { flex-direction: column; }
  .hero-card { padding: 32px 24px; }
  .included-aside { padding: 32px 24px; }
  .expertise-aside { padding: 32px 24px; }
}

/* Mobile nav: slide-in drawer from the right + backdrop + body scroll lock */
body.nav-open {
  overflow: hidden;
}
/* Lift the header (which contains the drawer) above the backdrop */
body.nav-open .site-header {
  z-index: 400;
}
body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 25, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  animation: nav-backdrop-fade 0.25s ease;
}
@keyframes nav-backdrop-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  width: 360px;
  max-width: 100vw;
  background: var(--cream);
  box-shadow: -16px 0 60px rgba(10, 12, 25, 0.3);
  padding: 28px 26px 36px;
  z-index: 250;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 14px;
  margin-bottom: 8px;
}
.mobile-nav-close {
  background: transparent;
  border: 1.5px solid var(--border-dark);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
  transition: var(--transition);
}
.mobile-nav-close:hover {
  background: var(--blue-tint);
  border-color: var(--blue);
  color: var(--blue);
}
.mobile-nav-items {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.mobile-nav-items > li {
  border-bottom: 1px solid var(--border);
}
.mobile-nav-items > li:last-child {
  border-bottom: none;
}
.mobile-nav-items > li > a,
.mobile-nav-folder-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 4px;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.18s ease;
}
.mobile-nav-items > li > a:hover,
.mobile-nav-folder-toggle:hover {
  color: var(--blue);
}
.mobile-nav-caret {
  font-size: 0.78rem;
  color: var(--muted);
  transition: transform 0.2s ease;
}
.mobile-nav-folder.open .mobile-nav-caret {
  transform: rotate(180deg);
  color: var(--blue);
}
.mobile-nav-sub {
  list-style: none;
  padding: 0 0 14px 14px;
  margin: -4px 0 0;
  display: none;
}
.mobile-nav-folder.open .mobile-nav-sub {
  display: block;
}
.mobile-nav-sub li {
  border: 0;
}
.mobile-nav-sub a {
  display: block;
  padding: 10px 0 10px 14px;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.94rem;
  text-decoration: none;
  border-left: 2px solid var(--border);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.mobile-nav-sub a:hover {
  color: var(--blue);
  border-left-color: var(--blue);
}
.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-cta .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
