/* ============================================
   HKN CONSTRUCTION — LIGHT LUXURY THEME
   taste-skill: DESIGN_VARIANCE:8 MOTION:6
   impeccable: production-grade
   Palette: warm off-white · copper · near-black
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ---- TOKENS ---- */
:root {
  --bg:          #F8F6F1;
  --surface:     #EFECEA;
  --surface-2:   #E6E3DC;
  --surface-3:   #DDD9D0;
  --ink:         #1A1814;
  --ink-2:       #2E2B24;
  --muted:       #9A9088;
  --muted-2:     #C2BCB2;
  --copper:      #B87333;
  --copper-light: rgba(184,115,51,0.10);
  --copper-glow:  rgba(184,115,51,0.22);
  --line:         rgba(26,24,20,0.09);
  --line-strong:  rgba(26,24,20,0.16);
  --font: 'Outfit', system-ui, sans-serif;

  /* 8pt grid */
  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-6:  3rem;
  --sp-8:  4rem;
  --sp-12: 6rem;
  --sp-16: 8rem;
  --sp-24: 12rem;

  /* Motion — Emil Kowalski curves */
  --spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);   /* Emil: strong ease-out */
  --ease-io:  cubic-bezier(0.77, 0, 0.175, 1);   /* Emil: strong ease-in-out */
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1); /* Emil: iOS drawer */
  --t-fast:   160ms;
  --t-mid:    300ms;
  --t-slow:   600ms;
}

/* ---- RESET ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition:
    background var(--t-mid) var(--ease-out),
    backdrop-filter var(--t-mid) var(--ease-out),
    padding var(--t-mid) var(--ease-out),
    box-shadow var(--t-mid) var(--ease-out),
    border-color var(--t-mid),
    top 0.38s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.navbar.nav-hidden {
  top: -90px;
}
.navbar.scrolled {
  background: rgba(248,246,241,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 0.8rem 0;
  border-bottom-color: var(--line);
  box-shadow: 0 2px 16px rgba(26,24,20,0.07);
}
.navbar.scrolled .nav-links a { color: rgba(26,24,20,0.8); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--ink); }
.navbar.scrolled .btn-nav { color: var(--ink-2); }
.navbar.scrolled .hamburger span { background: var(--ink); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}
.logo-wrap:hover { opacity: 0.65; }
/* Black logo on light background — no filter needed */
.logo-img {
  height: 44px;
  width: auto;
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(26,24,20,0.8);
  padding: 0.4rem 0.55rem;
  position: relative;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--copper);
  transition: width var(--t-mid) var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.btn-nav {
  margin-left: var(--sp-2);
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line-strong);
  color: var(--ink-2);
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast),
    transform var(--t-fast) var(--spring);
}
@media (hover: hover) and (pointer: fine) {
  .btn-nav:hover {
    background: var(--copper);
    color: #fff;
    border-color: var(--copper);
    transform: translateY(-2px);
  }
}
.btn-nav:active { transform: scale(0.97); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform var(--t-mid) var(--spring), opacity var(--t-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--t-fast), transform var(--t-mid) var(--spring);
}
@media (hover: hover) and (pointer: fine) {
  .mobile-menu a:hover {
    color: var(--copper);
    transform: translateX(10px);
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform var(--t-fast) var(--spring),
    box-shadow var(--t-fast),
    background var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast);
}
.btn:active { transform: scale(0.97) !important; }
.btn-copper {
  background: var(--copper);
  color: #fff;
  border: 1px solid var(--copper);
}
@media (hover: hover) and (pointer: fine) {
  .btn-copper:hover {
    box-shadow: 0 10px 36px var(--copper-glow);
    transform: translateY(-3px);
  }
}
.btn-outline {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover {
    border-color: var(--copper);
    color: var(--copper);
    transform: translateY(-3px);
  }
}
.btn-full { width: 100%; justify-content: center; }
.magnetic { display: inline-block; }

/* ============================================
   HERO — ASYMMETRIC SPLIT
   ============================================ */
