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

:root {
  --bg: #faf8f5;
  --white: #ffffff;
  --accent: #c4956a;
  --accent-dk: #9e6b3e;
  --text: #3a2e28;
  --text-2: #7a6558;
  --border: #e8ddd3;
  --radius-card: 10px;
  --radius-btn: 30px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ─── Typography helpers ───────────────────────────────── */
.serif {
  font-family: "Cormorant Garamond", serif;
}

.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ─── Layout helpers ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

.section-header {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

/* ─── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition:
    opacity 0.2s,
    transform 0.15s;
  text-decoration: none;
}
.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── Header ───────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--border);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

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

nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--text);
}

.header-cta {
  padding: 9px 22px;
  font-size: 13px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 0.5px solid var(--border);
  background: var(--bg);
  padding: 8px 24px 20px;
}
.mobile-nav a {
  font-size: 15px;
  color: var(--text-2);
  padding: 12px 0;
  border-bottom: 0.5px solid var(--border);
  display: block;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav.open {
  display: flex;
}

/* ─── Hero ─────────────────────────────────────────────── */
#hero {
  padding-top: 160px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  margin-bottom: 20px;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 8px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-dk);
}

.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-img-wrap {
  aspect-ratio: 4/5;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-2);
  background: linear-gradient(145deg, #ede5dc 0%, #f5efe8 60%, #ede5dc 100%);
}

.hero-img-placeholder svg {
  opacity: 0.35;
}

.hero-img-placeholder span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.5;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 4px 24px rgba(58, 46, 40, 0.06);
}

.hero-badge-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}

.hero-badge-txt {
  font-size: 11px;
  color: var(--text-2);
  margin-top: 4px;
}

/* ─── Divider ──────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 0;
}

/* ─── Prestations ──────────────────────────────────────── */
#prestations {
  background: var(--white);
}

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.presta-card {
  background: var(--white);
  padding: 32px 28px;
  position: relative;
  transition: background 0.2s;
}
.presta-card:hover {
  background: var(--bg);
}

.presta-icon {
  font-size: 22px;
  margin-bottom: 14px;
  line-height: 1;
}

.presta-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.presta-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 18px;
  min-height: 36px;
}

.presta-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--accent-dk);
}

.presta-price sup {
  font-size: 14px;
  vertical-align: super;
}

.prestations-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 20px;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.prestations-note svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── Galerie ──────────────────────────────────────────── */
#galerie {
  background: var(--bg);
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3/4;
}

.galerie-img {
  aspect-ratio: 3/4;
  background: #ede5dc;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-2);
  transition: transform 0.35s ease;
}
.galerie-item:hover .galerie-img {
  transform: scale(1.02);
}

.galerie-item:hover .galerie-img-real {
  transform: scale(1.02);
}

.galerie-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.galerie-img svg {
  opacity: 0.3;
}

.galerie-caption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

.galerie-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-2);
  border-bottom: 0.5px solid var(--border);
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.galerie-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ─── Tarifs ───────────────────────────────────────────── */
#tarifs {
  background: var(--white);
}

.tarifs-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.tarifs-table {
  width: 100%;
  border-collapse: collapse;
}

.tarifs-table thead tr {
  border-bottom: 1px solid var(--border);
}

.tarifs-table th {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-2);
  padding: 0 0 14px;
  text-align: left;
}

.tarifs-table th:last-child {
  text-align: right;
}

.tarifs-table td {
  padding: 18px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 14px;
  color: var(--text);
  vertical-align: top;
}

.tarifs-table td:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 500;
  padding-right: 16px;
}

.tarifs-table td:last-child {
  text-align: right;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--accent-dk);
  white-space: nowrap;
}

.tarifs-table .sub {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 2px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

/* Infos side */
.tarifs-infos {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-block {
  padding: 24px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg);
}

.info-block-title {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 14px;
}

.info-block p,
.info-block li {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.info-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-block ul li::before {
  content: "—";
  color: var(--accent);
  margin-right: 8px;
  font-size: 12px;
}

.payment-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  font-size: 12px;
  padding: 5px 14px;
  border: 0.5px solid var(--border);
  border-radius: 20px;
  color: var(--text-2);
  background: var(--white);
}

/* ─── Contact / Réservation ────────────────────────────── */
#contact {
  background: var(--bg);
  text-align: center;
}

.contact-inner {
  max-width: 580px;
  margin: 0 auto;
}

.contact-inner .section-header {
  align-items: center;
}

.contact-inner .section-title {
  font-size: 44px;
}

.contact-sub {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 48px;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-whatsapp {
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  padding: 16px 40px;
}

.contact-links {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}

.contact-links a {
  font-size: 13px;
  color: var(--text-2);
  border-bottom: 0.5px solid var(--border);
  padding-bottom: 1px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.contact-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.contact-reply {
  margin-top: 28px;
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.04em;
  opacity: 0.8;
}

/* ─── Footer ───────────────────────────────────────────── */
footer {
  background: var(--white);
  border-top: 0.5px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-2);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
}

/* ─── Scroll fade-in ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .prestations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tarifs-wrap {
    grid-template-columns: 1fr;
  }
  .tarifs-infos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section {
    padding: 64px 0;
  }
  .section-title {
    font-size: 28px;
  }
  .prestations-grid {
    grid-template-columns: 1fr;
  }
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  nav,
  .header-cta {
    display: none !important;
  }
  .nav-toggle {
    display: flex;
  }
  .contact-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}
