/* ===================== RESET & BASE ===================== */
:root {
  --cream: #FAFAF8;
  --ink: #1A1A1A;
  --navy: #1C3557;
  --navy-deep: #0F2238;
  --gold: #C19F51;
  --gold-light: #E0C880;
  --linen: #F0EFEB;
  --red-soft: #8B3A3A;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
/* Ensure page fills space and footer sticks */
body {
  font-family: 'DM Sans', sans-serif;
  background: #0A0A0A;
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}
.page { background: var(--cream); }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 500; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: 'DM Sans', sans-serif; }
img { max-width: 100%; display: block; }

/* ===================== NAV ===================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  max-width: 100%;
  background: #0A0A0A;
  border-bottom: 1px solid rgba(193,159,81,0.45);
  transition: box-shadow 0.4s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); background: #0A0A0A !important; }

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo-img {
  height: 34px;
  width: auto;
  display: block;
  filter: brightness(1);
  transition: filter 0.4s ease;
}
/* Logo sur fond noir — pas de filtre nécessaire */
.nav-logo-img { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  opacity: 1;
  transition: opacity 0.2s, color 0.3s;
  font-weight: 400;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; }
.nav-links a.active { color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

.nav-cta-btn {
  background: var(--gold);
  color: #0A0A0A;
  border: none;
  padding: 10px 26px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
}
.nav-cta-btn:hover { background: white; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #0A0A0A;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.mobile-menu a:hover { opacity: 1; color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none; border: none;
  color: var(--cream); font-size: 32px; opacity: 0.5;
  transition: opacity 0.2s;
}
.mobile-close:hover { opacity: 1; }

/* ===================== PAGES ===================== */
.page { display: none; padding-top: 80px; }
@media (max-width: 900px) { .page { padding-top: 70px; } }
.page.active { display: block; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 560px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
}

/* Slide backgrounds - geometric premium */
.slide-th {
  background: #0c1f14;
}

.slide-geo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.08);
}
.r1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.r2 { width: 380px; height: 380px; top: 60px; right: 110px; }
.r3 { width: 850px; height: 850px; bottom: -420px; left: -220px; }
.r4 { width: 200px; height: 200px; top: 200px; right: 280px; border-color: rgba(201,169,110,0.05); }

.geo-line-h {
  position: absolute;
  height: 1px;
  background: rgba(201,169,110,0.06);
  width: 100%;
}
.gl1 { top: 30%; }
.gl2 { top: 65%; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, #0A0A0A 0%, rgba(10,10,10,0.6) 18%, transparent 38%),
    linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 30%, transparent 60%);
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 96px;
  max-width: 820px;
  width: 100%;
}
.slide-country-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.slide-country-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.slide-title {
  font-size: clamp(32px, 4.5vw, 58px);
  color: white;
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 1.15;
}
.slide-bullets { margin-bottom: 40px; }
.slide-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.slide-bullet::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Slider controls */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.28);
  border: none;
  padding: 0;
  transition: all 0.35s;
}
.dot.active {
  width: 24px;
  background: var(--gold);
}
.hero-arrows {
  position: absolute;
  bottom: 28px;
  right: 80px;
  z-index: 10;
  display: flex;
  gap: 10px;
}
.arrow-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.arrow-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ===================== SECTIONS ===================== */
.sec {
  padding: 80px 80px;
  max-width: 100%;
}
.sec .two-col,
.sec .three-col,
.sec .testi-grid,
.sec .mkt-grid,
.sec .founder-grid,
.sec .contact-grid,
.sec .stat-row,
.sec .sec-label,
.sec h2.sec-title,
.sec .gold-bar,
.sec > p,
.sec > ul {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.sec-center {
  text-align: center;
}
.sec > *:not(style) {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.final-sec {
  padding: 100px 80px;
}
.sec-linen { background: var(--linen); }
.sec-center { text-align: center; }

.sec-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-label::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
.sec-label.center { justify-content: center; }
.sec-label.center::before { display: none; }

.sec-title {
  font-size: clamp(26px, 3.2vw, 44px);
  margin-bottom: 20px;
}
.gold-bar {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 22px 0;
}
.gold-bar.center { margin: 22px auto; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Asset placeholders */
.asset-ph.dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.22);
}
.sq { aspect-ratio: 4/3; }
.tall { aspect-ratio: 3/4; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
  background: rgba(255,255,255,0.08);
}
.btn:hover::after { opacity: 1; }

.btn-primary { 
  background: var(--navy); 
  color: var(--cream); 
  box-shadow: 0 4px 20px rgba(28,53,87,0.25);
}
.btn-primary:hover { 
  background: var(--gold); 
  box-shadow: 0 6px 28px rgba(193,159,81,0.35);
  transform: translateY(-1px);
}
.btn-primary-lt { 
  background: var(--cream); 
  color: var(--navy); 
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-primary-lt:hover { 
  background: var(--gold); 
  color: var(--cream);
  transform: translateY(-1px);
}
/* Text button (link-style) */
.btn-t {
  background: transparent;
  border: none;
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  display: inline-block;
}
.btn-t:hover {
  color: var(--gold);
  letter-spacing: 0.22em;
}

.link-btn.light { color: rgba(255,255,255,0.65); }
.link-btn.light:hover { color: var(--gold); gap: 18px; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 30px; }

/* ===================== LISTS ===================== */
.check-list { list-style: none; margin: 16px 0; }
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(28, 53, 87, 0.07);
}
.check-list li:last-child { border: none; }
.ci { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.xi { color: var(--red-soft); flex-shrink: 0; font-size: 13px; margin-top: 3px; }

.arrow-list { list-style: none; }
.arrow-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  padding: 6px 0;
  opacity: 0.75;
}
.arrow-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; }

