/* ============================================================
   LA FRENCH COLLECTION — One Page
   Colors: Noir #1e1e1e | Blanc #ffffff | Crème #ebebe1
   Fonts: Playfair Display (titles) | Work Sans Light (body)
   ============================================================ */

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: #fff;
  color: #1e1e1e;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

/* --- Local Fonts --- */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* --- Variables --- */
:root {
  --noir:   #1e1e1e;
  --blanc:  #ffffff;
  --creme:  #ebebe1;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
  color: var(--noir);
  background: var(--blanc);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; padding: 0; }


/* ============================================================
   INTRO OVERLAY
   ============================================================ */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.9s var(--ease);
}
#intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}
.intro-logo {
  width: min(420px, 78vw);
  height: auto;
  opacity: 0;
  transform: scale(0.97);
  animation: introReveal 1.1s var(--ease) 0.4s forwards;
}
@keyframes introReveal {
  to { opacity: 1; transform: scale(1); }
}
.intro-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blanc);
  opacity: 0;
  animation: introReveal 1s ease 1.8s forwards;
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  transition: background 0.5s var(--ease);
}
.site-nav.scrolled {
  background: var(--noir);
}
.nav-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-logo {
  grid-column: 2;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.site-nav.scrolled .nav-logo {
  opacity: 1;
  pointer-events: auto;
}
.nav-logo a { display: flex; }
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.nav-lang {
  grid-column: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.6rem;
  color: var(--blanc);
}
.nav-lang a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blanc);
  opacity: 0.45;
  transition: opacity 0.2s;
}
.nav-lang a:hover { opacity: 0.8; }
.nav-lang a.active { opacity: 1; }
.nav-lang .sep { font-size: 0.6rem; opacity: 0.2; color: var(--blanc); }


/* ============================================================
   HERO SPLIT CAROUSEL
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  display: flex;
  overflow: hidden;
}

/* --- Panels --- */
.hero-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.hero-panel__slides {
  position: absolute;
  inset: 0;
}
.hero-panel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s var(--ease);
  will-change: opacity;
}
.hero-panel__slide.active { opacity: 1; }
.hero-panel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gradient overlay — heavier toward bottom for text legibility */
.hero-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.25) 45%,
    rgba(10,10,10,0.08) 70%,
    transparent 100%
  );
  z-index: 1;
}

/* Also a top vignette for nav readability */
.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.35) 0%,
    transparent 25%
  );
  z-index: 1;
  pointer-events: none;
}

/* --- Panel content (hotel name + CTA) --- */
.hero-panel__content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 3;
  padding: 0 2.5rem 3.5rem;
  text-align: center;
  color: var(--blanc);
  /* Entrance animation */
  transform: translateY(12px);
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.6s forwards;
}
.hero-panel--right .hero-panel__content {
  animation-delay: 0.9s;
}

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

.hero-panel__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.6rem;
  font-weight: 300;
}
.hero-panel__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.hero-panel__tagline {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--blanc);
  opacity: 0.6;
  margin-bottom: 1.6rem;
}
.hero-panel__btn {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--blanc);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 300;
  padding: 0.85rem 2.2rem;
  transition: background 0.25s, border-color 0.25s;
}
.hero-panel__btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}

/* --- Arrows (appear on panel hover) --- */
.hero-panel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  color: rgba(255,255,255,0.4);
  font-size: 2.2rem;
  line-height: 1;
  padding: 1rem 0.6rem;
  transition: color 0.2s, opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}
.hero-panel:hover .hero-panel__arrow {
  opacity: 1;
  pointer-events: auto;
}
.hero-panel__arrow:hover { color: var(--blanc); }
.hero-panel__arrow--prev { left: 0.8rem; }
.hero-panel__arrow--next { right: 0.8rem; }
/* Keep arrows away from the center split */
.hero-panel--left  .hero-panel__arrow--next { right: 2.2rem; }
.hero-panel--right .hero-panel__arrow--prev { left: 2.2rem; }

