/* ═══════════════════════════════════════════════════════════════
   House Painting LLC — Design System (v2)
   Direction: bright, friendly, rounded & photo-driven (reference style)
   Identity: House Painting colors + classic SERIF headings (logo-true).
   Navy + flag red + brass gold + cream. Soft organic shapes, pill buttons.
   Display: Playfair Display · Labels: Oswald · Body: Inter.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Brand palette (from the client logo) */
  --navy-900: #0d1828;
  --navy: #14243f;
  --navy-700: #1d3457;
  --navy-500: #2c4a76;
  --red: #c1272d;
  --red-600: #a81f25;
  --red-700: #8c181d;
  --gold: #c2a14d;
  --gold-soft: #dcc587;
  --gold-deep: #a8853a;
  --cream: #f7f2e7;
  --cream-2: #fbf8f1;
  --sky: #eef3f8;
  --paper: #ffffff;

  --ink: #16233a;
  --body: #4a586e;
  --muted: #7b889c;
  --line: #ebe3d3;
  --line-cool: #e4ebf2;

  --shadow-sm: 0 2px 8px rgba(20, 36, 63, 0.06);
  --shadow: 0 18px 40px -20px rgba(20, 36, 63, 0.22);
  --shadow-lg: 0 34px 70px -30px rgba(20, 36, 63, 0.4);
  --shadow-red: 0 14px 30px -12px rgba(193, 39, 45, 0.5);

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 100px;
  /* organic blob radii */
  --blob: 58% 42% 47% 53% / 48% 45% 55% 52%;
  --blob-2: 42% 58% 60% 40% / 54% 46% 54% 46%;

  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-label: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1180px;
  --wrap-wide: 1280px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ── Typography (SERIF headings — logo-true) ─────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(1.95rem, 3.8vw, 3rem); line-height: 1.12; }
h2 { font-size: clamp(1.6rem, 2.9vw, 2.25rem); }
h3 { font-size: clamp(1.12rem, 1.6vw, 1.35rem); }
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--gold-soft); }
.eyebrow.on-dark::before { background: var(--red); }

.lede { font-size: 1.18rem; color: var(--body); }

.rule-stars { display: flex; align-items: center; justify-content: center; gap: 0.8rem; color: var(--gold); }
.rule-stars::before, .rule-stars::after { content: ""; height: 1.5px; width: 60px; background: linear-gradient(90deg, transparent, var(--gold)); }
.rule-stars::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* ── Layout ──────────────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section.alt { background: var(--cream); }
.section.cool { background: var(--sky); }
.section-tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.center { text-align: center; }
.measure { max-width: 660px; }
.measure.center, .center.measure { margin-left: auto; margin-right: auto; }

