/* =====================================================
   At The Waverly — Capitol Hill, Seattle
   Style: monochrome-photo (Magnum / Leica / Cartier-Bresson)
   ===================================================== */

/* ===== CSS Variables ===== */
:root {
  /* Backgrounds */
  --bg-primary: #0A0A0A;
  --bg-surface: #141414;
  --bg-elevated: #1C1C1C;
  --bg-paper: #F5F5F0;

  /* Text */
  --text-primary: #F5F5F0;
  --text-secondary: #A8A8A0;
  --text-muted: #6B6B65;
  --text-on-paper: #0A0A0A;
  --text-on-paper-muted: #5A5A52;

  /* Accent — deep bordeaux (less saturated, more refined) */
  --accent: #7A1F1F;
  --accent-hover: #94312F;
  --accent-on-light: #5E1818;

  /* Borders */
  --border-subtle: #2A2A2A;
  --border-strong: #3D3D3D;
  --border-on-paper: #D8D8D0;

  /* Typography */
  --ff-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --ff-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-italic: 'Playfair Display', Georgia, serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --fs-display: clamp(3rem, 9vw, 7.5rem);
  --fs-h1: clamp(2.25rem, 6vw, 4.5rem);
  --fs-h2: clamp(1.75rem, 4vw, 3rem);
  --fs-h3: clamp(1.25rem, 2.5vw, 1.75rem);
  --fs-body: clamp(1rem, 1.1vw, 1.0625rem);
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  /* Layout */
  --container: 1280px;
  --container-narrow: 720px;
  --section: clamp(4rem, 10vw, 8rem);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.6);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-mag: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

img, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== Grain film overlay (texture argentique) ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ===== Skip link ===== */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--bg-primary); color: var(--text-primary);
  padding: 0.75rem 1.25rem; border: 1px solid var(--accent);
  z-index: 10000; font-family: var(--ff-mono); font-size: var(--fs-micro);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.skip-link:focus { top: 1rem; }

/* ===== Custom cursor (desktop only) ===== */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  .cursor {
    position: fixed; top: 0; left: 0;
    width: 12px; height: 12px;
    border: 1.5px solid var(--text-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 220ms var(--ease-out), height 220ms var(--ease-out), background 220ms var(--ease-out), border-color 220ms var(--ease-out);
    mix-blend-mode: difference;
  }
  .cursor.is-hover {
    width: 40px; height: 40px;
    border-color: var(--accent);
    background: rgba(122, 31, 31, 0.25);
  }
  /* (was: .cursor.is-view "VIEW" label — removed per design-review for cleaner UX) */
}

/* ===== Container ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }

/* ===== Typography helpers ===== */
.eyebrow {
  font-family: var(--ff-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: inline-block;
  margin-bottom: 1.25rem;
}
.eyebrow-num { color: var(--accent); font-weight: 500; }
.italic { font-family: var(--ff-italic); font-style: italic; font-weight: 500; }
.italic-accent {
  font-family: var(--ff-italic); font-style: italic; font-weight: 500;
  color: var(--text-primary);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 95%;
  background-size: 100% 4px;
  padding: 0 0.05em;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-body); font-weight: 600;
  font-size: var(--fs-body);
  padding: 1.125rem 2rem;
  border: 1px solid transparent;
  transition: background 280ms var(--ease-out), transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
  letter-spacing: -0.005em;
  position: relative;
}
.btn-primary {
  background: var(--accent);
  color: var(--text-primary);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(122, 31, 31, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--text-primary);
  background: rgba(245, 245, 240, 0.05);
}
.btn-text {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-body); font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 280ms var(--ease-out), color 280ms var(--ease-out);
}
.btn-text:hover { gap: 0.875rem; color: var(--accent); }
.btn .arrow { transition: transform 280ms var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Header (glass on scroll) ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 320ms var(--ease-out), backdrop-filter 320ms var(--ease-out), border-color 320ms var(--ease-out), padding 320ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border-subtle);
  padding: 0.875rem 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.brand {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.125rem;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-mark {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
}
.brand-mark::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  margin-left: 0.5rem;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; gap: 1.75rem; }
.nav-link {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  position: relative;
  transition: color 240ms var(--ease-out);
}
.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 280ms var(--ease-out);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