/* ===================== TESTIMONIALS ===================== */
.testi {
  padding: 32px;
  border: 1px solid rgba(28, 53, 87, 0.1);
  background: white;
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 20px;
}
.testi-author { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.42; }

/* ===================== STEPS ===================== */
.step {
  display: flex;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.step:last-child { border: none; }

/* ===================== IMPACT BOX ===================== */

/* ===================== MARKET CARDS ===================== */
.mkt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 48px; }
.mkt-card { padding: 40px; border: 1px solid rgba(28, 53, 87, 0.1); background: white; }

/* ===================== TERRAIN ===================== */
.terrain-card { padding: 28px; border-left: 2px solid var(--gold); margin-bottom: 24px; }
.terrain-name { font-family: 'Playfair Display', serif; font-size: 21px; margin-bottom: 6px; }
.terrain-sub { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }

/* ===================== FOUNDER ===================== */

/* ===================== STAT ===================== */
.stat-row { display: flex; align-items: baseline; gap: 14px; justify-content: center; margin: 28px 0 48px; }
.stat-l { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.55; line-height: 1.5; }

/* ===================== FINAL CTA ===================== */
.final-sec {
  padding: 100px 80px;
  text-align: center;
  background: #0A0A0A;
  color: var(--cream);
}
.final-sec > * { max-width: 1000px; margin-left: auto; margin-right: auto; }
.reassurances { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.reassurance { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 6px; }

/* ===================== PAGE HERO (intérieur) ===================== */
.page-header {
  padding: 88px 80px 72px;
  max-width: 100%;
  background: #0A0A0A;
  color: var(--cream);
}
.page-header-label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.page-header h1 { font-size: clamp(30px, 4vw, 52px); margin-bottom: 20px; }
.page-header p { font-size: 16px; opacity: 0.62; max-width: 540px; line-height: 1.8; }

/* ===================== CONTACT PAGE ===================== */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; }
.contact-info-box { padding: 40px; background: var(--linen); border: 1px solid rgba(28,53,87,0.08); }
.contact-info-box h3 { font-size: 20px; margin-bottom: 16px; color: var(--navy); }

/* ===================== FORM ===================== */
.form-group, .fg { margin-bottom: 22px; }
.form-group label, .fg label { display: block; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea,
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 11px 0;
  font-size: 15px;
  border: none;
  border-bottom: 1px solid rgba(28, 53, 87, 0.2);
  background: transparent;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-bottom-color: var(--navy); }
