:root {
  --bg: #121110;
  --bg-lift: #1E1B17;
  --surface: #26221D;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #F2EDE4;
  --text-dim: #9A938A;
  --text-muted: #6E675E;
  --accent: #C89860;
  --accent-hot: #E0B27A;
  --accent-deep: #8B5E2A;
  --radius: 18px;
  --max: 1240px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #231F20; /* matches the logo JPEG background exactly */
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 200ms var(--ease);
}
.nav-logo:hover { opacity: 0.82; }
.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-img {
  display: block;
  height: 56px;
  width: auto;
  /* Nav bg is set to #231F20 to match this JPEG's bg exactly — no blend tricks needed. */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
}
.nav-links > a,
.nav-links > .nav-item > .nav-link {
  transition: color 200ms var(--ease);
  color: var(--text-dim);
}
.nav-links > a:hover,
.nav-links > .nav-item > .nav-link:hover { color: var(--text); }

/* Dropdown nav items */
.nav-item {
  position: relative;
}
.nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-link-chevron {
  display: inline-block;
  transition: transform 200ms var(--ease);
  opacity: 0.7;
}
.nav-item:hover .nav-link-chevron,
.nav-item.is-open .nav-link-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  margin-top: 12px;
  padding: 10px;
  min-width: 220px;
  background: rgba(28, 26, 24, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: 0 18px 50px -10px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease), visibility 200ms;
  z-index: 200;
}
/* Invisible bridge so the dropdown stays open when moving cursor from link to menu */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-item:hover .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color 150ms var(--ease), background 150ms var(--ease);
}
.nav-dropdown a:hover {
  color: var(--accent);
  background: rgba(200, 152, 96, 0.08);
}
/* Two-column variant — used for the long Service Areas list */
.nav-dropdown--two-col {
  min-width: 360px;
}
.nav-dropdown--two-col .nav-dropdown-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 8px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 14px;
  font-weight: 500;
  transition: all 200ms var(--ease);
}
.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- HAMBURGER + MOBILE MENU ---------- */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0 9px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.02);
  transition: all 200ms var(--ease);
}
.nav-burger:hover {
  border-color: var(--accent);
  background: rgba(200, 152, 96, 0.08);
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 250ms var(--ease), opacity 200ms var(--ease);
}
body.menu-open .nav-burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
body.menu-open .nav-burger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .nav-burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(11, 11, 12, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms var(--ease), visibility 280ms var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
  overflow-y: auto;
}
body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}
body.menu-open { overflow: hidden; }

.mobile-menu-inner {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
  transform: translateY(12px);
  transition: transform 320ms var(--ease);
}
body.menu-open .mobile-menu-inner { transform: translateY(0); }

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-links > a,
.mobile-menu-trigger {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.015em;
  padding: 14px 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 200ms var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: none;
  width: 100%;
  cursor: pointer;
}
.mobile-menu-links > a:hover,
.mobile-menu-links > a:active,
.mobile-menu-trigger:hover { color: var(--accent); }
.mobile-menu-item:last-child .mobile-menu-trigger,
.mobile-menu-links > a:last-of-type { border-bottom: none; }
.mobile-menu-chevron {
  display: inline-block;
  transition: transform 280ms var(--ease);
  opacity: 0.65;
}
.mobile-menu-item.is-open .mobile-menu-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mobile-menu-item.is-open .mobile-submenu {
  max-height: 900px; /* large enough for 14 cities */
}
.mobile-submenu-list {
  padding: 8px 0 18px;
  display: flex;
  flex-direction: column;
}
.mobile-submenu-list a {
  display: block;
  padding: 11px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dim);
  text-align: center;
  transition: color 200ms var(--ease);
}
.mobile-submenu-list a:hover,
.mobile-submenu-list a:active { color: var(--accent); }

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.mobile-menu-ctas .btn {
  width: 100%;
  justify-content: center;
}
.mobile-menu-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 60px 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroDrift 24s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { transform: scale(1.05) translate3d(0, 0, 0); }
  100% { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(11, 11, 12, 0.25) 0%, rgba(11, 11, 12, 0.55) 65%, rgba(11, 11, 12, 0.85) 100%),
    linear-gradient(to bottom, rgba(11, 11, 12, 0.3) 0%, rgba(11, 11, 12, 0.15) 45%, rgba(11, 11, 12, 0.8) 100%);
}
.glow {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.28;
  mix-blend-mode: screen;
}
.glow-amber {
  top: -220px;
  right: -180px;
  background: radial-gradient(circle, rgba(224, 178, 122, 0.7) 0%, rgba(224, 178, 122, 0) 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(42px, 6.8vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 20ch;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}

.hero-sub {
  max-width: 56ch;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text);
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 250ms var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-hot) 0%, var(--accent) 100%);
  color: #0B0B0C;
  box-shadow: 0 10px 30px -8px rgba(200, 152, 96, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px -8px rgba(200, 152, 96, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200, 152, 96, 0.05);
}

