/* ================================================================
   BATHROOM PROJECT PROS — Main Stylesheet
   Warm & Premium · Fraunces + DM Sans
   ================================================================ */

/* ─── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --clay:        #B8734A;
  --clay-deep:   #9A5C38;
  --clay-soft:   rgba(184,115,74,0.10);
  --sand:        #F5EFE7;
  --cream:       #FDFBF7;
  --espresso:    #2B211C;
  --espresso-mid:#3E312A;
  --sage:        #7D8A6E;
  --sage-soft:   rgba(125,138,110,0.12);
  --gold:        #C9A227;
  --ink:         #423630;
  --muted:       #7A6B62;
  --line:        #E4D9CC;
  --white:       #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w: 1240px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-pill: 100px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 12px rgba(43,33,28,0.06);
  --shadow-md: 0 12px 36px rgba(43,33,28,0.10);
  --shadow-lg: 0 28px 70px rgba(43,33,28,0.16);
}

/* ─── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ─── UTILITY ────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--clay);
  display: block;
}
.eyebrow.centered { justify-content: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--clay);
}
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold); }

.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 580px;
  margin-top: 16px;
}
.section-sub.light { color: rgba(253,251,247,0.72); }

.card-text {
  display: block;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--clay);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 6px 20px rgba(184,115,74,0.28);
  white-space: nowrap;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clay-deep);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(184,115,74,0.36); color: var(--white); }
.btn-primary:hover::after { transform: translateY(0); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--espresso);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--espresso); background: var(--sand); transform: translateY(-2px); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(253,251,247,0.32);
  cursor: pointer;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
  white-space: nowrap;
}
.btn-ghost-light:hover { border-color: var(--cream); background: rgba(253,251,247,0.08); color: var(--cream); }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--espresso);
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.btn-call:hover { background: var(--clay); color: var(--white); transform: translateY(-2px); }

/* ─── ANNOUNCEMENT BAR ───────────────────────────────────────────── */
.announce-bar {
  background: var(--espresso);
  color: rgba(253,251,247,0.86);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 120;
}
.announce-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.announce-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(0.8); }
}

/* ─── NAVBAR ─────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 110;
  background: rgba(253,251,247,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  padding: 0 28px;
}
.navbar.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(43,33,28,0.06);
  background: rgba(253,251,247,0.96);
}
.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--clay);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease);
}
.nav-logo-mark svg { width: 24px; height: 24px; }
.nav-logo:hover .nav-logo-mark { transform: rotate(-8deg) scale(1.05); }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.nav-logo-text em { font-style: italic; color: var(--clay); display: block; font-size: 15px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 9px 15px;
  border-radius: var(--r-sm);
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 15px; right: 15px; bottom: 3px;
  height: 1.5px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--clay); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { flex-shrink: 0; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 9px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--espresso); margin: 5px 0; border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--cream);
  padding: 12px 28px 28px;
  border-top: 1px solid var(--line);
}
.mobile-menu.open { display: block; animation: slideDown 0.4s var(--ease); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; }
.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-call {
  display: inline-flex !important;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
  padding: 15px !important;
  font-size: 15px !important;
}

/* ─── SCROLL REVEAL SYSTEM ───────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="scale"].revealed { transform: scale(1); }

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 96px 0 110px;
  background: var(--sand);
  overflow: hidden;
}
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.55;
}
.hero-bg-blob.b1 { width: 520px; height: 520px; background: rgba(184,115,74,0.20); top: -180px; right: -120px; }
.hero-bg-blob.b2 { width: 420px; height: 420px; background: rgba(125,138,110,0.20); bottom: -170px; left: -110px; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 68px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.6vw, 70px);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.06;
  letter-spacing: -0.028em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--clay); }
.hero-content { position: relative; z-index: 2; }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-trust-item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500; color: var(--ink); }
.hero-trust-item svg { color: var(--clay); flex-shrink: 0; }

/* Hero visual — image slot with fallback */
.hero-visual { position: relative; }
.hero-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, var(--clay) 0%, var(--clay-deep) 45%, var(--espresso) 100%);
  box-shadow: var(--shadow-lg);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(43,33,28,0.42) 100%);
  pointer-events: none;
}
/* decorative frame */
.hero-media-frame {
  position: absolute;
  inset: -14px -14px 26px 26px;
  border: 1.5px solid var(--clay);
  border-radius: var(--r-lg);
  z-index: -1;
  opacity: 0.5;
}