.form-group textarea, .fg textarea { resize: none; height: 80px; }
.form-group select, .fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231C3557' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.radio-group, .radio-grp { display: flex; gap: 22px; margin-top: 8px; flex-wrap: wrap; }
.radio-opt { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; }
.radio-opt input { width: auto; accent-color: var(--navy); }
.rgpd-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; opacity: 0.6; line-height: 1.55; cursor: pointer; margin: 22px 0; }
.rgpd-label input { flex-shrink: 0; margin-top: 3px; width: auto; accent-color: var(--navy); }
.form-submit, .form-sub {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--cream);
  border: none;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.3s;
  cursor: pointer;
}
.form-submit:hover, .form-sub:hover { background: var(--gold); }
.form-success {
  display: none;
  padding: 28px;
  background: rgba(28, 53, 87, 0.06);
  border: 1px solid rgba(28, 53, 87, 0.12);
  text-align: center;
  margin-top: 16px;
}
.form-success.show { display: block; }
.form-success h4 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 14px; opacity: 0.65; }

.form-error {
  display: none;
  background: rgba(139,58,58,0.1);
  border: 1px solid var(--red-soft);
  color: var(--red-soft);
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 16px;
  text-align: center;
  animation: shakeForm 0.4s ease;
}
@keyframes shakeForm {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.form-sub:disabled, .form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===================== PHONE PREFIX SELECTOR ===================== */
.phone-input-wrap {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(28, 53, 87, 0.2);
  transition: border-color 0.2s;
}
.phone-input-wrap:focus-within {
  border-bottom-color: var(--navy);
}
.phone-prefix-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 12px 11px 0;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.phone-prefix-btn:hover { opacity: 0.7; }
.phone-prefix-btn .flag { font-size: 18px; line-height: 1; }
.phone-prefix-btn .code { font-size: 14px; color: var(--navy); font-weight: 500; }
.phone-prefix-btn .chevron {
  font-size: 10px;
  color: rgba(28,53,87,0.4);
  transition: transform 0.2s;
}
.phone-prefix-btn.open .chevron { transform: rotate(180deg); }
.phone-input-wrap input[type="tel"] {
  flex: 1;
  padding: 11px 0;
  font-size: 15px;
  border: none !important;
  background: transparent;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  outline: none;
}
.phone-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid rgba(28,53,87,0.12);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 100;
  max-height: 260px;
  overflow: hidden;
  flex-direction: column;
}
.phone-dropdown.open { display: flex; }
.phone-dropdown-search {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(28,53,87,0.08);
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
}
.phone-dropdown-search input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(28,53,87,0.15);
  border-radius: 4px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s;
}
.phone-dropdown-search input:focus {
  border-color: var(--gold);
}
.phone-dropdown-search input::placeholder {
  color: rgba(28,53,87,0.35);
}
.phone-dropdown-list {
  overflow-y: auto;
  max-height: 200px;
  scrollbar-width: thin;
  scrollbar-color: rgba(28,53,87,0.15) transparent;
}
.phone-dropdown-list::-webkit-scrollbar { width: 4px; }
.phone-dropdown-list::-webkit-scrollbar-thumb { background: rgba(28,53,87,0.15); border-radius: 2px; }
.phone-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 14px;
  color: var(--ink);
}
.phone-option:hover { background: var(--linen); }
.phone-option.selected { background: rgba(193,159,81,0.08); }
.phone-option .flag { font-size: 18px; flex-shrink: 0; }
.phone-option .name { flex: 1; font-size: 13px; }
.phone-option .dial { font-size: 13px; color: var(--navy); font-weight: 500; opacity: 0.7; }
.phone-input-container { position: relative; }

/* ===================== MODAL ===================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 34, 56, 0.88);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--cream);
  width: 560px;
  max-width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 52px 48px;
  position: relative;
}
.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.3;
  line-height: 1;
  transition: opacity 0.2s;
}
.modal-close-btn:hover { opacity: 1; }
.modal-lbl { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.modal-box h3 { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 30px; }
.modal-body { padding: 10px 0 0; }

/* ===================== FOOTER ===================== */
footer {
  background: #0A0A0A;
  color: var(--cream);
  padding: 64px 80px 30px;
  margin-top: 0;
}
footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(193,159,81,0.3), transparent);
  margin-bottom: 64px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 56px; }
.footer-logo { 
  font-family: 'Playfair Display', serif; 
  font-size: 20px; 
  margin-bottom: 16px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 15px; opacity: 0.42; line-height: 1.7; }