/* ---------- 3D CAROUSEL ---------- */
.carousel-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.slide {
  position: absolute;
  width: 260px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 650ms var(--ease),
              opacity 650ms var(--ease),
              filter 650ms var(--ease);
  will-change: transform, opacity, filter;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 50px 80px -24px rgba(0, 0, 0, 0.7),
              0 8px 20px -8px rgba(0, 0, 0, 0.5);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  color: var(--text);
  z-index: 20;
  transition: all 200ms var(--ease);
}
.nav-btn:hover {
  background: rgba(200, 152, 96, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}
.nav-prev { left: 8px; }
.nav-next { right: 8px; }

/* ---------- TRUST STRIP ---------- */
.trust {
  padding: 60px 24px 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-lift);
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  flex: 1;
  min-width: 180px;
}
.trust-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
}
.trust-num .stars {
  color: var(--accent);
  font-size: 0.7em;
  letter-spacing: 0.05em;
}
.trust-num .small {
  font-size: 0.5em;
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.trust-num .plus {
  color: var(--accent);
  font-weight: 300;
}
.trust-label {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ========== SERVICE PAGE STYLES ========== */

/* ---------- SERVICE HERO ---------- */
.service-hero {
  position: relative;
  min-height: 70vh;
  padding: 100px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.service-hero-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* background-image set via inline style on each service page */
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  /* Slight, mostly-uniform overlay — image stays clearly visible, text gets a little contrast.
     Tiny extra darkening at the bottom for CTA legibility. */
  background:
    linear-gradient(to bottom,
      rgba(11, 11, 12, 0.30) 0%,
      rgba(11, 11, 12, 0.25) 55%,
      rgba(11, 11, 12, 0.50) 100%);
}
/* Hero eyebrow needs to read against the image, not just the dark bg of inner sections */
.service-hero .eyebrow {
  color: var(--text);
  background: rgba(11, 11, 12, 0.35);
  border-color: rgba(255, 255, 255, 0.18);
}
.service-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
/* Glass card variant — opt in for hero images that need text contrast (e.g. bright images) */
.service-hero-content--card {
  max-width: 780px;
  padding: 52px 56px;
  background: rgba(11, 10, 8, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 32px 80px -24px rgba(0, 0, 0, 0.55);
}
.service-hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 22ch;
  /* Text-shadow for default (no-card) variant */
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.4);
}
.service-hero-sub {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}
/* Card variant — text shadow not needed inside the card */
.service-hero-content--card .service-hero-title,
.service-hero-content--card .service-hero-sub {
  text-shadow: none;
}
.service-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}
.service-hero-sub {
  max-width: 56ch;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text);
  line-height: 1.55;
}

/* ---------- SERVICE INTRO ---------- */
.service-intro {
  padding: 120px 24px;
  background: var(--bg);
}
.service-intro-inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.service-intro-inner .section-header {
  margin-bottom: 0;
}
.service-intro-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ---------- PROCESS ---------- */
.process {
  padding: 120px 24px;
  background: var(--bg-lift);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  isolation: isolate;
}
/* Optional image backdrop for the process section (per-page) */
.process-bg-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
}
.process-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11, 11, 12, 0.78) 0%,
      rgba(11, 11, 12, 0.55) 50%,
      rgba(11, 11, 12, 0.82) 100%);
  z-index: -1;
}
.process-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
/* Horizontal flow line behind cards — runs through the height of the number circles.
   Cards have a solid background so they cover the line, leaving visible "dashes" in the gaps. */
.process-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(200, 152, 96, 0.45) 12%,
    rgba(200, 152, 96, 0.45) 88%,
    transparent 100%);
  z-index: 0;
  pointer-events: none;
}
.process-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 250ms var(--ease), transform 250ms var(--ease);
  position: relative;
  z-index: 1;
}
.process-step:hover {
  border-color: var(--accent-deep);
  transform: translateY(-4px);
}
.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(200, 152, 96, 0.08);
  border: 1px solid var(--accent-deep);
  margin-bottom: 4px;
}
.process-step-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}
.process-step-desc {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---------- FINISHES ---------- */
.finishes {
  padding: 120px 24px;
  background: var(--bg);
}
.finishes-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.finishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.finish-card {
  padding: 36px 28px;
  background: var(--bg-lift);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 300ms var(--ease);
}
.finish-card:hover {
  border-color: var(--accent-deep);
  transform: translateY(-4px);
}
.finish-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(200, 152, 96, 0.06) 0%, var(--bg-lift) 100%);
}
.finish-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.finish-title {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}
.finish-desc {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- NEIGHBORHOODS (city pages) ---------- */
.neighborhoods {
  position: relative;
  padding: 120px 24px;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.neighborhoods-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}
/* Neighborhoods grid — uniform 4-col + consistent chip heights */
.neighborhoods .areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1000px;
}
.neighborhoods .area {
  flex: none;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}
