/* ============================================================
   ACR — Alliance des Collectionneurs Responsables
   Global Design System
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Palette */
  --ivory:       #F5F0E8;
  --ivory-dark:  #EBE4D8;
  --ink:         #1A1410;
  --ink-light:   #3A3530;
  --ink-muted:   #6B6560;
  --gold:        #C9A84C;
  --gold-light:  #D4BA6A;
  --gold-dark:   #A88A3A;
  --bordeaux:    #6B2737;
  --bordeaux-light: #8A3A4D;
  --cream:       #FAF7F2;
  --dark-bg:     #1A1410;
  --dark-bg-alt: #242018;
  --white:       #FFFFFF;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:   'Jost', 'Helvetica Neue', Helvetica, sans-serif;

  /* Spacing */
  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    2rem;
  --space-lg:    4rem;
  --space-xl:    6rem;
  --space-xxl:   8rem;

  /* Layout */
  --max-width:   1280px;
  --header-h:    80px;

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --duration:    0.6s;
  --duration-fast: 0.3s;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background-color: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* subtle paper grain texture */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-light);
  max-width: 68ch;
}

.text-gold { color: var(--gold); }
.text-ivory { color: var(--ivory); }
.text-bordeaux { color: var(--bordeaux); }

/* Roman numeral styling */
.roman-numeral {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 0.85em;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-right: 0.5em;
}

/* Gold line separator */
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: var(--space-md) 0;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

/* Section label */
.section-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section--dark {
  background-color: var(--dark-bg);
  color: var(--ivory);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--ivory); }
.section--dark p { color: rgba(245, 240, 232, 0.8); }

.section--cream {
  background-color: var(--cream);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: background var(--duration-fast) var(--ease),
              box-shadow var(--duration-fast) var(--ease);
}

.header.scrolled {
  box-shadow: 0 2px 30px rgba(26, 20, 16, 0.08);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-mark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1;
}

.header__logo-text {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.3;
  display: none;
}

@media (min-width: 1024px) {
  .header__logo-text { display: block; }
}

/* Desktop nav */
.header__nav { display: none; }

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 0;
  }
}

/* Nav item (wrapper for link + dropdown) */
.nav-item {
  position: relative;
}

.nav-item > .nav-link {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-light);
  position: relative;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--duration-fast) var(--ease);
  height: var(--header-h);
  text-decoration: none;
}

.nav-link__chevron {
  width: 8px;
  height: 8px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform var(--duration-fast) var(--ease);
  flex-shrink: 0;
}

.nav-item:hover .nav-link__chevron,
.nav-item.dropdown-open .nav-link__chevron {
  transform: rotate(180deg);
}

.nav-item > .nav-link::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--duration-fast) var(--ease);
}

.nav-item:hover > .nav-link,
.nav-item > .nav-link.active {
  color: var(--ink);
}

.nav-item:hover > .nav-link::after,
.nav-item > .nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown panel */
.dropdown {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration-fast) var(--ease),
              transform var(--duration-fast) var(--ease),
              visibility var(--duration-fast) var(--ease);
  z-index: 100;
}

.nav-item:hover .dropdown,
.nav-item.dropdown-open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown__inner {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.12);
  box-shadow: 0 16px 50px rgba(26, 20, 16, 0.1), 0 0 0 1px rgba(201, 168, 76, 0.04);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem 2.5rem;
  min-width: 380px;
  position: relative;
}

.dropdown__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201, 168, 76, 0.2));
}

.dropdown__inner a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-muted);
  padding: 0.45rem 0.5rem;
  display: block;
  border-radius: 2px;
  transition: color var(--duration-fast) var(--ease),
              background var(--duration-fast) var(--ease),
              padding-left var(--duration-fast) var(--ease);
}

.dropdown__inner a:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
  padding-left: 0.85rem;
}

/* Header right: CTA + lang */
.header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__cta {
  display: none;
}

@media (min-width: 1024px) {
  .header__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.5rem 1.1rem;
    transition: all var(--duration-fast) var(--ease);
  }

  .header__cta:hover {
    background: var(--gold);
    color: var(--ivory);
  }
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(26, 20, 16, 0.12);
  overflow: hidden;
}

