/* ============================================
   HAIRRARI BUSHWICK — Brooklyn gender-neutral
   Bushwick Midnight · Warm Tungsten · Pronoun Pink
   ============================================ */

:root {
  /* Colors */
  --color-bg: #0D0E12;
  --color-bg-elevated: #16151A;
  --color-bg-alt: #1B1A1F;
  --color-text: #F5F0E8;
  --color-text-muted: #9A958C;
  --color-accent: #E4824F;
  --color-accent-2: #FF4DA6;
  --color-border: #2A282E;

  /* Gradients */
  --gradient-mesh: conic-gradient(from 200deg at 70% 30%, rgba(228,130,79,0.30), rgba(255,77,166,0.18), #16151A 60%);
  --gradient-hero-vignette: linear-gradient(180deg, rgba(13,14,18,0.35) 0%, rgba(13,14,18,0.20) 40%, rgba(13,14,18,0.85) 100%);
  --gradient-card: linear-gradient(180deg, #1B1A1F, #16151A);

  /* Shadows (warm-tinted) */
  --shadow-1: 0 2px 8px rgba(13, 14, 18, 0.4), 0 0 0 1px rgba(228, 130, 79, 0.04);
  --shadow-2: 0 8px 32px rgba(13, 14, 18, 0.6), 0 0 0 1px rgba(228, 130, 79, 0.06);
  --shadow-3: 0 24px 80px rgba(13, 14, 18, 0.8), 0 0 0 1px rgba(228, 130, 79, 0.08);
  --shadow-glow: 0 0 32px rgba(228, 130, 79, 0.32);

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 20px;
  --radius-full: 999px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --d-fast: 200ms;
  --d-mid: 400ms;
  --d-slow: 800ms;

  /* Layout */
  --container-max: 1280px;
  --section-py: clamp(5rem, 10vw, 8rem);
  --section-px: clamp(1.25rem, 4vw, 3rem);
  --gap: clamp(1rem, 2vw, 2rem);

  /* Type */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-script: 'Pinyon Script', cursive;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--color-accent); color: var(--color-bg); }

/* CONTAINER */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

/* SKIP LINK */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--color-accent); color: var(--color-bg);
  padding: .5rem 1rem; z-index: 9999; font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* CUSTOM CURSOR (desktop) */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9000;
  border-radius: 50%; transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: difference;
}
.cursor {
  width: 28px; height: 28px;
  border: 1.5px solid var(--color-text);
  transition: transform .15s var(--ease-out-expo), width .25s, height .25s, background .2s;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--color-text);
  transition: transform .08s linear;
}
.cursor.is-hover {
  width: 60px; height: 60px;
  background: rgba(228, 130, 79, 0.18);
  border-color: var(--color-accent);
}
@media (max-width: 1024px), (hover: none) {
  .cursor, .cursor-dot { display: none; }
}

/* SCROLL PROGRESS BAR */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  z-index: 9999;
  box-shadow: 0 0 12px rgba(228,130,79,0.6);
}

/* TYPO */
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}
.h2 em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 600;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.pronouns, .stylist__name em {
  font-style: italic;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--color-text-muted);
  font-size: .85em;
  margin-left: .35em;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto calc(var(--gap) * 2);
}
.section-header__sub {
  color: var(--color-text-muted);
  margin-top: 1rem;
  font-size: 1.0625rem;
}

/* UNDERLINE PINK (queer / pronouns) */
.underline-pink {
  background-image: linear-gradient(var(--color-accent-2), var(--color-accent-2));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 2px;
  padding-bottom: 2px;
  transition: background-size .5s var(--ease-out-expo);
}
.underline-pink:hover { background-size: 100% 4px; }

