/* Bulle d'Amour — Love Room La Roche-sur-Yon
   Charte sombre alignée sur le site actuel (noir + or) */
:root {
  --bg: #0b1014;
  --bg-alt: #12171c;
  --ink: #f3eee6;
  --ink-soft: #c2c2c2;
  --muted: #9a9590;
  --wine: #c0925f;
  --wine-deep: #a67a48;
  --rose: #c0925f;
  --champagne: #e2c48e;
  --champagne-soft: #f8d189;
  --surface: #161b21;
  --line: rgba(226, 196, 142, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 4px;
  --radius-lg: 12px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse at top, rgba(192, 146, 95, 0.08), transparent 40%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}

/* ——— Typography ——— */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.85rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.25rem);
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}

h2 em,
h1 em,
.italic {
  font-style: italic;
  color: var(--champagne-soft);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 38rem;
}

.section-head {
  margin-bottom: 2.75rem;
  max-width: 40rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head.center .lead {
  margin-inline: auto;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  transition:
    transform 0.35s var(--ease),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #f0d7a4 0%, var(--wine) 55%, #a67a48 100%);
  color: #0b1014;
  box-shadow: 0 10px 30px rgba(192, 146, 95, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--champagne-soft) 0%, #e2c48e 100%);
  color: #0b1014;
  box-shadow: 0 14px 36px rgba(248, 209, 137, 0.35);
}

.btn-glow {
  position: relative;
}

.btn-glow::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(248, 209, 137, 0.55), transparent);
  opacity: 0;
  z-index: -1;
  filter: blur(10px);
  transition: opacity 0.35s ease;
}

.btn-glow:hover::after {
  opacity: 1;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(248, 209, 137, 0.7);
  color: var(--champagne-soft);
}

.btn-outline {
  border: 1px solid var(--champagne);
  color: var(--champagne-soft);
}

.btn-outline:hover {
  background: var(--champagne);
  color: #0b1014;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.nav .btn {
  min-height: 2.55rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition:
    transform 0.35s var(--ease),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 16, 20, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav a,
.site-header.is-scrolled .nav-toggle {
  color: var(--ink);
}

.site-header.is-scrolled .nav a:not(.btn):hover,
.site-header.is-scrolled .nav a:not(.btn)[aria-current="page"] {
  color: var(--champagne-soft);
}

.site-header.is-scrolled .nav a.btn,
.site-header.is-scrolled .nav a.btn:hover {
  color: #0b1014;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
  min-width: 0;
  color: #fff;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 58px;
  display: block;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}

.brand:hover img {
  transform: scale(1.04);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: inherit;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.site-header.is-scrolled .brand img {
  height: 50px;
}

.site-header.is-scrolled .brand-tagline {
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.nav a:not(.btn) {
  transition: color 0.25s ease;
}

.nav a:not(.btn):hover,
.nav a:not(.btn)[aria-current="page"] {
  color: var(--champagne-soft);
}

.nav a.btn,
.nav a.btn:hover,
.nav a.btn[aria-current="page"] {
  color: #0b1014;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  margin: 0.3rem auto;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 22s var(--ease) forwards;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 10, 14, 0.82) 0%, rgba(8, 10, 14, 0.45) 42%, rgba(8, 10, 14, 0.2) 68%, rgba(8, 10, 14, 0.55) 100%),
    linear-gradient(180deg, rgba(8, 10, 14, 0.35) 0%, transparent 28%, rgba(8, 10, 14, 0.88) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(192, 146, 95, 0.22), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: calc(var(--header-h) + 5.5rem) 0 6rem;
  max-width: var(--max);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne-soft);
  border: 1px solid rgba(248, 209, 137, 0.28);
  border-radius: 999px;
  background: rgba(11, 16, 20, 0.35);
  backdrop-filter: blur(10px);
}

.hero-kicker::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--champagne-soft);
  box-shadow: 0 0 12px rgba(248, 209, 137, 0.8);
}

.hero-brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne-soft);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 1.08;
  margin: 0 0 1.5rem;
}

