/* =========================================================
   MDC RÉNOVATION — Bleu marine & or (carte de visite)
   ========================================================= */

:root {
  --navy-900: #050F1C;
  --navy-800: #081627;
  --navy-700: #0D2137;
  --navy-600: #142942;
  --navy-500: #1A3450;
  --navy-400: #213F5E;

  --gold-50:  #F7EFD2;
  --gold-100: #F0D898;
  --gold-200: #E2C068;
  --gold:     #C9A84C;
  --gold-600: #A8893A;
  --gold-700: #87702E;

  --cream:    #F2EAD3;
  --cream-soft: #E8DEC5;
  --text:     #E8DEC5;
  --text-mut: #8B9BB0;
  --text-low: #5D6E83;

  --white:    #FFFFFF;

  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease:     cubic-bezier(.65, .05, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

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

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy-800);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }

::selection { background: var(--gold); color: var(--navy-900); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 16px 0 0;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

.section-head {
  margin-bottom: clamp(48px, 7vw, 88px);
  max-width: 720px;
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.preloader__logo {
  width: 160px;
  height: auto;
  opacity: 0;
  transform: scale(0.85);
  animation: logoReveal 1.2s var(--ease-out) 0.2s forwards;
}
@keyframes logoReveal {
  to { opacity: 1; transform: scale(1); }
}
.preloader__bar {
  width: 160px;
  height: 1px;
  background: rgba(201,168,76,0.15);
  position: relative;
  overflow: hidden;
}
.preloader__bar span {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0);
  animation: load 1.6s var(--ease-out) 0.4s forwards;
}
@keyframes load {
  to { transform: scaleX(1); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  background: transparent;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(5, 15, 28, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px var(--gutter);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
}
.nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  color: var(--cream-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover {
  color: var(--gold);
}
.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--gold-100);
  transform: translateY(-1px);
}

@media (max-width: 800px) {
  .nav__links { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 2px;
  border: none;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-family: var(--font-sans);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-900);
}
.btn--gold:hover {
  background: var(--gold-100);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(201,168,76,0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201,168,76,0.4);
}
.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  color: var(--gold-100);
}
.btn--dark {
  background: var(--navy-900);
  color: var(--gold);
}
.btn--dark:hover {
  background: #000;
  transform: translateY(-2px);
}
.btn--full {
  width: 100%;
  justify-content: center;
  padding: 18px;
}

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 140px var(--gutter) 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 70% 30%, var(--navy-600) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
}
.hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}
.hero__lines .hl {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

.hero__wrap {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  color: var(--gold-100);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}
.hero__dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
}
.hero__dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.5); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 142px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 0 32px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .word {
  display: inline-block;
  transform: translateY(120%);
  will-change: transform;
}
.hero__title .word.italic {
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-mut);
  max-width: 580px;
  line-height: 1.65;
  margin: 0 0 44px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__stats {
  display: flex;
  gap: 60px;
  align-items: baseline;
  padding-top: 36px;
  border-top: 1px solid rgba(201,168,76,0.15);
  opacity: 0;
  transform: translateY(20px);
}
.hero__stats li {
  display: flex;
  align-items: baseline;
  gap: 4px;
  position: relative;
}
.hero__stats li em {
  display: block;
  position: absolute;
  bottom: -22px;
  left: 0;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-low);
}
.stat__num {
  font-family: var(--font-display);
  
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  color: var(--gold);
}
.stat__suffix {
  font-family: var(--font-display);
  
  font-weight: 600;
  font-size: 32px;
  color: var(--gold-200);
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-mut);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
}
.hero__scroll:hover { color: var(--gold); }
.hero__scroll svg { animation: bounce 2.2s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 700px) {
  .hero__stats { gap: 32px; flex-wrap: wrap; row-gap: 40px; }
  .stat__num { font-size: 40px; }
  .stat__suffix { font-size: 24px; }
  .hero__scroll { display: none; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--gold);
  color: var(--navy-900);
  overflow: hidden;
  position: relative;
  padding: 14px 0;
  border-top: 1px solid var(--gold-600);
  border-bottom: 1px solid var(--gold-600);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--font-display);
  
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.01em;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee__track span:not([aria-hidden]) {
  text-transform: lowercase;
}
.marquee__track span[aria-hidden] {
  color: var(--navy-900);
  font-size: 12px;
  opacity: 0.6;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ MANIFESTO ============ */
.manifesto {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--navy-800);
}
.manifesto__grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
.manifesto__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.manifesto__text p { margin: 0 0 1em; }
.manifesto__text em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.manifesto__signoff {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mut);
  margin-top: 36px;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.reveal-text .char { display: inline-block; }