.underline-pink-link {
  color: var(--color-text);
  background-image: linear-gradient(var(--color-accent-2), var(--color-accent-2));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  padding-bottom: 2px;
  transition: background-size .35s var(--ease-out-expo);
}
.underline-pink-link:hover { background-size: 100% 2px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  transition: transform .25s var(--ease-out-expo), box-shadow .3s, background .25s, color .25s;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.btn--accent {
  background: var(--color-accent);
  color: var(--color-bg);
}
.btn--accent:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-glow), var(--shadow-2);
}
.btn--ghost {
  border: 1.5px solid var(--color-text);
  color: var(--color-text);
}
.btn--ghost:hover {
  background: var(--color-text);
  color: var(--color-bg);
  transform: translateY(-2px);
}
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn--xl { padding: 1.4rem 2.5rem; font-size: 1.15rem; }
.btn--sm { padding: .55rem 1rem; font-size: .82rem; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.glass {
  background: rgba(13, 14, 18, 0.55);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
}
.nav.is-scrolled {
  background: rgba(13, 14, 18, 0.85);
  border-bottom-color: var(--color-border);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 64px;
  padding: 0 var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__brand { display: flex; align-items: center; color: var(--color-text); }
.nav__logo { height: 28px; width: auto; }
.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  margin-right: auto;
}
.nav__links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: .25rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--color-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out-expo);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions {
  display: flex; align-items: center; gap: 1.25rem;
}
.lang-toggle {
  display: flex; align-items: center; gap: .35rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
}
.lang-toggle button {
  color: var(--color-text-muted);
  padding: .25rem .25rem;
  transition: color .2s;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}
.lang-toggle button.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.lang-toggle button:focus-visible {
  outline: 2px solid var(--color-accent-2);
  outline-offset: 4px;
}
.lang-toggle .sep { color: var(--color-text-muted); opacity: .5; }

.nav__cta { font-size: .85rem; padding: .65rem 1.25rem; }

.nav__burger {
  display: none;
  width: 32px; height: 32px;
  position: relative;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  position: absolute; left: 5px;
  transition: transform .3s, opacity .3s, top .3s;
}
.nav__burger span:nth-child(1) { top: 10px; }
.nav__burger span:nth-child(2) { top: 15px; }
.nav__burger span:nth-child(3) { top: 20px; }
.nav__burger.is-open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(13, 14, 18, 0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease-out-expo);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  font-weight: 700;
  font-style: italic;
}
.mobile-menu nav a {
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s, transform .4s;
  transition-delay: calc(var(--i, 0) * 80ms);
}
.mobile-menu.is-open nav a { opacity: 1; transform: translateY(0); }
.mobile-menu .btn { font-family: var(--font-body); font-style: normal; font-size: 1rem; margin-top: 1rem; }

/* HERO */
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__vignette {
  position: absolute; inset: 0;
  background: var(--gradient-hero-vignette);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
  width: 100%;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  margin-bottom: 1.5rem;
  max-width: 950px;
}
.hero__title em {
  font-style: italic;
  font-weight: 900;
  color: var(--color-accent);
}
.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--color-text);
  max-width: 600px;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.hero__signature {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--color-accent);
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  z-index: 3;
  animation: bounce 2.4s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* MARQUEE */
.marquee {
  overflow: hidden;
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
  position: relative;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  font-size: .92rem;
  color: var(--color-text);
  white-space: nowrap;
}
.marquee__group .dot { color: var(--color-accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* MANIFESTO */
.manifesto {
  padding: var(--section-py) 0;
  text-align: center;
  background: var(--color-bg);
  position: relative;
}
.manifesto::before, .manifesto::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 40px; height: 1px;
  background: var(--color-accent);
  opacity: .5;
}
.manifesto::before { top: 3rem; }
.manifesto::after { bottom: 3rem; }
.manifesto__lines {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.manifesto__line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
  transition-delay: calc(var(--i) * 150ms);
}
.manifesto__line em { font-style: italic; }
.reveal.is-visible .manifesto__line { opacity: 1; transform: translateY(0); }
.manifesto__sub {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease-out-expo), transform .6s var(--ease-out-expo);
  transition-delay: calc(var(--i) * 150ms);
}
.reveal.is-visible .manifesto__sub { opacity: 1; transform: translateY(0); }
.manifesto__body {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease-out-expo), transform .6s var(--ease-out-expo);
  transition-delay: calc(var(--i) * 150ms);
}
.reveal.is-visible .manifesto__body { opacity: 1; transform: translateY(0); }

