:root {
  /* ==========================
     Color System
     ========================== */
  --color-background: #060712; /* Deep, modern background */
  --color-surface: #0f111a;    /* Elevated surfaces (cards, modals) */
  --color-surface-alt: #181b27;

  --color-text: #f5f5f7;
  --color-text-muted: #b0b4c3;

  --color-primary: #f5b841;    /* Warm, social “spotlight” accent */
  --color-primary-soft: rgba(245, 184, 65, 0.12);

  --color-success: #3ccf91;
  --color-warning: #f7b733;
  --color-danger: #ff4f5e;

  --color-border-subtle: #242838;
  --color-border-strong: #353a4f;

  --color-neutral-50: #f9fafb;
  --color-neutral-100: #f3f4f6;
  --color-neutral-200: #e5e7eb;
  --color-neutral-300: #d1d5db;
  --color-neutral-400: #9ca3af;
  --color-neutral-500: #6b7280;
  --color-neutral-600: #4b5563;
  --color-neutral-700: #374151;
  --color-neutral-800: #1f2933;
  --color-neutral-900: #111827;

  /* Semantic overlays for interactive/strategic vibe */
  --color-ambient-glow: rgba(245, 184, 65, 0.18);
  --color-focus-ring: rgba(245, 184, 65, 0.7);

  /* ==========================
     Typography
     ========================== */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem;  /* 36px */
  --font-size-5xl: 3rem;     /* 48px */

  --line-height-tight: 1.15;
  --line-height-snug: 1.3;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* ==========================
     Spacing Scale (0–96px)
     ========================== */
  --space-0: 0;
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-7: 1.75rem;  /* 28px */
  --space-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */
  --space-24: 6rem;    /* 96px */

  /* ==========================
     Radius & Shadows
     ========================== */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 999px;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 18px 60px rgba(0, 0, 0, 0.6);
  --shadow-focus: 0 0 0 1px var(--color-border-strong), 0 0 0 4px var(--color-focus-ring);

  /* ==========================
     Transitions
     ========================== */
  --transition-fast: 120ms ease-out;
  --transition-normal: 200ms ease-out;
  --transition-slow: 320ms ease-out;
}

/* ==========================
   RESET & NORMALIZE
   ========================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  background: none;
  padding: 0;
}

textarea {
  resize: vertical;
}

/* Remove default link underlines and colors for a custom system */

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Respect user motion preferences */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ==========================
   BASE STYLES
   ========================== */

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  background-color: var(--color-background);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: block;
}

/* Headings – modern hierarchy for French content */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  line-height: var(--line-height-snug);
}

h1 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
}

h4 {
  font-size: 1.125rem;
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}

p {
  margin-bottom: var(--space-3);
  color: var(--color-text-muted);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: var(--font-weight-semibold);
}

small {
  font-size: var(--font-size-sm);
}

/* Interactive text and CTAs */

a,
.link {
  color: var(--color-primary);
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition-normal);
}

a:hover,
a:focus-visible,
.link:hover,
.link:focus-visible {
  color: #ffe09c;
}

/* ==========================
   ACCESSIBILITY & FOCUS
   ========================== */

:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: var(--radius-sm);
}

/* Limit intrusive focus on non-interactives */

[tabindex="-1"]:focus-visible {
  box-shadow: none;
}

/* Screen-reader only utility */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================
   LAYOUT UTILITIES
   ========================== */

.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}

