/* ================================================================
   BABYLON INVEST — style.css
   Holding Hôtelière · Maroc & Suisse
   ================================================================ */

:root {
  --sand: #e8dcc8;
  --sand-light: #f5efe3;
  --ink: #111009;
  --gold: #9a7a3e;
  --gold-light: #b8965a;
  --terracotta: #7a3820;
  --sage: #3a4a3e;
  --cream: #faf6ef;
  --warm-grey: #5a5048;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.7;
}

/* ── NOISE TEXTURE OVERLAY ── */
/* ── HERO BACKGROUND IMAGE OVERLAY ── */
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('https://imagedelivery.net/UpBbDZmjrt-WGPYbM3yOCA/26-morocco-article-46-10-good-reasons-to-visit-fes-6374485486539319aaef257.30022161/w=1920,h=780');
  background-size: cover;
  background-position: center 60%;
  opacity: 0.35;
  transition: opacity 0.5s;
}
/* ════════════════════════════════
   NAV
   ════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  transition: background 0.5s, padding 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(14px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(184,150,90,0.18);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.5s;
  text-decoration: none;
}
nav.scrolled .nav-logo { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(250,246,239,0.82);
  transition: color 0.3s;
}
nav.scrolled .nav-links a { color: var(--warm-grey); }
.nav-links a:hover { color: var(--gold) !important; }

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a1a0e 0%, #3d2510 25%, #1e2a20 60%, #0d1a12 100%);
}

/* Real photo layer for hero */
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1548013146-72479768bada?w=1920&q=80');
  background-size: cover;
  background-position: center 60%;
  opacity: 0.35;
  transition: opacity 0.5s;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(184,150,90,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(74,92,78,0.22) 0%, transparent 60%),
    linear-gradient(to top, rgba(10,8,5,0.75) 0%, rgba(10,8,5,0.1) 60%, transparent 100%);
}

.hero-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 42%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,150,90,0.4) 30%, rgba(184,150,90,0.4) 70%, transparent);
  animation: lineReveal 2s ease forwards;
}

@keyframes lineReveal {
  from { transform: scaleY(0); transform-origin: top; }
  to   { transform: scaleY(1); }
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.3s both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 2rem;
  animation: fadeUp 1s 0.5s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  max-width: 480px;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250,246,239,0.65);
  letter-spacing: 0.04em;
  animation: fadeUp 1s 0.7s both;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem; right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  animation: fadeIn 1s 1.5s both;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(184,150,90,0.7);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(184,150,90,0.7), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50%       { transform: scaleY(0.3); transform-origin: top; }
}

/* ════════════════════════════════
   STATS BAR
   ════════════════════════════════ */
.stats-bar {
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(184,150,90,0.3);
}

.stat-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(184,150,90,0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-item:last-child { border-right: none; }

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}
.stat-item:hover::after { transform: scaleX(1); }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.38);
  font-weight: 300;
}

/* ════════════════════════════════
   SECTION COMMONS
   ════════════════════════════════ */
section { padding: 8rem 4rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 2rem;
}
.section-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ════════════════════════════════
   VISION
   ════════════════════════════════ */
.vision {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.vision-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--warm-grey);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.vision-text p strong {
  color: var(--ink);
  font-weight: 400;
}

.vision-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(184,150,90,0.18);
  border: 1px solid rgba(184,150,90,0.18);
}

.value-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.value-card:hover { background: var(--sand-light); }

.value-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.value-desc {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--warm-grey);
  font-weight: 300;
}

/* ════════════════════════════════
   PORTFOLIO
   ════════════════════════════════ */
.portfolio {
  background: var(--ink);
  padding: 8rem 0;
}

.portfolio-header {
  padding: 0 4rem 5rem;
}
.portfolio-header .section-title { color: var(--cream); }
.portfolio-header .section-tag { color: var(--gold); }
.portfolio-header p {
  max-width: 550px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250,246,239,0.48);
  font-weight: 300;
}

/* ── HOTEL GRID ── */
.hotels-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  min-height: 600px;
}

.hotel-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* ── REAL PHOTO BACKGROUNDS ── */
.hotel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hotel-card:hover .hotel-bg { transform: scale(1.07); }

/* Sahrai — contemporary rooftop/pool shot */
.hotel-sahrai .hotel-bg {
  background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/2c/03/d8/72/hotel-sahrai.jpg');
}