@media (max-width: 700px) {
  .manifesto__grid { grid-template-columns: 1fr; }
}

/* ============ SERVICES ============ */
.services {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--navy-700);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
}
.service {
  background: var(--navy-700);
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 44px);
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  cursor: default;
}
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(201,168,76,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.service:hover {
  background: var(--navy-600);
}
.service:hover::before {
  opacity: 1;
}
.service__num {
  font-family: var(--font-display);
  
  font-weight: 600;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 36px;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
.service__num::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-left: 12px;
  vertical-align: middle;
}
.service__body { position: relative; z-index: 1; flex-grow: 1; display: flex; flex-direction: column; }
.service h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.service p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-mut);
  margin: 0 0 28px;
  flex-grow: 1;
}
.service__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease);
}
.service:hover .service__cta { gap: 14px; }
.service__cta--urgent { color: var(--gold-100); }
.service--featured {
  background: var(--navy-600);
}
.service--featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .service { min-height: auto; }
}

/* ============ URGENCE BAND ============ */
.urgence {
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.urgence::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 20px, rgba(13,33,55,0.04) 20px 21px);
  pointer-events: none;
}
.urgence__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.urgence__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
  opacity: 0.7;
}
.urgence h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 0;
  max-width: 600px;
}

/* ============ MÉTHODE ============ */
.methode {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--navy-800);
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  align-items: start;
  position: relative;
  transition: padding-left 0.4s var(--ease);
}
.step:last-child { border-bottom: 1px solid rgba(201,168,76,0.15); }
.step:hover { padding-left: 16px; }
.step:hover .step__index { color: var(--gold-100); }
.step__index {
  font-family: var(--font-display);
  
  font-weight: 700;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.9;
  color: var(--gold);
  transition: color 0.4s var(--ease);
}
.step__body { padding-top: 16px; }
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mut);
  margin: 0;
  max-width: 620px;
}

@media (max-width: 600px) {
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step__body { padding-top: 0; }
}

/* ============ ZONES ============ */
.zones {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--navy-700);
  position: relative;
}
.zones__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.zones__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mut);
  margin: 28px 0 36px;
  max-width: 520px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--cream-soft);
  font-size: 13px;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.01em;
}
.chip:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.5);
  color: var(--gold-100);
}
.chip--featured {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
  font-weight: 600;
}
.chip--featured:hover {
  background: var(--gold-100);
  color: var(--navy-900);
  border-color: var(--gold-100);
}

.zones__map {
  aspect-ratio: 1 / 1;
  max-width: 400px;
  margin: 0 auto;
}
.zones__ping {
  transform-origin: center;
  animation: ping 2.5s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(8); opacity: 0; }
}

@media (max-width: 800px) {
  .zones__grid { grid-template-columns: 1fr; }
  .zones__map { max-width: 280px; }
}

/* ============ CONTACT ============ */
.contact {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--navy-700);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}
.contact__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mut);
  margin: 28px 0 44px;
  max-width: 460px;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact__list small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact__list a, .contact__list span {
  color: var(--cream);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.contact__list a:hover { color: var(--gold); }

/* FORM */
.contact__form {
  background: var(--navy-800);
  border: 1px solid rgba(201,168,76,0.15);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--navy-700);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 2px;
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold);
  background: var(--navy-600);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-low); }
.field textarea { resize: vertical; min-height: 90px; }
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  cursor: pointer;
}
.select-wrap svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}
.form-note {
  font-size: 13px;
  margin: 0;
  color: var(--gold-100);
  min-height: 18px;
}

@media (max-width: 800px) {
  .contact__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-900);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  margin-bottom: 16px;
}
.footer__logo img {
  height: 100px;
  width: auto;
  display: block;
}
.footer__brand p {
  font-size: 14px;
  color: var(--text-mut);
  line-height: 1.7;
  max-width: 320px;
}
.footer__brand small {
  color: var(--gold);
  font-style: italic;
  font-size: 13px;
}
.footer__col h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
  font-weight: 600;
  font-family: var(--font-sans);
}
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  color: var(--cream-soft);
  font-size: 14px;
  transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--gold); }

.footer__legal {
  margin: 20px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-low);
  letter-spacing: 0.01em;
}

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid rgba(201,168,76,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-low);
  letter-spacing: 0.02em;
}

@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .preloader { display: none; }
}