.status-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-mono); font-size: var(--fs-micro);
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-secondary);
}
.status-pill::before {
  content: ''; width: 8px; height: 8px;
  background: #4A6B4A; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 107, 74, 0.7);
  animation: dotpulse 2.4s ease-in-out infinite;
}
@keyframes dotpulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 107, 74, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(74, 107, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 107, 74, 0); }
}

.header-cta {
  font-family: var(--ff-mono); font-size: var(--fs-micro);
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.625rem 1.125rem;
  border: 1px solid var(--border-strong);
  transition: background 240ms var(--ease-out), border-color 240ms var(--ease-out), color 240ms var(--ease-out);
}
.header-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--text-primary); }

/* ===== Hamburger (mobile) ===== */
.hamburger { display: none; width: 32px; height: 32px; position: relative; z-index: 110; }
.hamburger span {
  position: absolute; left: 4px; right: 4px; height: 1.5px;
  background: var(--text-primary);
  transition: transform 320ms var(--ease-out), opacity 220ms var(--ease-out), top 320ms var(--ease-out);
}
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 16px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.is-open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--bg-primary);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-bg video, .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.85);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.35) 0%,
    rgba(10, 10, 10, 0.55) 40%,
    rgba(10, 10, 10, 0.92) 100%);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  width: 100%;
  padding: 6rem 0 4rem;
}
.hero-eyebrow {
  font-family: var(--ff-mono); font-size: var(--fs-micro);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  display: inline-block;
}
.hero-headline {
  font-family: var(--ff-display);
  font-size: var(--fs-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.hero-sub {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 38ch;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.hero-ctas { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--ff-mono); font-size: var(--fs-micro);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--text-muted), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.3); opacity: 0.3; }
}

/* ===== Marquee ===== */
.marquee {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 3rem;
  animation: scroll-marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--ff-mono); font-size: 0.875rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee-item::after {
  content: '·';
  color: var(--accent);
  font-size: 1rem;
  opacity: 0.7;
}
@keyframes scroll-marquee {
  to { transform: translateX(-50%); }
}

/* ===== Sections ===== */
section { position: relative; }

.section {
  padding: var(--section) 0;
  position: relative;
}
.section-light {
  background: var(--bg-paper);
  color: var(--text-on-paper);
}
.section-light .eyebrow { color: var(--text-on-paper-muted); }
.section-light .italic-accent {
  color: var(--text-on-paper);
  background-image: linear-gradient(var(--accent-on-light), var(--accent-on-light));
}

.section-header { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-title {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 18ch;
}
.section-intro {
  margin-top: 1.5rem;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 48ch;
  line-height: 1.55;
}
.section-light .section-intro { color: var(--text-on-paper-muted); }

/* ===== Section divider (editorial line) ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle) 30%, var(--border-subtle) 70%, transparent);
  margin: 0 auto;
  max-width: var(--container);
}

/* ===== Studio section (2-column) ===== */
.studio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .studio-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.studio-copy p {
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 52ch;
}
.studio-bullets {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-on-paper);
  padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.875rem;
}
.studio-bullets li {
  font-family: var(--ff-mono); font-size: var(--fs-micro);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-on-paper);
}
.studio-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.studio-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.9);
  transition: transform 1.4s var(--ease-out);
}
.studio-photo:hover img { transform: scale(1.04); }
.studio-photo::after {
  content: '01 — INTERIOR · CAPITOL HILL';
  position: absolute; bottom: 1rem; left: 1rem;
  font-family: var(--ff-mono); font-size: var(--fs-micro);
  letter-spacing: 0.15em; color: var(--text-primary);
  background: rgba(10,10,10,0.7); padding: 0.4rem 0.75rem;
}