.hero {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(80px + var(--sp-12)) var(--sp-8) var(--sp-12);
  position: relative;
  z-index: 2;
  background: transparent;
  max-width: 680px;
}
.hero-right {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(15,12,8,0.82) 0%,
    rgba(15,12,8,0.55) 45%,
    rgba(15,12,8,0.15) 75%,
    rgba(15,12,8,0.05) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  transition: transform 8s var(--ease-out);
}
.hero-img.loaded { transform: scale(1); }

.hero-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 2rem; height: 1px;
  background: var(--copper);
}
.hero-h1 {
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: var(--sp-6);
}
.hero-h1 em {
  font-style: normal;
  color: var(--copper);
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 42ch;
  margin-bottom: var(--sp-8);
  line-height: 1.75;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.hero-promise {
  margin-top: var(--sp-8);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 2px solid var(--copper);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  /* Liquid glass: inner edge refraction */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.08);
  max-width: 46ch;
}
.hero-promise-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.35rem;
}
.hero-promise-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  font-weight: 400;
}

/* Hero — btn-outline light variant */
.hero .btn-outline {
  border-color: rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.90);
}
.hero .btn-outline:hover {
  border-color: var(--copper);
  color: var(--copper);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-band {
  background: var(--copper);
  color: #fff;
  overflow: hidden;
  padding: 0.85rem 0;
}
.marquee-track {
  display: flex;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 2.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-track .sep {
  padding: 0;
  opacity: 0.4;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SECTION LABELS — sparse per impeccable
   ============================================ */
.sec-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sec-label::before {
  content: '';
  display: inline-block;
  width: 1.5rem; height: 1px;
  background: var(--copper);
}

/* ============================================
   TYPOGRAPHY SCALE
   ============================================ */
.h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--ink);
}
.h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ============================================
   SERVICE ROWS
   ============================================ */
.services-section { padding: var(--sp-12) 0; }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
  align-items: end;
}
.services-header-right {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 48ch;
  font-weight: 400;
}
.service-rows {
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 72px 140px 1fr 200px 48px;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-5, 2.5rem) var(--sp-2);
  border-bottom: 1px solid var(--line);
  position: relative;
  cursor: default;
  transition: background var(--t-mid) var(--ease-out);
}
.service-row:hover { background: var(--surface); }
.srv-idx {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--copper);
  font-variant-numeric: tabular-nums;
}
.srv-name {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color var(--t-fast);
}
.service-row:hover .srv-name { color: var(--copper); }
.srv-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 400;
}
.srv-arrow {
  font-size: 1rem;
  color: var(--muted-2);
  justify-self: end;
  transition: transform var(--t-mid) var(--spring), color var(--t-fast);
}

.srv-img-wrap {
  width: 140px;
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.srv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
}
.service-row:hover .srv-img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.service-row:hover .srv-arrow {
  transform: translate(4px, -4px);
  color: var(--copper);
}

/* ============================================
   STATS BAND
   ============================================ */
.stats-band {
  padding: var(--sp-12) 0;
  background: var(--ink);
  border-top: none;
  border-bottom: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: var(--sp-6) var(--sp-6);
  border-left: 1px solid rgba(255,255,255,0.08);
  transition: background var(--t-fast);
}
.stat-item:first-child { border-left: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-num {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--copper);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.5;
  font-weight: 500;
}

/* ============================================
   WHY CHOOSE
   ============================================ */
.why-section {
  padding: var(--sp-24) 0;
  background: var(--surface);
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,115,51,0.12), transparent);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-16);
  align-items: start;
}
.why-promise-card {
  margin-top: var(--sp-8);
  padding: var(--sp-6);
  border: 1px solid var(--line-strong);
  background: var(--bg);
  position: relative;
}
.why-promise-card::before {
  content: '"';
  position: absolute;
  top: -1rem; right: var(--sp-4);
  font-size: 5rem;
  color: var(--copper);
  opacity: 0.12;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}