@media (max-width: 900px) {
  .neighborhoods .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .neighborhoods .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .neighborhoods { padding: 80px 20px; }
}
@media (max-width: 560px) {
  .neighborhoods { padding: 60px 16px; }
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 120px 24px;
  background: var(--bg);
}
.gallery-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 350ms var(--ease), border-color 250ms var(--ease);
}
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-deep);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.04);
}

/* ---------- PRICING FACTORS ---------- */
.pricing {
  padding: 120px 24px;
  background: var(--bg-lift);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pricing-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-note {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}
.pricing-factors {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-factors li {
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dim);
}
.pricing-factors strong {
  color: var(--text);
  font-weight: 600;
}
.pricing-bullet {
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

/* ---------- SERVICE PAGE RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .finishes-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .service-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .pricing-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .service-hero { min-height: 60vh; padding: 80px 20px 60px; }
  .service-hero-content { padding: 40px 32px; gap: 18px; }
  .service-intro, .process, .finishes, .pricing, .gallery { padding: 80px 20px; }
}
@media (max-width: 760px) {
  /* 3 items get awkward 2+1 in a 2-col grid — go straight to single col */
  .gallery-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .service-hero { padding: 60px 16px 48px; }
  .service-hero-content { padding: 32px 24px; gap: 16px; border-radius: 18px; }
  .service-intro, .process, .finishes, .pricing, .gallery { padding: 60px 16px; }
  .process-steps,
  .process-steps--3 { grid-template-columns: 1fr; gap: 14px; }
  .process-steps::before { display: none; } /* hide horizontal flow line when stacked */
  .finish-card { padding: 28px 22px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ========== END SERVICE PAGE STYLES ========== */

/* ========== WORK PAGE ========== */

/* Work Hero V2 — full-bleed photo backdrop + animated letter-by-letter title */
.work-hero-v2 {
  position: relative;
  min-height: 90vh;
  padding: 120px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.work-hero-v2-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  /* slow drift for visual interest */
  animation: hero-v2-drift 28s ease-in-out infinite alternate;
}
@keyframes hero-v2-drift {
  0%   { transform: scale(1.05) translate3d(0, 0, 0); }
  100% { transform: scale(1.12) translate3d(-2%, -1%, 0); }
}
.work-hero-v2-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(11, 11, 12, 0.35) 0%, rgba(11, 11, 12, 0.7) 100%),
    linear-gradient(to bottom, rgba(11, 11, 12, 0.5) 0%, rgba(11, 11, 12, 0.4) 50%, rgba(11, 11, 12, 0.85) 100%);
  z-index: -1;
}
.work-hero-v2-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.work-hero-v2-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0;
}
/* Each letter — JS wraps them in <span class="hero-letter" style="--i:N"> */
.hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  animation: hero-letter-rise 700ms cubic-bezier(0.2, 0.8, 0.3, 1.05) forwards;
  animation-delay: calc(var(--i, 0) * 30ms + 200ms);
}
.hero-letter--space {
  width: 0.3em;
}
@keyframes hero-letter-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.work-hero-v2-sub {
  max-width: 56ch;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text);
  line-height: 1.55;
  opacity: 0;
  animation: hero-fade-in 1200ms ease-out forwards;
  animation-delay: 1100ms;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.work-hero-v2-cta {
  font-size: 16px;
  padding: 16px 28px;
  opacity: 0;
  animation: hero-fade-in 1200ms ease-out forwards;
  animation-delay: 1400ms;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap 250ms var(--ease), transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.work-hero-v2-cta:hover {
  gap: 18px;
  transform: translateY(-2px);
}
@keyframes hero-fade-in {
  to { opacity: 1; }
}

/* Featured video — between hero and gallery. Portrait-friendly (mobile-shot footage). */
.work-feature-video {
  padding: 60px 24px 80px;
  background: var(--bg);
}
.work-feature-video-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.work-feature-video-frame {
  width: 100%;
  max-width: 480px;
  margin: 32px auto 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #000;
  aspect-ratio: 9 / 16;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 8px 20px -8px rgba(0, 0, 0, 0.4);
}
.work-feature-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-gallery {
  padding: 80px 24px 100px;
  background: var(--bg);
}
.work-gallery-inner {
  max-width: var(--max);
  margin: 0 auto;
}
/* Flex-wrap so any number of items lays out cleanly — partial last row centers */
.work-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.work-gallery-item {
  margin: 0;
  flex: 0 1 calc((100% - 32px) / 3);
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 350ms var(--ease), border-color 250ms var(--ease);
}
.work-gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-deep);
}
.work-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease);
}
.work-gallery-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 1080px) {
  .work-gallery-item { flex-basis: calc((100% - 16px) / 2); }
}
@media (max-width: 900px) {
  .work-hero-v2 { min-height: 70vh; padding: 100px 20px 60px; }
  .work-feature-video { padding: 48px 20px 60px; }
  .work-gallery { padding: 60px 20px; }
}
@media (max-width: 560px) {
  .work-hero-v2 { min-height: 60vh; padding: 80px 16px 48px; }
  .work-feature-video { padding: 40px 16px 48px; }
  .work-feature-video-frame { max-width: 360px; }
  .work-gallery { padding: 48px 16px; }
  .work-gallery-item { flex-basis: 100%; }
}
/* ========== END WORK PAGE ========== */