/* ===== Counters ===== */
.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
}
.counter-item { text-align: center; padding: 0 1rem; }
.counter-num {
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}
.counter-num .suffix { color: var(--accent); }
.counter-label {
  margin-top: 0.5rem;
  font-family: var(--ff-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== Artists ===== */
.artists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .artists-grid { grid-template-columns: 1fr 1fr; }
}
.artist-card {
  position: relative;
  background: var(--bg-surface);
  overflow: hidden;
  transition: transform 600ms var(--ease-out);
}
.artist-card:hover { transform: translateY(-6px); }
.artist-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.artist-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.88);
  transition: filter 700ms var(--ease-mag), transform 1.2s var(--ease-out);
}
.artist-card:hover .artist-photo img {
  filter: grayscale(0.1) contrast(1.05);
  transform: scale(1.04);
}
.artist-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.85) 100%);
  pointer-events: none;
}
.artist-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  z-index: 2;
}
.artist-handle {
  font-family: var(--ff-mono); font-size: var(--fs-micro);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: block;
}
.artist-name {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.artist-role {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.artist-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 600ms var(--ease-out), opacity 400ms var(--ease-out), margin 400ms var(--ease-out);
}
.artist-card:hover .artist-bio,
.artist-card:focus-within .artist-bio {
  max-height: 320px;
  opacity: 1;
}
.artist-chips {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: 0.75rem;
}
.artist-chip {
  font-family: var(--ff-mono); font-size: 10px;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--border-strong);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-secondary);
}

/* ===== Portfolio ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  cursor: pointer;
}
.portfolio-item.tall { aspect-ratio: 4/5; }
.portfolio-item.square { aspect-ratio: 1/1; }
@media (min-width: 1000px) {
  .portfolio-item:nth-child(3n+1) { grid-row: span 2; aspect-ratio: 4/5; }
}
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) sepia(0.28) contrast(1.05) brightness(0.92);
  transition: filter 600ms var(--ease-mag), transform 1.2s var(--ease-out);
}
.portfolio-item:hover img,
.portfolio-item.is-revealed img {
  filter: none;
  transform: scale(1.03);
}
.portfolio-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,0.92));
  transform: translateY(70%);
  transition: transform 600ms var(--ease-mag);
  pointer-events: none;
}
.portfolio-item:hover .portfolio-caption,
.portfolio-item.is-revealed .portfolio-caption {
  transform: translateY(0);
}
.portfolio-caption span {
  font-family: var(--ff-mono); font-size: var(--fs-micro);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-primary);
  display: block;
  line-height: 1.5;
}
.portfolio-caption strong {
  color: var(--accent); font-weight: 500;
}
.portfolio-footer {
  margin-top: 3rem; text-align: center;
}

/* ===== Showreel ===== */
.showreel {
  position: relative;
  padding: 0;
  background: var(--bg-primary);
}
.showreel-video {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.showreel-video video {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.85);
}
.showreel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.1) 30%, rgba(10,10,10,0.85) 100%);
  display: flex; align-items: flex-end;
  padding: clamp(2rem, 6vw, 5rem);
}
.showreel-caption {
  max-width: 36ch;
}
.showreel-caption .eyebrow { color: var(--text-secondary); }
.showreel-caption h2 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: -0.02em; line-height: 1.05;
  color: var(--text-primary);
}
.showreel-caption p {
  margin-top: 1rem; color: var(--text-secondary);
  font-size: 1.0625rem; line-height: 1.55;
}

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 720px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .process-grid { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; } }

.process-step {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-top: 1px solid var(--border-on-paper);
}
.process-num {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-on-paper-muted);
  margin-bottom: 1rem;
}
.process-step h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.process-step p {
  font-size: 0.95rem;
  color: var(--text-on-paper-muted);
  line-height: 1.55;
}
.process-icon {
  margin-bottom: 1.25rem;
  width: 32px; height: 32px;
  color: var(--accent-on-light);
}