.why-promise-quote {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: var(--sp-2);
  font-weight: 400;
}
.why-promise-note {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.why-list {
  display: flex;
  flex-direction: column;
}
.why-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-4);
  border-bottom: 1px solid var(--line);
  transition:
    background var(--t-fast) var(--ease-out),
    transform var(--t-mid) var(--ease-out);
}
.why-item:last-child { border-bottom: none; }
@media (hover: hover) and (pointer: fine) {
  .why-item:hover {
    background: var(--bg);
    transform: translateX(8px);
  }
}
.why-icon {
  width: 34px; height: 34px;
  background: var(--copper-light);
  border: 1px solid rgba(184,115,51,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.why-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   REVIEWS — staggered, not identical
   ============================================ */
.reviews-section { padding: var(--sp-24) 0; }
.reviews-header { margin-bottom: var(--sp-12); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  align-items: start;
}
.review-card {
  padding: var(--sp-8);
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--t-mid) var(--ease-out),
    box-shadow var(--t-mid) var(--ease-out);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem; right: var(--sp-4);
  font-size: 6rem;
  font-weight: 800;
  color: var(--copper);
  opacity: 0.07;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(26,24,20,0.07);
  }
}
.review-card:nth-child(even) { margin-top: 0; }
.review-stars { color: var(--copper); font-size: 0.72rem; margin-bottom: var(--sp-3); letter-spacing: 0.12em; }
.review-text {
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--ink-2);
  margin-bottom: var(--sp-6);
  font-weight: 400;
}
.review-author { display: flex; align-items: center; gap: var(--sp-3); }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--copper-light);
  border: 1px solid rgba(184,115,51,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--copper);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.review-name  { font-weight: 700; font-size: 0.85rem; color: var(--ink); }
.review-loc   { font-size: 0.75rem; color: var(--muted); margin-top: 0.1rem; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-section {
  padding: var(--sp-16) 0;
  background: var(--ink);
  overflow: hidden;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,115,51,0.3), transparent);
}
/* Buttons need light variants inside dark CTA */
.cta-section .btn-outline {
  border-color: rgba(248,246,241,0.25);
  color: var(--bg);
}
.cta-section .btn-outline:hover {
  border-color: var(--copper);
  color: var(--copper);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-12);
  align-items: center;
}
.cta-h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--bg);
}
.cta-h2 em { font-style: normal; color: var(--copper); }
.cta-sub { font-size: 0.95rem; color: rgba(248,246,241,0.55); margin-top: var(--sp-3); }
.cta-actions { display: flex; flex-direction: column; gap: var(--sp-3); flex-shrink: 0; }

/* ============================================
   REVIEWS PAGE
   ============================================ */
