/* ============================================================
   3-B'z Painting Co — Master Stylesheet
   Palette: Deep Navy + Warm Gold + Off-White
   ============================================================ */

:root {
  /* Brand */
  --navy-900: #0B1626;
  --navy-800: #111E33;
  --navy-700: #18283F;
  --navy-600: #22344E;
  --gold-500: #C9A24C;
  --gold-400: #D9B468;
  --gold-300: #E8CB91;
  --gold-100: #F6ECD5;

  /* Neutrals */
  --white: #FFFFFF;
  --cream: #FAF7F1;
  --paper: #F4F0E7;
  --line: #E5DFD2;
  --gray-700: #3F4856;
  --gray-500: #6B7280;
  --gray-400: #9AA0AA;

  /* Functional */
  --success: #1F7A3A;
  --danger: #B43A2D;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Layout */
  --container: 1200px;
  --radius: 4px;
  --radius-lg: 10px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(11, 22, 38, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 22, 38, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 22, 38, 0.18);

  --header-h: 122px;
}

/* ============================================================
   Reset / Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-500); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-400); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
  color: var(--navy-900);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 700; letter-spacing: 0; }
p  { margin: 0 0 1em; }

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

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

.lead {
  font-size: 1.18rem;
  color: var(--gray-700);
  line-height: 1.65;
  max-width: 60ch;
}

.section {
  padding: clamp(64px, 8vw, 110px) 0;
}
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-dark {
  background: var(--navy-900);
  color: var(--cream);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .lead { color: var(--gold-100); }
.section-cream { background: var(--cream); }

.center { text-align: center; }
.section-head {
  max-width: 780px;
  margin: 0 auto clamp(32px, 5vw, 64px);
  text-align: center;
}
.section-head .lead { margin: 0 auto; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}
.btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}
.btn-dark {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}
.btn-dark:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-ghost:hover {
  background: var(--navy-900);
  color: var(--white);
}
.btn-lg { padding: 19px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Header
   ============================================================ */
.topbar {
  background: var(--navy-900);
  color: var(--gold-100);
  font-size: .82rem;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(201,162,76,0.18);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.topbar a { color: var(--gold-300); }
.topbar a:hover { color: var(--gold-400); }
.topbar-license {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-license strong { color: var(--white); font-weight: 600; }
.topbar-trust {
  display: flex;
  gap: 22px;
  align-items: center;
}
.topbar-trust span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-trust .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
  display: inline-block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(11,22,38,0.04);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  border: 1px solid var(--gold-500);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.brand-tagline {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold-500);
  font-weight: 600;
  margin-top: 2px;
}
.brand-logo {
  display: block;
  width: 170px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--navy-900);
  font-weight: 500;
  font-size: .96rem;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--gold-500); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-500);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