/* ===== Pricing ===== */
.pricing-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.pricing-lines {
  margin: 3rem 0 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2rem 0;
}
.pricing-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--ff-mono);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
}
.pricing-line dt { color: var(--text-muted); }
.pricing-line dd {
  color: var(--text-primary);
  font-weight: 500;
}
.pricing-line dd.accent { color: var(--accent); }
.pricing-footnote {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--ff-display);
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-align: left;
  transition: color 240ms var(--ease-out);
}
.faq-question:hover { color: var(--accent); }
.faq-toggle {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  background: currentColor;
  transition: transform 320ms var(--ease-out);
}
.faq-toggle::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-toggle::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.is-open .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms var(--ease-out);
}
.faq-answer-inner {
  padding: 0 0 1.75rem;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 60ch;
}
.faq-item.is-open .faq-answer { max-height: 240px; }

/* ===== Final CTA (gradient mesh) ===== */
.cta-final {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0;
  text-align: center;
  overflow: hidden;
}
.cta-mesh {
  position: absolute; inset: -50%;
  z-index: 0;
  background:
    radial-gradient(at 20% 30%, rgba(122, 31, 31, 0.35) 0%, transparent 45%),
    radial-gradient(at 80% 20%, rgba(60, 60, 60, 0.6) 0%, transparent 50%),
    radial-gradient(at 70% 80%, rgba(122, 31, 31, 0.2) 0%, transparent 45%),
    radial-gradient(at 30% 90%, rgba(40, 40, 40, 0.7) 0%, transparent 50%);
  filter: blur(60px);
  animation: meshFloat 22s ease-in-out infinite alternate;
}
@keyframes meshFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-8%, 6%) rotate(8deg); }
}
.cta-final-content {
  position: relative; z-index: 2;
}
.cta-final h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.cta-final p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 40ch;
  margin-left: auto; margin-right: auto;
}
.cta-final .hero-ctas { justify-content: center; }

/* ===== Footer ===== */
.footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  display: block;
}
.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 28ch;
  line-height: 1.5;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col li, .footer-col a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 220ms var(--ease-out);
}
.footer-col a:hover { color: var(--text-primary); }
.footer-meta {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 720px) { .footer-meta { flex-direction: row; align-items: center; } }
.footer-copy, .footer-demo {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.5;
  text-transform: uppercase;
}
.footer-demo strong { color: var(--text-secondary); }

/* ===== Mobile sticky CTA ===== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--accent);
  color: var(--text-primary);
  padding: 1rem;
  font-weight: 600;
  text-align: center;
  z-index: 90;
  transform: translateY(120%);
  transition: transform 360ms var(--ease-out);
  letter-spacing: -0.005em;
  display: none;
}
.sticky-cta.is-visible { transform: translateY(0); }

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 900ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* ===== Focus states ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ===== Mobile menu overlay ===== */
.nav-mobile {
  position: fixed; inset: 0;
  background: var(--bg-primary);
  z-index: 105;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 360ms var(--ease-out);
}
.nav-mobile.is-open { opacity: 1; pointer-events: auto; }
.nav-mobile a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.nav-mobile a:hover { color: var(--accent); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .sticky-cta { display: block; }
  .header-cta { display: none; }
  .hero-content { padding: 5rem 0 5rem; }
  .hero-headline { font-size: clamp(2.5rem, 12vw, 4.5rem); }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .hero-ctas .btn { width: auto; }
  .counters { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0; }
  .counters .counter-item { border-bottom: 1px solid var(--border-subtle); padding-bottom: 1.5rem; }
  .counters .counter-item:last-child { border: none; padding-bottom: 0; }
  body { padding-bottom: 64px; } /* room for sticky CTA */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .cta-mesh { animation: none; }
}

