/* ============================================================
   DSD ELITE — Luxury design system
   Royal blue + gold + ivory + ink
   ============================================================ */

:root {
  --royal: #0a2240;
  --royal-deep: #051428;
  --royal-mid: #112e54;
  --royal-light: #1c3766;
  --gold: #c9a961;
  --gold-light: #e5c97e;
  --gold-deep: #a08440;
  --gold-soft: #f4ead2;
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --bone: #faf7f1;
  --paper: #ffffff;
  --gray-50: #f5f5f7;
  --gray-100: #e8e8ed;
  --gray-200: #d2d2d7;
  --gray-400: #a0a0a5;
  --gray-500: #6e6e73;
  --gray-700: #3a3a3c;

  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 20px 60px -20px rgba(10, 34, 64, .25);
  --shadow-deep: 0 40px 120px -30px rgba(5, 20, 40, .55);

  --container: min(1320px, 92vw);
  --header-h: 88px;

  --ease-luxe: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bone);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
input, textarea, select, button { font: inherit; }

/* Selection */
::selection { background: var(--gold); color: var(--royal-deep); }

/* Loader */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--royal-deep);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
}
.preloader__logo {
  width: 70px; height: 70px;
  border: 1px solid rgba(201, 169, 97, .3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.preloader__brand {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: .35em;
  font-size: 14px;
  text-transform: uppercase;
}
.preloader.is-hidden { opacity: 0; pointer-events: none; transition: opacity .6s ease; }

/* Custom cursor */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none;
  z-index: 9000; mix-blend-mode: difference;
  transition: transform .2s var(--ease-luxe), width .25s, height .25s, opacity .3s;
}
.cursor-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; }
.cursor-ring { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; transform: translate(-50%,-50%); }
.cursor-ring.is-hover { width: 70px; height: 70px; border-color: var(--gold); }
@media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================================
   HEADER — unique, layered
   ============================================================ */
.utility-bar {
  background: var(--royal-deep);
  color: rgba(255, 255, 255, .8);
  font-size: 12.5px;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(201, 169, 97, .15);
}
.utility-bar__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0;
  gap: 18px;
}
.utility-bar a { color: rgba(255,255,255,.75); transition: color .25s; }
.utility-bar a:hover { color: var(--gold-light); }
.utility-bar__left, .utility-bar__right {
  display: flex; gap: 22px; align-items: center;
}
.utility-bar__divider { width: 1px; height: 12px; background: rgba(255,255,255,.18); }
.utility-bar__rating { display: flex; align-items: center; gap: 8px; }
.utility-bar__rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 11px; }