/* ── Buttons (pills) ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--r-pill);
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
  box-shadow: var(--shadow-red);
}
.btn:hover { background: var(--red-600); border-color: var(--red-600); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(193, 39, 45, 0.55); }
.btn svg { transition: transform 0.18s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); box-shadow: none; }
.btn-ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }

.btn-navy { background: var(--navy); border-color: var(--navy); color: #fff; box-shadow: 0 14px 30px -14px rgba(20, 36, 63, 0.6); }
.btn-navy:hover { background: var(--navy-700); border-color: var(--navy-700); }

.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--navy-900); box-shadow: 0 14px 30px -14px rgba(194, 161, 77, 0.6); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }

.btn-on-dark { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, 0.5); box-shadow: none; }
.btn-on-dark:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn-lg { padding: 1.1rem 2.3rem; font-size: 1rem; }
.btn-block { width: 100%; }

.text-link {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.text-link svg { transition: transform 0.18s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(255, 255, 255, 0.96); }
.header-inner { max-width: var(--wrap-wide); margin: 0 auto; padding: 0.5rem 24px; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 60px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 0.4rem; margin-left: auto; }
.main-nav > a, .nav-sub-trigger {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy);
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.15s, background 0.15s;
}
.main-nav > a:hover, .nav-sub-trigger:hover { color: var(--red); background: rgba(193, 39, 45, 0.07); }
.main-nav a[aria-current="page"], .nav-sub-trigger[aria-current="page"] { color: var(--red); }

.nav-item-sub { position: relative; }
.nav-sub-trigger svg { transition: transform 0.2s var(--ease); }
.nav-item-sub:hover .nav-sub-trigger svg { transform: rotate(180deg); }
.sub-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding-top: 12px; opacity: 0; visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-item-sub:hover .sub-menu, .nav-item-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.sub-menu-inner {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  min-width: 262px;
  display: grid;
  gap: 1px;
}
.sub-menu-inner a { padding: 0.62rem 0.85rem; border-radius: var(--r-sm); font-size: 0.95rem; font-weight: 500; color: var(--navy); transition: background 0.14s, color 0.14s; }
.sub-menu-inner a:hover { background: var(--cream); color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 0.6rem; }
.header-phone .ph-ic { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--gold-soft); flex-shrink: 0; }
.header-phone .ph-text { display: flex; flex-direction: column; line-height: 1.15; }
.header-phone .ph-label { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.62rem; color: var(--muted); }
.header-phone .ph-num { font-weight: 700; color: var(--navy); font-size: 0.98rem; font-family: var(--font-body); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.burger span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s; }
body.menu-open .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0;
  background: var(--navy); color: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease);
  z-index: 110;
}
body.menu-open .mobile-nav { transform: translateX(0); }

.mobile-nav .m-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
.mobile-nav .m-brand { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #fff; display: inline-flex; align-items: center; gap: 0.45rem; }
.mobile-nav .m-star { color: var(--red); }
.mobile-nav .m-close {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); color: #fff;
  font-size: 1.9rem; line-height: 1;
  transition: background 0.15s, transform 0.15s;
}
.mobile-nav .m-close:hover { background: var(--red); transform: rotate(90deg); }

.mobile-nav .m-scroll {
  flex: 1; overflow-y: auto;
  padding: 1.1rem 1.6rem 1.4rem;
  display: flex; flex-direction: column;
}
.mobile-nav .m-scroll a {
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.07em;
  font-size: 1.05rem; color: rgba(255, 255, 255, 0.92);
  padding: 0.82rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.15s, padding-left 0.15s;
}
.mobile-nav .m-scroll a:hover, .mobile-nav .m-scroll a:active { color: var(--gold-soft); padding-left: 0.3rem; }
.mobile-nav .m-acc { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.mobile-nav .m-acc summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.07em;
  font-size: 1.05rem; color: rgba(255, 255, 255, 0.92);
  padding: 0.82rem 0;
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.15s;
}
.mobile-nav .m-acc summary::-webkit-details-marker { display: none; }
.mobile-nav .m-acc summary::after {
  content: "+"; font-family: var(--font-body); font-size: 1.5rem; line-height: 1;
  color: var(--gold-soft); transition: transform 0.2s var(--ease);
}
.mobile-nav .m-acc[open] summary::after { transform: rotate(45deg); }
.mobile-nav .m-acc summary:hover { color: var(--gold-soft); }
.mobile-nav .m-acc-body { display: flex; flex-direction: column; padding-bottom: 0.5rem; }
.mobile-nav .m-acc-body a { border-bottom: none !important; }
.mobile-nav .m-sub {
  font-size: 0.95rem !important; letter-spacing: 0.04em !important;
  color: rgba(255, 255, 255, 0.78) !important; padding: 0.62rem 0 0.62rem 0.9rem !important;
}
.mobile-nav .m-sub:hover { padding-left: 1.2rem !important; color: var(--gold-soft) !important; }

.mobile-nav .m-foot {
  flex-shrink: 0;
  padding: 1.2rem 1.6rem calc(1.4rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid; gap: 0.9rem;
}
.mobile-nav .m-call {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  color: var(--gold-soft); font-weight: 600; font-size: 0.95rem;
}
.menu-backdrop { position: fixed; inset: 0; background: rgba(13, 24, 40, 0.5); opacity: 0; visibility: hidden; transition: opacity 0.3s; z-index: 90; }
body.menu-open .menu-backdrop { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }

/* ── Hero (light, photo-driven, organic) ─────────────────── */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 60%, var(--paper) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -160px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle at 50% 50%, rgba(44, 74, 118, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) 24px clamp(4rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { color: var(--navy); }
.hero h1 .accent { color: var(--red); display: inline-block; position: relative; z-index: 0; }
.hero h1 .accent::after {
  content: "";
  position: absolute; left: -0.04em; right: -0.04em; bottom: 0.05em; height: 0.2em;
  background: var(--gold);
  border-radius: 100px;
  z-index: -1; /* sits behind the text, not over it */
}
.hero-sub { color: var(--body); font-size: 1.2rem; margin-top: 1.4rem; max-width: 30em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-assure { margin-top: 1.8rem; font-size: 0.92rem; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.hero-assure .star-row { color: var(--gold); display: inline-flex; gap: 2px; }

.hero-figure { position: relative; }
.hero-figure .frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--blob);
  border: 5px solid var(--paper);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  animation: blobmorph 16s ease-in-out infinite;
}
.hero-figure .frame img { width: 100%; height: 100%; object-fit: cover; }
@keyframes blobmorph {
  0%, 100% { border-radius: 58% 42% 47% 53% / 48% 45% 55% 52%; }
  50% { border-radius: 45% 55% 55% 45% / 52% 50% 50% 48%; }
}
.hero-figure::before {
  content: "";
  position: absolute; z-index: -1;
  top: -28px; right: -22px;
  width: 130px; height: 130px;
  background: var(--gold); opacity: 0.22;
  border-radius: 50%;
}
.hero-figure::after {
  content: "";
  position: absolute;
  bottom: 18px; left: -16px;
  width: 60px; height: 60px;
  background: var(--red); opacity: 0.16;
  border-radius: 50%;
}
.hero-badge {
  position: absolute;
  bottom: 8px; left: -10px;
  background: var(--paper); color: var(--navy);
  border-radius: var(--r);
  padding: 0.95rem 1.2rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.8rem;
  max-width: 260px;
  z-index: 2;
}
.hero-badge .hb-ic { color: var(--red); flex-shrink: 0; }
.hero-badge strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); display: block; line-height: 1.1; }
.hero-badge span { font-size: 0.8rem; color: var(--muted); }

