/* ===== ICE PARIS — design tokens ===== */
:root {
  --bg: #0a0d12;
  --bg-alt: #0f141b;
  --surface: #141a23;
  --surface-2: #1b232e;
  --border: #26313f;
  --text: #f4f6f8;
  --text-dim: #9aa7b5;
  --ice: #4fd6ff;
  --ice-soft: #2b8fb8;
  --ember: #b98cf5;
  --ember-soft: #8c5fd6;
  --radius: 14px;
  --container: 1160px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0 0 .5em; line-height: 1.1; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--ice), var(--ice-soft));
  color: #071019;
}
.btn-outline {
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--ice); color: var(--ice); }
.btn-ghost {
  color: var(--text-dim);
  padding: 12px 16px;
}
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 13, 18, .75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 13, 18, .92);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text);
}
.logo span { color: var(--ice); }

.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--ice); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  text-align: center;
}
.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 620px;
  background:
    radial-gradient(circle at 30% 20%, rgba(79, 214, 255, .18), transparent 55%),
    radial-gradient(circle at 75% 10%, rgba(185, 140, 245, .16), transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 780px; margin: 0 auto; }
.eyebrow, .section-eyebrow {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ice);
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: .4em;
}
.hero-sub {
  color: var(--text-dim);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat strong { font-family: var(--font-display); font-size: 1.8rem; color: var(--text); }
.stat-of5 { font-size: 1rem; color: var(--text-dim); }
.stat span { font-size: .82rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-lead {
  color: var(--text-dim);
  max-width: 640px;
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.placeholder-note {
  font-size: .85rem;
  color: var(--ember);
  font-style: italic;
}
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }

/* Ambiance / gallery */
.ambiance { background: var(--bg-alt); }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-tile {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: .82rem;
  text-align: center;
  padding: 12px;
  overflow: hidden;
}
.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tile-fallback { display: none; position: relative; }
.tile-1 { background: linear-gradient(160deg, #16202c, #0d1219); }
.tile-2 { background: linear-gradient(160deg, #251a33, #0d1219); }
.tile-3 { background: linear-gradient(160deg, #1e1830, #0d1219); }
.tile-4 { background: linear-gradient(160deg, #14202c, #0d1219); }
.gallery-note { margin-top: 20px; color: var(--text-dim); font-size: .92rem; }
.gallery-note a { color: var(--ice); font-weight: 600; }

/* Carte */
.carte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.carte-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.carte-card h3 {
  font-size: 1.15rem;
  color: var(--ember);
}
.carte-card li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .96rem;
}
.carte-card li:last-child { border-bottom: none; }
.price-note { margin-top: 28px; color: var(--text-dim); }
.price-note strong { color: var(--text); }

/* Avis */
.avis { background: var(--bg-alt); text-align: center; }
.avis-inner { max-width: 620px; margin: 0 auto; }
.stars { color: var(--ember); font-size: 1.6rem; letter-spacing: .1em; margin-bottom: 18px; }
.avis .section-lead { margin-left: auto; margin-right: auto; }

/* Horaires + contact */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
}
.hours-table caption { caption-side: top; text-align: left; padding: 14px 20px 0; }
.hours-table th, .hours-table td {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  text-align: left;
  font-weight: 500;
}
.hours-table th { color: var(--text-dim); font-weight: 600; }

.contact-block { margin-top: 36px; }
.contact-block h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-dim);
  margin-top: 20px;
}
.contact-block p { margin: 4px 0 0; }
.contact-block a[href^="tel:"] { color: var(--ice); font-weight: 700; font-size: 1.1rem; }
.contact-cta { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 420px;
  height: 100%;
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg-alt);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-inner p { margin: 6px 0 0; color: var(--text-dim); font-size: .9rem; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); font-size: .9rem; font-weight: 600; }
.footer-links a:hover { color: var(--ice); }
.footer-copy { width: 100%; text-align: center; font-size: .8rem; opacity: .6; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .map-wrap { min-height: 320px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .carte-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-ghost { display: none; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    gap: 18px;
  }
  .hero { padding: 90px 0 70px; }
  .hero-stats { gap: 28px; }
  .section { padding: 72px 0; }
  .footer-inner { text-align: center; justify-content: center; }
}
