/* ==========================================================================
   Le Saint Lo — Premium Showcase Website
   Bureau de Tabac · Bar · Presse · FDJ · PMU
   Saint-Laurent-en-Royans (26190)
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Primary palette */
  --color-primary: #060f2c;
  --color-primary-light: #0e1a3d;
  --color-primary-dark: #030818;
  /* Accent — ruby red from logo */
  --color-accent: #c41e3a;
  --color-accent-light: #e8304f;
  --color-accent-dark: #9a1730;
  /* Gold — from logo outlines */
  --color-gold: #d4a843;
  --color-gold-light: #e8c76a;
  --color-gold-dark: #b08a2e;
  /* Neutrals */
  --color-bg: #f7f7f8;
  --color-bg-alt: #eeeef0;
  --color-surface: #ffffff;
  --color-text: #1a1a2e;
  --color-text-light: #555568;
  --color-text-muted: #8888a0;
  --color-border: #e0e0e6;
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(6,15,44,.06);
  --shadow-md: 0 4px 16px rgba(6,15,44,.08);
  --shadow-lg: 0 12px 40px rgba(6,15,44,.12);
  --shadow-xl: 0 20px 60px rgba(6,15,44,.16);
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  /* Spacing scale */
  --space-xs: .25rem;
  --space-sm: .5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;
  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  /* Transitions */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --duration: .35s;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-light);
  max-width: 640px;
}

.section-header {
  margin-bottom: var(--space-xl);
}

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

.section-header--center .section-label { justify-content: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

.gold-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: 2px;
  margin-top: 1.25rem;
}

.section-header--center .gold-line {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(6, 15, 44, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--duration) ease, box-shadow var(--duration) ease;
}

.nav.scrolled {
  background: rgba(6, 15, 44, .98);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.nav__logo img {
  height: 38px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav__link {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color var(--duration) ease;
  position: relative;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
  transition: width var(--duration) var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: #fff;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-accent);
  border-radius: 50px;
  transition: background var(--duration) ease, transform .2s ease;
}

.nav__cta:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* ── Phase system (vidéo / mosaïque) ── */
.hero__phase {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}

.hero__phase--active {
  opacity: 1;
}

/* ── Vidéo ── */
.hero__video {
  object-fit: cover;
}

/* ── Mosaïque de photos ── */
.hero__mosaic {
  overflow: hidden;
}

.hero__mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  width: 100%;
  height: 100%;
  animation: mosaic-drift 30s ease-in-out infinite alternate;
}

@keyframes mosaic-drift {
  0%   { transform: scale(1.05) translate(0, 0); }
  25%  { transform: scale(1.08) translate(-1%, -0.5%); }
  50%  { transform: scale(1.06) translate(0.5%, -1%); }
  75%  { transform: scale(1.09) translate(-0.5%, 0.5%); }
  100% { transform: scale(1.05) translate(0, 0); }
}

.hero__mosaic-cell {
  overflow: hidden;
  position: relative;
}

.hero__mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
  filter: brightness(.85);
}

.hero__mosaic-cell:nth-child(odd) img {
  animation: cell-zoom-a 12s ease-in-out infinite alternate;
}

.hero__mosaic-cell:nth-child(even) img {
  animation: cell-zoom-b 14s ease-in-out infinite alternate;
}

@keyframes cell-zoom-a {
  0%   { transform: scale(1); }
  100% { transform: scale(1.15); }
}

@keyframes cell-zoom-b {
  0%   { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Apparition séquentielle des cellules */
.hero__mosaic-cell {
  opacity: 0;
  animation: cell-reveal .6s ease forwards;
}

.hero__mosaic-cell:nth-child(1)  { animation-delay: 0s; }
.hero__mosaic-cell:nth-child(2)  { animation-delay: .08s; }
.hero__mosaic-cell:nth-child(3)  { animation-delay: .16s; }
.hero__mosaic-cell:nth-child(4)  { animation-delay: .24s; }
.hero__mosaic-cell:nth-child(5)  { animation-delay: .32s; }
.hero__mosaic-cell:nth-child(6)  { animation-delay: .4s; }
.hero__mosaic-cell:nth-child(7)  { animation-delay: .48s; }
.hero__mosaic-cell:nth-child(8)  { animation-delay: .56s; }
.hero__mosaic-cell:nth-child(9)  { animation-delay: .64s; }
.hero__mosaic-cell:nth-child(10) { animation-delay: .72s; }
.hero__mosaic-cell:nth-child(11) { animation-delay: .8s; }
.hero__mosaic-cell:nth-child(12) { animation-delay: .88s; }

@keyframes cell-reveal {
  0%   { opacity: 0; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

/* ── Overlay — équilibre visibilité photos / lisibilité texte ── */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,15,44,.35) 0%,
    rgba(6,15,44,.25) 35%,
    rgba(6,15,44,.55) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) 0;
  max-width: 800px;
}

/* Hero partner icons row */
.hero__partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: heroFadeDown .8s var(--ease-out) .2s forwards;
}