.lang-switch a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  color: var(--ink-muted);
  transition: all var(--duration-fast) var(--ease);
  text-decoration: none;
}

.lang-switch a.active {
  background: var(--ink);
  color: var(--ivory);
}

.lang-switch a:not(.active):hover {
  background: rgba(26, 20, 16, 0.04);
}

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}

@media (min-width: 1024px) {
  .header__hamburger { display: none; }
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.4s var(--ease);
  transform-origin: center;
  position: absolute;
}

.header__hamburger span:nth-child(1) { transform: translateY(-7px); }
.header__hamburger span:nth-child(2) { width: 16px; }
.header__hamburger span:nth-child(3) { transform: translateY(7px); }

.header__hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  background: var(--gold);
}
.header__hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.header__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  background: var(--gold);
}

/* ============================================================
   MOBILE MENU (full-screen overlay)
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--dark-bg);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

/* Mobile menu header */
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  min-height: var(--header-h);
}

.mobile-menu__head .header__logo-mark {
  font-size: 1.4rem;
}

.mobile-menu__lang {
  display: flex;
  gap: 0;
  border: 1px solid rgba(201, 168, 76, 0.25);
  overflow: hidden;
}

.mobile-menu__lang a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  color: rgba(245, 240, 232, 0.5);
  transition: all var(--duration-fast) var(--ease);
  text-decoration: none;
}

.mobile-menu__lang a.active {
  background: var(--gold);
  color: var(--dark-bg);
}

/* Mobile menu body: scrollable */
.mobile-menu__body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
}

/* Nav groups */
.mobile-nav-group {
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.mobile-menu.open .mobile-nav-group {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.open .mobile-nav-group:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-nav-group:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.open .mobile-nav-group:nth-child(3) { transition-delay: 0.16s; }
.mobile-menu.open .mobile-nav-group:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open .mobile-nav-group:nth-child(5) { transition-delay: 0.24s; }
.mobile-menu.open .mobile-nav-group:nth-child(6) { transition-delay: 0.28s; }
.mobile-menu.open .mobile-nav-group:nth-child(7) { transition-delay: 0.32s; }

.mobile-nav-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ivory);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--duration-fast) var(--ease);
}

.mobile-nav-toggle:hover,
.mobile-nav-group.open .mobile-nav-toggle {
  color: var(--gold);
}

.mobile-nav-toggle .nav-num {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(201, 168, 76, 0.4);
  margin-right: 0.75rem;
}

.mobile-nav-arrow {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.mobile-nav-arrow::before,
.mobile-nav-arrow::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.4s var(--ease);
}

.mobile-nav-arrow::before {
  width: 12px; height: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.mobile-nav-arrow::after {
  width: 1px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.mobile-nav-group.open .mobile-nav-arrow::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Sub-links */
.mobile-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
  background: rgba(0, 0, 0, 0.15);
}

.mobile-nav-sub a {
  display: flex;
  align-items: center;
  padding: 0.6rem 1.5rem 0.6rem 2.75rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease),
              padding-left var(--duration-fast) var(--ease);
  position: relative;
}

.mobile-nav-sub a::before {
  content: '';
  width: 4px;
  height: 1px;
  background: rgba(201, 168, 76, 0.3);
  margin-right: 0.75rem;
  flex-shrink: 0;
  transition: width var(--duration-fast) var(--ease),
              background var(--duration-fast) var(--ease);
}

.mobile-nav-sub a:hover {
  color: var(--gold);
  padding-left: 3rem;
}

.mobile-nav-sub a:hover::before {
  width: 8px;
  background: var(--gold);
}

/* Mobile menu footer */
.mobile-menu__foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s var(--ease-out) 0.35s,
              transform 0.5s var(--ease-out) 0.35s;
}

.mobile-menu.open .mobile-menu__foot {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__foot .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.8rem;
}

.mobile-menu__info {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-bg);
  color: rgba(245, 240, 232, 0.7);
  padding: var(--space-xl) 0 var(--space-md);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