/* Marquee strip */
.brand-marquee {
  background: var(--gold);
  color: var(--royal-deep);
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.brand-marquee__track {
  display: flex; gap: 60px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 8px 0;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.brand-marquee__track span { display: flex; align-items: center; gap: 60px; }
.brand-marquee__track span::after {
  content: '✦';
  color: var(--royal);
  margin-left: 60px;
  font-style: normal;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(250, 247, 241, .85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(10, 34, 64, .08);
  transition: background .4s, border-color .4s;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 30px -15px rgba(10, 34, 64, .15);
}
.site-header__inner {
  width: var(--container);
  margin: 0 auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex; align-items: center;
  text-decoration: none; color: var(--royal);
}
.brand img { height: 72px; width: auto; transition: transform .4s var(--ease-luxe); }
.brand:hover img { transform: scale(1.04); }
@media (max-width: 600px) { .brand img { height: 60px; } }

.main-nav {
  display: flex; justify-content: center; gap: 6px;
}
.main-nav a {
  position: relative;
  padding: 12px 18px;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color .3s;
}
.main-nav a::before {
  content: ''; position: absolute;
  left: 50%; bottom: 6px; transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease-luxe);
}
.main-nav a:hover, .main-nav a.is-active {
  color: var(--royal);
}
.main-nav a:hover::before, .main-nav a.is-active::before {
  width: 24px;
}

.header-cta {
  display: flex; align-items: center; gap: 14px;
}
.btn-ghost {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--royal);
  border: 1px solid rgba(10, 34, 64, .25);
  padding: 13px 22px;
  border-radius: 999px;
  transition: all .3s var(--ease-luxe);
  font-weight: 500;
}
.btn-ghost:hover {
  background: var(--royal); color: #fff; border-color: var(--royal);
}

/* Hamburger - mobile only */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  border: 1px solid rgba(10, 34, 64, .2);
  border-radius: 50%;
}
.hamburger span {
  display: block; width: 18px; height: 1.5px; background: var(--royal);
  transition: all .35s var(--ease-luxe);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile fullscreen menu */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--royal-deep);
  z-index: 70;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 30px 50px;
  clip-path: circle(0% at calc(100% - 60px) 50px);
  transition: clip-path .8s var(--ease-luxe);
  pointer-events: none;
}
.mobile-nav.is-open { clip-path: circle(150% at calc(100% - 60px) 50px); pointer-events: auto; }
.mobile-nav__inner { width: 100%; max-width: 460px; text-align: center; }
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 42px);
  color: #fff;
  padding: 12px 0;
  letter-spacing: .04em;
  position: relative;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s, transform .5s, color .3s;
}
.mobile-nav.is-open a {
  opacity: 1; transform: translateY(0);
}
.mobile-nav a:nth-child(1) { transition-delay: .15s; }
.mobile-nav a:nth-child(2) { transition-delay: .22s; }
.mobile-nav a:nth-child(3) { transition-delay: .29s; }
.mobile-nav a:nth-child(4) { transition-delay: .36s; }
.mobile-nav a:nth-child(5) { transition-delay: .43s; }
.mobile-nav a:nth-child(6) { transition-delay: .50s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav__cta {
  margin-top: 30px;
  font-size: 14px !important;
  letter-spacing: .2em;
  color: var(--gold) !important;
  font-family: var(--font-body) !important;
  text-transform: uppercase;
  border-top: 1px solid rgba(201,169,97,.3);
  padding-top: 25px !important;
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .site-header__inner { grid-template-columns: auto auto; justify-content: space-between; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: all .35s var(--ease-luxe);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--royal-deep);
  box-shadow: 0 14px 30px -10px rgba(201, 169, 97, .55);
}
.btn--gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  opacity: 0; transition: opacity .35s;
}
.btn--gold span { position: relative; z-index: 1; }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(201, 169, 97, .7); }
.btn--gold:hover::before { opacity: 1; }
.btn--royal {
  background: var(--royal);
  color: #fff;
}
.btn--royal:hover { background: var(--royal-deep); transform: translateY(-2px); }
.btn--outline-light {
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
}
.btn--outline-light:hover { background: #fff; color: var(--royal-deep); border-color: #fff; }
.btn .arrow { display: inline-block; transition: transform .35s var(--ease-luxe); }
.btn:hover .arrow { transform: translateX(4px); }

.cta-microcopy {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--gray-500);
  letter-spacing: .03em;
}
.cta-microcopy .stars { color: var(--gold); letter-spacing: 1px; }
.google-mini { width: 14px; height: 14px; vertical-align: -2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 920px);
  background: var(--royal-deep);
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s var(--ease-luxe), transform 8s linear;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(5, 20, 40, .85) 0%, rgba(10, 34, 64, .65) 50%, rgba(5, 20, 40, .9) 100%);
  z-index: 1;
}
.hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(201,169,97,.25) 0%, transparent 50%);
  z-index: 2;
  mix-blend-mode: screen;
}
.hero__inner {
  position: relative; z-index: 3;
  width: var(--container);
  margin: 0 auto;
  padding: 100px 0 60px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
  min-height: clamp(640px, 92vh, 920px);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 30px;
}
.hero__eyebrow::before {
  content: ''; width: 36px; height: 1px; background: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 30px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.hero__title .word { display: inline-block; overflow: hidden; }
.hero__title .word > span { display: inline-block; }
.hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero__cta {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
}
.hero__sidecard {
  position: relative;
  padding: 36px 32px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(201, 169, 97, .25);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  transform: translateY(0);
}
.hero__sidecard::before {
  content: ''; position: absolute;
  top: -1px; left: -1px; right: -1px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero__sidecard h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
}
.hero__sidecard h3 em { color: var(--gold-light); font-style: italic; }
.hero__sidecard p { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 24px; }
.hero__stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__stat .num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold-light);
  line-height: 1;
}
.hero__stat .lbl {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-top: 6px;
}

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 4;
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .hero__sidecard { padding: 28px 22px; }
  .hero__sub { font-size: 16px; }
}