.hero h1 em {
  color: var(--champagne-soft);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.84);
  max-width: 34rem;
  margin: 0 0 0.35rem;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.7;
}

.hero .btn-group {
  margin-top: 2.25rem;
  margin-bottom: 0.25rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.75rem;
}

.hero-meta div {
  min-width: 7.5rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-meta div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.4rem;
  color: var(--champagne-soft);
}

.hero-meta div span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(transparent, var(--champagne-soft));
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.reveal-hero {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 0.9s var(--ease) forwards;
}

.reveal-hero-delay-1 { animation-delay: 0.12s; }
.reveal-hero-delay-2 { animation-delay: 0.22s; }
.reveal-hero-delay-3 { animation-delay: 0.34s; }
.reveal-hero-delay-4 { animation-delay: 0.46s; }
.reveal-hero-delay-5 { animation-delay: 0.58s; }

@keyframes heroZoom {
  to { transform: scale(1); }
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ——— Sections ——— */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-alt {
  background:
    radial-gradient(ellipse at top left, rgba(192, 146, 95, 0.08), transparent 45%),
    var(--bg-alt);
}

.section-dark {
  background:
    radial-gradient(ellipse at top right, rgba(192, 146, 95, 0.18), transparent 45%),
    linear-gradient(160deg, #080c10 0%, #141920 100%);
  color: var(--ink);
}

.section-dark .eyebrow {
  color: var(--champagne);
}

.section-dark h2 em {
  color: var(--champagne-soft);
}

.section-dark .lead,
.section-dark p {
  color: var(--ink-soft);
}

/* ——— Intro split ——— */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split-visual {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.85rem;
  min-height: 30rem;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.8s var(--ease), filter 0.5s ease;
}

.split-visual:hover img {
  filter: brightness(1.05);
}

.split-visual img:first-child {
  grid-row: 1 / 3;
  min-height: 30rem;
}

.split-visual img:nth-child(2) {
  min-height: 14rem;
  margin-top: 1.5rem;
}

.split-visual img:nth-child(3) {
  min-height: 13rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.25rem;
  padding-top: 0;
  border-top: 0;
}

.trust-strip > div {
  padding: 1rem 0.9rem;
  border-radius: var(--radius-lg);
  background: rgba(226, 196, 142, 0.06);
  border: 1px solid var(--line);
}

.trust-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--champagne-soft);
  line-height: 1;
}

.trust-strip span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ——— Features ——— */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature {
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(226, 196, 142, 0.05), transparent 70%);
  transition: border-color 0.3s ease, transform 0.35s var(--ease), background 0.3s ease, box-shadow 0.35s ease;
}

.feature:hover {
  border-color: rgba(248, 209, 137, 0.45);
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(226, 196, 142, 0.1), transparent 75%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.feature-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1.1rem;
  color: var(--champagne);
}

.feature h3 {
  margin-bottom: 0.45rem;
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ——— Spaces ——— */
.spaces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.space {
  position: relative;
  min-height: 26rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  isolation: isolate;
}

.space img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.space:hover img {
  transform: scale(1.08);
}

.space::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 25%, rgba(8, 10, 14, 0.92) 100%),
    linear-gradient(90deg, rgba(192, 146, 95, 0.15), transparent 40%);
}

.space-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.85rem;
}

.space-body h3 {
  font-size: 1.85rem;
}

.space-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* ——— Gallery ——— */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}

.gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s ease;
}

.gallery figure:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.gallery figure:nth-child(1) {
  grid-column: span 7;
  min-height: 24rem;
}

.gallery figure:nth-child(2) {
  grid-column: span 5;
  min-height: 24rem;
}

.gallery figure:nth-child(3),
.gallery figure:nth-child(4),
.gallery figure:nth-child(5) {
  grid-column: span 4;
  min-height: 17rem;
}

.gallery figure:nth-child(6) {
  grid-column: span 8;
  min-height: 19rem;
}

.gallery figure:nth-child(7) {
  grid-column: span 4;
  min-height: 19rem;
}

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.15rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery figure:hover figcaption {
  opacity: 1;
  transform: none;
}