@media (min-width: 768px) {
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer__brand .footer__logo {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer__col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 0.6rem;
  transition: color var(--duration-fast) var(--ease);
}

.footer__col a:hover { color: var(--ivory); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  padding-top: var(--space-md);
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.35);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__bottom a {
  color: rgba(245, 240, 232, 0.35);
  transition: color var(--duration-fast) var(--ease);
}

.footer__bottom a:hover { color: var(--gold); }

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.85rem;
  transition: all var(--duration-fast) var(--ease);
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  transition: all var(--duration-fast) var(--ease);
  cursor: pointer;
  border: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--dark-bg);
}

.btn--gold:hover {
  background: var(--gold-light);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.btn--outline-light {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245, 240, 232, 0.3);
}

.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--dark {
  background: var(--dark-bg);
  color: var(--ivory);
}

.btn--dark:hover {
  background: var(--ink-light);
}

.btn--bordeaux {
  background: var(--bordeaux);
  color: var(--ivory);
}

.btn--bordeaux:hover {
  background: var(--bordeaux-light);
}

.btn--large {
  padding: 1.1rem 2.8rem;
  font-size: 0.88rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  padding: var(--space-md);
  box-shadow: 0 2px 20px rgba(26, 20, 16, 0.05);
  transition: transform var(--duration-fast) var(--ease),
              box-shadow var(--duration-fast) var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(26, 20, 16, 0.08);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(26, 20, 16, 0.15);
  background: var(--white);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color var(--duration-fast) var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Form on dark background */
.form-group--dark label { color: rgba(245, 240, 232, 0.6); }
.form-group--dark input,
.form-group--dark select,
.form-group--dark textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 240, 232, 0.15);
  color: var(--ivory);
}
.form-group--dark input:focus,
.form-group--dark select:focus,
.form-group--dark textarea:focus {
  border-color: var(--gold);
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion { border-top: 1px solid rgba(26, 20, 16, 0.1); }

.accordion__item {
  border-bottom: 1px solid rgba(26, 20, 16, 0.1);
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: color var(--duration-fast) var(--ease);
}

.accordion__header:hover { color: var(--gold); }

.accordion__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform var(--duration-fast) var(--ease);
}

.accordion__icon::before {
  width: 14px; height: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.accordion__icon::after {
  width: 1px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.accordion__item.open .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration) var(--ease);
}

.accordion__content {
  padding-bottom: 1.5rem;
}

.accordion__content p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================================
   ANIMATIONS (Scroll reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
}

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Gold line draw animation */
.gold-line-animate {
  width: 0;
  transition: width 1s var(--ease-out);
}

.gold-line-animate.visible {
  width: 60px;
}

/* Counter animation placeholder */
.counter { font-variant-numeric: tabular-nums; }

/* ACR watermark */
.watermark {
  position: absolute;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 18rem;
  color: rgba(201, 168, 76, 0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark-bg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(201, 168, 76, 0.15) 0%,
    rgba(107, 39, 55, 0.1) 50%,
    rgba(26, 20, 16, 0.95) 100%
  );
  z-index: 1;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(107, 39, 55, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(201, 168, 76, 0.15) 0%, transparent 45%);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-xl) var(--space-md);
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.hero h1 {
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
}

.stats-bar__item {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  position: relative;
}

@media (min-width: 768px) {
  .stats-bar__item + .stats-bar__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(201, 168, 76, 0.2);
  }
}

.stats-bar__number {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-bar__label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

/* ============================================================
   PILLAR CARDS
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pillars { grid-template-columns: repeat(4, 1fr); }
}

.pillar-card {
  padding: var(--space-md);
  border: 1px solid rgba(26, 20, 16, 0.08);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-fast) var(--ease);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.pillar-card:hover::before { transform: scaleX(1); }

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(26, 20, 16, 0.06);
}

.pillar-card__number {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2.5rem;
  color: rgba(201, 168, 76, 0.2);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.pillar-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  stroke-width: 1.2;
  fill: none;
}

.pillar-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* ============================================================
   TESTIMONIAL CAROUSEL
   ============================================================ */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform var(--duration) var(--ease-out);
}

.carousel__slide {
  min-width: 100%;
  padding: var(--space-md);
  text-align: center;
}

.carousel__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto var(--space-md);
  line-height: 1.6;
}

.carousel__quote::before {
  content: '\201C';
  display: block;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.carousel__author {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--ink-light);
}

.carousel__author-title {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26, 20, 16, 0.15);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease);
}

