/* ============================================================
   GENAY FAÇADES — Design system V4
   ============================================================ */

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

:root {
  --ink: #0e0e0e;
  --ink-2: #1d1d1d;
  --bone: #f5f3ee;
  --paper: #fbfaf6;
  --paper-2: #efece5;
  --gold: #c19a5b;
  --gold-2: #b08847;
  --gold-warm: #d9b685;
  --stone: #8f8a82;
  --muted: #45413c;
  --line: rgba(14, 14, 14, 0.1);
  --line-soft: rgba(14, 14, 14, 0.05);
  --line-dark: rgba(245, 243, 238, 0.12);

  --display: 'Outfit', system-ui, -apple-system, sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 76px;
  --container: 1400px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  min-height: 100vh;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
::selection { background: var(--gold); color: var(--paper); }

/* ============================================================
   TYPO
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.t-display-xl {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 6.5vw, 6rem);
  line-height: 1;
  letter-spacing: -0.035em;
  word-wrap: break-word;
}
.t-display-lg {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.t-display-md {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.t-display-sm {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.3vw, 1.7rem);
  line-height: 1.15;
}

.t-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-eyebrow::before { content: ""; width: 1.4rem; height: 1px; background: var(--gold); flex-shrink: 0; }

.t-body { font-size: 1rem; line-height: 1.7; color: var(--muted); }
.t-body-lg { font-size: 1.05rem; line-height: 1.7; color: var(--muted); }
.lead {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
  color: var(--muted);
}
.accent { color: var(--gold); font-weight: 700; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}
@media (min-width: 640px) { .container { padding: 0 1.75rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1280px) { .container { padding: 0 3.5rem; } }

.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
@media (min-width: 1024px) { .section { padding: 7.5rem 0; } }

.section--sm { padding: 3rem 0; }
@media (min-width: 768px) { .section--sm { padding: 4rem 0; } }
.section--lg { padding: 5rem 0; }
@media (min-width: 1024px) { .section--lg { padding: 9rem 0; } }

.section--ink { background: var(--ink); color: var(--bone); }
.section--bone { background: var(--bone); }
.section--paper { background: var(--paper); }
.section--paper-2 { background: var(--paper-2); }

.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--bone); }
.section--ink .t-body, .section--ink .t-body-lg, .section--ink .lead { color: rgba(245, 243, 238, 0.72); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.35s var(--ease-out);
  border: 1.5px solid transparent;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease-out);
  font-weight: 400;
}
.btn:hover .arrow { transform: translateX(0.35rem); }

.btn--gold { background: var(--gold); color: var(--paper); border-color: var(--gold); }
.btn--gold:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(14,14,14,0.4); }
.btn--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--ink:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(193,154,91,0.4); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: var(--paper); border-color: rgba(245,243,238,0.5); }
.btn--outline-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); transform: translateY(-2px); }

.btn--lg { padding: 1.15rem 2.15rem; font-size: 0.8rem; min-height: 52px; }
.btn--xl { padding: 1.3rem 2.5rem; font-size: 0.83rem; min-height: 56px; }
.btn--block { display: flex; width: 100%; }

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 0.4rem;
  border-bottom: 1.5px solid var(--ink);
  transition: all 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.link:hover { color: var(--gold); border-bottom-color: var(--gold); gap: 0.85rem; }
.link--light { color: var(--paper); border-bottom-color: var(--paper); }
.link--light:hover { color: var(--gold-warm); border-bottom-color: var(--gold-warm); }

/* ============================================================
   HEADER — TOUJOURS visible, fond clair solide
   ============================================================ */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}
.header.is-scrolled {
  background: rgba(251, 250, 246, 0.99);
  box-shadow: 0 2px 18px rgba(14,14,14,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.25rem;
  max-width: 1600px;
  margin: 0 auto;
  min-height: var(--header-h);
  transition: padding 0.3s var(--ease);
}
@media (min-width: 640px) { .header-inner { padding: 0.9rem 1.75rem; gap: 1.5rem; } }
@media (min-width: 1024px) { .header-inner { padding: 1rem 2.5rem; } }
@media (min-width: 1280px) { .header-inner { padding: 1rem 3.5rem; } }

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.3s var(--ease);
}
@media (min-width: 768px) { .logo img { height: 52px; } }
.header.is-scrolled .logo img { height: 40px; }
@media (min-width: 768px) { .header.is-scrolled .logo img { height: 46px; } }

.nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
@media (min-width: 1024px) { .nav { display: flex; } }
.nav-link {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.85rem 0.95rem;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
  display: inline-block;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.55rem;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out);
}
.nav-link:hover, .nav-link.is-active { color: var(--gold); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.nav-phone {
  display: none;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  padding: 0.7rem 1.1rem;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 1280px) { .nav-phone { display: inline-flex; } }
.nav-phone:hover { background: var(--gold); border-color: var(--gold); color: var(--paper); }
.nav-phone-pulse {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.nav-phone-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.5); opacity: 0; }
}

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem;
  width: 48px;
  height: 48px;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.3s var(--ease);
}

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.drawer.is-open { transform: translateY(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line-dark);
  flex-shrink: 0;
  background: var(--paper);
  color: var(--ink);
}
.drawer-head .logo img { height: 40px; }
.drawer-close {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 1.5rem;
  -webkit-tap-highlight-color: transparent;
}
.drawer-close:hover { color: var(--gold); }
.drawer-body {
  flex: 1;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--paper);
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: color 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.drawer-link:hover, .drawer-link.is-active { color: var(--gold); }
.drawer-link-arrow {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s var(--ease-out);
}
.drawer-link:hover .drawer-link-arrow { transform: translateX(0.4rem); }
.drawer-foot {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.drawer-foot a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(245, 243, 238, 0.75);
  padding: 0.6rem 0;
  -webkit-tap-highlight-color: transparent;
}
.drawer-foot a:hover { color: var(--gold-warm); }

/* ============================================================
   HERO — Plus de superposition, le tag est inline
   ============================================================ */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .hero {
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding-top: calc(var(--header-h) + 4rem);
    padding-bottom: 5rem;
    min-height: 92vh;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.04); }
  100% { transform: scale(1.13); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,14,14,0.45) 0%, rgba(14,14,14,0.25) 40%, rgba(14,14,14,0.8) 100%),
    linear-gradient(110deg, rgba(14,14,14,0.6) 0%, transparent 65%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 0 1.25rem;
  align-items: end;
}
@media (min-width: 640px) { .hero-body { padding: 0 1.75rem; } }
@media (min-width: 1024px) { .hero-body { grid-template-columns: 1.55fr 1fr; gap: 3.5rem; padding: 0 2.5rem; } }
@media (min-width: 1280px) { .hero-body { gap: 4.5rem; padding: 0 3.5rem; } }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(193, 154, 91, 0.15);
  border: 1px solid rgba(193, 154, 91, 0.35);
  border-radius: 999px;
}
@media (min-width: 640px) { .hero-tag { font-size: 0.7rem; padding: 0.45rem 1rem; } }
.hero-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.3rem, 7vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--paper);
  margin-bottom: 1.25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero-title .accent { color: var(--gold); font-weight: 800; }