.rating-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--sp-8) 0;
}
.rating-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.rating-score { text-align: center; }
.rating-num {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}
.rating-stars {
  font-size: 1.4rem;
  color: var(--copper);
  letter-spacing: 2px;
  margin: 0.25rem 0;
}
.rating-source {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.rating-divider {
  width: 1px;
  height: 60px;
  background: var(--line-strong);
}
.rating-quote {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
  max-width: 30ch;
  text-align: center;
  line-height: 1.5;
}
.reviews-section-full {
  padding: var(--sp-24) 0;
}
.reviews-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: start;
}
.review-card-full {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: var(--sp-8);
  transition:
    box-shadow var(--t-mid) var(--ease-out),
    border-color var(--t-mid) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .review-card-full:hover {
    box-shadow: 0 12px 36px rgba(26,24,20,0.07);
    border-color: rgba(184,115,51,0.25);
  }
}
.rv-stars {
  color: var(--copper);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-4);
}
.rv-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: var(--sp-6);
  font-style: italic;
}
.rv-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  border-top: 1px solid var(--line);
  padding-top: var(--sp-4);
}
.rv-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rv-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.1rem;
}
.rv-project {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .reviews-grid-full { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .reviews-grid-full { grid-template-columns: 1fr; }
  .rating-divider { display: none; }
  .rating-inner { gap: var(--sp-6); }
}


/* ---- DARK HERO NAVBAR (index.html only) ---- */
.navbar.dark-hero .logo-img { filter: brightness(0) invert(1); }
.navbar.dark-hero .nav-links a { color: rgba(255,255,255,0.85); }
.navbar.dark-hero .nav-links a:hover,
.navbar.dark-hero .nav-links a.active { color: #ffffff; }
.navbar.dark-hero .btn-nav {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.9);
}
.navbar.dark-hero .hamburger span { background: rgba(255,255,255,0.9); }
/* When scrolled, dark-hero overrides disappear — scrolled styles take over */
.navbar.dark-hero.scrolled .logo-img { filter: none; }
.navbar.dark-hero.scrolled .nav-links a { color: rgba(26,24,20,0.8); }
.navbar.dark-hero.scrolled .nav-links a:hover,
.navbar.dark-hero.scrolled .nav-links a.active { color: var(--ink); }
.navbar.dark-hero.scrolled .btn-nav {
  border-color: var(--line-strong);
  color: var(--ink-2);
}
.navbar.dark-hero.scrolled .hamburger span { background: var(--ink); }

/* ============================================
   FOOTER — dark, contrasting
   ============================================ */
.footer {
  padding: var(--sp-16) 0 var(--sp-8);
  background: var(--ink);
  color: rgba(248,246,241,0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(248,246,241,0.07);
}
/* Footer logo — invert to white */
.footer .logo-img { filter: brightness(0) invert(1); }
.footer-brand p {
  color: rgba(248,246,241,0.45);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 26ch;
  margin-top: var(--sp-3);
}
.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.35);
  margin-bottom: var(--sp-4);
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.85rem;
  color: rgba(248,246,241,0.5);
  margin-bottom: 0.6rem;
  line-height: 1.5;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--copper); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-6);
  font-size: 0.75rem;
  color: rgba(248,246,241,0.25);
}

/* ============================================
   PAGE HERO — subpages
   ============================================ */
.page-hero {
  padding: calc(80px + var(--sp-16)) 0 var(--sp-16);
  position: relative;
}
.page-hero-line {
  position: absolute;
  top: 79px; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}
.page-hero p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.75;
  font-weight: 400;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.main-services { padding: var(--sp-12) 0; }
.main-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.msvc-card {
  background: var(--bg);
  padding: var(--sp-8);
  transition: background var(--t-mid) var(--ease-out);
}
.msvc-card:hover { background: var(--surface); }
.msvc-card:first-child { grid-row: 1 / 3; }
.msvc-num {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--copper);
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--sp-8);
}
.msvc-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--sp-3);
  color: var(--ink);
}
.msvc-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 42ch;
  font-weight: 400;
}
.msvc-img-placeholder {
  width: 100%;
  height: 180px;
  background: var(--surface-2);
  margin-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px dashed var(--line-strong);
}
.msvc-card:first-child .msvc-img-placeholder { height: 280px; }

/* Real service images */
.msvc-img-wrap {
  width: 100%;
  height: 180px;
  margin-top: var(--sp-6);
  overflow: hidden;
  border-radius: 2px;
}
.msvc-card:first-child .msvc-img-wrap { height: 280px; }
.msvc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.msvc-card:hover .msvc-img { transform: scale(1.04); }

/* General services */
.general-svc-section {
  padding: var(--sp-24) 0;
  background: var(--surface);
  position: relative;
}
.general-svc-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,115,51,0.12), transparent);
}
.gen-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: var(--sp-12);
}
.gen-item {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color var(--t-fast), background var(--t-fast);
  font-weight: 400;
}
.gen-item:hover { color: var(--ink); background: var(--bg); }
.gen-item::before {
  content: '—';
  color: var(--copper);
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.mission-section { padding: var(--sp-24) 0; }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
  align-items: center;
}
.mission-img-wrap { position: relative; }
.mission-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px dashed var(--line-strong);
}

/* Real mission/about image */
.mission-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.mission-accent {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--copper);
  color: #fff;
  padding: 0.85rem 1.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mission-lead {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}
.mission-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 400;
}

