/* ================================
   RESET & BASE
   ================================ */

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

/* ================================
   VARIABLES
   ================================ */

:root {
  --beige: #f5f0e8;
  --beige-dark: #e8e0d0;
  --sage: #6b8f71;
  --sage-light: #d4e6d6;
  --sage-dark: #4a6b50;
  --terra: #c17a4a;
  --terra-light: #f2e6d9;
  --cream: #faf7f2;
  --brown: #4a3728;
  --text: #2c2416;
  --text-muted: #7a6a58;
  --ff-serif: "Playfair Display", Georgia, serif;
  --ff-sans: "Lato", Helvetica, sans-serif;
}

/* ================================
   BASE
   ================================ */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-sans);
  background-color: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

/* ================================
   UTILITAIRES COMMUNS
   ================================ */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
}

section {
  padding: 100px 0;
}

.section-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--sage);
}

.section-body {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 580px;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--terra);
  margin-bottom: 32px;
}

/* ================================
   ANIMATIONS AU SCROLL
   ================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ================================
   HEADER
   ================================ */

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition:
    background 0.4s ease,
    padding 0.3s ease,
    box-shadow 0.4s ease;
}

#site-header.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  padding: 14px 48px;
}

.header-logo {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color 0.4s;
}

#site-header.scrolled .header-logo {
  color: var(--brown);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.9;
  transition:
    opacity 0.2s,
    color 0.4s;
}

#site-header.scrolled .header-nav a {
  color: var(--text-muted);
}

.header-nav a:hover {
  opacity: 1;
}

.btn-reserver {
  padding: 10px 26px;
  background: var(--terra);
  color: var(--cream) !important;
  border-radius: 2px;
  font-weight: 700;
  opacity: 1 !important;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-reserver:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

/* ================================
   HERO
   ================================ */

#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 0 24px;
  animation: heroFadeUp 1.1s ease both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: #e8a87c;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  letter-spacing: 0.06em;
}

.hero-cta {
  display: inline-block;
  padding: 16px 44px;
  background: var(--terra);
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  transition:
    background 0.25s,
    transform 0.2s;
}

.hero-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

.hero-badges {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.hero-badges img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.5);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.7);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* ================================
   LE GITE
   ================================ */

#le-gite {
  background: var(--cream);
}

.gite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.gite-photo {
  position: relative;
}

.gite-photo-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
}

.gite-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gite-photo-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 55%;
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
  border: 3px solid var(--cream);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.gite-photo-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gite-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.spec-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--beige);
  border-left: 3px solid var(--sage);
  border-radius: 0 2px 2px 0;
}

.spec-icon {
  font-size: 1.4rem;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}

.icon-svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spec-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--brown);
  font-weight: 700;
  margin-bottom: 2px;
}

.spec-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ================================
   EQUIPEMENTS
   ================================ */

#equipements {
  background: var(--beige);
}

.equip-header {
  text-align: center;
  margin-bottom: 64px;
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.equip-card {
  background: var(--cream);
  padding: 36px 24px;
  border-radius: 3px;
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.equip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.equip-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.equip-title {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}

.equip-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================
   GALERIE
   ================================ */

#galerie {
  background: var(--brown);
  padding: 0;
}

.carrousel-wrap {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.carrousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.18, 1);
}

.carrousel-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.carrousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carrousel-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
}

.carrousel-caption {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--cream);
  pointer-events: none;
  z-index: 5;
}

.carrousel-caption-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8a87c;
  margin-bottom: 8px;
}

.carrousel-caption-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  font-style: italic;
}

.carr-counter {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  z-index: 10;
}

.carr-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carr-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}
.carr-btn.prev {
  left: 32px;
}
.carr-btn.next {
  right: 32px;
}

.carr-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carr-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border: none;
  padding: 0;
  transition:
    background 0.3s,
    transform 0.3s;
}

.carr-dot.active {
  background: var(--terra);
  transform: scale(1.4);
}

.carr-thumbs {
  display: flex;
  gap: 4px;
  height: 72px;
  background: #2a1f18;
  overflow-x: auto;
  scrollbar-width: none;
}

.carr-thumbs::-webkit-scrollbar {
  display: none;
}

.carr-thumb {
  flex: 1;
  min-width: 80px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.25s;
  border: none;
  padding: 0;
}

.carr-thumb.active {
  opacity: 1;
}
.carr-thumb:hover {
  opacity: 0.8;
}

.carr-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ================================
   PISCINE
   ================================ */

#piscine {
  background: var(--cream);
  padding: 0;
}

.piscine-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.piscine-visual {
  position: relative;
  overflow: hidden;
}

.piscine-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}

.piscine-text-area {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--sage-light);
}

.piscine-text-area .section-eyebrow {
  color: var(--sage-dark);
}
.piscine-text-area .section-title {
  color: var(--brown);
}

.piscine-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
}

.piscine-stat {
  text-align: center;
}

.piscine-stat-num {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--sage-dark);
  line-height: 1;
}

.piscine-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-top: 4px;
}

.piscine-stat + .piscine-stat {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  padding-left: 32px;
}

.piscine-note {
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--sage);
  font-size: 0.85rem;
  color: var(--sage-dark);
  line-height: 1.6;
  border-radius: 0 2px 2px 0;
}

/* ================================
   ALENTOURS
   ================================ */

#alentours {
  background: var(--brown);
  color: var(--cream);
}

