/* ═══════════════════════════════════════════════════════
   RetourOSource — Luxe Organique
   Vert forêt · Cuivre · Or sable
   ═══════════════════════════════════════════════════════ */

@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&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Variables ── */
:root {
  --forest: #141f14;
  --forest-mid: #1b2a1b;
  --forest-light: #2d3a2d;
  --gold: #d4c5a0;
  --gold-dim: rgba(212, 197, 160, 0.15);
  --copper: #c17f59;
  --copper-glow: rgba(193, 127, 89, 0.25);
  --cream: #f2ede4;
  --cream-dim: rgba(242, 237, 228, 0.7);
  --sage: #8a9a7a;
  --sage-dim: rgba(138, 154, 122, 0.3);
  --text-primary: #f2ede4;
  --text-secondary: #a8b89a;
  --text-muted: #6b7a60;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-smooth: 0.5s var(--ease-out-expo);
  --transition-fast: 0.3s var(--ease-out-quart);
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--grain);
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

::selection {
  background: var(--copper);
  color: var(--cream);
}

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

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
}

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Layout Utilities ── */
.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

.container--narrow {
  width: min(85%, 800px);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 10vh, 8rem) 0;
  position: relative;
}

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

.section--cream .label { color: var(--copper); }
.section--cream .text-secondary { color: var(--forest-light); }
.section--cream h2, .section--cream h3 { color: var(--forest); }

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

/* ── Decorative line ── */
.divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.divider--center {
  margin-inline: auto;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.6s var(--ease-out-expo);
}

.nav.scrolled {
  padding: 0.8rem 0;
  background: rgba(20, 31, 20, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(212, 197, 160, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(92%, 1300px);
  margin-inline: auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo img {
  height: 40px;
  width: auto;
  transition: var(--transition-fast);
}

.nav.scrolled .nav__logo img {
  height: 32px;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.05em;
}

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

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-smooth);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

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

.nav__burger span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition-fast);
  transform-origin: center;
}

.nav__burger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__burger.active span:nth-child(2) {
  opacity: 0;
}
.nav__burger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

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

.hero--short {
  min-height: 60vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s linear;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 31, 20, 0.5) 0%,
    rgba(20, 31, 20, 0.3) 40%,
    rgba(20, 31, 20, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out-expo) 0.3s forwards;
}

.hero__title {
  color: var(--cream);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out-expo) 0.5s forwards;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--sage);
  max-width: 550px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out-expo) 0.7s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 1.2s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--forest);
}

.btn--primary:hover {
  background: var(--copper);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--copper-glow);
}

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

.btn--outline:hover {
  background: var(--gold);
  color: var(--forest);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--forest);
  color: var(--cream);
}

.btn--dark:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Arrow animation */
.btn__arrow {
  transition: transform var(--transition-fast);
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════
   CARDS — VALUES
   ═══════════════════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(45, 58, 45, 0.4);
  border: 1px solid rgba(212, 197, 160, 0.08);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 197, 160, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(212, 197, 160, 0.12);
  line-height: 1;
  margin-bottom: 1rem;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.value-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   TIMELINE — PROCESS
   ═══════════════════════════════════════════════════════ */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
}

.timeline__item {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 0;
  position: relative;
}

.timeline__marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: all var(--transition-smooth);
}

.timeline__item:hover .timeline__marker {
  background: var(--gold);
  color: var(--forest);
  box-shadow: 0 0 30px var(--copper-glow);
}

.timeline__content h3 {
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.timeline__content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   MENU CARDS
   ═══════════════════════════════════════════════════════ */
.menu-category {
  margin-bottom: 4rem;
}

.menu-category__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.menu-category__line {
  flex: 1;
  height: 1px;
  background: rgba(212, 197, 160, 0.15);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background: rgba(45, 58, 45, 0.3);
  border: 1px solid rgba(212, 197, 160, 0.06);
  padding: 1.8rem;
  transition: all var(--transition-smooth);
}

.menu-item:hover {
  border-color: rgba(212, 197, 160, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.menu-item__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.menu-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--sage-dim);
  color: var(--sage);
}

/* ═══════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
  margin-top: 3rem;
}

.gallery-grid__item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 31, 20, 0.3);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-grid__item:hover img {
  transform: scale(1.08);
}

.gallery-grid__item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 15, 10, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  transform: scale(0.9);
  transition: transform var(--transition-smooth);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid rgba(212, 197, 160, 0.3);
  color: var(--cream);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox__close:hover {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  border: 1px solid rgba(212, 197, 160, 0.08);
  overflow: hidden;
  transition: all var(--transition-smooth);
  background: var(--forest-mid);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 197, 160, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.blog-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.06);
}

.blog-card__body {
  padding: 1.8rem;
}

.blog-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  display: flex;
  gap: 1rem;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════ */
.form {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.form__input,
.form__textarea,
.form__select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.9rem 1.2rem;
  background: rgba(45, 58, 45, 0.5);
  border: 1px solid rgba(212, 197, 160, 0.12);
  color: var(--cream);
  transition: all var(--transition-fast);
  outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 197, 160, 0.08);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
}