/* Approach steps */
.approach-section { padding: var(--sp-24) 0; background: var(--surface); }
.approach-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: var(--sp-12);
}
.approach-step {
  background: var(--surface);
  padding: var(--sp-6);
  transition: background var(--t-fast);
}
.approach-step:hover { background: var(--bg); }
.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(26,24,20,0.06);
  line-height: 1;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.04em;
}
.step-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.step-items {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 400;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: var(--sp-12) 0 var(--sp-24); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-16);
  align-items: start;
}
.info-block {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--line);
}
.info-block:last-of-type { border-bottom: none; }
.info-icon {
  width: 40px; height: 40px;
  background: var(--copper-light);
  border: 1px solid rgba(184,115,51,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.info-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.25rem;
}
.info-value {
  font-size: 0.875rem;
  color: var(--ink-2);
  line-height: 1.6;
  font-weight: 400;
}
.info-value a { transition: color var(--t-fast); }
.info-value a:hover { color: var(--copper); }

.qr-block {
  margin-top: var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
}
.qr-img { width: 80px; height: 80px; flex-shrink: 0; }
.qr-label { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

/* Form */
.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-8);
  color: var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.form-group { margin-bottom: var(--sp-4); }
.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  -webkit-appearance: none;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--copper);
  background: var(--bg);
}
.form-group select option { background: var(--surface); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.7rem; color: var(--muted); margin-top: var(--sp-3); }
.form-success {
  text-align: center;
  padding: var(--sp-16) var(--sp-6);
  display: none;
}
.form-success.visible { display: block; }
.success-circle {
  width: 60px; height: 60px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--copper);
  margin: 0 auto var(--sp-4);
}

/* ============================================
   SCROLL REVEAL — stagger animations
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out);
}
[data-reveal="left"]  { transform: translateX(-28px); opacity: 0; }
[data-reveal="right"] { transform: translateX(28px);  opacity: 0; }
/* Emil: never animate from scale(0) — start scale(0.95) + opacity:0 */
[data-reveal="scale"] { transform: scale(0.95); opacity: 0; }
[data-reveal].revealed { opacity: 1; transform: none; }

[data-delay="1"] { transition-delay: 80ms;  }
[data-delay="2"] { transition-delay: 160ms; }
[data-delay="3"] { transition-delay: 240ms; }
[data-delay="4"] { transition-delay: 320ms; }
[data-delay="5"] { transition-delay: 400ms; }
[data-delay="6"] { transition-delay: 480ms; }

/* ============================================
   PAGE TRANSITIONS
   ============================================ */
body {
  animation: page-in 0.32s var(--ease-out) both;
}
@keyframes page-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
body.page-exit {
  animation: page-out 0.26s var(--ease-io) forwards;
  pointer-events: none;
}
@keyframes page-out {
  to { opacity: 0; transform: translateY(-8px); }
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  background: rgba(248,246,241,0.97);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform var(--t-mid) var(--ease-out);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .sc-call {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--copper);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.875rem 1rem;
  text-align: center;
  letter-spacing: 0.02em;
  transition: background var(--t-fast);
}
.sticky-cta .sc-call:hover { background: #a0622a; }
.sticky-cta .sc-book {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--line-strong);
  text-align: center;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.sticky-cta .sc-book:hover {
  border-color: var(--copper);
  color: var(--copper);
}
@media (max-width: 768px) {
  .sticky-cta { display: grid; }
  body { padding-bottom: 72px; }
}

/* ============================================
   GALLERY / PROJECTS
   ============================================ */
.gallery-section { padding: var(--sp-8) 0 var(--sp-16); }
.gallery-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.gallery-filter button {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  /* Emil: specify exact properties — never use transition:all */
  transition:
    border-color var(--t-fast) var(--ease-out),
    color var(--t-fast) var(--ease-out),
    background var(--t-fast) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .gallery-filter button:hover { border-color: var(--copper); color: var(--copper); }
}
.gallery-filter button.active {
  border-color: var(--copper);
  color: #fff;
  background: var(--copper);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 3px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  cursor: pointer;
}
.gallery-card.tall { grid-row: span 2; }
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.gallery-card:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,12,8,0.78) 0%, rgba(15,12,8,0) 55%);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem 1.25rem;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-inner { color: #fff; }
.gallery-cat {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.25rem;
}
.gallery-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .gallery-card.tall { grid-row: auto; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-section {
  padding: var(--sp-16) 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.founder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.founder-img-wrap {
  position: relative;
  flex-shrink: 0;
}
.founder-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.founder-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1.5rem;
  background: var(--copper);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 0.875rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  line-height: 1;
}
.founder-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--sp-2);
}
.founder-name {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.founder-role {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--line);
}
.founder-bio {
  font-size: 0.975rem;
  color: var(--ink-2);
  line-height: 1.85;
  margin-bottom: var(--sp-3);
  max-width: 54ch;
}
.founder-bio strong { color: var(--ink); font-weight: 600; }
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--sp-4);
}
.founder-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--line-strong);
  color: var(--ink-2);
}
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .founder-img { aspect-ratio: 4/3; max-width: 400px; }
  .founder-badge { display: none; }
}