#alentours .section-eyebrow {
  color: #e8a87c;
}
#alentours .section-title {
  color: var(--cream);
}
#alentours .section-title em {
  color: #e8a87c;
}

.alentours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  margin-top: 56px;
}

.alentour-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alentour-item:last-child,
.alentour-item:nth-last-child(2) {
  border-bottom: none;
  padding-bottom: 0;
}

.alentour-num {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}

.alentour-content h3 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}

.alentour-content p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.alentour-dist {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8a87c;
}

/* ================================
   RESERVATION
   ================================ */

#reservation {
  background: var(--terra-light);
  text-align: center;
}

#reservation .section-eyebrow {
  margin: 0 auto 16px;
}
#reservation .section-title {
  color: var(--brown);
}
#reservation .section-body {
  margin: 0 auto 48px;
}

.resa-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--terra);
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  border: 2px solid var(--terra);
  color: var(--terra);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.15s;
}

.btn-secondary:hover {
  background: var(--terra);
  color: var(--cream);
  transform: translateY(-2px);
}

.resa-contacts {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.resa-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.resa-contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.resa-contact-value {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--brown);
}

.resa-contact-value:hover {
  color: var(--terra);
}

.resa-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.star-badge {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: var(--cream);
  border-radius: 3px;
}

.star-badge img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

/* ================================
   FOOTER
   ================================ */

footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 0;
}

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

.footer-logo {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--cream);
}

.footer-address {
  font-size: 0.85rem;
  line-height: 1.7;
  text-align: center;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 900px) {
  .gite-grid,
  .piscine-inner,
  .alentours-grid {
    grid-template-columns: 1fr;
  }
  .equip-grid {
    grid-template-columns: 1fr 1fr;
  }
  #site-header {
    padding: 16px 24px;
  }
  .header-nav {
    gap: 16px;
  }
  .header-nav a:not(.btn-reserver) {
    display: none;
  }
  .container {
    padding: 0 24px;
  }
  .gite-photo-accent {
    display: none;
  }
  .piscine-text-area {
    padding: 60px 32px;
  }
  .hero-badges {
    bottom: 80px;
    right: 16px;
  }
}

@media (max-width: 540px) {
  .equip-grid {
    grid-template-columns: 1fr;
  }
  .resa-stars {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .hero-badges {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.star-badge {
  background: transparent;
  padding: 0;
}

.star-badge img {
  height: 45px;
  width: auto;
  filter: grayscale(30%) opacity(1);
}

/* ================================
   PANIER GOURMAND
   ================================ */

#panier {
  background: var(--terra-light);
}

.panier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.panier-photos {
  position: relative;
}

.panier-photo-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
}

.panier-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panier-photo-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 55%;
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
  border: 3px solid var(--terra-light);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.panier-photo-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panier-prix {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 32px 0 20px;
}

.panier-prix-num {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}

.panier-prix-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.panier-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.04);
  border-left: 3px solid var(--terra);
  border-radius: 0 2px 2px 0;
}

@media (max-width: 900px) {
  .panier-grid {
    grid-template-columns: 1fr;
  }
  .panier-photo-accent {
    display: none;
  }
}

/* ================================
   PANIER GOURMAND
   ================================ */

#panier {
  background: var(--terra-light);
}

.panier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.panier-photos {
  position: relative;
}

.panier-photo-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
}

.panier-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panier-photo-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 55%;
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
  border: 3px solid var(--terra-light);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.panier-photo-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panier-prix {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 32px 0 20px;
}

.panier-prix-num {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}

.panier-prix-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.panier-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.04);
  border-left: 3px solid var(--terra);
  border-radius: 0 2px 2px 0;
}

@media (max-width: 900px) {
  .panier-grid {
    grid-template-columns: 1fr;
  }
  .panier-photo-accent {
    display: none;
  }
}

/* ================================
   TARIFS
   ================================ */

#tarifs {
  background: var(--beige);
}

#tarifs .section-title {
  text-align: center;
}

.tarifs-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  margin-top: 40px;
}

.hs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

.hs-card {
  background: var(--terra);
  border-radius: 4px;
  padding: 28px 32px;
  color: var(--cream);
}

.hs-month {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 8px;
}

.hs-price {
  font-family: var(--ff-serif);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}

.hs-unit {
  font-size: 0.78rem;
  opacity: 0.75;
  margin-top: 6px;
}

.nuits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.nuit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--cream);
  border-left: 3px solid var(--sage);
  border-radius: 0 3px 3px 0;
}

.nuit-periode {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.nuit-prix {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
}

.inclus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.inclus-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--beige-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.inclus-item::before {
  content: "✓";
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.cond-block {
  background: var(--cream);
  border-radius: 4px;
  padding: 24px 28px;
}

.cond-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}

.cond-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cond-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--beige-dark);
  padding-left: 16px;
  position: relative;
}

.cond-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--terra);
  font-size: 0.75rem;
}

.cond-list li:last-child {
  border-bottom: none;
}

.tarifs-garantie {
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--terra-light);
  border-left: 3px solid var(--terra);
  border-radius: 0 3px 3px 0;
  font-size: 0.88rem;
  color: var(--brown);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .hs-grid,
  .nuits-grid,
  .conditions-grid {
    grid-template-columns: 1fr;
  }
  .inclus-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .inclus-grid {
    grid-template-columns: 1fr;
  }
}