/* =====================================================
   BOOKING — reservation.html + paiement.html
   ===================================================== */

/* ===== Demo banner (discreet, soft) ===== */
.demo-banner-soft {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.625rem 1rem;
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  z-index: 90;
}
.demo-banner-soft strong {
  color: var(--accent);
  font-weight: 500;
}

/* ===== Page wrapper booking ===== */
.page-booking {
  padding-top: 0;
}
.page-booking .header {
  position: fixed;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.875rem 0;
}

/* ===== Booking hero (compact) ===== */
.booking-hero {
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.booking-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 80% 20%, rgba(122, 31, 31, 0.12) 0%, transparent 50%),
    radial-gradient(at 20% 80%, rgba(60, 60, 60, 0.4) 0%, transparent 50%);
  filter: blur(40px);
  pointer-events: none;
}
.booking-hero .container { position: relative; z-index: 2; }
.booking-hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: inline-block;
}
.booking-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.booking-hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 52ch;
  line-height: 1.55;
}

/* ===== Stepper ===== */
.stepper-wrap {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(10, 10, 10, 0.92);
}
.stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.stepper-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 240ms var(--ease-out);
}
.stepper-num {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 240ms var(--ease-out);
}
.stepper-item.is-done .stepper-num {
  background: var(--bg-elevated);
  border-color: var(--text-secondary);
  color: var(--text-primary);
}
.stepper-item.is-done {
  color: var(--text-secondary);
}
.stepper-item.is-active .stepper-num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-primary);
}
.stepper-item.is-active {
  color: var(--text-primary);
}
.stepper-sep {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
  min-width: 16px;
  max-width: 80px;
}
@media (max-width: 720px) {
  .stepper-item .stepper-label { display: none; }
  .stepper { justify-content: center; gap: 0.4rem; }
  .stepper-sep { max-width: 24px; }
}

/* ===== Booking layout (2 columns) ===== */
.booking-main {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 10vw, 7rem);
  background: var(--bg-primary);
  min-height: 60vh;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 960px) {
  .booking-grid {
    grid-template-columns: 1.4fr 0.9fr;
    gap: 3rem;
  }
}

/* ===== Glass card (form steps + summary) ===== */
.glass-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--border-subtle);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}
.glass-card + .glass-card { margin-top: 1.25rem; }

/* ===== Wizard step blocks ===== */
.wiz-step {
  display: none;
  animation: stepFade 480ms var(--ease-out);
}
.wiz-step.is-active { display: block; }
@keyframes stepFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.wiz-step-eyebrow {
  font-family: var(--ff-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: inline-block;
}
.wiz-step-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.625rem;
}
.wiz-step-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 56ch;
  line-height: 1.55;
}

/* ===== Form basics ===== */
.field {
  margin-bottom: 1.5rem;
}
.field-label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.625rem;
}
.field-helper {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}
.field-input,
.field-textarea,
.field-select {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 0.875rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  border-radius: 2px;
  transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}
.field-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
  font-family: var(--ff-body);
}
.field-input:focus,
.field-textarea:focus,
.field-select:focus {
  outline: none;
  border-color: var(--text-primary);
  background: var(--bg-elevated);
}
.field-input::placeholder,
.field-textarea::placeholder {
  color: var(--text-muted);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .field-row.cols-2 { grid-template-columns: 1fr 1fr; }
  .field-row.cols-3 { grid-template-columns: 2fr 1fr 1fr; }
}