.form__radio-group {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 0;
}

.form__radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form__radio input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.form__radio input[type="radio"]:checked {
  border-color: var(--gold);
}

.form__radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
}

/* Section cream form overrides */
.section--cream .form__input,
.section--cream .form__textarea,
.section--cream .form__select {
  background: rgba(20, 31, 20, 0.05);
  border-color: rgba(20, 31, 20, 0.15);
  color: var(--forest);
}

.section--cream .form__input:focus,
.section--cream .form__textarea:focus {
  border-color: var(--copper);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--forest);
  border-top: 1px solid rgba(212, 197, 160, 0.08);
  padding: 4rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 197, 160, 0.15);
}

.footer__brand p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--sage);
  margin-top: 1rem;
  max-width: 300px;
}

.footer__title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

.footer__bottom {
  border-top: 1px solid rgba(212, 197, 160, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 1.2rem;
}

.footer__legal a {
  color: var(--text-muted);
  font-size: 0.75rem;
  transition: color 0.3s;
}

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

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.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; }

/* ═══════════════════════════════════════════════════════
   ABOUT SPLIT
   ═══════════════════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-split__image {
  position: relative;
  overflow: hidden;
}

.about-split__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-split__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 197, 160, 0.1);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   CONTACT INFO
   ═══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 197, 160, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.9rem;
}

.contact-info__text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.contact-info__text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--forest-mid);
  border: 1px solid rgba(212, 197, 160, 0.08);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 197, 160, 0.15);
}

.service-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.service-card:hover .service-card__image img {
  transform: scale(1.06);
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 968px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(80%, 360px);
    height: 100vh;
    background: var(--forest);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right var(--transition-smooth);
    border-left: 1px solid rgba(212, 197, 160, 0.08);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__burger {
    display: flex;
    z-index: 1001;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline__marker {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .timeline__item {
    gap: 1.5rem;
  }

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

  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════
   WOW EFFECTS
   ═══════════════════════════════════════════════════════ */

/* ── 1. Hero cinématique — lettres animées ── */
.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotateX(-40deg);
  animation: charReveal 0.8s var(--ease-out-expo) forwards;
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

/* Particules dorées */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* Animated gradient overlay on hero */
.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(193, 127, 89, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212, 197, 160, 0.08) 0%, transparent 60%);
  animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* ── 2. Parallax ── */
.parallax {
  will-change: transform;
  transition: transform 0.1s linear;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── 3. Curseur personnalisé ── */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: width 0.35s var(--ease-out-expo),
              height 0.35s var(--ease-out-expo),
              background 0.35s var(--ease-out-expo),
              border-color 0.35s var(--ease-out-expo),
              opacity 0.35s var(--ease-out-expo);
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor--hover {
  width: 50px;
  height: 50px;
  background: rgba(212, 197, 160, 0.15);
  border-color: var(--copper);
}

.cursor--hidden {
  opacity: 0;
  width: 0;
  height: 0;
}

.cursor__dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}

@media (max-width: 968px) {
  .cursor, .cursor__dot { display: none; }
}

/* ── 4. Chiffres clés animés ── */
.stats-band {
  padding: clamp(3rem, 6vh, 5rem) 0;
  background: var(--forest-mid);
  border-top: 1px solid rgba(212, 197, 160, 0.06);
  border-bottom: 1px solid rgba(212, 197, 160, 0.06);
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 197, 160, 0.04) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--copper);
  line-height: 1;
  text-shadow: 0 0 30px rgba(193, 127, 89, 0.3);
}

.stat__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.stat__divider {
  width: 30px;
  height: 1px;
  background: rgba(212, 197, 160, 0.2);
  margin: 0.3rem 0;
}

@media (max-width: 968px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 5. Bandeau défilant ── */
.marquee {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(212, 197, 160, 0.06);
  border-bottom: 1px solid rgba(212, 197, 160, 0.06);
  position: relative;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  flex-shrink: 0;
  padding: 0 3rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--sage);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee__item::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* ── 6. Boutons magnétiques — ripple ── */
.btn {
  position: relative;
  overflow: hidden;
}

.btn__ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
