/* ═══════════════════════════════════════════════════════
   CARRÉ D'HAIR — Design System
   ═══════════════════════════════════════════════════════ */

:root {
  --ink:           #1f1b19;
  --ink-soft:      #7a706a;
  --ink-xsoft:     rgba(31,27,25,0.45);
  --cream:         #f8f3ec;
  --cream-2:       #f0e6d8;
  --cream-3:       #e8d9c8;
  --rosewood:      #9c4f46;
  --rosewood-light:#c8867e;
  --rosewood-pale: #f0ddd9;
  --line:          rgba(31,27,25,0.1);
  --line-on-dark:  rgba(248,243,236,0.12);
  --max-w:         1280px;
  --nav-h:         70px;
  --font-display:  'Fraunces', serif;
  --font-body:     'Work Sans', sans-serif;
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.87, 0, 0.13, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Eyebrow ───────────────────────────────────────────── */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rosewood);
}

/* ── Headings ──────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}

/* ── Section head ──────────────────────────────────────── */
.section-head {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) { .section-head { margin-bottom: 4rem; } }
.section-head.center { text-align: center; align-items: center; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.section-sub { color: var(--ink-soft); font-size: 0.95rem; max-width: 480px; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.28s var(--ease-out),
              color 0.28s var(--ease-out),
              border-color 0.28s var(--ease-out),
              box-shadow 0.28s var(--ease-out),
              transform 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--rosewood);
  color: var(--cream);
  box-shadow: 0 2px 18px rgba(156,79,70,0.26);
}
.btn-primary:hover {
  background: var(--ink);
  box-shadow: 0 4px 24px rgba(31,27,25,0.22);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(31,27,25,0.35);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-on-dark {
  color: var(--cream);
  border-color: var(--line-on-dark);
}
.btn-on-dark:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ═══════════════════════════════════════════════════════
   PROGRESS BAR
   ═══════════════════════════════════════════════════════ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--rosewood);
  z-index: 200;
  transform-origin: left;
  transition: width 0.05s linear;
}

/* ═══════════════════════════════════════════════════════
   FLOATING CTA
   ═══════════════════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: var(--rosewood);
  color: var(--cream);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(156,79,70,0.35), 0 2px 8px rgba(31,27,25,0.15);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta:hover {
  background: var(--ink);
  box-shadow: 0 8px 32px rgba(31,27,25,0.28);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.nav.is-scrolled {
  box-shadow: 0 4px 32px rgba(31,27,25,0.08);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  flex-shrink: 0;
}
.logo em { font-style: normal; color: var(--rosewood); }
.brand-logo-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.brand-logo-svg {
  overflow: visible;
}
.brand-logo-frame {
  fill: none;
  stroke: #a78f68;
  stroke-width: 3;
  stroke-linecap: square;
}
.brand-logo-name {
  fill: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 84px;
  font-weight: 400;
  letter-spacing: 0.12em;
}
.brand-logo-tagline line {
  stroke: #a78f68;
  stroke-width: 2.5;
  stroke-linecap: square;
}
.brand-logo-tagline text {
  fill: #4a403a;
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.28em;
}
.logo-image {
  display: block;
  width: auto;
  height: 58px;
  max-width: min(78vw, 420px);
  object-fit: contain;
}
@media (max-width: 639px) {
  .logo-image { height: 46px; }
}

.nav-links {
  display: none;
  gap: 2.2rem;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rosewood);
  transition: width 0.25s var(--ease-out);
}
.nav-links a:hover { color: var(--rosewood); }
.nav-links a:hover::after { width: 100%; }

@media (min-width: 960px) { .nav-links { display: flex; } }

.nav-cta { display: none; }
@media (min-width: 640px) { .nav-cta { display: inline-flex; } }

/* Burger */
.nav-toggle { display: none; }
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s var(--ease-out), opacity 0.22s ease;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 959px) {
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 32px rgba(31,27,25,0.08);
  }
  .nav-links a {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.82rem;
  }
  .nav-links a::after { display: none; }
  .nav-links .nav-link-cta {
    margin: 1rem 1.5rem 1.25rem;
    padding: 0.9rem 2rem;
    text-align: center;
    background: var(--rosewood);
    color: var(--cream);
    border: none;
    border-radius: 9999px;
    letter-spacing: 0.18em;
  }
}
.nav-link-cta { display: none; }
@media (max-width: 959px) {
  .nav-toggle:checked ~ .nav-links .nav-link-cta { display: block; }
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-h));
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(8,6,4,0.75) 0%,
    rgba(8,6,4,0.72) 40%,
    rgba(8,6,4,0.82) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.5rem 1.25rem 5rem;
  max-width: 860px;
  color: var(--cream);
  gap: 0;
}
@media (min-width: 640px) { .hero-content { padding: 5rem 1.5rem 7rem; } }
.hero-eyebrow {
  color: var(--rosewood-light);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.2rem, 7.5vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--rosewood-light);
}
.hero-text {
  font-size: 1rem;
  color: rgba(248,243,236,0.68);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(248,243,236,0.5));
  animation: scroll-hint 1.8s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%, 100% { opacity: 0.3; transform: scaleY(0.4) translateY(-8px); }
  50% { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* ═══════════════════════════════════════════════════════
   MANIFESTO
   ═══════════════════════════════════════════════════════ */
.manifesto {
  padding: 5rem 1.5rem;
  background: var(--cream);
  overflow: hidden;
}
@media (min-width: 768px) { .manifesto { padding: 8rem 1.5rem; } }
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.015em;
}

