/* ==========================================================================
   FLOWASH — Design tokens & base styles
   Source of truth: Figma file BvtldrEBdEsRFoK1iU8Oci
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Shrikhand&family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* Colors */
  --bg: #0b0b0d;
  --bg-alt: #17171b;
  --bg-tertiary: #212126;
  --border: #2e2e33;
  --accent: #cb0e0e;
  --accent-hover: #e21313;
  --text: #f5f5f5;
  --text-bright: #fbfbff;
  --text-muted: #9e9ea6;
  --on-accent: #0b0b0d;

  /* Typography */
  --font-display: 'Shrikhand', cursive;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --gutter: 80px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

p { margin: 0; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

.container {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media (max-width: 900px) {
  :root { --gutter: 24px; }
}

/* Focus visibility (accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--text);
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.15s ease;
}

.nav a:hover { color: var(--text); }

.nav .btn-cta {
  color: var(--on-accent);
  background: var(--accent);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.nav .btn-cta:hover { color: var(--on-accent); background: var(--accent-hover); }

.header-cta {
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.header-cta:hover { background: var(--accent-hover); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
}

@media (max-width: 800px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav.open { max-height: 300px; }
  .nav a { padding: 16px var(--gutter); width: 100%; border-top: 1px solid var(--border); }
  .nav .btn-cta { margin: 16px var(--gutter); }
}

/* ==========================================================================
   Page hero (sub-pages)
   ========================================================================== */

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 80px;
}

.page-hero h1 {
  color: var(--text);
  font-size: 44px;
  font-weight: 700;
  margin: 0;
}

.page-hero .lead {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
}

@media (max-width: 600px) {
  .page-hero h1 { font-size: 32px; }
}

/* ==========================================================================
   Services list (Nos services page)
   ========================================================================== */

.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 100px;
}

.service-row {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.photo-placeholder {
  background: #242429;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 220px;
  height: 160px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.service-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 10px; }

.service-info .title-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.service-info h3 { color: var(--text); font-size: 22px; font-weight: 600; margin: 0; }

.service-badge {
  background: var(--accent);
  color: var(--text);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.service-info .desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.4;
  max-width: 600px;
}

.options-complementaires {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.options-complementaires h3 { color: var(--text); font-size: 18px; font-weight: 600; margin: 0; }

.option-pills { display: flex; gap: 12px; flex-wrap: wrap; }

.option-pill {
  background: #242429;
  border-radius: 20px;
  padding: 8px 14px;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
}

.option-pill .name { color: var(--text-muted); }
.option-pill .price { color: var(--text-bright); font-weight: 600; }

@media (max-width: 700px) {
  .service-row { flex-direction: column; align-items: stretch; }
  .photo-placeholder { width: 100%; }
}

/* ==========================================================================
   Hero — scroll-driven image sequence
   ========================================================================== */

@keyframes hero-nudge {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50% { transform: translateY(7px); opacity: 1; }
}

.hero-wrap {
  background: #07080a;
  color: #f4f5f6;
  font-family: 'Archivo', Helvetica, Arial, sans-serif;
}

.hero-scroll {
  position: relative;
  height: 460vh;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 45%, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

.hero-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 4vw, 56px);
  z-index: 3;
}

.hero-topbar img { height: 30px; width: auto; display: block; }

.hero-topbar .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,245,246,.55);
  text-align: right;
  line-height: 1.7;
}

.hero-loading,
.hero-hint {
  position: absolute;
  left: 0; right: 0; bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.hero-loading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,245,246,.55);
}

.hero-loading .track {
  display: block;
  width: 92px;
  height: 1px;
  background: rgba(244,245,246,.2);
}

.hero-loading .fill {
  display: block;
  height: 100%;
  background: rgba(244,245,246,.8);
}

.hero-hint .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,245,246,.7);
}

.hero-hint .stem {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, rgba(244,245,246,.7), rgba(244,245,246,0));
  animation: hero-nudge 2.2s ease-in-out infinite;
}

.hero-end {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 56px);
  background: linear-gradient(to top, rgba(4,5,6,.88) 0%, rgba(4,5,6,.55) 42%, rgba(4,5,6,0) 78%);
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.hero-end-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 20px 22px 18px;
  border: 1px solid rgba(244,245,246,.16);
  border-radius: 4px;
  background: rgba(12,14,16,.42);
  backdrop-filter: blur(8px);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
  color: #f4f5f6;
  text-decoration: none;
}

.hero-card:hover {
  border-color: rgba(244,245,246,.5);
  background: rgba(20,23,26,.62);
  transform: translateY(-3px);
  color: #fff;
}

.hero-card .label-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-card .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  color: rgba(244,245,246,.42);
}

.hero-card .title {
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  letter-spacing: -.015em;
}

.hero-card .sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,245,246,.48);
  margin-top: 5px;
}

.hero-card.accent {
  border-color: rgba(203,14,14,.55);
  background: rgba(203,14,14,.14);
}

.hero-card.accent:hover {
  border-color: rgba(203,14,14,.8);
  background: rgba(203,14,14,.26);
}