/* ========== LANDING PAGE (paid traffic / Meta ads) ========== */
.lp-body {
  /* Slight visual shift from main site — feels more "campaign" */
}

/* Minimal header */
.lp-header {
  position: relative;
  z-index: 50;
  padding: 14px 24px;
  background: #231F20;
  border-bottom: 1px solid var(--border);
}
.lp-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-header .logo-img {
  height: 40px;
}
.lp-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all 200ms var(--ease);
}
.lp-header-phone:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero — 2-column on desktop, stacks on mobile */
.lp-hero {
  position: relative;
  padding: 60px 24px 80px;
  overflow: hidden;
  isolation: isolate;
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.lp-hero-bg-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.lp-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 11, 12, 0.92) 0%, rgba(11, 11, 12, 0.55) 60%, rgba(11, 11, 12, 0.25) 100%),
    linear-gradient(to bottom, rgba(11, 11, 12, 0.4) 0%, rgba(11, 11, 12, 0.7) 100%);
}
.lp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.lp-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.lp-hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--text);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.lp-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}
.lp-hero-sub {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text);
  line-height: 1.55;
  max-width: 50ch;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.lp-hero-trust {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-hero-trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.lp-hero-trust li svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* Form card — glassy, prominent */
.lp-hero-form-wrap {
  display: flex;
  align-items: center;
}
.lp-hero-form {
  width: 100%;
  padding: 36px 32px;
  background: rgba(11, 10, 8, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  box-shadow: 0 32px 80px -20px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-form-header {
  margin-bottom: 4px;
}
.lp-form-title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.015em;
}
.lp-form-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}
.lp-form-submit {
  margin-top: 8px;
  padding: 16px 24px;
  width: 100%;
  justify-content: center;
  font-size: 15px;
}
.lp-form-fine {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

/* Mini work gallery */
.lp-work {
  padding: 100px 24px;
  background: var(--bg);
}
.lp-work-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.lp-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lp-work-item {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.lp-work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Why us */
.lp-why {
  padding: 100px 24px;
  background: var(--bg-lift);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lp-why-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-why-card {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-why-num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.lp-why-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}
.lp-why-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* Final CTA */
.lp-final-cta {
  padding: 100px 24px;
  background: var(--bg);
  text-align: center;
}
.lp-final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.lp-final-cta-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.lp-final-cta-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}
.lp-final-cta-sub {
  color: var(--text-dim);
  font-size: 16px;
}
.lp-final-cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

/* Minimal footer */
.lp-footer {
  padding: 40px 24px 32px;
  background: #0A0907;
  border-top: 1px solid var(--border);
  text-align: center;
}
.lp-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lp-footer-brand .logo-img {
  height: 36px;
}
.lp-footer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: var(--text-dim);
}
.lp-footer-info a {
  color: var(--text-dim);
  transition: color 200ms;
}
.lp-footer-info a:hover { color: var(--accent); }
.lp-footer-bottom {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 1080px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero-form-wrap { max-width: 540px; margin: 0 auto; width: 100%; }
}
@media (max-width: 900px) {
  .lp-hero { padding: 40px 20px 60px; }
  .lp-hero-form { padding: 28px 24px; }
  .lp-work { padding: 60px 20px; }
  .lp-work-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-why { padding: 60px 20px; }
  .lp-why-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .lp-final-cta { padding: 60px 20px; }
}
@media (max-width: 560px) {
  .lp-header { padding: 12px 16px; }
  .lp-header .logo-img { height: 34px; }
  .lp-header-phone-text { display: none; }
  .lp-header-phone { padding: 8px 10px; }
  .lp-hero { padding: 32px 16px 48px; }
  .lp-hero-form { padding: 24px 20px; }
  .lp-work { padding: 48px 16px; }
  .lp-work-grid { grid-template-columns: 1fr; gap: 12px; }
  .lp-why { padding: 48px 16px; }
  .lp-why-card { padding: 26px 22px; }
  .lp-final-cta { padding: 48px 16px; }
}
/* ========== END LANDING PAGE ========== */

/* ========== THANKS PAGE ========== */
.thanks-hero {
  position: relative;
  min-height: calc(100vh - 200px);
  padding: 80px 24px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.thanks-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.thanks-hero-bg-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.thanks-hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Match the landing page overlay for visual consistency */
  background:
    linear-gradient(135deg, rgba(11, 11, 12, 0.92) 0%, rgba(11, 11, 12, 0.55) 60%, rgba(11, 11, 12, 0.25) 100%),
    linear-gradient(to bottom, rgba(11, 11, 12, 0.4) 0%, rgba(11, 11, 12, 0.7) 100%);
}
.thanks-inner {
  position: relative;
  z-index: 3;
}
.thanks-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.thanks-checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(200, 152, 96, 0.12);
  border: 1px solid var(--accent-deep);
  color: var(--accent);
  margin-bottom: 8px;
  animation: thanks-check-in 600ms cubic-bezier(0.2, 1.2, 0.4, 1) backwards;
}
@keyframes thanks-check-in {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.thanks-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
}
.thanks-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}
.thanks-sub {
  max-width: 50ch;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
}
.thanks-next-steps {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}
.thanks-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.thanks-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  background: var(--bg);
  border: 1px solid var(--accent-deep);
}
.thanks-step-title {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}
.thanks-step-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: 2px;
}
.thanks-cta-group {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.thanks-cta-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.thanks-back {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-dim);
  transition: color 200ms;
}
.thanks-back:hover { color: var(--accent); }