/* ——— Services ——— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}

.service {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.service-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--champagne);
  line-height: 1;
}

.service h3 {
  margin-bottom: 0.35rem;
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.services-layout img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ——— Location ——— */
.location-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 28rem;
}

.location-band img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  background:
    linear-gradient(135deg, #161b20, #0b1014);
  color: #fff;
}

.location-copy .eyebrow {
  color: var(--champagne-soft);
}

.location-copy h2 em {
  color: var(--champagne-soft);
}

.location-copy p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 30rem;
}

.location-points {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.location-points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.location-points li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--champagne);
  flex-shrink: 0;
}

/* ——— Bon cadeau ——— */
.gift-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.gift-layout img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gift-copy .lead {
  max-width: 34rem;
}

.gift-points {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  list-style: none;
}

.gift-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.45;
}

.gift-points li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--champagne);
  flex-shrink: 0;
}

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

.gift-step {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(226, 196, 142, 0.08), transparent 80%);
}

.gift-step__num {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 600;
}

.gift-step h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.gift-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.gift-includes {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.gift-includes li {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
}

.gift-includes strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 46rem;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
}

.faq-item button span {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  position: relative;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--champagne);
  transition: transform 0.3s ease;
}

.faq-item button span::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-item button span::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item.is-open button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel > div {
  overflow: hidden;
}

.faq-panel p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

/* ——— CTA ——— */
.cta-block {
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center, rgba(226, 196, 142, 0.22), transparent 55%),
    linear-gradient(160deg, #0b1014, #1a1510);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/08-bulle-damour-vendee-loveroom.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}

.cta-block > * {
  position: relative;
  z-index: 1;
}

.cta-block .lead {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.8);
}

.cta-block .btn-group {
  justify-content: center;
}

.cta-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ——— Guide Vendée (tourisme) ——— */
.page-guide .site-header {
  background: rgba(11, 16, 20, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.page-guide .site-header .nav a,
.page-guide .site-header .nav-toggle {
  color: rgba(255, 255, 255, 0.88);
}

.page-guide .site-header .nav a:not(.btn):hover,
.page-guide .site-header .nav a:not(.btn)[aria-current="page"] {
  color: var(--champagne-soft);
}

.page-guide .site-header .nav a.btn,
.page-guide .site-header .nav a.btn:hover {
  color: #0b1014;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.breadcrumb-dark {
  color: var(--muted);
}

.breadcrumb-dark a:hover {
  color: var(--wine);
}

.breadcrumb span[aria-hidden="true"] {
  opacity: 0.5;
}

/* Guide hero — plein écran immersif */
.guide-hero {
  position: relative;
  min-height: min(78svh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.guide-hero-media {
  position: absolute;
  inset: 0;
}

.guide-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 20s var(--ease) forwards;
}

.guide-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.55) 48%, rgba(8, 10, 14, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 10, 14, 0.35) 0%, transparent 35%, rgba(8, 10, 14, 0.82) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(192, 146, 95, 0.2), transparent 50%);
}

.guide-hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 4rem) 0 3.75rem;
  max-width: 40rem;
}

.guide-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.65);
}

.guide-hero .breadcrumb a:hover {
  color: var(--champagne-soft);
}

.guide-hero h1 {
  font-size: clamp(3rem, 7.5vw, 5.2rem);
  line-height: 0.98;
  margin-bottom: 1rem;
  color: #fff;
  text-wrap: balance;
}

.guide-hero h1 em {
  color: var(--champagne-soft);
}

.guide-hero .lead {
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.84);
  max-width: 32rem;
  font-weight: 300;
}

.guide-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-top: 0;
  border-top: 0;
}

.guide-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.guide-toc a::after {
  display: none;
}

.guide-toc a:hover {
  color: var(--champagne-soft);
  border-color: rgba(248, 209, 137, 0.55);
  background: rgba(248, 209, 137, 0.1);
}

.territories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.territory {
  padding: 1.75rem 1.35rem 1.5rem;
  background: var(--surface);
  border-top: 2px solid var(--wine);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.3s ease;
}