/* ============================================================
   SECTIONS — common
   ============================================================ */
.section { padding: clamp(80px, 12vw, 140px) 0; position: relative; }
.section--dark { background: var(--royal-deep); color: #fff; }
.section--ink { background: var(--ink); color: #fff; }
.section--paper { background: var(--paper); }
.container { width: var(--container); margin: 0 auto; }

.section-head {
  margin-bottom: 70px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.section-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold-deep); }
.section--dark .section-eyebrow, .section--ink .section-eyebrow { color: var(--gold-light); }
.section--dark .section-eyebrow::before, .section--ink .section-eyebrow::before { background: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.015em;
  font-weight: 600;
  color: var(--royal);
}
.section-title em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.section--dark .section-title, .section--ink .section-title { color: #fff; }
.section--dark .section-title em, .section--ink .section-title em { color: var(--gold-light); }
.section-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-700);
  max-width: 460px;
  justify-self: end;
}
.section--dark .section-lead, .section--ink .section-lead { color: rgba(255,255,255,.7); }

@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; }
  .section-lead { justify-self: start; }
}

/* ============================================================
   SERVICES grid
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--royal);
  cursor: pointer;
  isolation: isolate;
}
.service-card__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s var(--ease-luxe), filter .8s;
  filter: brightness(.65) saturate(1.05);
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,20,40,.85) 100%);
  z-index: 1;
}
.service-card__body {
  position: absolute; inset: 0;
  padding: 40px 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
  z-index: 2;
}
.service-card__num {
  position: absolute; top: 28px; left: 32px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--gold-light);
  z-index: 2;
}
.service-card__num::before {
  content: ''; display: inline-block; width: 24px; height: 1px;
  background: var(--gold-light); vertical-align: middle; margin-right: 10px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 12px;
  font-weight: 600;
}
.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .6s var(--ease-luxe), opacity .4s, margin-bottom .4s;
}
.service-card__link {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 16px;
  transition: gap .35s;
}
.service-card:hover .service-card__img { transform: scale(1.08); filter: brightness(.55); }
.service-card:hover p { max-height: 80px; opacity: 1; margin-bottom: 8px; }
.service-card:hover .service-card__link { gap: 14px; color: var(--gold); }

/* ============================================================
   ABOUT split
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split__visual {
  position: relative;
  height: 600px;
}
.about-split__visual img {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  object-fit: cover;
}
.about-split__visual img:nth-child(1) {
  width: 65%; height: 75%;
  top: 0; left: 0;
}
.about-split__visual img:nth-child(2) {
  width: 55%; height: 60%;
  bottom: 0; right: 0;
  border: 4px solid var(--bone);
}
.about-split__visual::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border: 1px solid var(--gold);
  bottom: -30px; left: -30px;
  z-index: -1;
}
.about-split__content h2 { margin-bottom: 30px; }
.about-split__content p { color: var(--gray-700); font-size: 17px; line-height: 1.85; margin-bottom: 20px; }
.about-features {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.about-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--royal);
}
.about-features li::before {
  content: '✦'; color: var(--gold); font-size: 16px;
}
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 60px; }
  .about-split__visual { height: 480px; }
}

/* ============================================================
   PROJECTS showcase
   ============================================================ */
.projects-list {
  display: flex;
  flex-direction: column;
}
.project-row {
  display: grid;
  grid-template-columns: 80px 1fr 200px 280px 60px;
  gap: 30px;
  padding: 36px 0;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
  position: relative;
  transition: padding .35s var(--ease-luxe);
}
.project-row:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.project-row::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(201,169,97,.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s;
}
.project-row:hover::before { opacity: 1; }
.project-row:hover { padding-left: 16px; }
.project-row__num {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 16px; letter-spacing: .2em;
}
.project-row__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
}
.project-row__loc {
  font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.project-row__preview {
  position: relative;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  opacity: .8;
  transition: opacity .4s, transform .4s;
}
.project-row__preview img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.project-row:hover .project-row__preview { opacity: 1; transform: scale(1.04); }
.project-row:hover .project-row__preview img { transform: scale(1.1); }
.project-row__arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all .35s var(--ease-luxe);
  justify-self: end;
}
.project-row:hover .project-row__arrow {
  background: var(--gold); color: var(--royal-deep); border-color: var(--gold);
  transform: rotate(-45deg);
}
@media (max-width: 1024px) {
  .project-row { grid-template-columns: 50px 1fr 50px; gap: 20px; }
  .project-row__loc, .project-row__preview { display: none; }
}