.footer-col-title { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-nav-list { list-style: none; }
.footer-nav-list li { margin-bottom: 11px; }
.footer-nav-list a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.4;
  color: var(--cream);
  transition: opacity 0.2s;
}
.footer-nav-list a:hover { opacity: 1; }
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  transition: all 0.3s;
}
.footer-social-link:hover {
  color: #0A0A0A;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(193,159,81,0.3);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  opacity: 0.25;
  letter-spacing: 0.05em;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  #navbar { 
    padding: 0 20px;
    height: 68px;
    background: #0A0A0A !important;
    border-bottom: 2px solid rgba(193,159,81,0.4) !important;
  }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sec { padding: 64px 24px; }
  .page-header { padding: 60px 24px 52px; }
  .final-sec { padding: 72px 24px; }
  footer { padding: 48px 24px 24px; }
  .slide-content { padding: 0 28px 80px; }
  .hero-arrows { right: 28px; }
  .two-col,
  .three-col,
  .testi-grid,
  .mkt-grid,
  .footer-grid,
  .founder-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .modal-box { padding: 40px 24px; }
  .reassurances { flex-direction: column; gap: 12px; align-items: center; }

  /* Grid sections become single column on mobile — handled by .grid-2col in semantic classes */

  /* Fullbleed sections */
  .sec-fullbleed { min-height: 480px !important; }
  .sec-fullbleed .fb-content { padding: 60px 24px !important; }

  /* Hero adjustments */
  .hero { min-height: 480px !important; }
  .slide-title { font-size: 28px !important; }
  .slide-bullets { margin-bottom: 24px !important; }
  .slide-bullet { font-size: 13px !important; }

  /* Nav CTA button */
  .nav-cta-btn { display: none; }

  /* Footer grid */
  .footer-grid { gap: 28px !important; }

  /* Two-col asymmetric reset */
  .two-col.asym-left,
  .two-col.asym-right { grid-template-columns: 1fr !important; }

  /* Brand statement */

  /* Stat row */
  .stat-row { flex-direction: column; gap: 12px; }
  .stat-animated { font-size: 72px !important; }

  /* Contact info box */
  .contact-info-box { margin-top: 0; }

  /* Page header */
  .page-header h1 { font-size: 28px !important; }
}

/* ============================================================
   PREMIUM UPGRADES — TIER ONE
   ============================================================ */

/* --- GRAIN TEXTURE --- */
#grain-canvas {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: soft-light;
}

/* --- CUSTOM CURSOR --- */
/* Custom cursor disabled — using native cursor for reliability */
#cursor-dot, #cursor-ring { display: none !important; }
#cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
  left: -100px; top: -100px;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
  opacity: 0;
  left: -100px; top: -100px;
}
#cursor-dot.visible  { opacity: 1; }
#cursor-ring.visible { opacity: 1; }
body:has(button:hover) #cursor-ring,
body:has(a:hover) #cursor-ring {
  width: 54px; height: 54px;
  border-color: var(--gold);
}

/* --- TRANSPARENT NAV → SOLID ON SCROLL --- */
#navbar { background: #0A0A0A !important; }
#navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.5); }

/* Sur hero — tout en blanc/or */

#navbar:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.88) !important;
  opacity: 1 !important;
}
#navbar:not(.scrolled) .nav-links a:hover { color: white !important; }
#navbar:not(.scrolled) .nav-cta-btn {
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  color: white !important;
}
#navbar:not(.scrolled) .nav-cta-btn:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
#navbar:not(.scrolled) .hamburger span { background: white; }

/* Sur pages intérieures — nav toujours scrolled */

/* Scrolled — texte clair sur fond noir */
#navbar.scrolled .nav-links a {
  color: rgba(255,255,255,0.75) !important;
  opacity: 1 !important;
}
#navbar.scrolled .nav-links a:hover { color: white !important; }
#navbar.scrolled .nav-links a.active { color: var(--gold) !important; border-bottom-color: var(--gold); }
#navbar.scrolled .nav-logo-text { color: var(--gold) !important; }
#navbar.scrolled .nav-cta-btn {
  background: var(--gold) !important;
  color: #0A0A0A !important;
  border: none !important;
}
#navbar.scrolled .nav-cta-btn:hover { background: white !important; }

/* --- TYPOGRAPHY UPGRADE --- */
.sec-title {
  font-size: clamp(30px, 4vw, 52px) !important;
  letter-spacing: -0.01em;
}
.hero .slide-title {
  font-size: clamp(38px, 5.5vw, 72px) !important;
  letter-spacing: -0.02em;
  line-height: 1.08 !important;
}