/* --- Progress ticks --- */
.hero-panel__progress {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 5px;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-panel__tick {
  width: 18px;
  height: 1px;
  background: rgba(255,255,255,0.28);
  transition: background 0.3s, width 0.3s;
}
.hero-panel__tick.active {
  background: rgba(255,255,255,0.85);
  width: 28px;
}
.hero-panel__tick:hover { background: rgba(255,255,255,0.6); }

/* --- Hero brand badge (full logo centered on hero) --- */
.hero-brand {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2.8rem;
  pointer-events: none;
}
.hero-brand img {
  width: min(260px, 38vw);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
}

/* --- Center split element --- */
.hero-split {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  transform: translateX(-50%);
  width: 1px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.3s forwards;
}
.hero-split__line {
  flex: 1;
  width: 1px;
  background: rgba(255,255,255,0.22);
}
.hero-split__monogram {
  width: 68px;
  height: auto;
  flex-shrink: 0;
  padding: 14px 0;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}


/* ============================================================
   SECTION: LA COLLECTION
   ============================================================ */
.section-collection {
  background: var(--creme);
  padding: 9rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-collection__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.section-collection__overline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--noir);
  opacity: 0.45;
  margin-bottom: 3rem;
}
.section-collection__overline::before,
.section-collection__overline::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: currentColor;
}
.section-collection__quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.38;
  color: var(--noir);
  letter-spacing: 0.01em;
  margin-bottom: 3rem;
}
.section-collection__quote em {
  font-style: italic;
}
.section-collection__divider {
  width: 1px;
  height: 48px;
  background: var(--noir);
  opacity: 0.2;
  margin: 0 auto 3rem;
}
.section-collection__sub {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--noir);
  opacity: 0.45;
  margin-bottom: 1.4rem;
}
.section-collection__body {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--noir);
  opacity: 0.68;
  max-width: 600px;
  margin: 0 auto;
}


/* ============================================================
   SECTION: PRESSE
   ============================================================ */
.section-presse {
  background: var(--noir);
  padding: 8rem 2rem;
  color: var(--creme);
}
.section-presse__inner {
  max-width: 920px;
  margin: 0 auto;
}
.section-presse__header {
  margin-bottom: 5rem;
  border-bottom: 1px solid rgba(235,235,225,0.1);
  padding-bottom: 2.5rem;
  display: flex;
  align-items: baseline;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-presse__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: 0.02em;
}
.section-presse__subheading {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.35;
}
.presse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
}
.presse-card {
  padding: 2.5rem 3rem 2.5rem 0;
  border-right: 1px solid rgba(235,235,225,0.1);
}
.presse-card:last-child {
  padding-left: 3rem;
  padding-right: 0;
  border-right: none;
}
.presse-card__role {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.65;
  margin-bottom: 0.8rem;
}
.presse-card__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  color: var(--creme);
}
.presse-card__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.presse-card__contact li {
  font-size: 1.1rem;
  opacity: 0.8;
  line-height: 1.6;
  font-weight: 300;
}
.presse-card__contact a {
  color: inherit;
  border-bottom: 1px solid rgba(235,235,225,0.18);
  transition: opacity 0.2s, border-color 0.2s;
  padding-bottom: 1px;
}
.presse-card__contact a:hover {
  opacity: 1;
  border-color: rgba(235,235,225,0.55);
}
.presse-card__pending {
  font-size: 0.82rem;
  opacity: 0.35;
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--noir);
  border-top: 1px solid rgba(235,235,225,0.07);
  padding: 5rem 3rem 3rem;
  color: var(--creme);
}

/* LFC brand */
.footer-brand {
  text-align: center;
  margin-bottom: 4rem;
}
.footer-brand a { display: inline-flex; }
.footer-lfc-logo {
  height: 140px;
  width: auto;
  opacity: 0.65;
}

/* Hotel columns */
.footer-hotels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto 4rem;
  align-items: stretch;
}
.footer-hotel-divider { display: none; }
.footer-hotel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
  border: 1px solid rgba(235,235,225,0.1);
  padding: 2.5rem 2rem;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.footer-hotel:hover {
  background: rgba(235,235,225,0.04);
  border-color: rgba(235,235,225,0.28);
}
/* Fixed-height logo zone so info below always aligns */
.footer-hotel-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 110px;
  overflow: hidden;
}
.footer-hotel-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 90px;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.25s;
}
.footer-hotel-logo--barma { max-height: 110px; max-width: 170px; }
.footer-hotel-logo-link:hover .footer-hotel-logo { opacity: 1; }
.footer-hotel-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-hotel-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.55;
}
.footer-hotel-address {
  font-size: 0.85rem;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0.6;
  letter-spacing: 0.03em;
}
.footer-hotel-url {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--creme);
  opacity: 0.65;
  border-bottom: 1px solid rgba(235,235,225,0.3);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.footer-hotel-url:hover { opacity: 1; }