/* Riad Fes — ornate Moroccan interior courtyard */
.hotel-riad .hotel-bg {
  background-image: url('https://riadfes.com/_img/hotel.jpg');
}

/* Villa Sahrai — modern Casablanca ocean-facing hotel */
.hotel-villa .hotel-bg {
  background-image: url('https://images.trvl-media.com/lodging/112000000/111980000/111978800/111978772/b3a5294a.jpg?impolicy=resizecrop&rw=575&rh=575&ra=fill');
}

/* Eringer — Swiss alpine chalet / mountain landscape */
.hotel-eringer .hotel-bg {
  background-image: url('https://cdn.prod.website-files.com/6008a2886a99ab7c8d3c2d58/63a045690612e3ea2e46f4bd_f261e4c8cff6-img-6587-hdr-p-1080-1.webp');
}

/* Dark overlay per card for text legibility */
.hotel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,6,4,0.93) 0%,
    rgba(8,6,4,0.45) 45%,
    rgba(8,6,4,0.15) 100%
  );
  transition: background 0.5s;
}
.hotel-card:hover .hotel-overlay {
  background: linear-gradient(
    to top,
    rgba(8,6,4,0.95) 0%,
    rgba(8,6,4,0.5) 50%,
    rgba(8,6,4,0.2) 100%
  );
}

.hotel-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}
.hotel-card:hover .hotel-content { transform: translateY(0); }

.hotel-country {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 300;
}

.hotel-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.9rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.hotel-desc {
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(250,246,239,0.55);
  font-weight: 300;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s 0.1s ease;
}
.hotel-card:hover .hotel-desc {
  opacity: 1;
  transform: translateY(0);
}

.hotel-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(10,8,5,0.55);
  border: 1px solid rgba(184,150,90,0.45);
  padding: 0.3rem 0.75rem;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 300;
  backdrop-filter: blur(10px);
}

.hotel-number {
  position: absolute;
  top: 1.5rem; left: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(250,246,239,0.06);
  line-height: 1;
  user-select: none;
}

.hotel-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}
.hotel-card:hover .hotel-divider { transform: scaleX(1); }

/* Hotel links row */
.hotel-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s 0.15s ease;
}
.hotel-card:hover .hotel-links {
  opacity: 1;
  transform: translateY(0);
}
.hotel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.7);
  text-decoration: none;
  border: 1px solid rgba(250,246,239,0.22);
  padding: 0.35rem 0.75rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.04);
}
.hotel-link:hover {
  color: var(--gold-light);
  border-color: rgba(184,150,90,0.6);
  background: rgba(184,150,90,0.1);
}
.hotel-link svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

/* ════════════════════════════════
   APPROACH
   ════════════════════════════════ */
.approach {
  background: var(--sand-light);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8rem;
  align-items: start;
}

.approach-sticky {
  position: sticky;
  top: 8rem;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(184,150,90,0.18);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  cursor: default;
}
.step:first-child { border-top: 1px solid rgba(184,150,90,0.18); }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(184,150,90,0.28);
  line-height: 1;
  transition: color 0.3s;
}
.step:hover .step-num { color: var(--gold); }

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.step-text {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--warm-grey);
  font-weight: 300;
}

/* ════════════════════════════════
   QUOTE
   ════════════════════════════════ */
.quote-section {
  background: var(--ink);
  text-align: center;
  padding: 10rem 4rem;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '❝';
  position: absolute;
  top: 3rem; left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: rgba(184,150,90,0.05);
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 900px;
  margin: 0 auto 2.5rem;
  line-height: 1.4;
}
.quote-text em {
  color: var(--gold-light);
  font-style: normal;
}

.quote-author {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(184,150,90,0.55);
  font-weight: 300;
}

/* ════════════════════════════════
   RESPONSIBILITY
   ════════════════════════════════ */
.responsibility {
  background: var(--sage);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.responsibility::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(184,150,90,0.1) 0%, transparent 60%);
}

.resp-header {
  margin-bottom: 5rem;
}
.resp-header .section-title { color: var(--cream); }
.resp-header .section-tag { color: var(--gold); }

.resp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  position: relative;
}

.resp-item {
  padding-top: 2rem;
  border-top: 1px solid rgba(250,246,239,0.13);
}