/* Header call button — compact, click-to-call, fits cleanly in nav at all sizes */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  background: var(--navy-900);
  color: var(--white);
  border: 1.5px solid var(--navy-900);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-call svg {
  flex-shrink: 0;
  color: var(--gold-400);
  transition: color .2s ease;
}
.btn-call:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-call:hover svg { color: var(--navy-900); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--navy-900);
  transition: transform .25s, opacity .2s, top .25s;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  padding: clamp(80px, 11vw, 150px) 0 clamp(70px, 9vw, 130px);
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,162,76,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(201,162,76,0.10) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-800) 100%);
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: -1;
  opacity: .5;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-content h1 .accent {
  color: var(--gold-400);
  font-style: italic;
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-300);
  margin-bottom: 28px;
}
.hero-content .lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  max-width: 56ch;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,0.85);
}
.hero-trust-icon {
  width: 36px; height: 36px;
  background: rgba(201,162,76,0.15);
  border: 1px solid rgba(201,162,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

/* Hero Form Card */
.hero-card {
  background: var(--white);
  color: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid rgba(201,162,76,0.3);
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 24px; right: 24px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
}
.hero-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 6px;
}
.hero-card p {
  color: var(--gray-500);
  font-size: .94rem;
  margin-bottom: 22px;
}
.hero-card-trust {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: .82rem;
  color: var(--gray-500);
}
.hero-card-trust strong { color: var(--navy-900); }

/* Page hero variant */
.page-hero {
  background: var(--navy-900);
  color: var(--white);
  padding: clamp(70px, 9vw, 120px) 0 clamp(60px, 7vw, 90px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(201,162,76,0.22) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
}
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero .lead { color: rgba(255,255,255,0.85); }
.breadcrumbs {
  font-size: .85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  letter-spacing: .04em;
}
.breadcrumbs a { color: var(--gold-300); }
.breadcrumbs a:hover { color: var(--gold-400); }
.breadcrumbs span { margin: 0 8px; opacity: .5; }

/* ============================================================
   Forms
   ============================================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy-900);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,162,76,0.18);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field-honey { display: none; }

/* ============================================================
   Services Grid
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
  color: inherit;
}
.service-card-image {
  aspect-ratio: 4 / 3;
  background: var(--navy-700);
  position: relative;
  overflow: hidden;
}
.service-card-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,22,38,0.55) 100%);
}
.service-card-image .badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  z-index: 2;
}
.service-card-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.45rem; }
.service-card p { color: var(--gray-700); margin-bottom: 18px; }
.service-card-link {
  margin-top: auto;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card:hover .service-card-link { color: var(--gold-400); gap: 12px; }

/* Real-photo override — hides the decorative ::before when a photo is set */
.scene-bath.has-photo,
.scene-kitchen.has-photo,
.scene-paint.has-photo {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.scene-bath.has-photo::before,
.scene-kitchen.has-photo::before,
.scene-paint.has-photo::before { display: none; }

/* Image placeholders — visual scenes built in CSS */
.scene-bath {
  background:
    radial-gradient(circle at 30% 70%, rgba(201,162,76,0.35) 0%, transparent 40%),
    linear-gradient(135deg, #2A4A6B 0%, #1A2E47 50%, #0F1B2C 100%);
}
.scene-bath::before {
  content: '';
  position: absolute;
  left: 18%; top: 22%; width: 64%; height: 64%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.16) 100%);
  border-radius: 14px 14px 4px 4px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.scene-kitchen {
  background:
    radial-gradient(circle at 70% 30%, rgba(232,203,145,0.3) 0%, transparent 45%),
    linear-gradient(160deg, #3A2C1F 0%, #1F1812 60%, #0F0A07 100%);
}
.scene-kitchen::before {
  content: '';
  position: absolute;
  inset: 25% 15% 15% 15%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.05) 50%, transparent 50%),
    linear-gradient(180deg, transparent 60%, rgba(201,162,76,0.15) 60%, rgba(201,162,76,0.15) 100%);
  border-radius: 4px;
  border-top: 2px solid rgba(232,203,145,0.4);
}
.scene-paint {
  background:
    radial-gradient(circle at 40% 30%, rgba(201,162,76,0.25) 0%, transparent 50%),
    linear-gradient(135deg, #B8860B 0%, #8B6914 30%, #2D2010 100%);
}
.scene-paint::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg,
      transparent 0px, transparent 38px,
      rgba(255,255,255,0.08) 38px, rgba(255,255,255,0.08) 40px);
}

/* ============================================================
   Differentiators / Why Us
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.diff-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .2s, transform .2s;
}
.diff-card:hover { border-color: var(--gold-300); transform: translateY(-2px); }
.diff-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: var(--navy-900);
  color: var(--gold-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.diff-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--navy-900);
}
.diff-card p {
  color: var(--gray-700);
  font-size: .94rem;
  margin: 0;
}

/* ============================================================
   Service Areas
   ============================================================ */
.areas-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
  margin: 24px 0 32px;
  list-style: none;
  padding: 0;
}
.areas-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.areas-list li::before {
  content: '✓';
  color: var(--gold-500);
  font-weight: 700;
  font-size: 1.1rem;
}
.area-map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 40%, rgba(201,162,76,0.4) 0%, transparent 12%),
    radial-gradient(circle at 50% 35%, rgba(201,162,76,0.5) 0%, transparent 8%),
    radial-gradient(circle at 65% 50%, rgba(201,162,76,0.4) 0%, transparent 10%),
    radial-gradient(circle at 40% 60%, rgba(201,162,76,0.35) 0%, transparent 9%),
    radial-gradient(circle at 70% 70%, rgba(201,162,76,0.3) 0%, transparent 7%),
    linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--navy-600);
  box-shadow: var(--shadow-md);
}
.area-map::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.area-map-pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--gold-500);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(201,162,76,0.3), 0 4px 8px rgba(0,0,0,0.3);
  z-index: 2;
}
.area-map-label {
  position: absolute;
  font-size: .72rem;
  color: var(--gold-300);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  z-index: 2;
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease;
}
.gallery-item:hover { transform: scale(1.01); }
.gallery-item-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(11,22,38,0.92));
  color: var(--white);
  z-index: 2;
}
.gallery-item-overlay h4 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 1.05rem;
}
.gallery-item-overlay p {
  margin: 0;
  font-size: .82rem;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.gallery-item-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-300);
  font-weight: 700;
}
.testimonial-stars {
  color: var(--gold-500);
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.testimonial-quote {
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-name { font-weight: 600; color: var(--navy-900); }
.testimonial-meta { font-size: .85rem; color: var(--gray-500); }

/* ============================================================
   Pricing tiers
   ============================================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.tier:hover { border-color: var(--gold-300); transform: translateY(-2px); }
.tier-featured {
  border-color: var(--gold-500);
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 50%);
  box-shadow: var(--shadow-md);
}
.tier-featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-name {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold-500);
  margin-bottom: 10px;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 6px;
}
.tier-price .small { font-size: .9rem; font-weight: 400; color: var(--gray-500); }
.tier-desc {
  color: var(--gray-700);
  font-size: .96rem;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.tier-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--gray-700);
  font-size: .96rem;
}
.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 700;
}

/* ============================================================
   Process Steps
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 32px; left: 6%; right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-300) 100%);
  z-index: 0;
  opacity: .5;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--gold-500);
  color: var(--gold-500);
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.process-step p {
  font-size: .92rem;
  color: var(--gray-700);
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-500); }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold-500);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; transform: rotate(0); }
.faq-item-body {
  padding: 0 0 24px;
  color: var(--gray-700);
  line-height: 1.7;
  max-width: 70ch;
}
.faq-item-body p:last-child { margin-bottom: 0; }

/* ============================================================
   Inclusions list (what's included)
   ============================================================ */
.inclusions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.inclusions li {
  padding: 12px 0 12px 36px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.inclusions li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 22px; height: 22px;
  background: var(--gold-500);
  border-radius: 50%;
}
.inclusions li::after {
  content: '✓';
  position: absolute;
  left: 5px; top: 12px;
  color: var(--navy-900);
  font-weight: 700;
  font-size: .82rem;
}
.inclusions li strong { color: var(--navy-900); display: block; margin-bottom: 2px; }
.inclusions li span { color: var(--gray-500); font-size: .9rem; }

/* ============================================================
   Two Column Sections
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.two-col-image-tall { aspect-ratio: 3 / 4; }

/* ============================================================
   CTA Block
   ============================================================ */
.cta-block {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-block::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201,162,76,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201,162,76,0.12) 0%, transparent 50%);
}
.cta-block h2 { color: var(--white); }
.cta-block p { color: rgba(255,255,255,0.82); max-width: 60ch; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-block .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ============================================================
   Stats Bar
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 50px 0;
  border-top: 1px solid rgba(201,162,76,0.2);
  border-bottom: 1px solid rgba(201,162,76,0.2);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy-900);
  color: var(--gold-100);
  padding: 80px 0 0;
  font-size: .94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
}
.site-footer h5 {
  font-family: var(--font-sans);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-400);
  font-weight: 700;
  margin: 0 0 18px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li { margin-bottom: 10px; }