/* SERVICES */
.services {
  padding: var(--section-py) 0;
  background: var(--color-bg-alt);
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0;
}
.tab {
  padding: .85rem 1.5rem;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: .9rem;
  border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s;
  position: relative;
  bottom: -1px;
}
.tab:hover { color: var(--color-text); }
.tab.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadePanel .35s var(--ease-out-expo); }
@keyframes fadePanel {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap);
}
.card {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform .4s var(--ease-out-expo), box-shadow .4s;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3);
  border-color: rgba(228, 130, 79, 0.3);
}
.card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out-expo);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,14,18,0.5));
  opacity: 0;
  transition: opacity .4s;
}
.card:hover .card__media::after { opacity: 1; }
.card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: .5rem;
  letter-spacing: -0.01em;
}
.price {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  margin-bottom: .5rem;
}
.card__sub { color: var(--color-text-muted); font-size: .9rem; line-height: 1.5; }
.card--feature {
  grid-column: span 2;
}
@media (max-width: 600px) {
  .card--feature { grid-column: span 1; }
}

/* STORY */
.story {
  padding: var(--section-py) 0;
  background: var(--color-bg-elevated);
  position: relative;
  overflow: hidden;
}
.story__bg {
  position: absolute; inset: -10%;
  background: url('assets/images/brick-wall-painted.jpg') center/cover;
  opacity: 0.08;
  filter: grayscale(0.5) blur(2px);
  z-index: 0;
  pointer-events: none;
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .story__inner { grid-template-columns: 1fr; }
}
.story__media {
  position: relative;
}
.story__media img {
  width: 100%;
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-3);
}
.caption {
  text-align: center;
  color: var(--color-text-muted);
  font-size: .82rem;
  margin-top: 1rem;
  font-style: italic;
}
.story__text p {
  margin-bottom: 1.25rem;
  color: var(--color-text);
  font-size: 1.0625rem;
}
.story__text em { color: var(--color-text); font-style: italic; }
.pullquote {
  border-left: 3px solid var(--color-accent);
  padding-left: 1.5rem;
  margin: 2.5rem 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--color-accent);
}
.pullquote cite {
  display: block;
  margin-top: .5rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: .05em;
}

/* PRESS */
.press {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.press__label {
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}
.press__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.press__logo {
  color: var(--color-text);
  opacity: 0.7;
  transition: color .3s, opacity .3s, transform .3s;
}
.press__logo:hover {
  color: var(--color-accent);
  opacity: 1;
  transform: translateY(-2px);
}

/* TEAM */
.team {
  padding: var(--section-py) 0;
  background: var(--color-bg-alt);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
}
.stylist {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: left;
  transition: transform .35s var(--ease-out-expo), box-shadow .35s, border-color .3s;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.stylist:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(228, 130, 79, 0.3);
}
.stylist__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: .5rem;
}
.stylist__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
  transition: filter .4s, transform .6s var(--ease-out-expo);
}
.stylist:hover .stylist__media img {
  filter: grayscale(0);
  transform: scale(1.04);
}
.stylist__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.2;
}
.stylist__bio { color: var(--color-text-muted); font-size: .88rem; line-height: 1.5; }
.stylist__spec {
  font-size: .82rem;
  color: var(--color-text);
  font-weight: 500;
}
.stylist__days {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.stylist .btn { align-self: flex-start; margin-top: .25rem; }

/* GALLERY */
.gallery {
  padding: var(--section-py) 0;
  background: var(--color-bg);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: .75rem;
  padding: 0 var(--section-px);
  max-width: var(--container-max);
  margin: 0 auto;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out-expo), filter .4s;
}
.gallery__item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem;
  font-size: .82rem;
  color: var(--color-text);
  background: linear-gradient(180deg, transparent, rgba(13,14,18,0.85));
  transform: translateY(100%);
  transition: transform .4s var(--ease-out-expo);
}
.gallery__item:hover figcaption { transform: translateY(0); }
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}