/* ===== Radio cards (artist picker + style options) ===== */
.radio-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
@media (min-width: 720px) {
  .radio-cards.cols-2 { grid-template-columns: 1fr 1fr; }
}
.radio-card {
  position: relative;
  display: block;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem;
  cursor: pointer;
  transition: border-color 240ms var(--ease-out), background 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.radio-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-elevated);
}
.radio-card input[type="radio"],
.radio-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-card.has-photo {
  padding: 0;
  overflow: hidden;
}
.radio-card-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.radio-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.88);
  transition: filter 600ms var(--ease-mag);
}
.radio-card:hover .radio-card-photo img,
.radio-card.is-selected .radio-card-photo img {
  filter: grayscale(0.15) contrast(1.05);
}
.radio-card-body {
  padding: 1rem 1.25rem 1.25rem;
}
.radio-card-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  display: block;
}
.radio-card-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}
.radio-card-meta {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.radio-card.is-selected {
  border-color: var(--accent);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 1px var(--accent);
}
.radio-card.is-selected::after {
  content: '✓';
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
}

/* ===== Chip selector (style multi-select / size radio) ===== */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 220ms var(--ease-out);
  user-select: none;
}
.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.chip:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
}
.chip.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-primary);
}

/* ===== Drop zone (reference images simulator) ===== */
.dropzone {
  border: 1px dashed var(--border-strong);
  background: var(--bg-surface);
  padding: 2rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: all 240ms var(--ease-out);
}
.dropzone:hover {
  border-color: var(--accent);
  background: var(--bg-elevated);
}
.dropzone-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.75rem;
  color: var(--text-muted);
}
.dropzone-text {
  font-family: var(--ff-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.dropzone-helper {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: normal;
  text-transform: none;
}

/* ===== Inline checkbox (first tattoo, CGV) ===== */
.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 0.5rem 0;
}
.checkbox-line input[type="checkbox"] {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border-strong);
  background: var(--bg-surface);
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 220ms var(--ease-out);
}
.checkbox-line input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.checkbox-line input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
}
.checkbox-line a {
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 1px;
}
.checkbox-line a:hover { border-color: var(--accent); color: var(--accent); }

/* ===== Date picker visual (faux calendar) ===== */
.datepicker {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
}
.datepicker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.datepicker-month {
  color: var(--text-primary);
  font-weight: 500;
}
.datepicker-nav {
  display: flex;
  gap: 0.5rem;
}
.datepicker-nav button {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 220ms var(--ease-out);
}
.datepicker-nav button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.datepicker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.datepicker-dow {
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 0.5rem 0;
}
.datepicker-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 200ms var(--ease-out);
}
.datepicker-day:hover:not(.is-disabled):not(.is-empty) {
  border-color: var(--border-strong);
  color: var(--text-primary);
}
.datepicker-day.is-available {
  color: var(--text-primary);
  background: rgba(245, 245, 240, 0.04);
}
.datepicker-day.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-primary);
}
.datepicker-day.is-disabled {
  color: var(--text-muted);
  opacity: 0.35;
  cursor: not-allowed;
}
.datepicker-day.is-empty {
  cursor: default;
}
.datepicker-legend {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.datepicker-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.datepicker-legend i {
  width: 10px;
  height: 10px;
  display: inline-block;
}
.legend-available { background: rgba(245, 245, 240, 0.2); }
.legend-selected { background: var(--accent); }
.legend-unavailable { background: var(--bg-elevated); border: 1px solid var(--border-subtle); }

/* ===== Deposit transparency block ===== */
.deposit-card {
  background: var(--bg-elevated);
  border-left: 2px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.deposit-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.deposit-amount {
  font-family: var(--ff-display);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
}
.deposit-note {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-top: 0.25rem;
}

/* ===== Wizard actions ===== */
.wiz-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  gap: 1rem;
  flex-wrap: wrap;
}
.wiz-actions.is-end {
  justify-content: flex-end;
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1.25rem;
  transition: all 240ms var(--ease-out);
  cursor: pointer;
}
.btn-back:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}
.btn-next {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--accent);
  color: var(--text-primary);
  border: 1px solid var(--accent);
  padding: 0.875rem 1.75rem;
  cursor: pointer;
  transition: all 280ms var(--ease-out);
}
.btn-next:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(122, 31, 31, 0.4);
}
.btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ===== Booking summary (right column) ===== */
.booking-summary {
  position: sticky;
  top: 6rem;
}
.bs-title {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}
.bs-rows {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}
.bs-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.875rem;
}
.bs-row-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.bs-row-value {
  color: var(--text-primary);
  text-align: right;
  font-weight: 500;
}
.bs-row-value:empty::before {
  content: '—';
  color: var(--text-muted);
  font-weight: 400;
}
.bs-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 1rem 0;
}
.bs-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  border-top: 1px solid var(--border-strong);
}
.bs-total-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.bs-total-amount {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.bs-footnote {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  line-height: 1.55;
}

/* ===== Trust strip (booking) ===== */
.booking-trust {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 720px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  text-align: center;
  padding: 0 1rem;
}
.trust-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 0.75rem;
  color: var(--accent);
}
.trust-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.trust-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =====================================================
   PAYMENT page
   ===================================================== */