/* ── Trust strip (light, pill chips) ─────────────────────── */
.trust-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-strip .wrap-wide { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem 1rem; padding-top: 1.6rem; padding-bottom: 1.6rem; }
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.07em;
  font-size: 0.8rem; font-weight: 500; color: var(--navy);
  background: var(--cream); border: 1px solid var(--line);
  padding: 0.55rem 1.1rem; border-radius: var(--r-pill);
}
.trust-item svg { color: var(--red); flex-shrink: 0; }

/* ── Value props ─────────────────────────────────────────── */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 3rem; }
.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.1rem 1.7rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--red);
  margin-bottom: 1.3rem;
  border: 1px solid var(--line);
}
.value-card h3 { font-size: 1.24rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.96rem; color: var(--body); }

/* ── Services (rounded photo cards w/ label) ─────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.7rem; }
.svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.svc-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; margin: 10px 10px 0; border-radius: var(--r); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.06); }
.svc-featured-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--red); color: #fff;
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.68rem; font-weight: 600;
  padding: 0.32rem 0.75rem; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.svc-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.svc-icon { color: var(--red); margin-bottom: 0.6rem; }
.svc-body h3 { font-size: 1.34rem; margin-bottom: 0.4rem; }
.svc-tagline { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; color: var(--gold-deep); margin-bottom: 0.7rem; }
.svc-body p { font-size: 0.96rem; color: var(--body); margin-bottom: 1.2rem; }
.svc-body .text-link { margin-top: auto; }

/* ── Split / About snippet ───────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.flip .split-media { order: -1; }
.split-media { position: relative; }
.split-media img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.split-media::before {
  content: "";
  position: absolute; z-index: -1;
  top: -22px; left: -22px;
  width: 150px; height: 150px;
  background: var(--cream);
  border: 2px solid var(--gold);
  opacity: 0.5;
  border-radius: 50%;
}
.split-media .stamp {
  position: absolute; right: -18px; bottom: -18px;
  width: 132px; height: 132px;
  background: radial-gradient(circle at 50% 32%, var(--red) 0%, var(--red-700) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg), inset 0 1px 2px rgba(255, 255, 255, 0.25);
  border: 4px solid var(--paper);
}
.split-media .stamp::before {
  content: ""; position: absolute; inset: 9px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.5);
}
.stamp-star { color: var(--gold-soft); font-size: 1.05rem; line-height: 1; letter-spacing: 0.15em; }
.stamp-est {
  font-family: var(--font-label); text-transform: uppercase;
  letter-spacing: 0.34em; font-size: 0.56rem; font-weight: 500;
  margin: 4px 0 1px; padding-left: 0.34em;
  color: rgba(255, 255, 255, 0.92);
}
.stamp-year {
  font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; line-height: 1;
}
.split-body p + p { margin-top: 1rem; }
.split-body .btn, .split-body .text-link { margin-top: 1.8rem; }

.check-list { display: grid; gap: 0.85rem; margin: 1.6rem 0; }
.check-list li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--ink); font-weight: 500; }
.check-list li svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }

/* ── Dark band (Why choose us) ───────────────────────────── */
.band-dark { background: var(--navy); color: #fff; position: relative; overflow: hidden; border-radius: var(--r-xl); }
.band-dark.full { border-radius: 0; }
.band-dark::before {
  content: ""; position: absolute; top: -120px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(194, 161, 77, 0.16), transparent 70%);
  border-radius: 50%;
}
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .reason-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2.6rem; margin-top: 2.6rem; position: relative; }
.reason { display: flex; gap: 1.1rem; padding-bottom: 1.6rem; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.reason-num { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-soft); line-height: 1; flex-shrink: 0; width: 2.2rem; }
.reason h3 { font-size: 1.18rem; margin-bottom: 0.35rem; }
.reason p { color: rgba(255, 255, 255, 0.76); font-size: 0.96rem; }