/* --- ASYMMETRIC LAYOUTS --- */
.two-col.asym-left  { grid-template-columns: 3fr 2fr !important; }
.two-col.asym-right { grid-template-columns: 2fr 3fr !important; }

/* --- IMAGE HOVER ZOOM --- */
.img-zoom-wrap {
  overflow: hidden;
  display: block;
}
.img-zoom-wrap img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  will-change: transform;
}
.img-zoom-wrap:hover img { transform: scale(1.05) !important; }

/* --- FADE IN ON SCROLL --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* --- BRAND STATEMENT SECTION --- */

/* --- TESTIMONIALS — FULL WIDTH EDITORIAL --- */
.testi-editorial {
  background: #0A0A0A;
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}
.testi-editorial::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: 60px;
  font-family: 'Playfair Display', serif;
  font-size: 320px;
  color: rgba(201,169,110,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testi-ed-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testi-ed-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3.2vw, 38px);
  font-style: italic;
  color: white;
  line-height: 1.5;
  margin-bottom: 36px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}
.testi-ed-author {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}
.testi-ed-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.testi-ed-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  padding: 0;
  transition: all 0.3s;
}
.testi-ed-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* --- STAT ANIMATED --- */
.stat-animated {
  font-family: 'Playfair Display', serif;
  font-size: clamp(64px, 10vw, 120px);
  color: var(--gold);
  line-height: 1;
  display: block;
}

/* --- IMPACT LINE (90% écartés) --- */

/* --- TRUST BAR --- */
.trust-bar {
  background: #0A0A0A;
  border-top: 1px solid rgba(193,159,81,0.2);
  border-bottom: 1px solid rgba(193,159,81,0.2);
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trust-icon {
  font-size: 18px;
  color: var(--gold);
}
@media (max-width: 900px) {
  .trust-bar { padding: 16px 24px; gap: 20px; justify-content: center; }
  .trust-item { font-size: 10px; gap: 8px; }
}

/* --- AVAILABILITY BADGE --- */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}
.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}

/* --- GOLD LINE SEPARATOR --- */

/* --- SECTION TRANSITION --- */

/* --- SECTION FULL IMAGE --- */

/* --- HOVER STATES ON CARDS --- */
.mkt-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease !important;
}
.mkt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(28,53,87,0.12) !important;
}
.testi {
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

/* --- PREMIUM NAV LINK UNDERLINE --- */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* --- SCROLL INDICATOR HERO --- */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 80px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* --- MOBILE HIDE CURSOR --- */
@media (hover: none) {
  #cursor-dot, #cursor-ring { display: none; }
}
@media (max-width: 900px) {
  .scroll-indicator { display: none; }
  .testi-editorial { padding: 72px 28px; }
}

/* ============================================================
   FULL-BLEED IMAGE SECTIONS — PREMIUM
   ============================================================ */

.sec-fullbleed {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.sec-fullbleed .fb-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s ease;
}
.sec-fullbleed:hover .fb-bg { transform: scale(1.03); }

.sec-fullbleed .fb-overlay {
  position: absolute;
  inset: 0;
}
/* Overlay droite → gauche (texte à gauche) */
.fb-overlay-left {
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.65) 45%,
    rgba(10,10,10,0.15) 75%,
    transparent 100%
  );
}
/* Overlay gauche → droite (texte à droite) */
/* Overlay centré (texte centré) */
/* Overlay linen (section linen avec image) */

.sec-fullbleed .fb-content {
  position: relative;
  z-index: 2;
  padding: 100px 80px;
  max-width: 680px;
}
.sec-fullbleed .fb-content-right {
  margin-left: auto;
}
.sec-fullbleed .fb-content-center {
  margin: 0 auto;
  text-align: center;
  max-width: 760px;
}

