/* =============================================
   GMMC FINAL — Palette Optimisée
   70% Blanc · 20% Noir · 10% Or
   Playfair Display + Montserrat
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600;1,700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* PALETTE PRINCIPALE */
  --black:   #0B0B0B;
  --white:   #FFFFFF;
  --gold:    #C9A646;
  --gold-hover: #D4B55A;
  --gray-light: #F5F5F5;
  --gray-dark:  #333333;
  --gray-mid:   #666666;
  --gray-border:#E8E8E8;

  /* DÉRIVÉS */
  --gold-pale:  #FBF6E8;
  --gold-dark:  #9E7E28;
  --black-soft: #111111;
  --black-card: #161616;
  --black-section: #0F0F0F;

  /* TYPO */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  /* LAYOUT */
  --nav-h: 78px;
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 50px;

  /* OMBRES */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-gold: 0 6px 24px rgba(201,166,70,0.3);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====== RESET ====== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ====== LAYOUT ====== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ====== BACKGROUNDS ====== */
.bg-white   { background: var(--white); }
.bg-gray    { background: var(--gray-light); }
.bg-black   { background: var(--black); color: var(--white); }
.bg-black-soft { background: var(--black-soft); color: var(--white); }

/* ====== TYPOGRAPHY ====== */
.overline {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.overline::before, .overline::after {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--gold);
}
.overline.dark { color: var(--gold-dark); }
.overline.dark::before, .overline.dark::after { background: var(--gold-dark); }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; color: var(--black); margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light em { color: var(--gold); }

.section-lead {
  font-size: 17px; color: var(--gray-mid);
  max-width: 540px; line-height: 1.8;
}
.section-lead.light { color: rgba(255,255,255,0.55); }

.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-lead { margin: 0 auto; }
.section-header.center .overline { justify-content: center; }

/* ====== BUTTONS ====== */
/* PRIMARY — Or sur noir */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; border-radius: var(--radius-pill);
  transition: all 0.28s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--black);
  padding: 15px 36px;
  box-shadow: 0 4px 16px rgba(201,166,70,0.28);
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-gold.lg { padding: 17px 44px; font-size: 14px; }

.btn-black {
  background: var(--black); color: var(--white);
  padding: 15px 36px;
}
.btn-black:hover { background: #222; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-black.lg { padding: 17px 44px; font-size: 14px; }

.btn-outline-gold {
  background: transparent; color: var(--gold-dark);
  padding: 14px 34px;
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }

.btn-outline-white {
  background: transparent; color: var(--white);
  padding: 14px 34px;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-white.lg { padding: 16px 42px; font-size: 14px; }

/* ====== NAVBAR ====== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  transition: all 0.35s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}

/* LOGO */
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo-img {
  height: 48px; width: 48px; object-fit: contain;
  transition: all 0.3s var(--ease);
}
/* On dark bg (transparent navbar over hero) → screen blend */
.navbar:not(.scrolled) .nav-logo-img {
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 8px rgba(201,166,70,0.5));
}
/* On white bg (scrolled) → multiply blend — logo integrates perfectly */
.navbar.scrolled .nav-logo-img {
  mix-blend-mode: multiply;
  filter: none;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; letter-spacing: -0.3px;
  color: var(--white); transition: color 0.3s;
}
.navbar.scrolled .nav-logo-name { color: var(--black); }
.nav-logo-sub {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}

/* LINKS */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8);
  padding: 8px 13px; border-radius: var(--radius);
  transition: all 0.22s;
}
.navbar.scrolled .nav-link { color: var(--gray-dark); }
.nav-link:hover { color: var(--gold) !important; }
.nav-link.active { color: var(--gold) !important; }
.nav-cta {
  background: var(--gold); color: var(--black) !important;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  padding: 10px 22px; border-radius: var(--radius-pill);
  margin-left: 10px;
  box-shadow: 0 3px 12px rgba(201,166,70,0.3);
  transition: all 0.25s var(--ease);
}
.nav-cta:hover { background: var(--gold-hover) !important; transform: translateY(-1px); }

