@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,700;12..96,800&family=Inter:wght@400;500&display=swap');

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

:root {
  --red:    #ED5051;
  --black:  #0A0A0A;
  --dark:   #111111;
  --dark2:  #1A1A1A;
  --white:  #FFFFFF;
  --off:    #F4F2EE;
  --muted:  #888888;
  --border: rgba(255,255,255,.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .75rem 1.6rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #C73B3C; }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--off); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.05); }
.btn-outline-light { background: transparent; color: var(--black); border-color: rgba(0,0,0,.3); }
.btn-outline-light:hover { border-color: var(--black); }

/* ── NAV ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(16px);
  padding: .85rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 38px; width: auto; filter: brightness(0) invert(1); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
  margin-left: auto;
}
.nav-link {
  padding: .45rem .8rem;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: color .15s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark2);
  border: 1px solid var(--border);
  min-width: 200px;
  z-index: 200;
  padding: .4rem 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: .55rem 1.1rem;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: color .12s, background .12s;
}
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,.04); }

.nav-cta { margin-left: .75rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all .25s; }
.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); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,1) 0%,
    rgba(10,10,10,.5) 40%,
    rgba(10,10,10,.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 4rem;
  width: 100%;
}
.hero-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
}
.hero h1 {
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  max-width: 420px;
  margin-bottom: 2rem;
  line-height: 1.65;
  font-weight: 400;
}
.hero-actions { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.hero-trust {
  position: absolute;
  bottom: 4rem;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .4rem;
}
.hero-trust-item {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.hero-trust-item strong { color: rgba(255,255,255,.85); }

/* ── MARQUEE STRIP ───────────────────────────────────────── */
.marquee-strip {
  background: var(--red);
  padding: .85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.9);
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS ─────────────────────────────────────────────── */
section { padding: 7rem 0; }
.section-light { background: var(--off); color: var(--black); }
.section-dark  { background: var(--dark2); }

.section-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
}
.section-light .section-label { color: var(--red); }
.section-light .section-label::before { background: var(--red); }

h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.1rem; margin-bottom: .5rem; }
p { line-height: 1.7; }

/* ── ABOUT SPLIT ─────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 640px;
}
.about-split-img {
  position: relative;
  overflow: hidden;
}
.about-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.about-split-img:hover img { transform: scale(1.03); }
.about-split-content {
  background: var(--dark2);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-split-content p { color: rgba(255,255,255,.6); margin-bottom: 1rem; font-size: .95rem; }
.checklist { margin: 1.5rem 0; display: grid; gap: .6rem; }
.checklist li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='none' stroke='%23fff' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  cursor: default;
  transition: color .15s;
  gap: 1rem;
}
.service-row:hover { color: var(--white); }
.service-row:nth-child(odd) { padding-right: 3rem; }
.service-row:nth-child(even) { padding-left: 3rem; border-left: 1px solid var(--border); }
.service-row-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: inherit;
  transition: color .15s;
}
.service-row:hover .service-row-name { color: var(--white); }
.service-arrow { color: var(--red); font-size: 1.1rem; opacity: 0; transition: opacity .15s, transform .15s; }
.service-row:hover .service-arrow { opacity: 1; transform: translateX(4px); }

/* ── STATS ROW ───────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-cell {
  padding: 3rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  display: block;
}
.stat-num em { color: var(--red); font-style: normal; }
.stat-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: .5rem;
}

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.review-card {
  background: var(--dark2);
  padding: 2rem;
  transition: background .2s;
}
.review-card:hover { background: #222; }
.review-stars { color: #FBBF24; font-size: .9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.reviewer-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
}
.review-date { font-size: .72rem; color: var(--muted); margin-top: .15rem; }

/* ── GALLERY GRID ────────────────────────────────────────── */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 2rem;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 6px;
}
.photo-grid-item {
  overflow: hidden;
  position: relative;
  background: var(--dark2);
}
.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.photo-grid-item:hover img { transform: scale(1.06); }
.photo-grid-item.wide { grid-column: span 8; }
.photo-grid-item.medium { grid-column: span 6; }
.photo-grid-item.narrow { grid-column: span 4; }
.photo-grid-item.tall { grid-row: span 2; }
.photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem .9rem .7rem;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  opacity: 0;
  transition: opacity .3s;
}
.photo-grid-item:hover .photo-label { opacity: 1; }

/* ── CITY CARDS ──────────────────────────────────────────── */
.city-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.city-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--dark2);
}
.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: opacity .4s, transform .6s;
}
.city-card:hover img { opacity: .75; transform: scale(1.04); }
.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.85) 0%, transparent 60%);
}
.city-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
}
.city-card-content h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: .3rem;
}
.city-card-content p {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .15rem;
  line-height: 1.4;
  text-transform: none;
}
.city-card-content a.city-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .85rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  transition: gap .15s;
}
.city-card-content a.city-link:hover { gap: .6rem; }

/* ── CTA FULL ────────────────────────────────────────────── */
.cta-full {
  background: var(--red);
  padding: 7rem 0;
  text-align: center;
}
.cta-full h2 { font-size: clamp(2.5rem, 6vw, 5rem); color: var(--white); margin-bottom: .75rem; }
.cta-full p { color: rgba(255,255,255,.75); max-width: 480px; margin-inline: auto; margin-bottom: 2.5rem; font-size: 1rem; }
.cta-btns { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-label { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.55); max-width: 560px; font-size: 1rem; margin-bottom: 2rem; }
.page-hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }

/* ── CONTENT SECTIONS ────────────────────────────────────── */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.content-split.reverse > :first-child { order: 2; }
.content-split.reverse > :last-child  { order: 1; }
.content-split-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.content-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.content-split p { color: rgba(255,255,255,.6); font-size: .95rem; margin-bottom: 1rem; }
.section-light .content-split p { color: rgba(0,0,0,.6); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  text-align: left;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .15s;
}
.faq-question:hover, .faq-question.open { color: var(--red); }
.faq-icon { font-size: 1.2rem; transition: transform .25s; color: var(--red); flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  padding: 0;
}
.faq-answer.open { max-height: 300px; padding-bottom: 1.5rem; }

/* ── QUOTE PAGE ──────────────────────────────────────────── */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.quote-perks { margin-top: 2rem; display: grid; gap: 1.25rem; }
.quote-perk { display: flex; align-items: flex-start; gap: .9rem; }
.perk-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: .55rem;
}
.perk-text strong { display: block; font-size: .88rem; color: var(--white); margin-bottom: .1rem; }
.perk-text span { font-size: .8rem; color: var(--muted); }
.price-callout {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
}
.price-callout p { color: var(--muted); font-size: .8rem; margin: 0; }
.price-callout .price-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin: .25rem 0 .15rem;
}

.quote-form-wrap { background: var(--dark2); padding: 2.5rem; border: 1px solid var(--border); }
.form-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: .7rem 1rem;
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  transition: border-color .2s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--red);
}
textarea { resize: vertical; min-height: 90px; }
select option { background: var(--black); }

.services-check { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem; margin-top: .35rem; }
.services-check label,
.timeline-check label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 400;
  font-size: .82rem;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,.55);
  cursor: pointer;
}
.timeline-check { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem; }
input[type="checkbox"], input[type="radio"] { accent-color: var(--red); width: 14px; height: 14px; flex-shrink: 0; }
.form-submit .btn { width: 100%; justify-content: center; padding: 1rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--white);
  display: block;
  margin-bottom: .85rem;
}
.footer-brand p { font-size: .82rem; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.3);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul li a { font-size: .82rem; color: var(--muted); transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .6rem; font-size: .82rem; color: var(--muted); }
.footer-contact-item a { color: var(--muted); transition: color .15s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: .75rem;
  color: rgba(255,255,255,.25);
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom a { color: rgba(255,255,255,.3); transition: color .15s; }
.footer-bottom a:hover { color: var(--white); }

/* ── SHOP ────────────────────────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.shop-card { background: var(--dark2); padding: 2.5rem 2rem; }
.shop-card h3 { font-size: .9rem; margin-bottom: .6rem; color: var(--white); }
.shop-card p { font-size: .85rem; color: var(--muted); margin-bottom: .75rem; }
.shop-card ul li {
  font-size: .82rem;
  color: var(--muted);
  padding: .2rem 0 .2rem 1rem;
  position: relative;
}
.shop-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--red); font-size: .75rem; }

.loc-badges { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 2.5rem; }
.loc-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1rem;
  border: 1px solid var(--border);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.loc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.loc-dot.open { background: #22c55e; }
.loc-dot.soon { background: #f59e0b; }

/* ── 404 ─────────────────────────────────────────────────── */
.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}
.not-found-code {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 10rem;
  font-weight: 800;
  color: var(--red);
  opacity: .1;
  line-height: 1;
  margin-bottom: -2rem;
}
.not-found h1 { font-size: 2.5rem; margin-bottom: .75rem; }
.not-found p { color: var(--muted); margin-bottom: 2.5rem; }
.not-found-links { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.quick-links { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.quick-link {
  padding: .4rem .9rem;
  border: 1px solid var(--border);
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  transition: all .15s;
}
.quick-link:hover { border-color: var(--red); color: var(--red); }

/* ── SCROLL ANIMATION ────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  .about-split, .content-split, .quote-layout { grid-template-columns: 1fr; }
  .content-split.reverse > :first-child, .content-split.reverse > :last-child { order: unset; }
  .about-split-content { padding: 3rem 2rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stats-row .stat-cell:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .city-row { grid-template-columns: 1fr; }
  .city-card { aspect-ratio: 16/9; }
  .photo-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; }
  .photo-grid-item.wide { grid-column: span 6; }
  .photo-grid-item.medium { grid-column: span 3; }
  .photo-grid-item.narrow { grid-column: span 3; }
  .services-list { grid-template-columns: 1fr; }
  .service-row:nth-child(even) { padding-left: 0; border-left: none; }
  .service-row:nth-child(odd) { padding-right: 0; }
}
@media (max-width: 680px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black);
    padding: 6rem 2rem 2rem;
    z-index: 90;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 1rem 0; font-size: 1rem; border-bottom: 1px solid var(--border); color: var(--white); }
  .nav-dropdown-menu { position: static; transform: none; background: transparent; border: none; padding: .25rem 0 .25rem 1rem; display: none; }
  .nav-dropdown-menu.mobile-open { display: block; }
  .nav-dropdown:hover .nav-dropdown-menu:not(.mobile-open) { display: none; }
  .hamburger { display: flex; z-index: 101; position: relative; }
  .nav-cta { display: none; }
  .hero h1 { font-size: 3rem; }
  .hero-trust { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form-row, .services-check, .timeline-check { grid-template-columns: 1fr; }
  section { padding: 4rem 0; }
  .photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .photo-grid-item.wide, .photo-grid-item.medium, .photo-grid-item.narrow { grid-column: span 1; }
  .photo-grid-item.tall { grid-row: span 1; }
  .quote-layout { gap: 3rem; }
}