@media (max-width: 560px) {
  .thanks-hero { padding: 60px 16px 40px; }
  .thanks-checkmark { width: 72px; height: 72px; }
  .thanks-checkmark svg { width: 38px; height: 38px; }
}
/* ========== END THANKS PAGE ========== */

/* ---------- INSTANT QUOTE ---------- */
.instant {
  position: relative;
  padding: 90px 24px;
  background:
    linear-gradient(135deg, #1E1B17 0%, #15130F 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
}
.instant-glow {
  position: absolute;
  top: 50%;
  right: -200px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 152, 96, 0.18) 0%, rgba(200, 152, 96, 0) 65%);
  filter: blur(40px);
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}
.instant-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.instant-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.instant-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.instant-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}
.instant-sub {
  color: var(--text-dim);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  max-width: 42ch;
}
.instant-steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.instant-steps::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(to bottom,
    rgba(200, 152, 96, 0.4) 0%,
    rgba(200, 152, 96, 0.15) 100%);
  pointer-events: none;
}
.instant-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.instant-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  background: var(--bg);
  border: 1px solid var(--accent-deep);
  box-shadow: 0 0 0 4px rgba(11, 10, 8, 1);
}
.instant-step-body {
  padding-top: 4px;
}
.instant-step-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}
.instant-step-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: 2px;
}

.instant-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  background: rgba(11, 10, 8, 0.55);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.5);
}
.instant-form .instant-submit {
  margin-top: auto; /* pin to bottom so the form stretches to match the copy column */
}
.instant-form .form-field label {
  font-size: 11px;
}
.instant-form .form-field input,
.instant-form .form-field select {
  padding: 13px 16px;
  font-size: 15px;
}
.instant-submit {
  justify-content: center;
  margin-top: 4px;
  padding: 15px 24px;
  width: 100%;
}

@media (max-width: 900px) {
  .instant { padding: 60px 20px; }
  .instant-inner { grid-template-columns: 1fr; gap: 36px; }
  .instant-form { padding: 24px; }
  .instant-glow { right: -300px; opacity: 0.6; }
}

/* ---------- SHOWCASE / SCROLL REVEAL ---------- */
.showcase {
  position: relative;
  min-height: 140vh;
  padding: 80px 24px 120px;
  background: var(--bg);
  overflow: hidden;
}
.showcase-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 60px;
}
.showcase-header {
  text-align: center;
  max-width: 64ch;
  margin: 0 auto 40px;
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.showcase-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.showcase-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}
.showcase-sub {
  color: var(--text-dim);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  max-width: 56ch;
}