/* wrap a dark band inside the section with rounded card look */
.band-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.band-dark .band-pad { padding: clamp(2.6rem, 5vw, 4rem); position: relative; z-index: 1; }

/* ── Process timeline ────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; margin-top: 3rem; counter-reset: step; }
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.6rem 1.5rem 1.6rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: -22px; left: 1.5rem;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  border-radius: 50%;
  box-shadow: var(--shadow-red);
}
.step h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.94rem; color: var(--body); }

/* ── Stats ───────────────────────────────────────────────── */
.statbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat b { font-family: var(--font-display); font-size: clamp(1.7rem, 2.6vw, 2.2rem); color: var(--gold-soft); display: block; line-height: 1; }
.stat span { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; color: rgba(255, 255, 255, 0.8); margin-top: 0.5rem; display: block; }

/* ── Testimonials ────────────────────────────────────────── */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.7rem; margin-top: 3rem; }
.review-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem 1.8rem; }
.review-stars { color: var(--gold); display: inline-flex; gap: 2px; margin-bottom: 1rem; }
.review-card blockquote { font-size: 1.02rem; color: var(--ink); line-height: 1.6; }
.review-author { margin-top: 1.4rem; display: flex; align-items: center; gap: 0.7rem; }
.review-author .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--gold-soft); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.review-author b { color: var(--navy); font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; display: block; }
.review-author span { font-size: 0.82rem; color: var(--muted); }
.reviews-widget { margin-top: 2.6rem; }
.reviews-widget iframe { max-width: 100%; }

/* ── Service area ────────────────────────────────────────── */
.area-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.area-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 0.5rem 1.1rem;
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.78rem; color: var(--navy); margin-bottom: 1.2rem;
}
.area-badge svg { color: var(--red); }
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem 1rem; }
.city-grid li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.94rem; color: var(--ink); font-weight: 500; }
.city-grid li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── Final CTA (rounded red band) ────────────────────────── */
.cta-band { background: var(--paper); }
.cta-band .cta-inner {
  max-width: var(--wrap); margin: 0 auto;
  background: linear-gradient(135deg, var(--red-700), var(--red));
  color: #fff; text-align: center;
  border-radius: var(--r-xl);
  padding: clamp(3rem, 6vw, 5rem) 24px;
  position: relative; overflow: hidden;
}
.cta-band .cta-inner::before {
  content: ""; position: absolute; top: -100px; left: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  border-radius: 50%;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.92); max-width: 36em; margin: 1rem auto 0; font-size: 1.12rem; position: relative; }
.cta-band .hero-cta { justify-content: center; margin-top: 2.2rem; position: relative; }