/* Floating badge cards */
.hero-badge {
  position: absolute;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 15px 19px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: floatY 5.5s ease-in-out infinite;
}
.hero-badge.b-top { top: 34px; left: -40px; animation-delay: 0s; }
.hero-badge.b-bottom { bottom: 46px; right: -34px; animation-delay: 2.2s; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-13px); }
}
.hero-badge-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--clay-soft);
  color: var(--clay);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1;
}
.hero-badge span { font-size: 11.5px; color: var(--muted); font-weight: 500; }

/* ─── MARQUEE STRIP ──────────────────────────────────────────────── */
.marquee {
  background: var(--espresso);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 46px;
  animation: marqueeScroll 34s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: rgba(253,251,247,0.72);
  flex-shrink: 0;
}
.marquee-item svg { color: var(--gold); flex-shrink: 0; }

/* ─── SERVICES ───────────────────────────────────────────────────── */
.services { padding: 108px 0; background: var(--cream); position: relative; }
.services-header { text-align: center; margin-bottom: 62px; }
.services-header .section-sub { margin: 16px auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 26px 28px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clay), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-media {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
  background: linear-gradient(140deg, var(--sand), var(--clay-soft));
}
.service-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-card:hover .service-media img { transform: scale(1.07); }
.service-media-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay);
  opacity: 0.42;
}
.service-media-icon svg { width: 46px; height: 46px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 9px;
  letter-spacing: -0.01em;
}
.service-card .card-text { font-size: 14px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--clay);
  transition: gap 0.35s var(--ease);
}
.service-card:hover .service-link { gap: 12px; }

/* ─── PROCESS ────────────────────────────────────────────────────── */
.process {
  padding: 108px 0;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.process-header { text-align: center; margin-bottom: 66px; }
.process-header .section-sub { margin: 16px auto 0; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--clay) 0 7px, transparent 7px 15px);
  opacity: 0.35;
}
.process-step { text-align: center; position: relative; }
.process-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--clay);
  color: var(--clay);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  transition: background 0.45s var(--ease), color 0.45s var(--ease), transform 0.45s var(--ease);
}
.process-step:hover .process-num {
  background: var(--clay);
  color: var(--cream);
  transform: scale(1.08);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 10px;
}

/* ─── STATS ──────────────────────────────────────────────────────── */
.stats {
  padding: 76px 0;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: rgba(184,115,74,0.14);
  filter: blur(90px);
  top: -50%; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 26px;
  border-right: 1px solid rgba(253,251,247,0.13);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 9px;
}
.stat-num em { font-style: normal; color: var(--gold); }
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253,251,247,0.5);
}

/* ─── GALLERY ────────────────────────────────────────────────────── */
.gallery { padding: 108px 0; background: var(--cream); }
.gallery-header { text-align: center; margin-bottom: 56px; }
.gallery-header .section-sub { margin: 16px auto 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(145deg, var(--sand), var(--clay-soft));
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(43,33,28,0.82) 100%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  transform: translateY(10px);
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }
.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--clay);
  opacity: 0.38;
}
.gallery-placeholder svg { width: 38px; height: 38px; }
.gallery-placeholder small { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── WHY US (split) ─────────────────────────────────────────────── */
.whyus { padding: 108px 0; background: var(--sand); }
.whyus-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 68px;
  align-items: center;
}
.whyus-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  background: linear-gradient(150deg, var(--sage) 0%, var(--espresso-mid) 100%);
  box-shadow: var(--shadow-lg);
}
.whyus-media img { width: 100%; height: 100%; object-fit: cover; }