.section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.section--compact {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

/* Flex helpers */

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-stretch {
  align-items: stretch;
}

.gap-xs {
  gap: var(--space-2);
}

.gap-sm {
  gap: var(--space-3);
}

.gap-md {
  gap: var(--space-4);
}

.gap-lg {
  gap: var(--space-6);
}

/* Grid helpers */

.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Alignment and text utilities for French marketing copy */

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

.text-right {
  text-align: right;
}

.text-muted {
  color: var(--color-text-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background-color: var(--color-primary-soft);
  color: var(--color-primary);
}

/* ==========================
   COMPONENTS – BUTTONS
   ========================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  background-color: var(--color-primary);
  color: #1b1203;
  transition:
    background-color var(--transition-normal),
    color var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.button:hover {
  background-color: #ffd577;
  box-shadow: 0 8px 26px rgba(245, 184, 65, 0.35);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(245, 184, 65, 0.3);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}

.button--outline {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

.button--outline:hover {
  background-color: var(--color-surface-alt);
}

.button--ghost {
  background-color: transparent;
  color: var(--color-primary);
}

.button--ghost:hover {
  background-color: var(--color-primary-soft);
}

.button--secondary {
  background-color: var(--color-surface-alt);
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

.button--secondary:hover {
  background-color: #232739;
}

.button--full {
  width: 100%;
}

/* Emphasized CTAs for reservation / booking */

.cta-primary {
  composes: button;
}

/* Fallback for environments without CSS Modules: */

.cta-primary {
  display: inline-flex;
}

/* ==========================
   COMPONENTS – FORMS
   ========================== */

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

.help-text {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.input,
.textarea,
.select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background-color: rgba(10, 12, 22, 0.95);
  color: var(--color-text);
  outline: none;
  transition:
    border-color var(--transition-normal),
    box-shadow var(--transition-fast),
    background-color var(--transition-normal);
}

.input::placeholder,
.textarea::placeholder {
  color: var(--color-text-muted);
}

.input:focus-visible,
.textarea:focus-visible,
.select:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-border-strong), 0 0 0 4px var(--color-focus-ring);
}

.input:disabled,
.textarea:disabled,
.select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.textarea {
  min-height: 120px;
}

/* ==========================
   COMPONENTS – CARDS / PANELS
   ========================== */

.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
}

.card--interactive {
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal),
    border-color var(--transition-normal),
    background-color var(--transition-normal);
  cursor: pointer;
}

.card--interactive:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
  border-color: var(--color-border-strong);
  background: radial-gradient(circle at top left, var(--color-ambient-glow), var(--color-surface));
}

.card__header {
  margin-bottom: var(--space-3);
}

.card__title {
  font-size: var(--font-size-lg);
  margin-bottom: 0.25rem;
}

.card__subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.card__body {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* Utility panel for rules / process explanation */

.panel-muted {
  background-color: rgba(24, 27, 39, 0.95);
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-border-subtle);
  padding: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* ==========================
   COMPONENTS – TAGS / STATUS
   ========================== */

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  border: 1px solid var(--color-border-subtle);
  color: var(--color-text-muted);
}

.tag--success {
  border-color: rgba(60, 207, 145, 0.5);
  color: var(--color-success);
}

.tag--warning {
  border-color: rgba(247, 183, 51, 0.5);
  color: var(--color-warning);
}

.tag--danger {
  border-color: rgba(255, 79, 94, 0.6);
  color: var(--color-danger);
}

/* ==========================
   PAGE-SPECIFIC FOUNDATIONS
   (for multi-page structure)
   ========================== */

/* Hero sections for concept & ambiance */

.hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.hero--overlay {
  position: relative;
}

.hero--overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(245, 184, 65, 0.25), transparent 55%),
              radial-gradient(circle at 90% 100%, rgba(53, 110, 255, 0.2), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

/* Lists for FAQs, rules, and process steps */

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-bullets {
  padding-left: 1.1rem;
}

.list-bullets li {
  margin-bottom: 0.4rem;
  color: var(--color-text-muted);
}

/* Testimonials basic layout */

.testimonial {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.testimonial__quote {
  font-style: italic;
}

.testimonial__author {
  margin-top: var(--space-2);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

/* Upcoming events list foundation */

.event-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background-color: var(--color-surface);
}

.event-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

@media (max-width: 640px) {
  .event-row {
    align-items: flex-start;
  }

  .event-row__cta {
    width: 100%;
  }
}

/* Basic layout helpers for gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
}

.gallery-grid img {
  border-radius: var(--radius-md);
  object-fit: cover;
}

/* Footer base – community-focused */

.site-footer {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.site-footer a {
  color: var(--color-text-muted);
}

.site-footer a:hover {
  color: var(--color-primary);
}