/* ── Estimate / Contact form ─────────────────────────────── */
.estimate { background: var(--cream); }
.estimate-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.estimate-pitch .check-list { margin: 1.6rem 0 2rem; }
.estimate-contact { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.ec-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.05em;
  font-weight: 600; font-size: 0.92rem;
  padding: 0.85rem 1.5rem; border-radius: var(--r-pill);
  background: var(--navy); color: #fff;
  transition: background 0.18s, transform 0.18s;
}
.ec-btn:hover { background: var(--navy-700); transform: translateY(-2px); }
.ec-btn.ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.ec-btn.ghost:hover { background: var(--navy); color: #fff; }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.35rem; margin-bottom: 0.3rem; }
.form-sub { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.6rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.74rem; font-weight: 500; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 0.97rem;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--cream-2); color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s; width: 100%;
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(193, 39, 45, 0.1); }
.consent { display: flex; align-items: flex-start; gap: 0.6rem; margin: 1.2rem 0; font-size: 0.84rem; color: var(--body); }
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--red); flex-shrink: 0; }
.consent a { color: var(--red); text-decoration: underline; }
.form-card .btn { width: 100%; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.7); }
.footer-main { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer-wordmark { font-family: var(--font-display); font-size: 1.6rem; color: #fff; letter-spacing: 0.01em; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-wordmark .star { color: var(--red); }
.footer-tag { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.7rem; color: var(--gold-soft); margin: 0.5rem 0 1rem; }
.footer-brand p { font-size: 0.94rem; line-height: 1.6; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer-social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: #fff; transition: background 0.18s, transform 0.18s; }
.footer-social a:hover { background: var(--red); transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.82rem; color: var(--gold-soft); margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a, .footer-contact span { font-size: 0.94rem; color: rgba(255, 255, 255, 0.7); transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-contact { display: grid; gap: 0.95rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.65rem; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact li > span { display: flex; flex-direction: column; }
.footer-contact .sms-link { color: var(--gold-soft); font-size: 0.84rem; }
.footer-pay { margin-top: 1.2rem; font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 2.5rem; padding-top: 1.6rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem; font-size: 0.84rem; color: rgba(255, 255, 255, 0.55); }
.footer-cred { color: var(--gold-soft); }

/* Inside Bar */
.inside-bar { background: #000; padding: 14px 0; }
.inside-bar-inner { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.inside-bar img { display: block; height: 24px; width: auto; }
.inside-bar-links { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; }
.inside-bar-links a { color: rgba(255, 255, 255, 0.4); transition: color 0.2s; }
.inside-bar-links a:hover { color: rgba(255, 255, 255, 0.85); }
.inside-bar-sep { color: rgba(255, 255, 255, 0.2); }

/* ── Page hero (interior pages — light w/ soft accent) ───── */
.page-hero { background: linear-gradient(180deg, var(--cream-2), var(--cream)); position: relative; overflow: hidden; text-align: center; }
.page-hero::before {
  content: ""; position: absolute; top: -140px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(44, 74, 118, 0.08), transparent 70%);
  border-radius: 50%;
}
.page-hero .wrap { position: relative; padding-top: clamp(3rem, 6vw, 4.5rem); padding-bottom: clamp(3rem, 6vw, 4.5rem); }
.page-hero h1 { color: var(--navy); }
.page-hero p { color: var(--body); max-width: 40em; margin: 1.1rem auto 0; font-size: 1.12rem; }
.crumbs { display: flex; justify-content: center; gap: 0.5rem; font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.74rem; color: var(--muted); margin-bottom: 1.4rem; }
.crumbs a:hover { color: var(--red); }
.crumbs .sep { color: var(--gold); }

/* ── Service detail ──────────────────────────────────────── */
.svc-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.svc-detail-grid .prose h2 { margin: 2.4rem 0 1rem; }
.svc-detail-grid .prose h2:first-child { margin-top: 0; }
.svc-detail-grid .prose p { margin-bottom: 1rem; }
.svc-detail-grid .steps { grid-template-columns: repeat(2, 1fr); gap: 2.4rem 1.6rem; }
.svc-hero-img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow); margin-bottom: 2rem; aspect-ratio: 16 / 10; object-fit: cover; }
.deliver-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 1.4rem 0; }
.deliver-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.96rem; color: var(--ink); }
.deliver-list li svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }

.faq-item { border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); margin-bottom: 0.9rem; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.15rem 1.3rem; font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-body); font-size: 1.5rem; color: var(--red); transition: transform 0.2s var(--ease); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.3rem 1.25rem; color: var(--body); font-size: 0.98rem; }

