/* =========================================================================
   ZoKids — page Location (refonte design Claude Design, mai 2026)
   Sections : page-hero / Tarifs & formule / Structures détail ×2 alternées /
              Réservation / FAQ / Final CTA
   Palette : cream/ink/navy/gold — Fonts : Cormorant Garamond + Manrope + Cookie
   ========================================================================= */

/* ------- Em italic gold (signature design dans les h2 de section) ------- */
.page-location-structures-gonflables h2 em {
  font-style: italic;
  color: var(--gold);
  font-family: inherit;
  font-weight: inherit;
}
/* Exception sur fond sombre : gold-2 plus lumineux */
.page-location-structures-gonflables .final h2 em {
  color: var(--gold-2);
}

/* ------- Section head 2-col (titre gauche, lead droite) ------- */
.page-location-structures-gonflables .section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
}
.page-location-structures-gonflables .section-head h2 {
  margin-top: 14px;
}
.page-location-structures-gonflables .section-head--centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  margin-bottom: 48px;
}
.page-location-structures-gonflables .section-head--centered .lead {
  margin: 20px auto 0;
}
@media (max-width: 800px) {
  .page-location-structures-gonflables .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
}

/* =========================================================================
   1. PAGE HERO
   ========================================================================= */
.page-location-structures-gonflables .page-hero {
  padding: 48px 0 0;
  background: var(--cream);
}
.page-location-structures-gonflables .page-hero h1 {
  margin-top: 18px;
}
.page-location-structures-gonflables .page-hero .lead {
  margin-top: 24px;
  max-width: 64ch;
}
.page-location-structures-gonflables .page-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-family: inherit;
  font-weight: inherit;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .page-location-structures-gonflables .page-hero h1 br {
    display: none;
  }
}


/* =========================================================================
   2. TARIFS & FORMULE
   ========================================================================= */
.pricing-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 800px) {
  .pricing-summary {
    grid-template-columns: 1fr;
  }
}
.price-tile {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-tile .lbl {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
}
.price-tile .val {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--ink);
}
.price-tile .val small {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.price-tile p {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 4px;
}

/* Steps (4-col, 4e item dark "À retenir") */
.location-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) {
  .location-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .location-steps { grid-template-columns: 1fr; }
}
.location-steps .step {
  background: transparent;
  padding: 28px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: background .3s, border-color .3s;
}
.location-steps .step:hover:not(.step-dark) {
  background: #fff;
  border-color: var(--gold-soft);
}
.location-steps .step .num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: .2em;
  font-weight: 600;
}
.location-steps .step h3 {
  margin: 12px 0 10px;
  font-size: 24px;
}
.location-steps .step p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* 4e step : dark "À retenir" */
.step-dark {
  background: var(--ink) !important;
  color: var(--cream);
  border-color: var(--ink) !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.step-dark .eyebrow {
  color: var(--gold-2);
}
.step-dark h3 {
  color: var(--cream);
  margin: 12px 0;
}
.step-dark .btn {
  align-self: flex-start;
  margin-top: 14px;
}


/* =========================================================================
   3. STRUCTURES (×2 alternées) sur fond cream-2
   ========================================================================= */
.structures-cream {
  background: var(--cream-2);
}

.struct-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 48px 0;
}
.struct-detail.flip {
  grid-template-columns: 1fr 1.2fr;
}
.struct-detail.flip .struct-gallery {
  order: 2;
}
@media (max-width: 900px) {
  .struct-detail,
  .struct-detail.flip {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .struct-detail.flip .struct-gallery { order: 0; }
}

.struct-divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

/* Galerie — sticky sur desktop pour suivre le scroll du texte */
.struct-gallery {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 900px) {
  .struct-gallery {
    position: relative;
    top: auto;
  }
}
.gallery-main {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: var(--cream-2);
  box-shadow: var(--shadow-md);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeIn .4s;
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.gallery-thumb {
  flex: 1;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--cream-2);
  transition: border-color .2s, transform .2s;
  padding: 0;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumb.is-active {
  border-color: var(--gold);
}
.gallery-thumb:hover {
  transform: translateY(-2px);
}
.gallery-counter {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(16, 26, 59, .7);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  backdrop-filter: blur(8px);
}

/* Infos structure */
.struct-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.struct-info__head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.struct-info__head .badge {
  position: static;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
}
.struct-info__head .badge.gold {
  background: var(--gold);
  color: var(--ink);
}
.struct-info__head .badge.coral {
  background: var(--coral);
  color: #fff;
}
.struct-info .tag {
  font-family: "Cookie", cursive;
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
}
.struct-info h2 {
  margin: 0;
}
.struct-info .paragraphs p {
  color: var(--ink-2);
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.65;
}
.struct-info .paragraphs p:first-child {
  margin-top: 0;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.specs-grid .spec {
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 14px 16px;
}
.specs-grid .spec .lbl {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
  margin-bottom: 4px;
}
.specs-grid .spec .val {
  font-weight: 600;
  font-size: 15px;
}

.equip-lbl {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
  margin-bottom: 10px;
}
.equip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.equip-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}
.equip-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 12px;
}
@media (max-width: 560px) {
  .equip-list { grid-template-columns: 1fr; }
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid var(--line-2);
  font-size: 14px;
}
.meta-list > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line-2);
}
.meta-list > div:last-child {
  border-bottom: 0;
}
.meta-list .lbl {
  color: var(--ink-2);
  font-weight: 500;
}
.meta-list .val {
  font-weight: 600;
  text-align: right;
  max-width: 60%;
}
.meta-list .meta-total {
  border-top: 1px solid var(--gold-soft);
  margin-top: 4px;
  padding-top: 10px;
}
.meta-list .meta-total .lbl {
  font-weight: 700;
  color: var(--ink);
}
.meta-list .meta-total .val strong {
  color: var(--gold);
  font-size: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.struct-cta {
  margin-top: 8px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* =========================================================================
   5. FAQ (sur fond cream-2)
   ========================================================================= */
.faq-cream {
  background: var(--cream-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 24px 0;
  gap: 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: 0;
}
.faq-q .plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all .25s cubic-bezier(.2, .7, .2, 1);
  color: var(--ink);
  background: transparent;
}
.faq-item.is-open .faq-q .plus {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.2, .7, .2, 1);
}
.faq-item.is-open .faq-a {
  max-height: 1200px;
}
.faq-a-inner {
  padding: 0 0 28px 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.7;
  max-width: 70ch;
}