.hero-sub {
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(245, 243, 238, 0.8);
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) { .hero-sub { font-size: 1.05rem; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.55rem;
}
@media (min-width: 640px) { .hero-meta { gap: 0.85rem; } }
@media (min-width: 1024px) { .hero-meta { grid-template-columns: 1fr; gap: 0.6rem; } }
.hero-meta-item {
  padding: 0.9rem 0.8rem;
  background: rgba(245, 243, 238, 0.07);
  border: 1px solid rgba(245, 243, 238, 0.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s var(--ease);
}
@media (min-width: 640px) { .hero-meta-item { padding: 1.1rem 1.15rem; text-align: left; } }
.hero-meta-item:hover { background: rgba(245, 243, 238, 0.11); border-color: var(--gold); }
.hero-meta-value {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.025em;
}
.hero-meta-value .accent { color: var(--gold-warm); }
.hero-meta-label {
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.6);
  margin-top: 0.35rem;
}
@media (min-width: 640px) { .hero-meta-label { font-size: 0.66rem; letter-spacing: 0.18em; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.72);
}
.marquee-item .accent { color: var(--gold); font-weight: 700; }
.marquee-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   PAGE HERO
   ============================================================ */

.page-hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
  overflow: hidden;
}
@media (min-width: 768px) { .page-hero { padding: calc(var(--header-h) + 4rem) 0 5rem; } }
@media (min-width: 1024px) { .page-hero { padding: calc(var(--header-h) + 5.5rem) 0 6.5rem; } }
.page-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(193,154,91,0.2), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: end;
}
@media (min-width: 1024px) { .page-hero-inner { grid-template-columns: 1.7fr 1fr; gap: 3.5rem; } }
.page-hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--paper);
  word-wrap: break-word;
}
.page-hero-title .accent { color: var(--gold); }
.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.55);
  margin-bottom: 1.25rem;
}
.crumbs a:hover { color: var(--gold-warm); }
.crumbs span:last-child { color: var(--gold-warm); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.shead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) { .shead { grid-template-columns: 1.5fr 1fr; gap: 3.5rem; margin-bottom: 4rem; } }
.shead-num {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 0.85rem;
}
.shead-num .accent { color: var(--gold); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .services { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .services { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.5s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.service-card:hover { transform: translateY(-6px); }
.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s var(--ease-out);
  opacity: 0.75;
}
.service-card:hover .service-card-img { transform: scale(1.06); opacity: 0.6; }
.service-card-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,14,0.15) 0%, rgba(14,14,14,0.9) 100%);
  z-index: 1;
}
.service-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
}
@media (min-width: 640px) { .service-card-content { padding: 1.75rem; } }
.service-card-num {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-warm);
}
.service-card-bottom h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--paper);
}
@media (min-width: 1024px) { .service-card-bottom h3 { font-size: 1.75rem; } }
.service-card-bottom p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(245, 243, 238, 0.78);
  margin-bottom: 1rem;
}
.service-card-bottom span.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.service-card-bottom span.cta .arrow { transition: transform 0.35s var(--ease-out); }
.service-card:hover .service-card-bottom span.cta .arrow { transform: translateX(0.4rem); }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 1.25rem;
}
@media (min-width: 1024px) { .stats { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } }
.stat {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}
.section--ink .stat { border-top-color: var(--line-dark); }
.stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.section--ink .stat-num { color: var(--paper); }
.stat-num .accent { color: var(--gold); }
.stat-num .suffix {
  font-family: var(--display);
  font-size: 0.45em;
  font-weight: 500;
  color: var(--gold);
  margin-left: 0.05em;
}
.stat-label {
  margin-top: 0.85rem;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.section--ink .stat-label { color: rgba(245, 243, 238, 0.6); }

/* ============================================================
   FEATURE PANEL
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .feature { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .feature--reverse .feature-text { order: 2; }
  .feature--reverse .feature-media { order: 1; }
}
.feature-text h2 { margin: 1rem 0 1.25rem; }
.feature-text .lead { margin-bottom: 1.5rem; }
.feature-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  margin-bottom: 1.85rem;
}
@media (min-width: 480px) { .feature-points { grid-template-columns: 1fr 1fr; gap: 0.55rem 1rem; } }
.feature-points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.4rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.section--ink .feature-points li { color: var(--paper); }
.feature-points li::before {
  content: "→";
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}
.feature-media { position: relative; }
.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.feature-media::before, .feature-media::after {
  content: "";
  position: absolute;
  width: 2.8rem;
  height: 2.8rem;
  border: 2px solid var(--gold);
  pointer-events: none;
}
.feature-media::before { top: -0.8rem; left: -0.8rem; border-right: 0; border-bottom: 0; }
.feature-media::after { bottom: -0.8rem; right: -0.8rem; border-left: 0; border-top: 0; }
.feature-badge {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  padding: 0.8rem 1.05rem;
  border-left: 3px solid var(--gold);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  max-width: calc(100% - 2.2rem);
}
.feature-badge .accent {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .process-grid { grid-template-columns: 1fr 1.4fr; gap: 5rem; } }
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.15rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-dark);
  transition: all 0.3s var(--ease);
}
.process-step:first-child { border-top: none; padding-top: 0; }
.process-step:hover { padding-left: 0.6rem; }
.process-step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.85rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.04em;
}
.process-step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--paper);
}
.process-step p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(245, 243, 238, 0.65);
}

/* ============================================================
   FEATURED PROJECTS
   ============================================================ */
.featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .featured { grid-template-columns: 1fr 1fr; gap: 1.85rem; } }
@media (min-width: 1024px) { .featured { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.project {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  cursor: pointer;
  transition: transform 0.5s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.project:hover { transform: translateY(-6px); }
.project-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ink);
}
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.project:hover .project-media img { transform: scale(1.06); }
.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}
.project h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.project-tag {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.project-loc {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1280px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi {
  padding: 1.85rem 1.65rem;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.testi:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 18px 45px -25px rgba(14,14,14,0.15);
}
.testi::before {
  content: "\"";
  position: absolute;
  top: -0.4rem;
  right: 1rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.13;
}
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.2em; }
.testi-short {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.testi-text {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}
.testi-author {
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.testi-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}
.testi-loc {
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   CITIES
   ============================================================ */
.cities-strip {
  background: var(--ink);
  padding: 2.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 768px) { .cities-strip { padding: 3.5rem 0; } }
.cities-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.city-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  color: rgba(245, 243, 238, 0.55);
}
.city-item::after {
  content: "✦";
  color: var(--gold);
  font-size: 0.45em;
}

/* ============================================================
   QUICK FORM
   ============================================================ */
.quick-form-wrap {
  background: rgba(245, 243, 238, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(245, 243, 238, 0.14);
  padding: 1.4rem 1.4rem;
  width: 100%;
  max-width: 380px;
}
@media (min-width: 640px) { .quick-form-wrap { padding: 1.75rem; max-width: 360px; } }
@media (min-width: 1024px) { .quick-form-wrap { max-width: 100%; } }
.quick-form-wrap.is-light {
  background: var(--bone);
  border: 1px solid var(--line);
  max-width: none;
}
.quick-form-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.3rem;
  color: var(--paper);
}
.quick-form-wrap.is-light .quick-form-title { color: var(--ink); }
.quick-form-sub {
  font-size: 0.78rem;
  color: rgba(245, 243, 238, 0.65);
  margin-bottom: 0.9rem;
  line-height: 1.5;
}
.quick-form-wrap.is-light .quick-form-sub { color: var(--muted); }
.quick-form input {
  width: 100%;
  background: rgba(245, 243, 238, 0.07);
  border: 1px solid rgba(245, 243, 238, 0.16);
  padding: 0.75rem 0.9rem;
  color: var(--paper);
  font-family: inherit;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.2s var(--ease);
  border-radius: 2px;
  -webkit-appearance: none;
  min-height: 44px;
}
.quick-form-wrap.is-light .quick-form input {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}
.quick-form input::placeholder { color: rgba(245, 243, 238, 0.4); }
.quick-form-wrap.is-light .quick-form input::placeholder { color: var(--stone); }
.quick-form input:focus { outline: none; border-color: var(--gold); }
.quick-form button {
  width: 100%;
  background: var(--gold);
  color: var(--paper);
  padding: 0.85rem 1rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  transition: all 0.25s var(--ease);
  border-radius: 2px;
  min-height: 48px;
}
.quick-form button:hover { background: var(--paper); color: var(--ink); }
.quick-form-wrap.is-light .quick-form button:hover { background: var(--ink); color: var(--paper); }
.quick-form-note {
  text-align: center;
  margin-top: 0.6rem;
  font-family: var(--display);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.55);
}
.quick-form-wrap.is-light .quick-form-note { color: var(--stone); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.gallery-filter {
  padding: 0.8rem 1.35rem;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  transition: all 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}
.gallery-filter:hover { color: var(--ink); border-color: var(--ink); }
.gallery-filter.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
@media (min-width: 1400px) { .gallery-grid { grid-template-columns: repeat(5, 1fr); } }

.gallery-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery-tile::after {
  content: "+";
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--paper);
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.25rem;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.35s var(--ease-out);
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile:hover::after { opacity: 1; transform: translateY(0); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.7fr; gap: 3rem; } }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.85rem 1.5rem;
  background: var(--bone);
  border: 1px solid var(--line);
}
@media (min-width: 640px) { .contact-info { padding: 2.25rem 1.85rem; } }
.contact-info h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.contact-info-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label {
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-info-val {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.contact-info-val a { word-break: break-word; }
.contact-info-val a:hover { color: var(--gold); }

.form {
  background: var(--paper);
  padding: 1.7rem 1.35rem;
  border: 1px solid var(--line);
}
@media (min-width: 640px) { .form { padding: 2.25rem 1.85rem; } }
@media (min-width: 1024px) { .form { padding: 2.75rem 2.25rem; } }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 1.3rem 1.5rem; } }
.form-grid .full { grid-column: 1 / -1; }
.form-sep {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.form-sep::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.form-sep:first-child { margin-top: 0; }
.field-wrap { display: flex; flex-direction: column; }
.field-label {
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.field-label .accent { color: var(--gold); }
.field {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid var(--ink);
  background: transparent;
  padding: 0.75rem 0;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  min-height: 44px;
}
.field:focus { outline: none; border-bottom-color: var(--gold); }
.field::placeholder { color: var(--stone); font-weight: 400; }
textarea.field { resize: vertical; min-height: 100px; line-height: 1.5; font-family: var(--body); }
select.field {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23c19a5b' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
}
.form-submit { grid-column: 1 / -1; margin-top: 0.75rem; }
.form-success {
  display: none;
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  margin-top: 1.25rem;
}
.form-success.is-on { display: block; }
.form-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--paper);
  font-size: 1.35rem;
  border-radius: 50%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 1024px) { .footer-top { grid-template-columns: 1.8fr 1fr; gap: 3rem; } }