.resp-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.resp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.resp-text {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(250,246,239,0.58);
  font-weight: 300;
}

/* ════════════════════════════════
   CONTACT / CTA
   ════════════════════════════════ */
.cta {
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.cta-text .section-title { font-size: clamp(2rem, 4vw, 3.5rem); }

.cta-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--warm-grey);
  font-weight: 300;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--ink);
  color: var(--cream);
  padding: 1.1rem 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--terracotta); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  color: var(--ink);
  padding: 1.1rem 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  border: 1px solid var(--ink);
  margin-left: 1rem;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }

.arrow { font-size: 1rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

.contact-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
}

.contact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
}
.contact-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-value a:hover { color: var(--gold); }

/* ════════════════════════════════
   DIRIGEANTE
   ════════════════════════════════ */
.dirigeante {
  background: var(--sand-light);
  padding: 8rem 4rem;
}

.dirigeante-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 7rem;
  align-items: start;
}

.dirigeante-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: sticky;
  top: 8rem;
}

/* Portrait photo frame */
.portrait-frame {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(184,150,90,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  background: linear-gradient(135deg, var(--terracotta), var(--ink));
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Fallback initials (hidden when image loads) */
.portrait-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(250,246,239,0.9);
  letter-spacing: 0.1em;
  display: none;
}
.portrait-frame img.error ~ .portrait-initials,
.portrait-frame:not(:has(img)) .portrait-initials { display: block; }

.portrait-meta { text-align: center; }

.portrait-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 0.3rem;
}

.portrait-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
}

.dirigeante-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--warm-grey);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.dirigeante-text p strong {
  color: var(--ink);
  font-weight: 400;
}

.cursus-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.chip {
  background: transparent;
  border: 1px solid rgba(184,150,90,0.38);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  font-weight: 300;
  font-family: 'Jost', sans-serif;
}

/* ════════════════════════════════
   RECRUTEMENT
   ════════════════════════════════ */
.recrutement {
  background: var(--ink);
  padding: 8rem 4rem;
}

.recru-header { margin-bottom: 5rem; }

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(184,150,90,0.13);
  border: 1px solid rgba(184,150,90,0.13);
}

.job-card {
  background: #0f0d0a;
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.job-card:hover { background: #1a1510; }

.job-card-open {
  background: rgba(184,150,90,0.04);
  border: 1px solid rgba(184,150,90,0.18);
}

.job-icon { font-size: 1.5rem; margin-bottom: 0.3rem; }

.job-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
}

.job-desc {
  font-size: 0.78rem;
  line-height: 1.75;
  color: rgba(250,246,239,0.43);
  font-weight: 300;
  flex: 1;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.job-tags span {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,150,90,0.28);
  padding: 0.25rem 0.6rem;
  font-weight: 300;
}

.btn-recru {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gold);
  color: var(--ink);
  padding: 1.1rem 3rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  transition: background 0.3s, transform 0.3s;
}
.btn-recru:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
footer {
  background: var(--ink);
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(184,150,90,0.12);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer-copy {
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  color: rgba(250,246,239,0.28);
  font-weight: 300;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(184,150,90,0.55);
}

/* ════════════════════════════════
   REVEAL ANIMATIONS
   ════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.hidden {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 1200px) {
  .hotels-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .hotel-card:first-child {
    grid-column: span 2;
    min-height: 420px;
  }
  .hotel-card { min-height: 340px; }
}

@media (max-width: 900px) {
  nav { padding: 1.5rem 2rem; }
  nav.scrolled { padding: 1rem 2rem; }
  .nav-links { display: none; }

  section { padding: 5rem 2rem; }
  .hero { padding: 0 2rem 4rem; }
  .hero-line { display: none; }

  .vision,
  .approach,
  .cta,
  .dirigeante-inner { grid-template-columns: 1fr; gap: 4rem; }

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .resp-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr 1fr; }

  .dirigeante-portrait { position: static; }

  .hotels-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hotel-card:first-child {
    grid-column: span 1;
    min-height: 380px;
  }
  .hotel-card { min-height: 320px; }

  .approach-sticky { position: static; }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem;
  }

  .portfolio-header { padding: 0 2rem 3rem; }
}

@media (max-width: 560px) {
  .jobs-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 2rem 1rem; }
}