/* ============================================================
   GALLERY masonry (preview on home)
   ============================================================ */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-mosaic__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-mosaic__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-luxe); }
.gallery-mosaic__item:hover img { transform: scale(1.08); }
.gallery-mosaic__item:nth-child(1) { grid-row: span 2; }
.gallery-mosaic__item:nth-child(4) { grid-row: span 2; }
.gallery-mosaic__item:nth-child(5) { grid-column: span 2; }
.gallery-mosaic__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,20,40,.6));
  opacity: 0; transition: opacity .35s;
}
.gallery-mosaic__item:hover::after { opacity: 1; }
@media (max-width: 800px) {
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic__item:nth-child(5) { grid-column: span 1; }
}

/* Full gallery page */
.gallery-grid {
  columns: 3 280px;
  column-gap: 18px;
}
.gallery-grid__item {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-grid__item img { width: 100%; transition: transform 1s var(--ease-luxe); display: block; }
.gallery-grid__item:hover img { transform: scale(1.05); }

.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 50px;
}
.gallery-filters button {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(10,34,64,.2);
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--royal);
  transition: all .3s;
  background: transparent;
}
.gallery-filters button.is-active,
.gallery-filters button:hover {
  background: var(--royal); color: #fff; border-color: var(--royal);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-track {
  display: flex; gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 30px;
  margin: 0 calc(50% - 50vw);
  padding-left: max(24px, calc(50vw - var(--container) / 2));
  padding-right: max(24px, calc(50vw - var(--container) / 2));
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 420px;
  scroll-snap-align: start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,97,.18);
  padding: 36px;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease-luxe), border-color .4s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,169,97,.4);
}
.testimonial-card__head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.testimonial-card__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: var(--royal-deep);
  font-weight: 700;
  font-size: 18px;
}
.testimonial-card__author {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.testimonial-card__source {
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
  display: flex; align-items: center; gap: 6px;
}
.testimonial-card__stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 16px;
}
.testimonial-card__text {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.testimonial-card__date {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  color: rgba(255,255,255,.45);
}
.google-logo {
  width: 14px; height: 14px;
}

.reviews-summary {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,169,97,.25);
  border-radius: 999px;
  margin-bottom: 30px;
}
.reviews-summary .stars { color: var(--gold); letter-spacing: 2px; }
.reviews-summary span { font-size: 13px; letter-spacing: .08em; color: rgba(255,255,255,.85); }