.lang-btn {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  padding: 6px 12px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); transition: all 0.22s;
}
.navbar.scrolled .lang-btn { color: var(--gray-mid); border-color: var(--gray-border); }
.lang-btn:hover { color: var(--gold) !important; border-color: var(--gold) !important; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; border-radius: 2px; transition: all 0.3s; background: var(--white); }
.navbar.scrolled .hamburger span { background: var(--black); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ====== HERO — NOIR (impact immédiat) ====== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--black); position: relative; overflow: hidden;
  text-align: center; padding: 120px 32px 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  /* Dark overlay over photo — keeps text readable */
  background: linear-gradient(
    to bottom,
    rgba(11,11,11,0.72) 0%,
    rgba(11,11,11,0.60) 40%,
    rgba(11,11,11,0.80) 100%
  );
}
/* Gold glow orbs on top of photo */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 65%, rgba(201,166,70,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 45% at 80% 25%, rgba(201,166,70,0.08) 0%, transparent 50%);
}
/* Subtle grid texture */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,166,70,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,166,70,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }

/* Logo in hero */
.hero-logo {
  width: 140px; height: 140px; object-fit: contain;
  margin: 0 auto 32px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 20px rgba(201,166,70,0.5));
  animation: heroLogoPulse 5s ease-in-out infinite;
}
@keyframes heroLogoPulse {
  0%,100% { filter: drop-shadow(0 0 20px rgba(201,166,70,0.4)); }
  50%      { filter: drop-shadow(0 0 36px rgba(201,166,70,0.75)); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,166,70,0.3);
  padding: 7px 20px; border-radius: var(--radius-pill);
  margin-bottom: 28px; background: rgba(201,166,70,0.06);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 100px);
  font-weight: 900; line-height: 1.0;
  color: var(--white); margin-bottom: 18px;
  display: flex; flex-direction: column;
}
.hero-title .it { font-style: italic; color: var(--gold); }
.hero-sep {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 20px 0;
}
.hero-sep::before, .hero-sep::after {
  content: ''; width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,166,70,0.5));
}
.hero-sep::after { background: linear-gradient(270deg, transparent, rgba(201,166,70,0.5)); }
.hero-sep span { color: var(--gold); font-size: 14px; }
.hero-sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(15px, 2.2vw, 20px);
  color: rgba(255,255,255,0.5); margin-bottom: 10px;
}
.hero-services {
  font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-legal {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 22px; border-radius: var(--radius-pill);
}
.hero-legal strong { color: rgba(255,255,255,0.6); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 1;
}
.scroll-indicator p { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{opacity:.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.15)} }

/* ====== ANIMATIONS ====== */
.fade { opacity:0; transform:translateY(24px); animation: fadeIn 0.75s var(--ease) forwards; }
.d1{animation-delay:.1s}.d2{animation-delay:.2s}.d3{animation-delay:.3s}
.d4{animation-delay:.4s}.d5{animation-delay:.5s}.d6{animation-delay:.65s}
@keyframes fadeIn { to { opacity:1; transform:translateY(0); } }

/* ====== STATS BAR — Gris clair ====== */
.stats-bar {
  background: var(--gray-light);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  padding: 30px 0;
}
.stats-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stat-block { display: flex; flex-direction: column; align-items: center; padding: 8px 52px; }
.stat-val {
  font-family: var(--font-display); font-size: 36px; font-weight: 700;
  color: var(--gold-dark); line-height: 1;
}
.stat-lbl { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-mid); margin-top: 5px; }
.stat-sep { width: 1px; height: 40px; background: var(--gray-border); }

/* ====== ABOUT — Blanc, layout asymétrique ====== */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img {
  position: relative; border-radius: var(--radius-lg); overflow: visible;
}
.about-img-inner {
  background: var(--gray-light);
  border: 2px dashed var(--gray-border);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: var(--gray-mid); font-size: 13px;
}
.about-img-inner .logo-wm {
  width: 90px; height: 90px; object-fit: contain;
  mix-blend-mode: multiply; opacity: 0.12;
}
/* Gold accent card */
.about-accent {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: var(--black);
  padding: 18px 26px; border-radius: var(--radius-md);
  font-size: 13px; font-weight: 700;
  box-shadow: var(--shadow-gold); white-space: nowrap;
  font-family: var(--font-body);
}
.about-accent span { display: block; font-size: 10px; font-weight: 500; letter-spacing: 1px; opacity: 0.7; margin-bottom: 3px; }
.about-text p { font-size: 16px; color: var(--gray-dark); margin-bottom: 18px; line-height: 1.85; }