.territory:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-top-color: var(--champagne-soft);
}

.territory-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 1rem;
}

.territory h3 {
  margin-bottom: 0.5rem;
}

.territory p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.territory-time {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 500;
}

.escapade {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 4.5rem;
}

.escapade:last-child {
  margin-bottom: 0;
}

.escapade--image-left .escapade-media {
  order: -1;
}

.escapade-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 22rem;
}

.escapade-media img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.escapade:hover .escapade-media img {
  transform: scale(1.04);
}

.escapade-copy {
  max-width: 28rem;
}

.escapade-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.escapade-copy h3 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 0.85rem;
}

.escapade-copy p {
  color: var(--ink-soft);
  margin: 0 0 1.35rem;
}

.escapade-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.escapade-meta li {
  font-size: 0.85rem;
  color: var(--muted);
  position: relative;
  padding-left: 0.9rem;
}

.escapade-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--champagne);
}

.guide-more {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.guide-more-item {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.guide-more-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.guide-more-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.guide-more-item span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 500;
}

.conseils-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.conseils-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
}

.conseil {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.conseil h3 {
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.conseil p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.guide-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.guide-cta-copy {
  padding: clamp(2.25rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide-cta-copy p {
  color: var(--ink-soft);
  max-width: 30rem;
}

.guide-cta-media {
  min-height: 22rem;
  position: relative;
}

.guide-cta-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-credits {
  margin: 1.5rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.extras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.extra {
  padding: 1.6rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(226, 196, 142, 0.07), transparent 75%);
  transition: transform 0.35s var(--ease), border-color 0.3s ease, box-shadow 0.35s ease;
}

.extra:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 209, 137, 0.4);
  box-shadow: var(--shadow);
}

.extra-tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
}

.extra h3 {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.extra p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.extras-note {
  margin: 2rem auto 0;
  max-width: 36rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

/* ——— Footer ——— */
.site-footer {
  background: #0b1014;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  margin-bottom: 1rem;
  line-height: 0;
}

.footer-brand img {
  width: auto;
  height: 88px;
  display: block;
}

.footer-grid h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.45rem;
  transition: color 0.25s ease;
}

.footer-grid a:hover {
  color: var(--champagne-soft);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.footer-social a:hover {
  color: var(--champagne-soft);
  border-color: var(--champagne-soft);
  background: rgba(255, 255, 255, 0.04);
}

.footer-social svg {
  display: block;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
}

.footer-bottom nav {
  display: flex;
  gap: 1.25rem;
}

/* ——— Sticky mobile CTA ——— */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(11, 16, 20, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
}

.sticky-cta .btn {
  width: 100%;
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ——— Legal ——— */
.legal-content {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  max-width: 44rem;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
}

/* ——— Skip link ——— */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--champagne);
  color: #0b1014;
  padding: 0.75rem 1rem;
  z-index: 200;
}

.skip-link:focus {
  top: 1rem;
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .split,
  .services-layout,
  .location-band,
  .gift-layout,
  .guide-hero,
  .escapade,
  .conseils-layout,
  .guide-cta {
    grid-template-columns: 1fr;
  }

  .split-visual {
    min-height: auto;
  }

  .split-visual img:first-child {
    min-height: 18rem;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .space {
    min-height: 18rem;
  }

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

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

  .territories,
  .guide-more,
  .extras,
  .gift-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-band img,
  .services-layout img,
  .gift-layout img {
    min-height: 20rem;
  }

  .guide-hero {
    min-height: min(70svh, 620px);
  }

  .guide-hero-content {
    padding-bottom: 3rem;
    max-width: none;
  }

  .escapade--image-left .escapade-media,
  .escapade--image-right .escapade-media {
    order: -1;
  }

  .escapade-copy {
    max-width: none;
  }

  .guide-cta-media {
    min-height: 16rem;
    order: -1;
  }

  .guide-cta-media img {
    position: relative;
    min-height: 16rem;
  }
}

@media (max-width: 1100px) {
  .brand-tagline {
    white-space: normal;
    max-width: 11rem;
  }
}

@media (max-width: 720px) {
  .brand img {
    height: 52px;
  }

  .brand {
    gap: 0.65rem;
    max-width: calc(100% - 3.5rem);
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-tagline {
    font-size: 0.65rem;
    max-width: 9.5rem;
    line-height: 1.25;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(11, 16, 20, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    color: #fff;
    font-size: 1.35rem;
    font-family: var(--font-display);
  }

  .nav a.btn,
  .nav a.btn:hover,
  .site-header.is-scrolled .nav a.btn,
  .page-guide .nav a.btn,
  .page-guide .site-header .nav a.btn {
    color: #0b1014;
  }

  .site-header.is-scrolled .nav a {
    color: #fff;
  }

  .features,
  .territories,
  .guide-more,
  .extras,
  .gift-steps,
  .conseils-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .page-guide .nav a {
    color: #fff;
  }

  .page-guide .site-header .nav a {
    color: #fff;
  }

  .gallery figure:nth-child(n) {
    grid-column: span 12;
    min-height: 14rem;
  }

  .hero-content {
    padding: calc(var(--header-h) + 4rem) 0 7rem;
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 10vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
  }

  .hero-brand {
    margin-bottom: 0.7rem;
    letter-spacing: 0.14em;
  }

  .hero-kicker {
    margin-bottom: 1.25rem;
  }

  .hero .btn-group {
    margin-top: 1.85rem;
  }

  .hero-meta {
    margin-top: 2.25rem;
    gap: 0.65rem;
  }

  .hero-meta div {
    min-width: calc(50% - 0.35rem);
    flex: 1 1 calc(50% - 0.35rem);
  }

  .hero-scroll {
    right: 1rem;
    bottom: 5.5rem;
  }

  .sticky-cta {
    display: block;
  }

  body.has-sticky-cta {
    padding-bottom: 5rem;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-hero {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Page extras (détail) ---------- */

.extras-detail {
  display: grid;
  gap: 1.25rem;
  max-width: 46rem;
  margin: 0 auto;
}

.extra-detail {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(226, 196, 142, 0.07), transparent 80%);
}

.extra-detail h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
}

.extra-detail > p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.extra-detail ul {
  margin: 0;
  padding: 0 0 0 1.15rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.extra-detail li + li {
  margin-top: 0.35rem;
}

/* —— Contact —— */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-aside {
  padding: 1.75rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
}

.contact-aside h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.contact-aside > p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.contact-meta {
  display: grid;
  gap: 1.15rem;
  margin: 0;
}

.contact-meta dt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-meta dd {
  margin: 0;
  color: var(--ink-soft);
}

.contact-meta a:hover {
  color: var(--champagne-soft);
  text-decoration: underline;
}

.contact-main {
  display: grid;
  gap: 1.5rem;
}

.booking-push {
  padding: 1.6rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 196, 142, 0.28);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(192, 146, 95, 0.22), transparent 55%),
    linear-gradient(165deg, #161b21 0%, #0f1419 100%);
}

.booking-push h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0 0 0.55rem;
}

.booking-push p:not(.eyebrow) {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
}

.contact-form-card {
  padding: 1.75rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
}

.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
}

.contact-form-lead {
  margin: 0 0 1.35rem;
  color: var(--muted);
}

.form.contact-form {
  display: grid;
  gap: 1rem;
}

.form.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.form.contact-form input,
.form.contact-form textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--radius);
}

.form.contact-form input:focus,
.form.contact-form textarea:focus {
  outline: 2px solid rgba(226, 196, 142, 0.45);
  border-color: var(--champagne);
}

.contact-flash.form-success,
.form-success.contact-flash {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: rgba(120, 160, 120, 0.12);
  border: 1px solid rgba(120, 160, 120, 0.35);
  color: #cfe3cf;
}

.contact-flash.form-errors,
.form-errors.contact-flash {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: rgba(180, 80, 70, 0.12);
  border: 1px solid rgba(180, 80, 70, 0.35);
  color: #f0c4c0;
}

.contact-flash.form-errors ul {
  margin: 0;
  padding-left: 1.1rem;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