/* ============================================================
   CONTACT form
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { color: rgba(255,255,255,.85); }
.contact-info h2 { color: #fff; margin-bottom: 30px; }
.contact-info p { font-size: 17px; line-height: 1.8; margin-bottom: 30px; max-width: 460px; }
.contact-detail {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-detail__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,169,97,.1);
  border: 1px solid rgba(201,169,97,.3);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail__label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.contact-detail__value { color: #fff; font-size: 16px; font-weight: 500; }
.contact-detail a:hover { color: var(--gold-light); }

.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.field { margin-bottom: 22px; position: relative; }
.field label {
  display: block;
  font-size: 11.5px; letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 15px;
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.3); }
.field textarea { min-height: 100px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 14px; }
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-form { padding: 28px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--paper);
  color: var(--gray-700);
  padding: 100px 0 30px;
  border-top: 1px solid var(--gray-100);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand img { height: 80px; margin-bottom: 24px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
  color: var(--gray-700);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: color .3s;
}
.footer-col a:hover { color: var(--gold-deep); }
.footer-contact-line {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 14px;
  font-size: 14px; line-height: 1.5;
  color: var(--ink-soft);
}
.footer-contact-line .icon { color: var(--gold-deep); }
.footer-contact-line a { color: var(--ink-soft); }
.footer-contact-line a:hover { color: var(--gold-deep); }
.footer-bottom {
  border-top: 1px solid var(--gray-100);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12.5px;
  color: var(--gray-500);
}
.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--gold-deep); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WhatsApp floating
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 60;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, .55);
  transition: transform .35s var(--ease-spring);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: .5;
  animation: waPulse 2.4s ease-out infinite;
}
.wa-float::after {
  content: '';
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: .25;
  animation: waPulse 2.4s ease-out infinite .8s;
}
@keyframes waPulse {
  0% { transform: scale(.7); opacity: .55; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-float svg { width: 28px; height: 28px; position: relative; z-index: 1; }
.wa-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--royal-deep);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  border: 1px solid rgba(201,169,97,.3);
}
.wa-tooltip::after {
  content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px; background: var(--royal-deep);
  border-right: 1px solid rgba(201,169,97,.3); border-top: 1px solid rgba(201,169,97,.3);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ============================================================
   Page head (interior pages)
   ============================================================ */
.page-head {
  position: relative;
  background: var(--royal-deep);
  color: #fff;
  padding: calc(var(--header-h) + 80px) 0 100px;
  overflow: hidden;
}
.page-head__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .25;
  filter: saturate(.8);
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201,169,97,.3), transparent 50%);
  z-index: 1;
}
.page-head__inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; gap: 12px; align-items: center;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.05;
  letter-spacing: -.015em;
  font-weight: 600;
  max-width: 900px;
}
.page-head h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.page-head__lead {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  max-width: 620px;
}

/* ============================================================
   Service detail page
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.service-detail__copy h2 { margin-bottom: 26px; }
.service-detail__copy p { color: var(--gray-700); font-size: 17px; line-height: 1.85; margin-bottom: 18px; }
.service-detail__cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky; top: calc(var(--header-h) + 30px);
  box-shadow: var(--shadow-deep);
}
.service-detail__cover img { aspect-ratio: 4/5; width: 100%; object-fit: cover; }

.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.service-gallery img { aspect-ratio: 4/3; width: 100%; object-fit: cover; border-radius: var(--radius); transition: transform .8s; }
.service-gallery a { display: block; overflow: hidden; border-radius: var(--radius); }
.service-gallery a:hover img { transform: scale(1.06); }
@media (max-width: 800px) {
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail__cover { position: static; }
  .service-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Project detail
   ============================================================ */
.project-hero {
  position: relative;
  height: 80vh; min-height: 540px;
  overflow: hidden;
  background: var(--royal);
}
.project-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.6);
}
.project-hero__inner {
  position: relative; z-index: 2;
  width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  color: #fff;
}
.project-hero__meta {
  display: flex; gap: 30px; align-items: center;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
}
.project-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  font-weight: 500;
  max-width: 1000px;
}
.project-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.project-content__sidebar { position: sticky; top: calc(var(--header-h) + 30px); }
.project-content__sidebar h3 {
  font-family: var(--font-display);
  font-size: 24px; color: var(--royal); margin-bottom: 20px;
}
.project-meta-list { border-top: 1px solid rgba(0,0,0,.08); }
.project-meta-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
}
.project-meta-list li strong {
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.project-content__body p { font-size: 17px; line-height: 1.85; color: var(--gray-700); margin-bottom: 22px; }

.project-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.project-images img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }
.project-images img:nth-child(3n+1) { grid-column: span 2; aspect-ratio: 16/7; }
@media (max-width: 800px) {
  .project-content { grid-template-columns: 1fr; gap: 50px; }
  .project-content__sidebar { position: static; }
  .project-images { grid-template-columns: 1fr; }
  .project-images img:nth-child(3n+1) { grid-column: span 1; }
}

/* ============================================================
   Lightbox
   ============================================================ */