.hero__partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  transition: transform .3s var(--ease-out);
}

.hero__partner-item:hover {
  transform: translateY(-4px);
}

.hero__partner-icon {
  width: auto;
  height: clamp(50px, 8vw, 70px);
  max-width: clamp(140px, 20vw, 220px);
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.35));
  transition: filter .3s ease;
  object-fit: contain;
  background: none;
  padding: 0;
  border-radius: var(--radius-sm);
}

/* Les logos SVG officiels (FDJ, PMU) ont un fond blanc intégré —
   on arrondit les coins et réduit l'opacité du blanc pour mieux s'intégrer */
img.hero__partner-icon {
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}

.hero__partner-icon--tabac {
  /* Carotte tabac — taller narrow shape */
  width: clamp(36px, 5vw, 50px);
  height: clamp(70px, 11vw, 100px);
  filter: drop-shadow(0 4px 16px rgba(226,0,26,.4));
}

.hero__partner-item:hover .hero__partner-icon {
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.4));
}

.hero__partner-label {
  font-size: clamp(.65rem, 1vw, .8rem);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.hero__logo {
  width: clamp(250px, 45vw, 420px);
  margin: 0 auto var(--space-lg);
  opacity: 0;
  animation: heroFadeDown .8s var(--ease-out) .2s forwards;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: heroFadeUp .8s var(--ease-out) .5s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.35;
  color: #fff;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: heroFadeUp .8s var(--ease-out) .7s forwards;
}

.hero__title strong {
  font-weight: 700;
  color: var(--color-gold-light);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: heroFadeUp .8s var(--ease-out) .9s forwards;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  animation: heroFadeUp .8s var(--ease-out) 1.1s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .875rem 2rem;
  font-size: .95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--duration) var(--ease-out);
}

.btn--primary {
  color: #fff;
  background: var(--color-accent);
  box-shadow: 0 4px 20px rgba(196, 30, 58, .3);
}

.btn--primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(196, 30, 58, .4);
}

.btn--outline {
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: heroFadeUp .8s var(--ease-out) 1.4s forwards;
}

.hero__scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .3s ease;
}

.hero__scroll a:hover { color: var(--color-gold); }

.hero__scroll svg {
  width: 20px;
  height: 20px;
  animation: bounce 2s infinite;
}

@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ---------- Section Spacing ---------- */
.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section--alt {
  background: var(--color-surface);
}

.section--dark {
  background: var(--color-primary);
  color: #fff;
}

.section--dark .section-title { color: #fff; }
.section--dark .section-subtitle { color: rgba(255,255,255,.65); }
.section--dark .section-label { color: var(--color-gold); }

/* ---------- Google Rating Bar ---------- */
.rating-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.rating-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-md) 0;
  flex-wrap: wrap;
}

.rating-bar__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--color-text-light);
}

.rating-bar__stars {
  display: flex;
  gap: 2px;
}

.rating-bar__stars svg {
  width: 18px;
  height: 18px;
  fill: #f5a623;
}

.rating-bar__score {
  font-weight: 700;
  color: var(--color-primary);
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}

.about__accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100px;
  height: 100px;
  background: var(--color-gold);
  opacity: .15;
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__text p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: var(--space-lg);
}

.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.about__highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 30, 58, .08);
  border-radius: var(--radius-sm);
}

.about__highlight-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
}

.about__highlight-text {
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}

.about__highlight-sub {
  font-size: .8rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  opacity: 0;
  transition: opacity var(--duration) ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-gold);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: .5rem;
}