/* ====== SERVICES — Blanc, cards épurées ====== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  transition: all 0.3s var(--ease);
  position: relative; display: block; overflow: hidden;
}
/* Gold top line on hover */
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.3s var(--ease);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 34px; margin-bottom: 18px; display: block; }
.service-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--black); margin-bottom: 10px; font-weight: 700; }
.service-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.7; }
.service-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--gold-dark); margin-top: 16px; letter-spacing: 0.5px; transition: gap 0.2s; }
.service-card:hover .service-arrow { gap: 10px; color: var(--gold); }

/* ====== GALLERY — Grid structurée ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 12px;
}
.g-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: pointer; background: var(--gray-light); }
.g-item.large { grid-column: span 2; grid-row: span 2; }
.g-item.tall  { grid-row: span 2; }
.g-placeholder {
  width: 100%; height: 100%; min-height: 220px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--gray-mid); font-size: 12px;
  background: var(--gray-light);
  transition: background 0.3s;
}
.g-placeholder .logo-wm { width: 50px; height: 50px; object-fit: contain; mix-blend-mode: multiply; opacity: 0.1; }
.g-placeholder p { text-align: center; max-width: 120px; line-height: 1.4; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); display: block; }
.g-item:hover img { transform: scale(1.06); }
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(11,11,11,0); transition: background 0.3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.g-item:hover .g-overlay { background: rgba(11,11,11,0.45); }
.g-caption {
  color: var(--white); font-size: 13px; font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: all 0.3s;
}
.g-item:hover .g-caption { opacity: 1; transform: translateY(0); }

/* ====== VIDEO ====== */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.video-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--gray-border); transition: all 0.3s var(--ease); }
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-embed { position: relative; padding-top: 56.25%; background: var(--black-card); }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-ph {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(135deg, var(--black), var(--black-card));
}
.video-ph .logo-wm { width: 60px; height: 60px; object-fit: contain; mix-blend-mode: screen; opacity: 0.2; }
.video-ph p { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; }
.video-info { padding: 22px 24px; }
.video-info h4 { font-family: var(--font-display); font-size: 18px; margin-bottom: 6px; color: var(--black); }
.video-info p { font-size: 13px; color: var(--gray-mid); }

/* ====== TESTIMONIALS — NOIR (section "wow") ====== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 40px; }
.t-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: all 0.3s var(--ease);
}
.t-card:hover { border-color: rgba(201,166,70,0.3); transform: translateY(-4px); }
.t-card.featured { border-color: var(--gold); background: var(--black-section); }
/* Large quote mark decoration */
.t-card::before {
  content: '"'; font-family: var(--font-display); font-size: 120px; line-height: 1;
  color: var(--gold); opacity: 0.08;
  position: absolute; top: 5px; right: 20px; pointer-events: none;
}
.t-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.t-card blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.8);
  margin-bottom: 22px;
}
.t-card cite { font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }

/* ====== PLANS ====== */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.plan-card {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s var(--ease); position: relative;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card.featured { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold); transform: translateY(-8px); }
.plan-popular {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 18px; border-radius: 0 0 8px 8px;
}
.plan-head { padding: 30px 28px 22px; text-align: center; }
.plan-head.h-bronze { background: linear-gradient(135deg, #2A1800, #5A3200); }
.plan-head.h-silver { background: linear-gradient(135deg, #1A1A22, #333350); }
.plan-head.h-gold   { background: linear-gradient(135deg, #2E1C00, var(--gold-dark)); }
.plan-tier { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 10px; font-weight: 600; }
.plan-price { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: #fff; line-height: 1; }
.plan-from { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.plan-body { padding: 26px 28px; }
.plan-features { list-style: none; margin-bottom: 26px; }
.plan-features li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0; border-bottom: 1px solid var(--gray-border);
  font-size: 13.5px; color: var(--gray-dark);
}
.plan-features li:last-child { border: none; }
.plan-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-cta { display: block; text-align: center; }

/* ====== DIVIDER ====== */
.gold-divider {
  display: flex; align-items: center; gap: 20px;
  margin: 0 auto; max-width: 200px;
}
.gold-divider::before, .gold-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--gold);
}
.gold-divider span { color: var(--gold); font-size: 12px; }

/* ====== QUOTE BANNER — OR ====== */
.quote-section { background: var(--gold); padding: 64px 32px; text-align: center; }
.big-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.5vw, 38px);
  font-style: italic; font-weight: 700;
  color: var(--black); max-width: 820px; margin: 0 auto; line-height: 1.4;
}
.big-quote cite {
  display: block; font-style: normal;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; margin-top: 20px; opacity: 0.6;
}

/* ====== CTA SECTION — NOIR ====== */
.cta-section {
  background: var(--black);
  padding: 96px 32px; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,166,70,0.08) 0%, transparent 65%);
}
.cta-logo-wm {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  width: 120px; height: 120px; object-fit: contain;
  mix-blend-mode: screen; opacity: 0.07; pointer-events: none;
}
.cta-section h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 46px); color: var(--white); margin-bottom: 14px; position: relative; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.45); max-width: 480px; margin: 0 auto 36px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ====== FOOTER ====== */
.footer { background: var(--black-section); border-top: 1px solid rgba(255,255,255,0.06); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 64px; margin-bottom: 50px; }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo-img {
  width: 54px; height: 54px; object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 8px rgba(201,166,70,0.3));
}
.footer-logo-text { display: flex; flex-direction: column; }
.footer-logo-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); }
.footer-logo-sub { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-social { margin-top: 18px; }
.social-link { font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 0.5px; transition: color 0.2s; }
.social-link:hover { color: var(--gold-hover); }
.footer-col h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 700; }
.footer-col a, .footer-col p { display: block; font-size: 13px; color: rgba(255,255,255,0.38); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-review {
  display: inline-block; margin-top: 10px;
  background: rgba(201,166,70,0.1); border: 1px solid rgba(201,166,70,0.25);
  color: var(--gold) !important; padding: 8px 16px;
  border-radius: var(--radius); font-size: 12px !important;
  font-weight: 600 !important; transition: all 0.25s;
}
.footer-review:hover { background: var(--gold) !important; color: var(--black) !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.18); }

/* ====== PAGE HERO ====== */
.page-hero {
  background: var(--black); padding: 140px 32px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 60%, rgba(201,166,70,0.08) 0%, transparent 60%);
}
.page-hero-logo {
  width: 76px; height: 76px; object-fit: contain;
  margin: 0 auto 20px;
  mix-blend-mode: screen; opacity: 0.75;
  filter: drop-shadow(0 4px 12px rgba(201,166,70,0.4));
  position: relative;
}
.page-hero-over { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; position: relative; font-weight: 600; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 6vw, 66px); font-weight: 700; color: var(--white); line-height: 1.1; position: relative; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.38); margin-top: 12px; font-family: var(--font-display); font-style: italic; position: relative; }

/* ====== CONTACT FORM ====== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 36px; margin-bottom: 14px; }
.contact-info > p { color: var(--gray-dark); font-size: 16px; margin-bottom: 32px; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex; gap: 14px; align-items: center;
  padding: 16px 20px; background: var(--gray-light);
  border: 1px solid var(--gray-border); border-radius: var(--radius-md);
  transition: all 0.25s;
}
.contact-item:hover { border-color: var(--gold); background: var(--gold-pale); }
.c-icon { font-size: 20px; flex-shrink: 0; }
.c-text h4 { font-weight: 700; font-size: 13px; margin-bottom: 2px; }
.c-text p { font-size: 13px; color: var(--gray-mid); margin: 0; }
.form-wrap {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg); padding: 44px;
  box-shadow: var(--shadow);
}
.form-wrap h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 7px; color: var(--gray-dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--gray-border); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 15px; color: var(--black);
  background: var(--white); transition: all 0.25s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,166,70,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; margin-top: 10px; border-radius: var(--radius-pill); }

/* ====== BLOG ====== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s var(--ease); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card-img { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 44px; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; margin-bottom: 10px; }
.blog-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; color: var(--black); }
.blog-card p { font-size: 13.5px; color: var(--gray-mid); flex: 1; margin-bottom: 18px; line-height: 1.7; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--gray-border); font-size: 11px; color: var(--gray-mid); }
.blog-read { color: var(--gold-dark); font-weight: 700; font-size: 12px; letter-spacing: 0.5px; transition: color 0.2s; }
.blog-read:hover { color: var(--gold); }

/* ====== ABOUT FULL PAGE ====== */
.about-full-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-full-img { background: var(--gray-light); border: 2px dashed var(--gray-border); border-radius: var(--radius-lg); aspect-ratio: 3/4; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--gray-mid); font-size: 13px; position: sticky; top: 100px; }
.about-full-img .logo-wm { width: 90px; height: 90px; object-fit: contain; mix-blend-mode: multiply; opacity: 0.12; }
.creds { margin: 36px 0; display: flex; flex-direction: column; gap: 12px; }
.cred { display: flex; gap: 14px; align-items: flex-start; background: var(--gray-light); border-radius: var(--radius-md); padding: 16px 20px; border: 1px solid var(--gray-border); }
.cred-icon { font-size: 20px; flex-shrink: 0; }
.cred h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.cred p { font-size: 12px; color: var(--gray-mid); margin: 0; }