.carousel__dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.15));
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-lg);
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: -33px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--ivory);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.timeline__year {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.timeline__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.timeline__desc {
  font-size: 0.92rem;
  color: var(--ink-muted);
  max-width: 500px;
}

/* ============================================================
   PRICING / MEMBERSHIP CARDS
   ============================================================ */
.membership-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .membership-cards { grid-template-columns: repeat(3, 1fr); }
}

.membership-card {
  background: var(--white);
  border: 1px solid rgba(26, 20, 16, 0.08);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  position: relative;
  transition: all var(--duration-fast) var(--ease);
}

.membership-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 50px rgba(26, 20, 16, 0.08);
}

.membership-card--featured {
  border-color: var(--gold);
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.03), var(--white));
}

.membership-card--featured::before {
  content: 'Recommandé';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark-bg);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
}

.membership-card__type {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.membership-card h3 {
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}

.membership-card__desc {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: var(--space-md);
}

.membership-card__features {
  text-align: left;
  margin-bottom: var(--space-md);
}

.membership-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(26, 20, 16, 0.05);
}

.membership-card__features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

/* ============================================================
   STEPPER
   ============================================================ */
.stepper {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .stepper {
    flex-direction: row;
    align-items: flex-start;
  }
}

.stepper__step {
  flex: 1;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .stepper__step + .stepper__step::before {
    content: '';
    position: absolute;
    left: -50%;
    top: 24px;
    width: 100%;
    height: 1px;
    background: rgba(201, 168, 76, 0.3);
  }
}

.stepper__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
  background: var(--ivory);
}

.stepper__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.stepper__desc {
  font-size: 0.85rem;
  color: var(--ink-muted);
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================================
   MEMBER GRID & FILTER
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.filter-btn {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(26, 20, 16, 0.15);
  color: var(--ink-muted);
  transition: all var(--duration-fast) var(--ease);
  cursor: pointer;
  background: transparent;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.members-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .members-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .members-grid { grid-template-columns: repeat(3, 1fr); }
}

.member-card {
  background: var(--white);
  border: 1px solid rgba(26, 20, 16, 0.06);
  padding: var(--space-md);
  transition: all var(--duration-fast) var(--ease);
}

.member-card:hover {
  box-shadow: 0 6px 30px rgba(26, 20, 16, 0.06);
  transform: translateY(-3px);
}

.member-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(107, 39, 55, 0.1));
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--gold);
}

.member-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.member-card__info {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.member-card__badge {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
}

/* ============================================================
   WORLD MAP (SVG placeholder)
   ============================================================ */
.world-map-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.world-map-container svg {
  width: 100%;
  height: auto;
}

.map-dot {
  fill: var(--gold);
  opacity: 0.8;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; r: 3; }
  50% { opacity: 1; r: 5; }
}

/* ============================================================
   PROFILE CARDS (Founders)
   ============================================================ */
.profile-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(26, 20, 16, 0.06);
  overflow: hidden;
  transition: all var(--duration-fast) var(--ease);
}

.profile-card:hover {
  box-shadow: 0 10px 40px rgba(26, 20, 16, 0.07);
}

