:root {
  --bg: #fbf8fa;
  --bg-alt: #ffffff;
  --ink: #2a2423;
  --muted: #625451;
  --gold: #a98b55;
  --rose: #eededc;
  --line: rgba(42, 36, 35, 0.12);
  --shadow: 0 20px 50px rgba(52, 39, 30, 0.1);
  --radius: 8px;
  --container: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--bg) 0%, #fff 48%, #f8eef2 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(166, 120, 68, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 0.65rem 0.9rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.demo-banner {
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 247, 243, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 6.5rem 0 5.2rem;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(238, 222, 220, 0.6), rgba(255, 255, 255, 0.34) 52%, rgba(169, 139, 85, 0.1));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.eyebrow {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8d7a52;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.06;
}

h1 {
  margin-top: 0.9rem;
  font-size: clamp(2.2rem, 5.6vw, 4.8rem);
}

.hero-text {
  margin: 1.1rem auto 0;
  max-width: 44rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.9vw, 1.24rem);
}

.hero-actions,
.contact-actions {
  margin-top: 1.7rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(120deg, #b69862, #9f8250);
  color: #fff;
  box-shadow: 0 12px 28px rgba(159, 130, 80, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  color: var(--ink);
}

.btn:hover,
.site-nav a:hover,
.brand:hover {
  transform: translateY(-1px);
}

.hero-meta {
  margin-top: 1.4rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.hero-meta li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.42rem 0.85rem;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.74);
}

.section {
  padding: 5rem 0;
}

.reassurance-grid,
.contact-grid,
.reasons-grid {
  display: grid;
  gap: 1rem;
}

.reassurance-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.reason-card,
.contact-card,
.contact-note,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}

.card,
.contact-card,
.contact-note {
  padding: 1.5rem;
}

.card-label {
  font-family: "Parisienne", cursive;
  color: #9f8250;
  font-size: 1.55rem;
}

.card h2,
.section-heading h2,
.contact-card h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.card p,
.card li,
.contact-card p,
.contact-note p,
.reason-card p,
.step p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.boutique-card ul {
  list-style: none;
}

.boutique-card a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-heading {
  text-align: center;
  max-width: 62rem;
  margin: 0 auto 1.6rem;
}

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

.step {
  padding: 1.4rem;
}

.step-index {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #b69862, #8f7547);
}

.step h3,
.reason-card h3,
.contact-note h3 {
  margin-top: 0.8rem;
  font-size: 1.35rem;
}

.reasons-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reason-card {
  padding: 1.3rem;
  background: linear-gradient(165deg, #fff, #f7f1e8);
}

.small {
  font-size: 0.82rem;
}

.booking-panel {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}

.panel-title {
  font-weight: 800;
  color: var(--ink);
}

.booking-panel a {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  background: #fff;
  text-decoration: none;
  font-weight: 700;
}

.booking-panel a::after {
  content: "Choisir";
  color: #9f8250;
  font-size: 0.86rem;
}

@media (max-width: 920px) {
  .timeline,
  .reasons-grid,
  .reassurance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5rem;
  }

  h1 {
    line-height: 1.12;
  }

  .site-nav {
    display: none;
  }
}