.hero-card.accent .num { color: rgba(230,120,120,.8); }
.hero-card.accent .title { color: #fbeaea; }
.hero-card.accent .sub { color: rgba(230,170,170,.7); }

.hero-progress-track {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: rgba(244,245,246,.1);
  z-index: 5;
}

.hero-progress-fill {
  height: 100%;
  background: #85b8d6;
  width: 0%;
}

/* ==========================================================================
   Section heading (shared)
   ========================================================================== */

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
}

.section-heading h2 {
  color: var(--text);
  font-size: 34px;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 600px) {
  .section-heading h2 { font-size: 26px; }
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
}

.cards-row {
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: stretch;
}

.service-card {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}

.service-card.featured {
  background: var(--bg-alt);
  border: 1.5px solid var(--accent);
}

.badge-popular {
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.service-card h3 {
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.service-price {
  color: var(--text);
  font-size: 30px;
  font-weight: 700;
}

.duration-chip {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 10px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

.service-card.featured .duration-chip {
  background: var(--bg);
}

.service-card p.desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  flex-grow: 1;
}

.select-btn {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.15s ease;
}

.select-btn:hover { border-color: var(--accent); }

.select-btn.primary {
  background: var(--accent);
  border: none;
  color: var(--on-accent);
}

.select-btn.primary:hover { background: var(--accent-hover); }

@media (max-width: 900px) {
  .cards-row { flex-direction: column; }
}

/* ==========================================================================
   Trust bar
   ========================================================================== */

.trust-bar {
  display: flex;
  justify-content: space-between;
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 24px;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  flex: 1;
  min-width: 120px;
}

.trust-stat .value {
  color: var(--text-bright);
  font-size: 28px;
  font-weight: 700;
}

.trust-stat .label {
  color: var(--text-muted);
  font-size: 13px;
}

/* ==========================================================================
   Booking
   ========================================================================== */

.booking-section {
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
}

.booking-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  width: 100%;
  max-width: 1120px;
  align-items: stretch;
}

.booking-col {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.booking-divider { width: 1px; background: var(--border); align-self: stretch; }

.step-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.step-title {
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
}

.field-label {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

.pill-toggle {
  display: flex;
  gap: 8px;
  width: 100%;
}

.pill {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.15s ease;
}

.pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.address-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.address-field input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
}

.address-field input::placeholder { color: var(--text-muted); }
.address-field input:focus { border-color: var(--accent); outline: none; }

.options-intro .label { color: var(--text-muted); font-size: 12px; font-weight: 500; }
.options-intro .hint { color: var(--text-muted); font-size: 11px; margin-top: 2px; }

.options-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.option-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: transparent;
  transition: background 0.15s ease;
}

.option-toggle.checked { background: var(--bg-tertiary); }
.option-toggle[disabled] { opacity: 0.4; cursor: not-allowed; }

.option-left {
  display: flex;
  gap: 10px;
  align-items: center;
}

.option-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--text-muted);
  flex-shrink: 0;
}

.option-toggle.checked .option-box {
  background: var(--accent);
  border-color: var(--accent);
}

.option-name { color: var(--text); font-size: 13px; text-align: left; }
.option-price { color: var(--text-muted); font-size: 13px; font-weight: 600; }

.day-selector,
.time-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.day-chip {
  padding: 12px 10px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  min-width: 46px;
}

.day-chip .dow { color: var(--text-muted); font-size: 11px; font-weight: 600; }
.day-chip .dom { color: var(--text); font-size: 15px; font-weight: 700; }

.day-chip.active { background: var(--accent); border-color: var(--accent); }
.day-chip.active .dow,
.day-chip.active .dom { color: var(--on-accent); }

.day-chip[disabled] { opacity: 0.35; cursor: not-allowed; }

.time-chip {
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.time-chip.active { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

.divider-h { height: 1px; background: var(--border); width: 100%; }

.recap-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 13px;
}

.recap-row .k { color: var(--text-muted); }
.recap-row .v { color: var(--text); font-weight: 600; text-align: right; }

.confirm-btn {
  width: 100%;
  background: var(--accent);
  color: var(--on-accent);
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background 0.15s ease;
}

.confirm-btn:hover { background: var(--accent-hover); }
.confirm-btn:disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 900px) {
  .booking-card { flex-direction: column; }
  .booking-divider { width: 100%; height: 1px; }
}

/* ==========================================================================
   About page
   ========================================================================== */

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 140px;
}

.about-content p.body {
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
  max-width: 760px;
  margin: 0;
}

.about-trust-strip {
  display: flex;
  gap: 64px;
  padding-top: 20px;
  flex-wrap: wrap;
}

.about-trust-strip .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}

.about-trust-strip .item .k { color: var(--accent); font-size: 15px; font-weight: 600; }
.about-trust-strip .item .v { color: var(--text); font-size: 13px; }

/* ==========================================================================
   Contact callout
   ========================================================================== */

.contact-callout {
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  text-align: center;
}

.contact-callout h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.contact-encart {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 36px;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

.contact-item .icon { color: var(--accent); font-size: 16px; }

.contact-sep { width: 1px; height: 20px; background: var(--border); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--bg-alt);
  padding-top: 64px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand .logo { font-size: 20px; font-weight: 700; letter-spacing: 2px; font-family: var(--font-body); }
.footer-brand p { color: var(--text-muted); font-size: 13px; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  color: var(--text-bright);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin: 0;
}

.footer-col a,
.footer-col span {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-bottom p { color: var(--text-muted); font-size: 12px; }