.site-footer a {
  color: var(--gold-100);
  opacity: .85;
}
.site-footer a:hover { color: var(--gold-400); opacity: 1; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p {
  color: rgba(246,236,213,0.7);
  margin: 14px 0 18px;
  font-size: .94rem;
  line-height: 1.6;
}
.footer-license {
  display: inline-block;
  border: 1px solid rgba(201,162,76,0.35);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: .85rem;
}
.footer-license strong { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(246,236,213,0.55);
  font-size: .85rem;
}
.footer-bottom a { color: rgba(246,236,213,0.7); }

/* Mobile sticky call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 14px 20px;
  z-index: 90;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .92rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid,
  .gallery-grid,
  .testimonials,
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-wrap { grid-template-columns: 1fr; gap: 36px; }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process::before { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .topbar-trust { display: none; }
  .topbar-inner { justify-content: center; }
  .inclusions { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; padding-bottom: 56px; }
  .nav { height: 70px; gap: 16px; }
  .brand-logo { width: 140px; max-height: 52px; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 32px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform .25s ease;
    align-items: stretch;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a {
    display: block;
    padding: 16px 4px;
    font-size: 1.05rem;
  }
  .menu-toggle { display: block; }
  .nav-cta { gap: 10px; }
  .nav-cta .btn-primary { display: none; } /* Free Estimate hidden on mobile — sticky call bar handles bottom CTA */
  .btn-call { padding: 10px 14px; font-size: .92rem; gap: 7px; }
  .btn-call svg { width: 14px; height: 14px; }
  .brand-logo { width: 130px; }
  .topbar { font-size: .72rem; }
  .topbar-inner { height: 34px; }
  .services-grid,
  .gallery-grid,
  .testimonials,
  .tiers,
  .diff-grid,
  .process { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px; padding: 32px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-card { padding: 28px 22px; }
  .hero-trust { gap: 18px; }
  .hero-trust-item { font-size: .85rem; }
  .mobile-call-bar { display: block; }
}

@media (max-width: 380px) {
  .btn-call { padding: 9px 11px; font-size: .82rem; gap: 6px; }
  .brand-logo { width: 110px; }
}

/* ============================================================
   Utility
   ============================================================ */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-gold { color: var(--gold-500); }
.text-center { text-align: center; }
.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 60px 0;
}