.svc-aside { position: sticky; top: 96px; display: grid; gap: 1.2rem; }
.aside-card { background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: 1.9rem; }
.aside-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.5rem; }
.aside-card p { color: rgba(255, 255, 255, 0.78); font-size: 0.94rem; margin-bottom: 1.3rem; }
.aside-card .btn { width: 100%; margin-bottom: 0.7rem; }
.aside-other { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; }
.aside-other h4 { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; color: var(--gold-deep); margin-bottom: 1rem; }
.aside-other a { display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0; font-weight: 500; color: var(--navy); font-size: 0.95rem; border-bottom: 1px solid var(--line); transition: color 0.14s, padding 0.14s; }
.aside-other a:last-child { border-bottom: none; }
.aside-other a:hover { color: var(--red); padding-left: 4px; }
.aside-other a svg { color: var(--red); }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery-grid figure { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid .gal-item {
  padding: 0; border: 0; background: none; display: block;
  cursor: zoom-in; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); position: relative;
}
.gallery-grid .gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-grid .gal-item:hover img { transform: scale(1.07); }
.gallery-grid .gal-item::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(13, 24, 40, 0); transition: background 0.25s var(--ease);
}
.gallery-grid .gal-item:hover::after { background: rgba(13, 24, 40, 0.18); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 18, 30, 0.93);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease);
  backdrop-filter: blur(2px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-img {
  max-width: 92vw; max-height: 86vh; width: auto; height: auto;
  border-radius: var(--r); box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, 0.12);
  animation: lbpop 0.28s var(--ease);
}
@keyframes lbpop { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.lb-close, .lb-nav {
  position: absolute; background: rgba(255, 255, 255, 0.12); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  transition: background 0.15s, transform 0.15s; backdrop-filter: blur(6px);
  font-family: var(--font-body); line-height: 1;
}
.lb-close { top: 18px; right: 18px; width: 46px; height: 46px; font-size: 1.7rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; }
.lb-prev { left: 18px; } .lb-next { right: 18px; }
.lb-close:hover { background: var(--red); transform: rotate(90deg); }
.lb-nav:hover { background: var(--red); }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }
.lb-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9); font-family: var(--font-label);
  letter-spacing: 0.12em; font-size: 0.82rem;
  background: rgba(0, 0, 0, 0.35); padding: 0.35rem 0.9rem; border-radius: var(--r-pill);
}
@media (max-width: 560px) {
  .lb-nav { width: 44px; height: 44px; font-size: 1.6rem; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-close { top: 10px; right: 10px; }
}

/* ── Legal / prose pages ─────────────────────────────────── */
.legal { max-width: 780px; margin: 0 auto; }
.legal h2 { font-size: 1.5rem; margin: 2.2rem 0 0.8rem; }
.legal h3 { font-size: 1.18rem; margin: 1.6rem 0 0.6rem; }
.legal p, .legal li { color: var(--body); margin-bottom: 0.9rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; }
.legal a { color: var(--red); text-decoration: underline; }
.legal .updated { font-size: 0.88rem; color: var(--muted); }

/* ── 404 / thank-you ─────────────────────────────────────── */
.simple-page { min-height: 64vh; display: grid; place-items: center; text-align: center; padding: 4rem 24px; background: linear-gradient(180deg, var(--cream-2), var(--paper)); }
.simple-page .big { font-family: var(--font-display); font-size: clamp(4rem, 14vw, 8rem); color: var(--gold); line-height: 1; }
.simple-page .hero-cta { justify-content: center; margin-top: 2rem; }

/* ── Reveal animation ────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-figure .frame { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2.4rem 1.6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-aside { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav, .header-phone { display: none; }
  .burger { display: flex; }
  .header-actions { margin-left: auto; }
  .header-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { max-width: 420px; margin: 0 auto; order: -1; }
  .split, .area-wrap, .estimate-grid, .band-dark .reason-grid { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .band-dark .reason-grid { gap: 1.4rem; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .value-grid, .svc-grid, .gallery-grid, .statbar, .svc-aside { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .deliver-list, .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps, .svc-detail-grid .steps { grid-template-columns: 1fr; }
  .hero-cta .btn, .cta-band .btn { width: 100%; }
  .inside-bar-inner { flex-direction: column; text-align: center; gap: 10px; }
  .statbar { gap: 1.6rem; }
}