/* ═══════════════════════════════════════════════════════
   HISTOIRE
   ═══════════════════════════════════════════════════════ */
.story {
  padding: 4.5rem 1.5rem;
  background: var(--cream-2);
}
@media (min-width: 768px) { .story { padding: 7rem 1.5rem; } }
.story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 860px) { .story-inner { gap: 5rem; } }
@media (min-width: 860px) {
  .story-inner { grid-template-columns: 1fr 1fr; }
}
.story-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.story-text .eyebrow { margin-bottom: 0; }
.story-h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
}
.story-text p { color: var(--ink-soft); max-width: 480px; line-height: 1.75; }
.story-text .signature {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--ink);
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
}
.story-media-clip {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(31,27,25,0.14);
  will-change: clip-path;
}
.story-media-clip img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.story-media:hover .story-media-clip img {
  transform: scale(1.03);
}

/* ═══════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════ */
.stats {
  background: var(--ink);
  padding: 3.5rem 1.5rem;
}
@media (min-width: 768px) { .stats { padding: 5rem 1.5rem; } }
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
@media (min-width: 600px) {
  .stats-inner { flex-direction: row; align-items: center; justify-content: center; }
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--line-on-dark);
}
.stat-item:last-child { border-bottom: none; }
@media (min-width: 600px) {
  .stat-item { padding: 1.5rem 2rem; border-bottom: none; }
}
.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
  margin-bottom: 0.6rem;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--rosewood-light);
  line-height: 1;
  font-weight: 300;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,243,236,0.45);
}
.stat-divider {
  display: none;
  width: 1px;
  height: 60px;
  background: var(--line-on-dark);
  flex-shrink: 0;
}
@media (min-width: 600px) { .stat-divider { display: block; } }

/* ═══════════════════════════════════════════════════════
   PRESTATIONS
   ═══════════════════════════════════════════════════════ */
.menu {
  padding: 4.5rem 0;
  background: var(--cream);
}
@media (min-width: 768px) { .menu { padding: 7rem 0; } }
.menu-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.menu-item {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}
.menu-item:first-child { border-top: 1px solid var(--line); }
.menu-item-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}
.menu-item-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.menu-line {
  display: none;
}
@media (min-width: 640px) {
  .menu-item-head { flex-wrap: nowrap; }
  .menu-line {
    display: block;
    flex: 1;
    border-bottom: 1px dotted var(--line);
    transform: translateY(-0.3em);
    min-width: 20px;
  }
}
.price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--rosewood);
  white-space: nowrap;
}
.menu-desc {
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 560px;
  line-height: 1.7;
}
.menu-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding: 0 1.5rem;
}

/* ═══════════════════════════════════════════════════════
   GALERIE
   ═══════════════════════════════════════════════════════ */
.gallery {
  padding: 4.5rem 0;
  background: var(--cream-2);
  overflow: hidden;
}
@media (min-width: 768px) { .gallery { padding: 7rem 0; } }
.gallery .section-head {
  padding: 0 1.5rem;
}
.gallery-scroll {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: 0.5rem;
}
.gallery-scroll:active { cursor: grabbing; }
.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-track {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem max(1.5rem, calc((100vw - 1280px) / 2)) 1rem;
  width: max-content;
}
.gallery-card {
  flex: 0 0 280px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream-3);
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
  box-shadow: 0 4px 24px rgba(31,27,25,0.08);
  transition: box-shadow 0.3s ease;
}
@media (min-width: 640px) { .gallery-card { flex: 0 0 320px; } }
@media (min-width: 960px) { .gallery-card { flex: 0 0 360px; } }
.gallery-card:hover {
  box-shadow: 0 12px 48px rgba(31,27,25,0.16);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(15,11,9,0.5);
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.gallery-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 1.75rem;
  padding: 0 1.5rem;
  transition: opacity 0.3s ease;
}
.gallery-hint.is-hidden { opacity: 0; pointer-events: none; }

