:root {
  --bg: #050507;
  --fg: #f7f3ee;
  --accent: #e6c26b;
  --muted: #b0b0b3;
  --card: #17171b;
  --radius: 18px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: radial-gradient(circle at top, #15151c 0, #050507 60%);
  color: var(--fg);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

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

.page {
  max-width: 1040px;
  padding: 24px 20px 40px;
  margin: 0 auto;
}

/* Sections */

.section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-heading {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 620px;
}

/* Présentation + image */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 28px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #32d36b;
}

.hero-title {
  font-size: clamp(30px, 4vw, 38px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-text {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 520px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  font-size: 13px;
  color: var(--muted);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}

.hero-meta b {
  font-weight: 600;
  color: var(--fg);
}

/* Colonne de droite : photo seule, réduite ~30% */

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.6);
  max-width: 240px;      /* ~30% plus petit que les 340px précédents */
  margin-left: auto;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  border: 1px solid rgba(230,194,107,0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--accent);
}

.service-note {
  font-size: 13px;
  color: var(--muted);
}

/* Réservation */

.booking {
  background: radial-gradient(circle at top left, rgba(230,194,107,0.16), transparent 55%),
              #111118;
  border-radius: 22px;
  padding: 22px 20px;
  border: 1px solid rgba(230,194,107,0.4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.booking-text h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.booking-text p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 420px;
}

.booking-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

.booking-steps span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.booking-steps b {
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(230,194,107,0.23);
  color: var(--fg);
}

/* Bouton principal */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #111;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
  min-height: 44px;
}

.btn-primary span {
  font-size: 18px;
  transform: translateY(1px);
}

/* Footer */

footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: space-between;
  margin-top: 16px;
}

.footer-left,
.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: ever;
}

.footer-link {
  color: var(--muted);
}

.footer-link:hover {
  color: var(--fg);
}

/* Responsive */

@media (max-width: 840px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-right {
    align-items: center;
  }
  .hero-photo {
    max-width: 220px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .booking {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .page {
    padding: 16px 14px 28px;
  }
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-title {
    font-size: 26px;
  }
  .hero-text {
    font-size: 15px;
  }
  .section-heading {
    font-size: 24px;
  }
  .section {
    margin-bottom: 28px;
  }
}