/* Texte sur fond sombre */
.fb-dark .sec-label { color: var(--gold); }
.fb-dark .sec-title { color: white; }
.fb-dark .gold-bar { background: var(--gold); }
.fb-dark p { color: rgba(255,255,255,0.75); }
.fb-dark .check-list li { color: rgba(255,255,255,0.82); border-bottom-color: rgba(255,255,255,0.08); }
.fb-dark .x-list li { color: rgba(255,255,255,0.82); }
.fb-dark .xi { color: #e8a0a0; }
.fb-dark .ci { color: var(--gold); }
.fb-dark .arrow-list li { color: rgba(255,255,255,0.75); }
.fb-dark .terrain-name { color: white; }
.fb-dark .founder-name { color: white; }
.fb-dark .founder-role { color: var(--gold); }
.fb-dark .founder-bio { color: rgba(255,255,255,0.72); }

/* Texte sur fond clair */
.fb-light .sec-label { color: var(--gold); }
.fb-light .sec-title { color: var(--ink); }

@media (max-width: 900px) {
  .sec-fullbleed { min-height: 0; }
  .sec-fullbleed .fb-overlay-left,
  .sec-fullbleed .fb-overlay-right {
    background: rgba(10,10,10,0.82);
  }
  .sec-fullbleed .fb-overlay-linen {
    background: rgba(240,239,235,0.92);
  }
  .sec-fullbleed .fb-content {
    padding: 72px 24px;
    max-width: 100%;
  }
}

/* ============================================================
   SECTIONS FOND IMAGE — PREMIUM FULL BLEED
   ============================================================ */

/* Overlay adapté au contenu de chaque section */
@media (max-width: 900px) {
}

/* ============================================================
   SEMANTIC UTILITY CLASSES (extracted from inline styles)
   ============================================================ */

/* --- Layout: Grid Sections --- */

/* --- Layout: Column Panels --- */

/* --- Vertical Gold Separators --- */

/* --- Images --- */

/* --- Typography Utilities --- */
.body-text {
  font-size: 15px;
  line-height: 1.85;
  opacity: 0.75;
  margin-bottom: 24px;
}

/* --- Legal Page Headings --- */
.legal-heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 20px;
}
.legal-heading--mt { margin-top: 40px; }
.legal-sec { max-width: 800px; margin: 0 auto; }

/* --- Section Utilities --- */
.check-list li.border-dark { border-color: rgba(255,255,255,0.08); }
.check-list li.border-light { border-color: rgba(28,53,87,0.08); }

/* --- Methodology Steps --- */

/* --- Stat Box --- */

/* --- Quote Styles --- */

/* --- Process Cards (Maroc page) --- */

/* --- Ticket/Stat Display (Maroc page) --- */

/* --- Founder Section --- */

/* --- Contact Info --- */

/* --- Final CTA Titles --- */
.final-sec .sec-title { color: white; max-width: 620px; margin: 0 auto 18px; }
.final-sec--narrow .sec-title { max-width: 560px; margin: 0 auto 20px; }

/* --- Thailand Page Header --- */