/* ===== Payment method toggle ===== */
.pay-toggle {
  display: flex;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 4px;
  margin-bottom: 1.75rem;
  position: relative;
}
.pay-toggle-option {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1rem;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 240ms var(--ease-out);
  border: none;
  background: transparent;
  position: relative;
}
.pay-toggle-option.is-active {
  background: var(--bg-elevated);
  color: var(--text-primary);
}
.pay-toggle-option.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
  position: relative;
}
.pay-toggle-option.is-disabled::after {
  content: 'After consult';
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ===== Card form (Stripe-like) ===== */
.card-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.card-visual {
  position: relative;
  aspect-ratio: 1.586/1;
  max-width: 380px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #1c1c1c 0%, #0a0a0a 50%, #2a0a0a 100%);
  border: 1px solid var(--border-strong);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-primary);
  font-family: var(--ff-mono);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(245, 245, 240, 0.05);
  overflow: hidden;
}
.card-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(122, 31, 31, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.card-visual-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.card-chip {
  width: 36px;
  height: 28px;
  background: linear-gradient(135deg, #c9b27a 0%, #8a7548 100%);
  border-radius: 4px;
  position: relative;
}
.card-chip::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 2px;
}
.card-brand {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  opacity: 0.9;
}
.card-number {
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  position: relative;
  font-weight: 500;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.card-detail-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}
.card-detail-value {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

/* ===== Payment trust note (lock icon line) ===== */
.pay-secure-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 1rem;
}
.pay-secure-note svg {
  width: 14px;
  height: 14px;
  color: var(--text-secondary);
}

/* ===== Pay button ===== */
.btn-pay {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1.0625rem;
  background: var(--accent);
  color: var(--text-primary);
  border: 1px solid var(--accent);
  padding: 1.125rem 2rem;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: all 280ms var(--ease-out);
}
.btn-pay:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(122, 31, 31, 0.45);
}
.btn-pay:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-pay.is-processing {
  background: var(--bg-elevated);
  border-color: var(--border-strong);
}

/* ===== Payment success ===== */
.payment-success {
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  animation: stepFade 600ms var(--ease-out);
}
.payment-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(74, 107, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A6B4A;
  border: 1px solid rgba(74, 107, 74, 0.4);
}
.payment-success-icon svg {
  width: 28px;
  height: 28px;
}
.payment-success-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.payment-success-body {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 48ch;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.payment-success-receipt {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem 1.75rem;
  margin: 0 auto 2rem;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: left;
}
.payment-success-receipt strong {
  color: var(--text-primary);
  font-weight: 500;
}
.payment-success-demo {
  display: block;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}
.payment-success-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Responsive booking ===== */
@media (max-width: 960px) {
  .booking-summary {
    position: static;
  }
  .stepper-wrap {
    position: static;
  }
}
@media (max-width: 600px) {
  .wiz-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .wiz-actions .btn-back,
  .wiz-actions .btn-next {
    width: 100%;
    justify-content: center;
  }
}