/* SHOWREEL */
.showreel {
  padding: var(--section-py) 0;
  background: var(--color-bg-elevated);
  text-align: center;
}
.showreel__video {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-bg);
  box-shadow: var(--shadow-3);
  position: relative;
}
.showreel__video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.showreel__caption {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}
.counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}
.counter {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.counter__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}
.counter__suffix {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-accent);
  display: inline;
  margin-left: -.15em;
}
.counter__label {
  margin-top: .75rem;
  font-size: .85rem;
  color: var(--color-text-muted);
  max-width: 200px;
}

/* BOOKING CTA */
.booking {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0;
  background: var(--color-bg);
  overflow: hidden;
  text-align: center;
}
.booking__mesh {
  position: absolute; inset: -50%;
  background: var(--gradient-mesh);
  filter: blur(30px);
  opacity: 0.85;
  animation: spinMesh 40s linear infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes spinMesh {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.booking__inner {
  position: relative;
  z-index: 1;
}
.booking__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  margin: 1.5rem auto 1.5rem;
  max-width: 850px;
}
.booking__title em { font-style: italic; color: var(--color-accent); }
.booking__sub {
  color: var(--color-text);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}
.booking__sub2 {
  margin-top: 1.5rem;
  color: var(--color-text-muted);
  font-size: .95rem;
}

/* FOOTER */
.footer {
  background: var(--color-bg-elevated);
  padding-top: var(--section-py);
  border-top: 1px solid var(--color-border);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.footer__col p { color: var(--color-text-muted); font-size: .92rem; margin-bottom: .5rem; }
.footer__col a {
  color: var(--color-text);
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
}
.footer__col a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.footer__col .muted { color: var(--color-text-muted); }

.hours { display: grid; grid-template-columns: auto 1fr; gap: .35rem .75rem; font-size: .9rem; }
.hours dt { font-weight: 600; color: var(--color-text); }
.hours dd { color: var(--color-text-muted); font-variant-numeric: tabular-nums; }

.newsletter {
  display: flex;
  margin-top: .75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--color-bg);
}
.newsletter input {
  flex: 1;
  padding: .65rem 1rem;
  background: transparent;
  color: var(--color-text);
  border: 0;
  font: inherit;
  font-size: .88rem;
  outline: 0;
}
.newsletter input::placeholder { color: var(--color-text-muted); }
.newsletter button {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 0 1.2rem;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: background .2s;
}
.newsletter button:hover { background: #f29c6c; }

.footer__map {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.footer__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6);
}

.footer__bottom {
  padding: 1.5rem var(--section-px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: .82rem;
  color: var(--color-text-muted);
}

/* STICKY MOBILE CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 1rem; right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 1rem;
  border-radius: var(--radius-full);
  text-align: center;
  font-weight: 700;
  z-index: 800;
  box-shadow: 0 10px 30px rgba(13,14,18,0.6), var(--shadow-glow);
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* FOCUS VISIBLE */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* MOTION-REDUCE */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .cursor, .cursor-dot { display: none; }
}

/* MOBILE */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .lang-toggle { font-size: .85rem; }
  .sticky-cta { display: block; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .hero { padding-top: 100px; min-height: 85vh; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery__item--tall { grid-row: span 2; }
}

/* diag-visuel fix 2026-05-25 — sticky CTA mobile pas écraser footer legal */
@media (max-width: 900px) {
  body { padding-bottom: 84px; }
}