/* ═══════════════════════════════════════════════════════
   AVIS — MARQUEE
   ═══════════════════════════════════════════════════════ */
.testimonials {
  padding: 4.5rem 0;
  background: var(--ink);
  overflow: hidden;
}
@media (min-width: 768px) { .testimonials { padding: 7rem 0; } }
.testimonials .section-head { padding: 0 1.5rem; }
.testimonials .section-head .eyebrow { color: var(--rosewood-light); }
.testimonials .section-head h2 { color: var(--cream); }

.marquee-wrap {
  overflow: hidden;
  padding: 0.5rem 0 0.5rem;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}
.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-scroll 42s linear infinite;
  padding: 1rem 0;
}
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testimonial-card {
  flex: 0 0 340px;
  background: rgba(248,243,236,0.05);
  border: 1px solid var(--line-on-dark);
  border-radius: 20px;
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  backdrop-filter: blur(4px);
  transition: background 0.25s ease;
}
.testimonial-card:hover {
  background: rgba(248,243,236,0.09);
}
.stars {
  color: var(--rosewood-light);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}
.testimonial-card .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(248,243,236,0.9);
  line-height: 1.6;
  flex: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-on-dark);
}
.testimonial-author strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.testimonial-author span {
  font-size: 0.72rem;
  color: rgba(248,243,236,0.4);
  letter-spacing: 0.04em;
}
.testimonials-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding: 0 1.5rem;
}
.testimonials-cta .btn-ghost {
  color: rgba(248,243,236,0.7);
  border-color: rgba(248,243,236,0.2);
}
.testimonials-cta .btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* ═══════════════════════════════════════════════════════
   ÉQUIPE
   ═══════════════════════════════════════════════════════ */
.team {
  padding: 4.5rem 1.5rem;
  background: var(--cream-2);
}
@media (min-width: 768px) { .team { padding: 7rem 1.5rem; } }
.team-group {
  max-width: 960px;
  margin: 0 auto 4.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(31,27,25,0.12);
}
.team-group img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.team-cards {
  max-width: 860px;
  margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
}
@media (min-width: 640px) {
  .team-cards { grid-template-columns: repeat(4, 1fr); }
}
.team-card { text-align: center; }
.team-card-photo {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rosewood-pale) 0%, var(--cream-3) 100%);
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 24px rgba(31,27,25,0.1);
  border: 3px solid var(--cream);
  outline: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.team-card:hover .team-card-photo {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(31,27,25,0.16);
}
.team-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}
.team-card-initial {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--rosewood);
  line-height: 1;
  z-index: 0;
  user-select: none;
}
.team-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.team-card-role {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   BOOKING CTA
   ═══════════════════════════════════════════════════════ */
.booking {
  padding: 5rem 1.5rem;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, var(--rosewood-pale) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.booking-cta {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.booking-cta .eyebrow { margin-bottom: 0; }
.booking-cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.booking-cta-text {
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 440px;
  line-height: 1.75;
}
.booking-cta-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.5rem;
  color: var(--ink-xsoft);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.booking-cta-btn {
  margin-top: 0.75rem;
  padding: 1.1rem 2.8rem;
  font-size: 0.8rem;
}
@media (min-width: 768px) { .booking { padding: 9rem 1.5rem; } }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(248,243,236,0.5);
  padding: 5rem 1.5rem 2.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line-on-dark);
}
.brand-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, 360px);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.1rem;
  background: rgba(248,243,236,0.96);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.2);
}
.footer-logo-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 300px;
  object-fit: contain;
}
.footer-col h3 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 1rem;
}
.footer-text { font-size: 0.88rem; line-height: 1.75; }
.footer-text a { transition: color 0.2s ease; }
.footer-text a:hover { color: var(--rosewood-light); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-align: center;
}
.footer-bottom a { color: var(--rosewood-light); }
.footer-bottom a:hover { color: var(--cream); }

/* ═══════════════════════════════════════════════════════
   GSAP INITIAL STATES — set via JS, not CSS
   ═══════════════════════════════════════════════════════ */
.hero-eyebrow,
.hero-title,
.hero-text,
.hero-actions,
.hero-scroll-hint {
  opacity: 0;
}

/* ═══════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .marquee-track { animation: none; }
  .hero-scroll-line { animation: none; }
}