/* ============================================
   FOOTER SOCIAL
   ============================================ */
.footer-social {
  display: flex;
  gap: 0.875rem;
  margin-top: var(--sp-3);
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.footer-social a:hover {
  border-color: var(--copper);
  color: var(--copper);
}

/* ============================================
   PROJECTS TEASER (homepage)
   ============================================ */
.projects-teaser {
  padding: var(--sp-16) 0;
  background: var(--surface);
  position: relative;
}
.projects-teaser-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
  gap: var(--sp-4);
}
.projects-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 3px;
}
.pt-card {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
}
.pt-card.wide { grid-column: span 2; }
.pt-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.pt-card:hover img { transform: scale(1.06); }
.pt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,12,8,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t-mid);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.pt-card:hover .pt-overlay { opacity: 1; }
.pt-cat {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.2rem;
}
.pt-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .projects-teaser-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .pt-card.wide { grid-column: auto; }
  .projects-teaser-header { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   HOW WE WORK (homepage process)
   ============================================ */
.process-section {
  padding: var(--sp-16) 0;
  position: relative;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: var(--sp-8);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, var(--copper), rgba(184,115,51,0.2));
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 0 var(--sp-2);
  text-align: center;
}
.process-num {
  width: 56px; height: 56px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--copper);
  background: var(--bg);
  margin: 0 auto var(--sp-3);
  transition: background var(--t-fast), color var(--t-fast);
}
.process-step:hover .process-num {
  background: var(--copper);
  color: #fff;
}
.process-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.process-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .process-steps::before { display: none; }
}
@media (max-width: 520px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================
   GOOGLE MAPS
   ============================================ */
.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  margin-top: var(--sp-12);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(40%) contrast(1.05);
}
.map-label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--bg);
  padding: 0.75rem 1.25rem;
  border-left: 2px solid var(--copper);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(26,24,20,0.12);
}
@media (max-width: 768px) {
  .map-wrap { aspect-ratio: 4/3; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .hero { min-height: 100svh; }
  .hero-left { max-width: 100%; padding: calc(80px + var(--sp-8)) var(--sp-4) var(--sp-12); }
  .services-header { grid-template-columns: 1fr; gap: var(--sp-4); }
  .service-row { grid-template-columns: 60px 1fr 48px; }
  .srv-img-wrap { display: none; }
  .srv-desc { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .cta-inner { grid-template-columns: 1fr; gap: var(--sp-6); }
  .main-services-grid { grid-template-columns: 1fr; }
  .msvc-card:first-child { grid-row: auto; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card:nth-child(even) { margin-top: 0; }
  .review-card:nth-child(even) { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gen-list { grid-template-columns: 1fr 1fr; }
  .approach-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-h1 { font-size: clamp(2.8rem, 12vw, 5rem); }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track { animation-play-state: paused; }
  .hero-img { transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