/* ====== SERVICES FULL ====== */
.services-full-list { display: grid; gap: 56px; }
.sf-item { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start; padding-bottom: 56px; border-bottom: 1px solid var(--gray-border); }
.sf-item:last-child { border: none; }
.sf-icon { width: 64px; height: 64px; background: var(--gold-pale); border: 1.5px solid rgba(201,166,70,0.3); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.sf-content h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 12px; }
.sf-content p { color: var(--gray-dark); font-size: 15px; margin-bottom: 14px; line-height: 1.8; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 11px; font-weight: 600; color: var(--gold-dark); background: var(--gold-pale); border: 1px solid rgba(201,166,70,0.25); padding: 4px 12px; border-radius: var(--radius-pill); }

/* ====== GALLERY FILTER ====== */
.gallery-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; justify-content: center; }
.f-btn { padding: 9px 22px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600; letter-spacing: 0.5px; border: 1.5px solid var(--gray-border); color: var(--gray-dark); background: var(--white); cursor: pointer; transition: all 0.22s; }
.f-btn.active, .f-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); box-shadow: 0 3px 10px rgba(201,166,70,0.25); }

/* ====== RESPONSIVE ====== */
@media(max-width:1024px) {
  .about-layout,.about-full-layout,.contact-layout { grid-template-columns:1fr; gap:48px; }
  .plans-grid { grid-template-columns:1fr; max-width:420px; margin:0 auto 40px; }
  .plan-card.featured { transform:none; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:48px; }
  .about-full-img { position:static; aspect-ratio:4/3; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .g-item.large { grid-column:span 2; }
  .cta-logo-wm { display:none; }
}
@media(max-width:768px) {
  .section { padding:70px 0; }
  .container { padding:0 20px; }
  .nav-links {
    display:none; flex-direction:column; position:fixed;
    top:var(--nav-h); left:0; right:0;
    background:rgba(255,255,255,0.98);
    padding:20px 24px; gap:2px;
    backdrop-filter:blur(20px);
    box-shadow:var(--shadow-lg);
    border-top:1px solid var(--gray-border);
  }
  .nav-links.open { display:flex; }
  .nav-link { color:var(--gray-dark)!important; font-size:15px; padding:12px 16px; }
  .nav-cta { margin:10px 0 0; display:block; text-align:center; }
  .hamburger { display:flex; }
  .lang-switch { display:none; }
  .hero-logo { width:110px; height:110px; }
  .hero-actions { flex-direction:column; align-items:center; }
  .stats-row { gap:0; }
  .stat-block { padding:10px 24px; }
  .stat-sep { display:none; }
  .footer-grid { grid-template-columns:1fr; gap:36px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .gallery-grid { grid-template-columns:1fr 1fr; grid-auto-rows:180px; }
  .g-item.large { grid-column:span 2; }
  .g-item.tall { grid-row:span 1; }
  .video-grid { grid-template-columns:1fr; }
  .cta-actions { flex-direction:column; align-items:center; }
  .sf-item { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .form-wrap { padding:28px 20px; }
  .plans-grid { max-width:100%; }
}
@media(max-width:480px) {
  .hero-title { font-size:clamp(38px,14vw,54px); }
  .gallery-grid { grid-template-columns:1fr; }
  .g-item.large { grid-column:span 1; }
}