/* --- Footer Subtle Text --- */
.footer-subtle {
  margin-top: 22px;
  font-size: 11px;
  opacity: 0.22;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Avail Badge Center --- */
.avail-badge--center {
  justify-content: center;
  margin-top: 8px;
}

/* --- Spacing Utilities --- */

/* ============================================================
   RESPONSIVE OVERRIDES (updated for semantic classes)
   ============================================================ */
@media (max-width: 900px) {
  .grid-2col,
  section[style*="grid-template-columns:1fr 1fr"],
  section[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    grid-template-columns: 1fr !important;
  }
  .grid-2col > div,
  section[style*="grid-template-columns:1fr 1fr"] > div,
  section[style*="grid-template-columns: 1fr 1fr"] > div {
    padding: 56px 24px !important;
    min-height: auto !important;
  }
  .col-img img.img-cover,
  section[style*="grid-template-columns:1fr 1fr"] > div[style*="overflow:hidden"] img,
  section[style*="grid-template-columns: 1fr 1fr"] > div[style*="overflow:hidden"] img {
    max-height: 320px !important;
    width: 100% !important;
  }
  .legal-sec { padding-left: 24px !important; padding-right: 24px !important; }

  /* Force wrap on all inline flex/grid layouts */
  section[style*="display:grid"] {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Titles: reduce sizes */
  h1, .slide-title { font-size: 30px !important; line-height: 1.2 !important; }
  h2, .sec-title { font-size: 24px !important; line-height: 1.25 !important; }
  h3 { font-size: 20px !important; }

  /* Inline h2 styles override */
  section h2[style] { font-size: 24px !important; }
  section div[style*="font-size:32px"],
  section div[style*="font-size: 32px"] { font-size: 24px !important; }
  section div[style*="font-size:56px"],
  section div[style*="font-size: 56px"] { font-size: 42px !important; }
  section div[style*="font-size:48px"],
  section div[style*="font-size: 48px"] { font-size: 36px !important; }
  section div[style*="font-size:44px"],
  section div[style*="font-size: 44px"] { font-size: 32px !important; }

  /* Paragraphs inside inline-styled sections */
  section p[style] {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  /* Three-col becomes stack */

  /* Buttons full width */
  section .btn,
  section .btn-primary,
  section .btn-outline,
  section .btn-primary-lt,
  .final-sec .btn { width: 100%; max-width: 320px; }
  .btn-row { justify-content: center; }

  /* Trust bar wraps */
  .trust-bar {
    flex-direction: column;
    gap: 14px !important;
    padding: 24px 20px !important;
  }
  .trust-item {
    font-size: 11px !important;
    letter-spacing: 0.08em !important;
  }

  /* Sec-label */
  .sec-label { font-size: 10px !important; letter-spacing: 0.18em !important; }

  /* Check-list on mobile */
  .check-list li { font-size: 13px !important; line-height: 1.6 !important; padding: 10px 0 !important; }

  /* Testimonials */
  .testi-ed-quote { font-size: 18px !important; min-height: 140px !important; }

  /* Method steps */
  section div[style*="display:flex"][style*="gap:18px"] span[style*="font-size:28px"] {
    font-size: 22px !important;
    width: 32px !important;
  }

  /* Stat box */
  section div[style*="border:1px solid rgba(193,159,81"][style*="padding:24px"] {
    padding: 18px !important;
  }

  /* Reset vertical separators on mobile */
  section div[style*="position:absolute"][style*="width:1px"] {
    display: none !important;
  }

  /* Hero arrows - smaller and better positioned */
  .hero-arrows { right: 20px !important; bottom: 70px !important; }
  .arrow-btn { width: 36px !important; height: 36px !important; }

  /* Page header padding reduced */
  .page-header { padding: 48px 20px 40px !important; }
  .page-header p { font-size: 14px !important; line-height: 1.6 !important; }

  /* Disable grain canvas on mobile for perf */
  #grain-canvas { display: none !important; }

  /* Disable custom cursor on mobile — already via hover:none */
  *, *::before, *::after { cursor: auto !important; }

  /* Scroll indicator */
  .scroll-indicator { display: none !important; }

  /* Brand statement padding */

  /* Testimonials editorial */
  .testi-editorial { padding: 56px 20px !important; }
  .testi-editorial::before { font-size: 160px !important; left: 20px !important; }

  /* Final CTA section */
  .final-sec .sec-title { font-size: 22px !important; max-width: 100% !important; }
  .final-sec p[style] { font-size: 16px !important; }

  /* Footer */
  .footer-logo { font-size: 20px !important; }
  .footer-tagline { font-size: 14px !important; }
  .footer-col-title { font-size: 11px !important; }
  .footer-nav-list li { font-size: 13px !important; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 10px !important;
  }

  /* Modal on mobile */
  .modal-overlay { padding: 20px !important; }
  .modal-header h3 { font-size: 22px !important; }

  /* Form labels and inputs */
  .form-group label,
  .fg label { font-size: 11px !important; }
  .form-group input,
  .form-group select,
  .form-group textarea,
  .fg input,
  .fg select,
  .fg textarea { font-size: 16px !important; }

  /* Section transition */

  /* Reduce ticket-box */
  section div[style*="linear-gradient(145deg"] {
    padding: 30px 20px !important;
    aspect-ratio: auto !important;
  }
}

/* Prevent horizontal overflow on mobile */
@media (max-width: 900px) {
  html, body { overflow-x: hidden !important; width: 100% !important; max-width: 100vw !important; }
  img { max-width: 100% !important; height: auto; }
  .mkt-card { padding: 32px 24px !important; }
  .contact-info-box { padding: 32px 24px !important; }
}

/* Extra small phones */
@media (max-width: 480px) {
  .slide-content { padding: 0 20px 70px !important; }
  .slide-title { font-size: 24px !important; }
  .slide-bullet { font-size: 12px !important; }
  h1 { font-size: 26px !important; }
  h2, .sec-title { font-size: 22px !important; }
  .sec { padding: 48px 20px !important; }
  .trust-bar { padding: 20px 16px !important; }
}

.text-muted { opacity: 0.4; }

/* ============================================================
   BLOG — Liste & Article
   ============================================================ */

/* --- Blog listing page --- */
.blog-hero {
  background: #0A0A0A;
  padding: 120px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%);
}
.blog-hero-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
}
.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  color: white;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin: 0 auto 20px;
  position: relative;
}
.blog-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.blog-list-wrap {
  background: var(--cream);
  padding: 80px 80px 120px;
}
.blog-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
}
.blog-card {
  background: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(28,53,87,0.08);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(28,53,87,0.12);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body { padding: 32px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-card-meta-sep { color: rgba(28,53,87,0.2); }
.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.blog-card-excerpt {
  font-size: 14px;
  color: rgba(26,26,26,0.65);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}
.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.3s, gap 0.3s;
}
.blog-card:hover .blog-card-cta {
  color: var(--gold);
  gap: 14px;
}

/* --- Blog article page --- */
.article-header {
  background: #0A0A0A;
  padding: 100px 24px 60px;
  text-align: center;
  position: relative;
}
.article-category {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gold);
}
.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 860px;
  margin: 0 auto 32px;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-meta .dot {
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.article-featured-img {
  width: 100%;
  max-width: 1100px;
  margin: -40px auto 0;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.article-body {
  background: var(--cream);
  padding: 80px 24px 120px;
}
.article-content {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(26,26,26,0.82);
}
.article-content > p:first-of-type {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}
.article-content p {
  margin-bottom: 22px;
}
.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--navy);
  margin-top: 56px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  font-weight: 500;
  line-height: 1.25;
}
.article-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.3;
}
.article-content h2::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}
.article-content ul {
  margin: 20px 0 28px;
  padding-left: 0;
  list-style: none;
}
.article-content ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 16px;
}
.article-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.article-content strong { color: var(--navy); font-weight: 500; }
.article-content em { font-style: italic; color: var(--navy); }