.showcase-card-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  perspective: 1200px;
}
.showcase-card {
  width: 100%;
  height: 640px;
  border: 4px solid #2F2C28;
  border-radius: 30px;
  background: #1A1917;
  padding: 10px;
  box-shadow:
    0 9px 20px rgba(0, 0, 0, 0.3),
    0 37px 37px rgba(0, 0, 0, 0.26),
    0 84px 50px rgba(0, 0, 0, 0.16),
    0 149px 60px rgba(0, 0, 0, 0.06);
  transform: rotateX(30deg) scale(0.92);
  transform-style: preserve-3d;
  will-change: transform;
  transition: none;
}
.showcase-card-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #0F0E0D;
}
.showcase-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- SHARED SECTION STYLES ---------- */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 64px;
}
.section-header.center {
  text-align: center;
  align-items: center;
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.section-sub {
  color: var(--text-dim);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  max-width: 58ch;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 120px 24px;
  background: var(--bg);
  position: relative;
}
.services-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 36px 28px;
  background: var(--bg-lift);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 300ms var(--ease);
}
.service-card:hover {
  border-color: var(--accent-deep);
  background: #26221D;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}
/* Anchor variant — service cards that link to a dedicated page */
a.service-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.service-card-cta {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 200ms var(--ease);
}
a.service-card:hover .service-card-cta {
  gap: 10px;
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 4px;
}
.service-icon svg {
  width: 100%;
  height: 100%;
}
.service-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--text);
}
.service-desc {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- WORK / VIDEO SHOWCASE ---------- */
.work-video-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.work-video {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #000;
  line-height: 0;
  box-shadow:
    0 40px 80px -24px rgba(0, 0, 0, 0.6),
    0 8px 20px -8px rgba(0, 0, 0, 0.4);
}
.work-video-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%; /* slight bias to lower portion — keeps house, trims top sky */
}

/* AFTER → BEFORE overlay — sized to fully cover the embedded text on the video */
.work-video-label {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  z-index: 2;
  /* grid layout locks the arrow to the exact horizontal center of the pill,
     so the arrow lands on the video's split line regardless of word widths */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 64px;
  padding: 48px 84px;
  border-radius: 999px;
  background: rgba(11, 10, 8, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 36px -8px rgba(0, 0, 0, 0.7);
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  pointer-events: none;
  white-space: nowrap;
}
.work-video-label .label-after { text-align: right; }
.work-video-label .label-before { text-align: left; }
.work-video-label .arrow {
  color: var(--accent);
  font-size: 60px;
  letter-spacing: 0;
}

@media (max-width: 700px) {
  .work-video { aspect-ratio: 3 / 4; }
  .work-video-el { object-position: 50% 55%; }
  .work-video-label { bottom: 4px; padding: 30px 40px; font-size: 30px; column-gap: 32px; }
  .work-video-label .arrow { font-size: 34px; }
}

/* ---------- LEGACY BEFORE-AFTER SLIDER (kept for reference) ---------- */
.work {
  padding: 120px 24px;
  background: var(--bg-lift);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.work-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.ba-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border-strong);
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  cursor: ew-resize;
  box-shadow:
    0 40px 80px -24px rgba(0, 0, 0, 0.6),
    0 8px 20px -8px rgba(0, 0, 0, 0.4);
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-before {
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), #fff 20%, #fff 80%, rgba(255,255,255,0.5));
  transform: translateX(-1px);
  pointer-events: none;
  will-change: left;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1A1917;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.25);
  pointer-events: auto;
  cursor: ew-resize;
}
.ba-hint {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- SERVICE AREAS (full-bleed aerial map bg) ---------- */
.areas {
  position: relative;
  padding: 120px 24px;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}
.areas-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, #2A241D 0%, #15130F 70%, #0B0A08 100%);
}
.areas-map-iframe {
  position: absolute;
  top: -6%;
  left: -3%;
  width: 106%;
  height: 112%;
  border: 0;
  filter: saturate(0.65) brightness(0.78) contrast(1.08) sepia(0.08);
  pointer-events: none;
}
.areas-map-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(18, 17, 16, 0.48) 0%, rgba(18, 17, 16, 0.72) 70%, rgba(18, 17, 16, 0.88) 100%),
    linear-gradient(to bottom, rgba(18, 17, 16, 0.7) 0%, rgba(18, 17, 16, 0.48) 50%, rgba(18, 17, 16, 0.78) 100%);
  pointer-events: none;
}
.areas-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.area {
  flex: 0 1 200px;
  padding: 20px 24px;
  background: rgba(30, 27, 23, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: all 250ms var(--ease);
}
.area:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(30, 27, 23, 0.8);
}
.areas-note {
  margin: 40px auto 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 15px;
}
.areas-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(200, 152, 96, 0.4);
  transition: text-decoration-color 200ms var(--ease);
}
.areas-note a:hover { text-decoration-color: var(--accent); }

/* ---------- ABOUT + TESTIMONIALS ---------- */
.about {
  padding: 120px 24px;
  background: var(--bg-lift);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  margin-top: 8px;
}
.about-body {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}
.about-team {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 8px 20px -8px rgba(0, 0, 0, 0.4);
  position: relative;
  line-height: 0;
  aspect-ratio: 4 / 5;
}
.about-team img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-team-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  padding: 10px 14px;
  background: rgba(10, 9, 7, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  text-align: center;
}
.stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.15em;
}