.footer-cta {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--paper);
}
.footer-cta .accent { color: var(--gold); }
.footer-mid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 640px) { .footer-mid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-mid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 3rem; } }

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 1.25rem;
  background: rgba(245,243,238,0.95);
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
}
.footer-brand p {
  color: rgba(245, 243, 238, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 22rem;
}
.footer h4 {
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 1.15rem;
}
.footer ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.footer ul a, .footer ul li {
  color: rgba(245, 243, 238, 0.55);
  font-size: 0.85rem;
  transition: color 0.3s var(--ease);
}
.footer ul a:hover { color: var(--gold-warm); }
.footer-contact dt {
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
  margin-top: 0.7rem;
}
.footer-contact dt:first-child { margin-top: 0; }
.footer-contact dd {
  font-family: var(--display);
  font-weight: 500;
  color: var(--paper);
  font-size: 0.88rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.footer-bot {
  padding-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .footer-bot { flex-direction: row; justify-content: space-between; } }
.footer-bot p {
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.4);
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  width: 54px;
  height: 54px;
  background: var(--gold);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border-radius: 50%;
  box-shadow: 0 12px 28px -8px rgba(193,154,91,0.5);
  transition: all 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.floating::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: floatPing 2.5s infinite;
}
@keyframes floatPing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}
.floating:hover { background: var(--ink); transform: scale(1.05); }
@media (min-width: 1024px) { .floating { display: none; } }

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-r] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-r="fade"] { transform: none; }
[data-r="left"] { transform: translateX(-32px); }
[data-r="right"] { transform: translateX(32px); }
[data-r].is-in { opacity: 1; transform: none; }
[data-r-delay="100"] { transition-delay: 100ms; }
[data-r-delay="200"] { transition-delay: 200ms; }
[data-r-delay="300"] { transition-delay: 300ms; }
[data-r-delay="400"] { transition-delay: 400ms; }