/* Article CTA */
.article-cta-box {
  max-width: 760px;
  margin: 80px auto 0;
  padding: 56px 48px;
  background: #0A0A0A;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%);
}
.article-cta-box > * { position: relative; }
.article-cta-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.article-cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  color: white;
  margin-bottom: 14px;
  line-height: 1.3;
}
.article-cta-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

/* Back to blog link */
.article-back {
  max-width: 760px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.article-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.6);
  transition: color 0.3s, gap 0.3s;
}
.article-back a:hover {
  color: var(--gold);
  gap: 12px;
}

/* Mobile blog */
@media (max-width: 900px) {
  .blog-hero { padding: 90px 20px 60px; }
  .blog-list-wrap { padding: 60px 20px 80px; }
  .blog-grid { grid-template-columns: 1fr; gap: 28px; }
  .article-header { padding: 80px 20px 48px; }
  .article-featured-img { margin-top: -24px; aspect-ratio: 4/3; }
  .article-body { padding: 56px 20px 80px; }
  .article-content { font-size: 15px !important; }
  .article-content > p:first-of-type { font-size: 18px !important; padding-left: 16px; }
  .article-cta-box { padding: 40px 24px !important; margin-top: 56px; }
  .article-meta { flex-wrap: wrap; gap: 10px; font-size: 10px !important; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9500;
  background: #0A0A0A;
  border-top: 1px solid rgba(193,159,81,0.25);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  flex: 1;
}
.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--gold);
  color: #0A0A0A;
  border: none;
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.cookie-btn-accept:hover { background: white; }
.cookie-btn-refuse {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}
.cookie-btn-refuse:hover { border-color: rgba(255,255,255,0.4); color: white; }
@media (max-width: 900px) {
  .cookie-banner { flex-direction: column; padding: 20px 20px; gap: 16px; text-align: center; }
  .cookie-banner p { font-size: 12px; }
  .cookie-btns { width: 100%; justify-content: center; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(28,53,87,0.1);
  padding: 0;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1.4;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 0 24px;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(26,26,26,0.72);
}
@media (max-width: 900px) {
  .faq-question { font-size: 16px; padding: 20px 0; }
  .faq-answer p { font-size: 14px; }
}