.service-card__text {
  font-size: .9rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

.service-card__partners {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.service-card__partner-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .65rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 4px;
}

.partner--tabac {
  background: #c41e3a;
  color: #fff;
}

.partner--pmu {
  background: #006633;
  color: #fff;
}

.partner--fdj {
  background: #0055a4;
  color: #fff;
}

.partner--presse {
  background: #333;
  color: #fff;
}

/* ---------- Gallery ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,15,44,.5) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  z-index: 1;
  transform: translateY(8px);
  opacity: 0;
  transition: all .3s var(--ease-out);
}

.gallery__item:hover .gallery__caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery__item--wide {
  grid-column: span 2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 15, 44, .95);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  transform: scale(.9);
  transition: transform .4s var(--ease-out);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  transition: background .3s ease;
}

.lightbox__close:hover {
  background: rgba(255,255,255,.2);
}

/* ---------- Hours ---------- */
.hours__card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hours__header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  padding: var(--space-lg);
  text-align: center;
}

.hours__header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: .25rem;
}

.hours__header p {
  font-size: .85rem;
  color: var(--color-gold);
}

.hours__body {
  padding: var(--space-lg);
}

.hours__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.hours__row:last-child {
  border-bottom: none;
}

.hours__day {
  font-weight: 600;
  color: var(--color-primary);
}

.hours__time {
  font-size: .9rem;
  color: var(--color-text-light);
}

.hours__row--today {
  background: rgba(196, 30, 58, .04);
  margin: 0 -.5rem;
  padding-left: .5rem;
  padding-right: .5rem;
  border-radius: var(--radius-sm);
}

.hours__row--today .hours__day {
  color: var(--color-accent);
}

.hours__status {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .75rem;
  font-size: .8rem;
  font-weight: 600;
  border-radius: 50px;
}

.hours__status--open {
  background: rgba(16, 185, 129, .1);
  color: #059669;
}

.hours__status--closed {
  background: rgba(239, 68, 68, .1);
  color: #dc2626;
}

.hours__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%      { opacity: .4; }
}

.hours__note {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: rgba(212, 168, 67, .08);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .85rem;
  color: var(--color-text-light);
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
}

.contact__item-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-gold);
}

.contact__item-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: .25rem;
}

.contact__item-value {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
}

.contact__item-value a {
  color: var(--color-accent);
  transition: color .2s ease;
}

.contact__item-value a:hover {
  color: var(--color-accent-dark);
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
  background: var(--color-bg-alt);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,.5);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand-logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-md);
  opacity: .85;
}

.footer__brand-text {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 360px;
}

.footer__col-title {
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 1rem;
}

.footer__links li {
  margin-bottom: .5rem;
}

.footer__links a {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: color .2s ease;
}

.footer__links a:hover {
  color: var(--color-gold);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom a {
  color: rgba(255,255,255,.5);
  transition: color .2s ease;
}

.footer__bottom a:hover {
  color: var(--color-gold);
}

/* ---------- Legal Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,15,44,.85);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  padding: 2rem;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__content {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
}

.modal__close {
  float: right;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--color-text-light);
  transition: background .2s ease;
}

.modal__close:hover {
  background: var(--color-bg-alt);
}

.modal__content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.modal__content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: var(--space-lg);
  margin-bottom: .5rem;
}

.modal__content p {
  font-size: .9rem;
  color: var(--color-text-light);
  margin-bottom: .75rem;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-gold);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s var(--ease-out);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about__image { max-width: 480px; }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta--desktop { display: none; }
  .nav__toggle { display: flex; }

  .nav__links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-primary);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav__links.mobile-open .nav__link {
    font-size: 1.25rem;
    color: rgba(255,255,255,.8);
  }

  .nav__links.mobile-open .nav__cta {
    font-size: 1.1rem;
    padding: .75rem 2rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hours__card {
    margin: 0;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .about__highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .hero__partners {
    gap: 1.25rem;
  }

  .hero__partner-label {
    font-size: .6rem;
  }

  .hero__badges {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .rating-bar__inner {
    flex-direction: column;
    gap: .75rem;
  }
}

/* ---------- Print ---------- */
@media print {
  .nav, .hero__scroll, .back-to-top, .lightbox { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  .section { padding: 2rem 0; }
  body { color: #000; background: #fff; }
}