.lb {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(5,20,40,.92); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 30px;
}
.lb.is-open { display: flex; }
.lb__img { max-width: 90vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lb__close, .lb__nav {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .3s;
}
.lb__close { top: 30px; right: 30px; }
.lb__nav--prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lb__nav--next { right: 30px; top: 50%; transform: translateY(-50%); }
.lb__close:hover, .lb__nav:hover { background: var(--gold); color: var(--royal-deep); border-color: var(--gold); }

/* ============================================================
   Reveal animation defaults (fallback for no-JS / pre-GSAP)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(40px); }
.is-loaded [data-reveal] { transition: opacity 1s var(--ease-luxe), transform 1s var(--ease-luxe); }

/* Banner — small badge pour CGV/légal */
.legal {
  max-width: 800px;
  margin: 0 auto;
}
.legal h1 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); margin-bottom: 30px; color: var(--royal); }
.legal h2 { font-family: var(--font-display); font-size: 24px; color: var(--royal); margin: 40px 0 16px; }
.legal p { color: var(--gray-700); margin-bottom: 16px; line-height: 1.85; }
.legal ul { margin: 16px 0 16px 20px; }
.legal li { margin-bottom: 8px; color: var(--gray-700); }

/* ============================================================
   Luxury icons
   ============================================================ */
.icon {
  width: 16px; height: 16px;
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
  stroke-width: 1.6;
}
.icon--lg { width: 22px; height: 22px; }
.icon--xl { width: 28px; height: 28px; stroke-width: 1.4; }

.utility-bar a, .utility-bar > .utility-bar__inner > .utility-bar__right > span {
  display: inline-flex; align-items: center; gap: 8px;
}
.utility-bar .icon {
  width: 13px; height: 13px;
  opacity: .85;
  color: var(--gold-light);
}

.footer-contact-line {
  align-items: center;
}
.footer-contact-line .icon {
  width: 16px; height: 16px;
  color: var(--gold-light);
  margin-top: 0;
}

.contact-detail__icon .icon {
  color: var(--gold-light);
}

.success-mark {
  width: 84px; height: 84px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  background: rgba(201,169,97,.08);
  color: var(--gold-light);
}
.success-mark .icon { width: 38px; height: 38px; stroke-width: 1.5; }

/* ============================================================
   About — centered (homepage)
   ============================================================ */
.about-centered {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.about-centered .section-eyebrow {
  justify-content: center;
}
.about-centered .section-eyebrow::after {
  content: ''; width: 36px; height: 1px;
  background: var(--gold-deep);
}
.about-centered .section-title { margin-bottom: 24px; }
.about-centered__lead {
  font-size: 18px;
  line-height: 1.85;
  color: var(--gray-700);
  max-width: 680px;
  margin: 0 auto;
}
.about-features--centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-top: 36px;
}
.about-features--centered li { font-size: 14px; }
.about-centered__cta {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ============================================================
   CTA microcopy — block, under button
   ============================================================ */
.cta-microcopy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--gray-500);
  letter-spacing: .03em;
  width: fit-content;
}
/* When inside a vertical column wrapper, microcopy becomes its own line */
.about-centered__cta .cta-microcopy,
.section .cta-microcopy {
  margin-top: 0;
}
/* Generic helper — wrapper around CTA to stack button + microcopy vertically */
.cta-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.cta-stack--center { align-items: center; }

/* ============================================================
   Dual testimonial marquees
   ============================================================ */
.testimonial-marquee {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  margin: 0 calc(50% - 50vw);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.testimonial-marquee + .testimonial-marquee { margin-top: 24px; }
.testimonial-marquee__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: tmScrollLeft 80s linear infinite;
  will-change: transform;
}
.testimonial-marquee--reverse .testimonial-marquee__track {
  animation-name: tmScrollRight;
}
.testimonial-marquee:hover .testimonial-marquee__track {
  animation-play-state: paused;
}
@keyframes tmScrollLeft {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@keyframes tmScrollRight {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}
.testimonial-marquee .testimonial-card {
  flex: 0 0 420px;
}
@media (max-width: 600px) {
  .testimonial-marquee .testimonial-card { flex: 0 0 320px; }
  .testimonial-marquee__track { animation-duration: 60s; }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-marquee__track { animation: none; }
}

/* Print */
@media print {
  .wa-float, .preloader, .cursor-dot, .cursor-ring, .brand-marquee, .utility-bar { display: none !important; }
}