.whyus-content .section-sub { max-width: 100%; }
.whyus-list { display: flex; flex-direction: column; gap: 22px; margin-top: 34px; }
.whyus-item { display: flex; gap: 16px; align-items: flex-start; }
.whyus-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--clay-soft);
  color: var(--clay);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.whyus-item:hover .whyus-icon { background: var(--clay); color: var(--cream); transform: rotate(-6deg); }
.whyus-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 5px;
}
.whyus-item span { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ─── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonials { padding: 108px 0; background: var(--cream); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-quote {
  font-family: var(--font-display);
  font-size: 46px;
  font-style: italic;
  color: var(--clay);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 4px;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars svg { width: 15px; height: 15px; color: var(--gold); }
.testi-card p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 22px;
}
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--espresso); }
.testi-author span { font-size: 12.5px; color: var(--muted); }

/* ─── QUOTE FORM SECTION ─────────────────────────────────────────── */
.quote-section {
  padding: 108px 0;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}
.quote-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  pointer-events: none;
}
.quote-blob.q1 { width: 480px; height: 480px; background: rgba(184,115,74,0.24); top: -160px; left: -110px; }
.quote-blob.q2 { width: 400px; height: 400px; background: rgba(201,162,39,0.14); bottom: -150px; right: -90px; }

.quote-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.quote-content .section-sub { max-width: 100%; }
.quote-benefits { display: flex; flex-direction: column; gap: 18px; margin-top: 34px; }
.quote-benefit { display: flex; align-items: center; gap: 13px; font-size: 15px; color: rgba(253,251,247,0.82); }
.quote-benefit-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(201,162,39,0.16);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.quote-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 42px;
  box-shadow: var(--shadow-lg);
}
.quote-card-title {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.quote-card-sub { font-size: 14.5px; color: var(--muted); margin-bottom: 30px; }

/* Form fields */
.bpp-field { margin-bottom: 17px; }
.bpp-field label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 7px;
}
.bpp-field label .req { color: var(--clay); }
.bpp-field input[type="text"],
.bpp-field input[type="tel"],
.bpp-field input[type="email"],
.bpp-field select,
.bpp-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.bpp-field input:focus,
.bpp-field select:focus,
.bpp-field textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px var(--clay-soft);
}
.bpp-field input::placeholder,
.bpp-field textarea::placeholder { color: #B5A79C; }
.bpp-field textarea { min-height: 96px; resize: vertical; }
.bpp-field.error input,
.bpp-field.error select { border-color: #C0533F; box-shadow: 0 0 0 3px rgba(192,83,63,0.1); }
.bpp-error-msg { font-size: 12px; color: #C0533F; margin-top: 5px; display: none; }
.bpp-field.error .bpp-error-msg { display: block; }

.bpp-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.bpp-select-wrap { position: relative; }
.bpp-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--muted);
  pointer-events: none;
}
.bpp-select-wrap select { padding-right: 42px; cursor: pointer; }

.bpp-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 16px;
  padding: 17px 32px;
}
.bpp-disclaimer {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 15px;
  text-align: center;
}
.bpp-disclaimer a { color: var(--clay); text-decoration: underline; }

/* Honeypot — hidden from users */
.bpp-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Success state */
.bpp-success { display: none; text-align: center; padding: 22px 0; }
.bpp-success.show { display: block; animation: successPop 0.6s var(--ease); }
@keyframes successPop { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.bpp-success-icon {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--clay-soft);
  color: var(--clay);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.bpp-success-icon svg { width: 36px; height: 36px; }
.bpp-success h3 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 11px;
}
.bpp-success p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 26px; }
.bpp-success .lead-ref {
  display: inline-block;
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--clay);
  background: var(--clay-soft);
  padding: 7px 15px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
}

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq { padding: 108px 0; background: var(--sand); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header .section-sub { margin: 16px auto 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.faq-item.open { border-color: var(--clay); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--espresso);
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--clay); }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--clay-soft);
  color: var(--clay);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.45s var(--ease), background 0.35s var(--ease);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--clay); color: var(--cream); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a-inner { padding: 0 26px 24px; font-size: 15px; color: var(--muted); line-height: 1.8; }