/* Groupe Giboire */
.footer-group {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(235,235,225,0.07);
  margin-bottom: 2.5rem;
}
.footer-address {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  opacity: 0.55;
  line-height: 2;
  font-weight: 300;
}
.footer-address a {
  color: inherit;
  transition: opacity 0.2s;
}
.footer-address a:hover { opacity: 0.7; }

/* Copyright bar */
.footer-sep {
  font-size: 0.6rem;
  opacity: 0.2;
  color: var(--creme);
}
.footer-bottom {
  border-top: 1px solid rgba(235,235,225,0.07);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  opacity: 0.45;
  font-weight: 300;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-legal a {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--creme);
  opacity: 0.45;
  transition: opacity 0.2s;
}
.footer-legal a:hover { opacity: 0.85; }
.footer-legal .footer-sep { font-size: 0.5rem; }


/* ============================================================
   LEGAL PAGES
   ============================================================ */
.page-legal {
  background: var(--blanc);
  padding: 10rem 2rem 8rem;
  min-height: 80vh;
}
.page-legal__inner {
  max-width: 760px;
  margin: 0 auto;
}
.page-legal__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--noir);
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(30,30,30,0.12);
}
.legal-section {
  margin-bottom: 2.5rem;
}
.legal-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--noir);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}
.legal-section p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--noir);
  opacity: 0.72;
  font-weight: 300;
}
.legal-section a {
  color: var(--noir);
  border-bottom: 1px solid rgba(30,30,30,0.25);
  transition: opacity 0.2s;
}
.legal-section a:hover { opacity: 0.6; }

/* Eyebrow always on two lines */
.hero-panel__eyebrow br { display: inline; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .presse-card {
    padding: 2rem 2rem 2rem 0;
  }
  .presse-card:last-child {
    padding-left: 2rem;
  }
}

@media (max-width: 768px) {
  /* V2: keep panels side by side (vertical split) on mobile */
  .hero {
    flex-direction: row;
    height: 100dvh;
    min-height: 560px;
  }
  /* Hero content — lifted for browser UI toolbar, compact for narrow columns */
  .hero-panel__content { padding: 0 1rem calc(5rem + env(safe-area-inset-bottom, 1rem)); }
  .hero-panel__name { font-size: clamp(1.3rem, 5vw, 2rem); }
  .hero-panel__eyebrow { font-size: 0.8rem; letter-spacing: 0.12em; }
  .hero-panel__btn { font-size: 0.52rem; padding: 0.7rem 1rem; letter-spacing: 0.14em; }
  /* Hide progress ticks on mobile */
  .hero-panel__progress { display: none; }
  /* Nav */
  .site-nav { height: 64px; padding: 0 1.5rem; }
  .nav-logo img { height: 42px; }
  .hero-brand img { width: min(200px, 50vw); padding-top: 0; }
  .hero-brand { padding-top: 2rem; }
  /* Sections */
  .section-collection { padding: 6rem 1.5rem; }
  .section-presse { padding: 5rem 1.5rem; }
  /* Presse grid — stack on mobile */
  .presse-grid { grid-template-columns: 1fr; }
  .presse-card {
    border-right: none;
    border-bottom: 1px solid rgba(235,235,225,0.1);
    padding: 2rem 0;
  }
  .presse-card:last-child {
    padding-left: 0;
    border-bottom: none;
  }
  /* Arrows hidden on small screens (swipe instead) */
  .hero-panel__arrow { display: none; }
  /* Footer bottom: stack on mobile */
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  /* Footer hotel grid: stack on mobile */
  .footer-hotels-grid { grid-template-columns: 1fr; max-width: 100%; gap: 1.5rem; }
  .site-footer { padding: 4rem 2rem 2.5rem; }
  .footer-brand { margin-bottom: 3rem; }
  .footer-lfc-logo { height: 80px; }
  /* Groupe Giboire address: smaller + tighter on mobile to avoid orphan */
  .footer-address { font-size: 0.75rem; letter-spacing: 0.01em; }
}

@media (max-width: 480px) {
  .site-nav { height: 56px; }
  .nav-logo img { height: 36px; }
  .hero-brand img { width: min(160px, 46vw); }
  .hero-panel__name { font-size: clamp(1rem, 4.5vw, 1.4rem); }
  .hero-panel__content { padding: 0 0.6rem calc(4.5rem + env(safe-area-inset-bottom, 1rem)); }
  .hero-panel__btn { font-size: 0.48rem; padding: 0.55rem 0.8rem; }
  .section-collection__quote { font-size: 1.5rem; }
}