/* ---------- TESTIMONIALS CAROUSEL ---------- */
.testimonials-carousel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.testimonials-photos {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 380px;
  margin: 0 auto;
}
.tc-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border-strong);
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.6),
              0 6px 16px -8px rgba(0, 0, 0, 0.4);
}
.tc-photo.is-active {
  opacity: 1;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tc-name {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-top: 6px;
}
.tc-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tc-quote {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: -0.005em;
  margin-top: 8px;
  transition: opacity 250ms ease;
}
.testimonials-content.is-changing .tc-quote,
.testimonials-content.is-changing .tc-name,
.testimonials-content.is-changing .tc-meta {
  opacity: 0;
}
.tc-name, .tc-meta {
  transition: opacity 250ms ease;
}

.tc-controls {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.tc-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  color: var(--text);
  transition: all 200ms var(--ease);
}
.tc-arrow:hover {
  background: rgba(200, 152, 96, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 900px) {
  .testimonials-carousel {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .testimonials-photos {
    aspect-ratio: 4 / 3;
    max-width: 420px;
  }
  .tc-name { font-size: 22px; }
  .tc-quote { font-size: 17px; }
}

/* ---------- FAQ ---------- */
.faq {
  padding: 120px 24px;
  background: var(--bg-lift);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  overflow: hidden;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.faq-item[open] {
  border-color: var(--accent-deep);
  background: rgba(38, 34, 29, 0.6);
}
.faq-summary {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 200ms var(--ease);
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: transform 250ms var(--ease);
}
.faq-item[open] .faq-summary::after {
  content: '−';
}
.faq-summary:hover { color: var(--accent); }
.faq-answer {
  padding: 0 28px 22px;
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .faq { padding: 80px 20px; }
  .faq-summary { padding: 18px 22px; font-size: 17px; }
  .faq-answer { padding: 0 22px 18px; font-size: 15px; }
}
@media (max-width: 560px) {
  .faq { padding: 60px 16px; }
  .faq-summary { padding: 16px 18px; font-size: 16px; gap: 12px; }
  .faq-summary::after { font-size: 22px; }
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 120px 24px;
  background: var(--bg);
  position: relative;
}
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info {
  margin-top: 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.contact-info li:last-child { border-bottom: none; }
.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 70px;
}
.contact-info a {
  color: var(--text);
  font-size: 17px;
  font-weight: 500;
  transition: color 200ms var(--ease);
}
.contact-info a:hover { color: var(--accent); }

.contact-form {
  padding: 40px;
  background: var(--bg-lift);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-hp { display: none; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A938A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #252018;
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.btn-submit {
  justify-content: center;
  margin-top: 8px;
  padding: 16px 24px;
  font-size: 15px;
  width: 100%;
}
.form-fine {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}
.form-status {
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  border: 1px solid var(--border);
}
.form-status.is-success {
  background: rgba(200, 152, 96, 0.08);
  border-color: var(--accent);
  color: var(--accent-hot);
}
.form-status.is-error {
  background: rgba(220, 80, 80, 0.08);
  border-color: rgba(220, 80, 80, 0.4);
  color: #E89A9A;
}
.contact-form.is-submitting .btn-submit {
  opacity: 0.6;
  pointer-events: none;
}

/* ---------- FOOTER ---------- */
.footer {
  background:
    linear-gradient(180deg, rgba(11, 11, 12, 0.78) 0%, rgba(11, 11, 12, 0.92) 100%),
    url('assets/images/hero-bg.jpg') center/cover no-repeat;
  border-top: 1px solid var(--border);
  padding: 72px 24px 32px;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.footer-brand .logo-badge {
  background: #231F20; /* match logo JPEG bg so the seam is invisible */
  padding: 10px 16px;
  border-radius: 10px;
  display: inline-flex;
}
.footer-brand .logo-img {
  height: 48px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 26ch;
  line-height: 1.5;
}
.footer-based {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.footer-based em {
  color: var(--accent);
  font-style: italic;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: all 200ms var(--ease);
}
.footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200, 152, 96, 0.06);
}

/* ---------- FOOTER AZ MAP (3D aerial) ---------- */
.footer-map {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 280px;
  width: 100%;
}
.footer-map-3d {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  transform: perspective(900px) rotateX(22deg);
  transform-origin: center 75%;
  box-shadow:
    0 28px 48px -20px rgba(0, 0, 0, 0.65),
    0 6px 16px -8px rgba(0, 0, 0, 0.4);
  isolation: isolate;
}
.footer-map-iframe {
  position: absolute;
  top: -6%;
  left: -6%;
  width: 112%;
  height: 112%;
  border: 0;
  filter: saturate(0.7) contrast(1.1) brightness(0.8) sepia(0.12);
  pointer-events: none;
}
.footer-map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(200, 152, 96, 0.08) 0%, rgba(10, 9, 7, 0) 40%),
    radial-gradient(ellipse at center, transparent 40%, rgba(10, 9, 7, 0.5) 100%),
    linear-gradient(to bottom, rgba(10, 9, 7, 0) 45%, rgba(10, 9, 7, 0.7) 100%);
}
.footer-map-pin {
  position: absolute;
  top: 52%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 3px rgba(200, 152, 96, 0.25),
    0 0 0 8px rgba(200, 152, 96, 0.12),
    0 0 18px rgba(200, 152, 96, 0.7);
  animation: pin-pulse 2.4s ease-in-out infinite;
}
@keyframes pin-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 3px rgba(200, 152, 96, 0.25),
      0 0 0 8px rgba(200, 152, 96, 0.12),
      0 0 18px rgba(200, 152, 96, 0.7);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(200, 152, 96, 0.3),
      0 0 0 14px rgba(200, 152, 96, 0.06),
      0 0 26px rgba(200, 152, 96, 0.9);
  }
}
.footer-map-caption {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.footer-map-caption em {
  color: var(--accent);
  font-style: italic;
}
.footer-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li,
.footer-col ul a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 200ms var(--ease);
}
.footer-col ul a:hover {
  color: var(--accent);
}
.footer-areas {
  columns: 1;
}
.footer-bottom {
  max-width: var(--max);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 14px 20px; gap: 12px; }
  .nav-cta { padding: 9px 14px; font-size: 13px; }
  .slide { width: 220px; height: 380px; }
  .carousel-wrap { height: 420px; }
  .trust-divider { display: none; }
  .trust-item { min-width: 140px; }
}

@media (max-width: 480px) {
  .nav-cta-text { display: none; }
  .nav-cta { padding: 9px 11px; }
}

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-main { grid-template-columns: 1fr; gap: 40px; }
  .about-team { max-width: 460px; margin-left: auto; margin-right: auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:nth-child(4) { grid-column: span 3; }
}

@media (max-width: 900px) {
  .services,
  .work,
  .areas,
  .about,
  .contact { padding: 80px 20px; }
  .services-grid { gap: 14px; }
  .service-card { padding: 28px 22px; }
  .area { flex-basis: calc(33.33% - 10px); }
  .contact-form { padding: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-col:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 560px) {
  .hero { padding: 40px 16px 32px; }
  .about-team { max-width: 320px; }
  .slide { width: 180px; height: 320px; }
  .carousel-wrap { height: 360px; margin-top: 24px; }
  .nav-prev { left: 0; }
  .nav-next { right: 0; }
  .eyebrow { font-size: 10px; padding: 7px 14px; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .services,
  .work,
  .areas,
  .about,
  .contact { padding: 60px 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { gap: 10px; }
  .area { flex-basis: calc(50% - 5px); padding: 16px 18px; font-size: 17px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .footer { padding: 56px 20px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-col:nth-child(4) { grid-column: span 1; }
}

/* ---------- PAGE HERO (interior pages — contact, etc.) ---------- */
.page-hero {
  padding: 140px 24px 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}
.page-hero-title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}
.page-hero-sub {
  color: var(--text-dim);
  font-size: clamp(16px, 1.6vw, 18px);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- CONTACT METHOD CARDS ---------- */
.contact-methods {
  padding: 56px 24px;
  background: var(--bg);
}
.contact-methods-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.contact-method-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease);
}
a.contact-method-card:hover {
  border-color: var(--accent);
  background: var(--bg-lift);
  transform: translateY(-2px);
}
.contact-method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(200, 152, 96, 0.12);
  color: var(--accent);
  margin-bottom: 16px;
}
.contact-method-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.contact-method-value {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 6px;
  word-break: break-word;
}
.contact-method-note {
  font-size: 13px;
  color: var(--text-dim);
}

@media (max-width: 980px) {
  .contact-methods-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .page-hero { padding: 120px 20px 48px; }
  .contact-methods { padding: 40px 20px; }
  .contact-methods-inner { grid-template-columns: 1fr; gap: 12px; }
  .contact-method-card { padding: 24px 20px; }
}

/* ---------- CONTACT — direct contact list (used inside .about-copy on contact page) ---------- */
.contact-direct {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-direct li {
  display: grid;
  grid-template-columns: 88px 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 2px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.contact-direct li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-direct-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  grid-row: 1;
  grid-column: 1;
}
.contact-direct-value {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--text);
  grid-row: 1;
  grid-column: 2;
  line-height: 1.2;
}
a.contact-direct-value {
  transition: color 0.2s var(--ease);
}
a.contact-direct-value:hover {
  color: var(--accent);
}
.contact-direct-note {
  font-size: 13px;
  color: var(--text-dim);
  grid-row: 2;
  grid-column: 2;
}

@media (max-width: 560px) {
  .contact-direct li {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
  .contact-direct-label,
  .contact-direct-value,
  .contact-direct-note {
    grid-column: 1;
  }
  .contact-direct-label { grid-row: 1; }
  .contact-direct-value { grid-row: 2; font-size: 20px; }
  .contact-direct-note { grid-row: 3; }
}