.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.stagger.is-in > * { opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
.stagger.is-in > *:nth-child(2) { transition-delay: 90ms; }
.stagger.is-in > *:nth-child(3) { transition-delay: 180ms; }
.stagger.is-in > *:nth-child(4) { transition-delay: 270ms; }
.stagger.is-in > *:nth-child(5) { transition-delay: 360ms; }
.stagger.is-in > *:nth-child(6) { transition-delay: 450ms; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(14,14,14,0.96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lb.is-on { display: flex; animation: fadein 0.3s ease; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.lb img {
  max-width: 95vw;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}
.lb-btn {
  position: absolute;
  width: 46px;
  height: 46px;
  background: rgba(245,243,238,0.08);
  color: var(--paper);
  border: 1px solid rgba(245,243,238,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 300;
  border-radius: 50%;
  transition: all 0.25s var(--ease);
}
.lb-btn:hover { background: var(--gold); border-color: var(--gold); }
.lb-close { top: 1.25rem; right: 1.25rem; }
.lb-prev { top: 50%; left: 0.85rem; transform: translateY(-50%); }
.lb-next { top: 50%; right: 0.85rem; transform: translateY(-50%); }
.lb-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(245,243,238,0.55);
}

/* ============================================================
   UTILS
   ============================================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.flex-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.flex-actions-center { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

.services-plus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.services-plus li {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.9rem;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all 0.25s var(--ease);
  border-radius: 3px;
}
.services-plus li:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.section--ink .services-plus li { background: rgba(245,243,238,0.06); border-color: rgba(245,243,238,0.15); color: var(--paper); }
.section--ink .services-plus li:hover { background: var(--gold); border-color: var(--gold); }

/* ============================================================
   BANNIÈRE COOKIES (RGPD)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--ink);
  color: var(--paper);
  padding: 1.25rem 1rem;
  box-shadow: 0 -10px 40px -10px rgba(0,0,0,0.5);
  border-top: 2px solid var(--gold);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}
.cookie-banner.is-open { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0 0.5rem;
}
@media (min-width: 768px) {
  .cookie-banner-inner { grid-template-columns: 1fr auto; gap: 2rem; padding: 0 1rem; }
}
.cookie-banner-text strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-warm);
  display: block;
  margin-bottom: 0.4rem;
}
.cookie-banner-text p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(245, 243, 238, 0.78);
  margin: 0;
  max-width: 50rem;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border-radius: 3px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.cookie-btn--decline {
  background: transparent;
  color: var(--paper);
  border-color: rgba(245, 243, 238, 0.3);
}
.cookie-btn--decline:hover {
  border-color: var(--paper);
  background: rgba(245, 243, 238, 0.08);
}
.cookie-btn--accept {
  background: var(--gold);
  color: var(--paper);
  border-color: var(--gold);
}
.cookie-btn--accept:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
