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

:root {
  --navy: #0d1b2a;
  --navy-mid: #162032;
  --navy-light: #1e2f45;
  --gold: #c9a84c;
  --gold-light: #e4c97a;
  --gold-dark: #9e7d30;
  --cream: #f0e9dc;
  --cream-dark: #d8cfc0;
  --white: #ffffff;
  --text-light: #e8e0d0;
  --text-muted: #9aabb8;
  --border: rgba(201, 168, 76, 0.3);
  --section-pad: clamp(4rem, 8vw, 7rem);
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--navy);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  display: block;
  margin-bottom: 1rem;
}

/* ===== ORNAMENT ===== */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.ornament-center {
  justify-content: center;
}

.ornament-dot {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.site-nav.scrolled {
  background: rgba(13, 27, 42, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-links a.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition);
}

.nav-links a.nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 27, 42, 0.6) 0%,
    rgba(13, 27, 42, 0.45) 50%,
    rgba(13, 27, 42, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 860px;
}

.hero-subtitle {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-location {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--cream-dark);
  letter-spacing: 0.08em;
  margin-top: 0.8rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 1rem 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 3rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.3) 0%, rgba(13,27,42,0.8) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.page-hero-content h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-dark {
  background: var(--navy);
}

.section-mid {
  background: var(--navy-mid);
}

.section-light {
  background: var(--navy-light);
}

/* ===== MISSION STATEMENT ===== */
.mission {
  text-align: center;
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
  background: var(--navy-mid);
}

.mission-inner {
  max-width: 900px;
  margin: 0 auto;
}

.mission-lead {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--cream);
  line-height: 1.8;
  margin: 1.5rem 0;
}

.mission-lead strong {
  color: var(--gold-light);
  font-weight: normal;
}

.mission-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--cream-dark);
  line-height: 1.85;
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--gold-dark);
  text-align: left;
  background: rgba(201, 168, 76, 0.06);
  border-radius: 0 4px 4px 0;
  margin: 2rem 0;
}

/* ===== TWO-COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.col-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.col-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.col-image::after {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid var(--gold-dark);
  border-radius: 2px;
  z-index: -1;
}

.col-text h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.col-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

/* ===== TRADITION SECTION ===== */
.tradition {
  text-align: center;
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
  background: var(--navy);
  position: relative;
}

.tradition-inner {
  max-width: 800px;
  margin: 0 auto;
}

.tradition h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tradition p {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--cream-dark);
  font-style: italic;
  line-height: 1.85;
}

/* ===== HISTORY CONTENT ===== */
.history-section {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
  background: var(--navy-mid);
}

.history-inner {
  max-width: 840px;
  margin: 0 auto;
}

.history-inner h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.history-inner p {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.history-inner p:first-of-type {
  font-size: 1.05rem;
  color: var(--cream-dark);
}

/* ===== PILLARS ===== */
.pillars {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.pillar {
  flex: 1;
  min-width: 180px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  text-align: center;
  background: rgba(201, 168, 76, 0.04);
}

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.pillar h3 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-weight: normal;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
  background: var(--navy-light);
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-inner > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.contact-email:hover {
  color: var(--gold-light);
}

/* Form */
.form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

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

.form-gdpr {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  background: rgba(0,0,0,0.15);
}

.form-gdpr a {
  color: var(--gold);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition), transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  width: 100%;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #080f18;
  padding: 3rem clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo img {
  height: 40px;
  margin: 0 auto 1.5rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-logo img:hover {
  opacity: 1;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ===== INTRO SECTION (Qui sommes nous) ===== */
.intro-section {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
  background: var(--navy);
}

.intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-inner h1 {
  color: var(--gold-light);
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.intro-inner h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.intro-lead {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream-dark);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.intro-lead strong {
  color: var(--gold-light);
  font-weight: normal;
}

/* ===== DEVISES ===== */
.devise {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  text-align: center;
  margin: 2rem 0;
  padding: 1rem 2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}

/* ===== SPIRIT SECTION ===== */
.spirit-section {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
  background: var(--navy-light);
}

.spirit-inner {
  max-width: 840px;
  margin: 0 auto;
}

.spirit-inner h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.spirit-inner p {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.bullet-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--cream-dark);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
}

.bullet-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 80px 0 0 0;
    background: rgba(13, 27, 42, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .two-col.reverse {
    direction: ltr;
  }

  .col-image::after {
    display: none;
  }

  .col-image img {
    height: 280px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .pillars {
    flex-direction: column;
  }

  .hero-content {
    padding: 1rem;
  }
}