/* ─── FINAL CTA ──────────────────────────────────────────────────── */
.final-cta {
  padding: 100px 0;
  background: var(--clay);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before,
.final-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(253,251,247,0.16);
  pointer-events: none;
}
.final-cta::before { width: 420px; height: 420px; top: -180px; left: -90px; }
.final-cta::after  { width: 320px; height: 320px; bottom: -140px; right: -70px; }
.final-cta-inner { position: relative; z-index: 2; }
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.final-cta h2 em { font-style: italic; color: var(--espresso); }
.final-cta p {
  font-size: 17px;
  color: rgba(253,251,247,0.86);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.final-cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.final-cta .btn-primary { background: var(--espresso); box-shadow: 0 6px 24px rgba(43,33,28,0.28); }
.final-cta .btn-primary::after { background: #1C1512; }

/* ─── PAGE HERO (inner pages) ────────────────────────────────────── */
.page-hero {
  padding: 84px 0 72px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.page-hero .hero-bg-blob.b1 { width: 420px; height: 420px; top: -170px; right: -100px; }
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.page-hero-title em { font-style: italic; color: var(--clay); }
.page-hero-sub { font-size: 17.5px; color: var(--muted); line-height: 1.8; max-width: 600px; }

/* ─── GENERIC CONTENT SECTION ────────────────────────────────────── */
.content-section { padding: 88px 0; background: var(--cream); }
.content-narrow { max-width: 820px; margin: 0 auto; }
.content-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px;
  margin-bottom: 20px;
}
.content-block h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}
.content-block:last-child { margin-bottom: 0; }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
footer {
  position: relative;
  background: var(--espresso);
  color: rgba(253,251,247,0.62);
  padding: 76px 0 0;
  overflow: hidden;
}
.footer-texture {
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: rgba(184,115,74,0.11);
  filter: blur(90px);
  top: -280px; right: -150px;
  pointer-events: none;
}
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(253,251,247,0.1);
}
.footer-logo { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-logo .nav-logo-text { color: var(--cream); }
.footer-logo .nav-logo-text em { color: var(--gold); }
.footer-brand p { font-size: 14.5px; line-height: 1.8; max-width: 300px; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.footer-phone:hover { color: var(--cream); gap: 13px; }
.footer-col h5 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 14.5px;
  color: rgba(253,251,247,0.58);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom {
  position: relative;
  z-index: 2;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: rgba(253,251,247,0.42); transition: color 0.3s var(--ease); }
.footer-bottom-links a:hover { color: rgba(253,251,247,0.8); }

/* ─── STICKY MOBILE CALL BAR ─────────────────────────────────────── */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--clay);
  color: var(--white);
  padding: 15px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 -4px 20px rgba(43,33,28,0.18);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 42px; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-media { aspect-ratio: 16 / 11; }
  .hero-badge.b-top { left: 12px; }
  .hero-badge.b-bottom { right: 12px; }
  .hero-media-frame { display: none; }
  .whyus-inner { grid-template-columns: 1fr; gap: 48px; }
  .whyus-media { aspect-ratio: 16 / 11; }
  .quote-inner { grid-template-columns: 1fr; gap: 46px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .announce-inner { font-size: 12px; padding: 9px 20px; }
  .hero { padding: 66px 0 84px; }
  .services, .process, .gallery, .whyus, .testimonials, .quote-section, .faq { padding: 76px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .stat-item { border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(253,251,247,0.13); }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
  .quote-card { padding: 28px 22px; }
  .bpp-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .sticky-call-bar { display: flex; }
  body { padding-bottom: 56px; }
  .final-cta-actions { flex-direction: column; }
  .final-cta-actions > * { width: 100%; justify-content: center; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  .hero-badge { animation: none; }
}