.profile-card__image {
  height: 260px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(107, 39, 55, 0.08), rgba(26, 20, 16, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-card__initials {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
}

.profile-card__body {
  padding: var(--space-md);
}

.profile-card__role {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.profile-card__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.profile-card__bio {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ============================================================
   GOVERNANCE ORG CHART
   ============================================================ */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.org-chart__level {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.org-chart__node {
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: var(--white);
  min-width: 200px;
  position: relative;
}

.org-chart__node--primary {
  border-color: var(--gold);
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.05), var(--white));
}

.org-chart__connector {
  width: 1px;
  height: 30px;
  background: rgba(201, 168, 76, 0.3);
}

.org-chart__node h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.org-chart__node p {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* ============================================================
   PARTNER LOGOS
   ============================================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 768px) {
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  border: 1px solid rgba(26, 20, 16, 0.06);
  padding: var(--space-sm);
  transition: all var(--duration-fast) var(--ease);
}

.partner-logo:hover {
  border-color: var(--gold);
}

.partner-logo span {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   CONTACT CARDS
   ============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .contact-cards { grid-template-columns: repeat(3, 1fr); }
}

.contact-card {
  background: var(--white);
  padding: var(--space-md);
  border: 1px solid rgba(26, 20, 16, 0.06);
  text-align: center;
  transition: all var(--duration-fast) var(--ease);
}

.contact-card:hover {
  box-shadow: 0 6px 30px rgba(26, 20, 16, 0.06);
}

.contact-card__city {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.contact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 0 auto;
}

/* ============================================================
   INFOGRAPHIC / HORIZONTAL TIMELINE
   ============================================================ */
.h-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

@media (min-width: 768px) {
  .h-timeline {
    flex-direction: row;
    align-items: flex-start;
    position: relative;
  }

  .h-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, var(--gold), rgba(201, 168, 76, 0.15));
  }
}

.h-timeline__step {
  flex: 1;
  text-align: center;
  position: relative;
}

.h-timeline__dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.h-timeline__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.h-timeline__desc {
  font-size: 0.85rem;
  color: var(--ink-muted);
  max-width: 200px;
  margin: 0 auto;
}

/* ============================================================
   VIDEO PLACEHOLDER
   ============================================================ */
.video-placeholder {
  background: var(--dark-bg-alt);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-placeholder__play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  transition: all var(--duration-fast) var(--ease);
}

.video-placeholder:hover .video-placeholder__play {
  background: var(--gold);
  color: var(--dark-bg);
}

.video-placeholder__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.6);
  max-width: 350px;
  text-align: center;
  padding: 0 var(--space-md);
}

/* ============================================================
   CONDITIONS VISUAL (FIRPCAM page)
   ============================================================ */
.conditions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
}

.condition-card {
  padding: var(--space-md);
  border: 1px solid rgba(26, 20, 16, 0.08);
  background: var(--white);
  position: relative;
  transition: all var(--duration-fast) var(--ease);
}

.condition-card--highlighted {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), var(--white));
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.08);
}

.condition-card--highlighted::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}

.condition-card__number {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2rem;
  color: rgba(201, 168, 76, 0.3);
  margin-bottom: 0.75rem;
}

.condition-card h4 {
  margin-bottom: 0.75rem;
}

.condition-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* ============================================================
   STATIC MAP (Contact page)
   ============================================================ */
.static-map {
  height: 300px;
  background: var(--dark-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.static-map__overlay {
  text-align: center;
}

.static-map__pin {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.static-map__label {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ivory);
}

/* ============================================================
   TWO-COLUMN EDITORIAL
   ============================================================ */
.editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .editorial { grid-template-columns: 1fr 1fr; }
  .editorial--reverse { direction: rtl; }
  .editorial--reverse > * { direction: ltr; }
}

.editorial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  padding: var(--space-md);
  border-left: 2px solid var(--gold);
  line-height: 1.6;
}

.editorial__quote footer {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: var(--space-sm);
  letter-spacing: 0.05em;
}

/* ============================================================
   BENEFIT CARDS (horizontal)
   ============================================================ */
.benefit-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .benefit-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .benefit-cards { grid-template-columns: repeat(5, 1fr); }
}

.benefit-card {
  background: var(--white);
  padding: var(--space-md);
  border: 1px solid rgba(26, 20, 16, 0.06);
  text-align: center;
  transition: all var(--duration-fast) var(--ease);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26, 20, 16, 0.06);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.2rem;
}

.benefit-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 0 auto;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2A2218 100%);
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.cta-section .watermark {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-section h2 {
  color: var(--ivory);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(245, 240, 232, 0.6);
  margin: 0 auto var(--space-md);
  max-width: 550px;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding: calc(var(--header-h) + var(--space-xl)) 0 var(--space-lg);
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header__content {
  position: relative;
  z-index: 1;
}

.page-header .watermark {
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
}

.page-header h1 {
  color: var(--ivory);
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: rgba(245, 240, 232, 0.6);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-header .gold-line {
  margin: var(--space-md) auto 0;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mt-lg { margin-top: var(--space-lg); }
.pt-0 { padding-top: 0; }

/* Spacer for pages after fixed header */
.header-spacer { height: var(--header-h); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 767px) {
  .section {
    padding: var(--space-lg) 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
