/* ==========================================================================
   Valérie Busque — feuille de style partagée
   Reproduction du site Kajabi existant (typographie, couleurs, composants)
   ========================================================================== */

:root {
  --color-bg: #ffffff;
  --color-text: #6c6c6c;
  --color-heading: #474747;
  --color-dark: #131313;
  --color-sage: #a1a77d;
  --color-sage-pale: #cdd3c0;
  --color-sage-deep: #9aa07a;
  --color-taupe: #bdb3aa;
  --color-gray-light: #d9d7d5;
  --color-tan: #dfb489;
  --color-border: #e4e2dc;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--color-heading);
  font-weight: 400;
  margin: 0 0 20px;
  line-height: 1.15;
}

h1 { font-size: 92px; }
h2 { font-size: 58px; }
h3 { font-size: 34px; }

p { margin: 0 0 16px; }

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: #ffffff;
  color: #030303;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 16px;
  font-weight: 600;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--color-dark);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.site-header .logo {
  font-family: var(--font-serif);
  font-size: 26px;
  color: #fff;
  font-style: italic;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.3px;
}
.site-nav a:hover { opacity: 0.75; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.icon-cart { color: #fff; font-size: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle svg { display: block; }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--color-dark);
  padding: 0 32px 20px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  color: #fff;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 15px;
}
.mobile-nav .btn { margin-top: 14px; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.25px;
  padding: 14px 28px;
  border-radius: 0;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}
.btn--solid {
  background: var(--color-sage);
  color: #030303;
}
.btn--solid:hover { background: #929868; }
.btn--outline-dark {
  background: transparent;
  border-color: var(--color-heading);
  color: var(--color-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn--outline-light {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn--dark {
  background: var(--color-dark);
  color: #fff;
  text-transform: none;
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section--tight { padding: 60px 0; }
.section--sage { background: var(--color-sage-deep); color: #fff; }
.section--sage-pale { background: var(--color-sage-pale); }
.section--taupe { background: var(--color-taupe); }
.section--gray-light { background: var(--color-gray-light); }
.section--tan { background: var(--color-tan); }
.section--dark { background: var(--color-dark); color: #fff; }
.section--sage h1, .section--sage h2, .section--sage h3,
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--sage p, .section--dark p { color: rgba(255,255,255,0.85); }

.section-eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 8px;
}

.center { text-align: center; }
.max-text {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.hero-quote-card {
  background: #ffffff;
  max-width: 940px;
  margin: 0 auto -1px;
  padding: 100px 80px;
  text-align: center;
  position: relative;
  top: 60px;
}
.hero-quote-text {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 1.2;
  color: var(--color-heading);
  margin: 0;
}
.hero-wrap { width: 100%; }

/* ---------- Grid helpers ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  .hero-quote-card { padding: 56px 28px; max-width: 100%; }
  .hero-quote-text { font-size: 44px; }
  .site-nav { display: none; }
  .header-actions .btn--solid { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 60px 0; }
}

/* ---------- Three doors ---------- */
.doors-copy strong { color: #fff; }
.doors-copy a { text-decoration: underline; text-underline-offset: 3px; }
.doors-copy a:hover { opacity: 0.8; }

/* ---------- Footer photo strip ---------- */
.footer-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.footer-strip img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 30%;
}
@media (max-width: 700px) {
  .footer-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-strip img { height: 220px; }
  .nowrap-heading { white-space: normal !important; font-size: 30px !important; }
}

.site-footer-bottom {
  background: var(--color-sage-pale);
  padding: 20px 0;
}
.site-footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.social-icons { display: flex; gap: 18px; }
.social-icons a { font-size: 18px; color: var(--color-heading); }
.copyright { font-size: 13px; color: var(--color-heading); }

/* ---------- Forms ---------- */
.signup-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 560px;
}
.signup-form input {
  flex: 1;
  min-width: 180px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  font-family: var(--font-sans);
  font-size: 14px;
}
.signup-form button {
  border: none;
}

/* ---------- Testimonial ---------- */
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--color-heading);
  margin-bottom: 24px;
}
.section--sage .testimonial-quote,
.section--sage-pale .testimonial-quote { color: var(--color-heading); }
.testimonial-name { font-weight: 600; margin-bottom: 24px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-grid img { border-radius: 4px; }
.testimonial-grid--2x2 { grid-template-columns: 1fr 1fr; }
.testimonial-card-text {
  background: #fff;
  padding: 32px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-heading);
  border-radius: 4px;
}
.testimonial-card-text p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid--2x2 { grid-template-columns: 1fr; }
  .testimonial-quote { font-size: 26px; }
}

/* ---------- Testimonial slideshow ---------- */
.testimonial-slideshow {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
}
.testimonial-slide {
  display: none;
}
.testimonial-slide.is-active {
  display: block;
  animation: testimonial-fade 0.5s ease;
}
.testimonial-slide img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
@keyframes testimonial-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.testimonial-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid var(--color-heading);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.testimonial-dots button.is-active {
  background: var(--color-heading);
}

/* ---------- Podcast / episode list ---------- */
.episode-card {
  background: #fff;
  padding: 24px;
  border: 1px solid var(--color-border);
}
.episode-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}
.episode-card .date { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--color-sage-deep); }
.episode-card h4 { margin: 8px 0 4px; }
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .episode-grid { grid-template-columns: 1fr; }
}

/* ---------- Presencia page ---------- */
.presencia-hero {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.presencia-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.25));
  z-index: 0;
}
.presencia-hero > * { position: relative; z-index: 1; }
.presencia-hero-top { padding: 28px 40px 0; font-size: 13px; letter-spacing: 1px; }
.presencia-hero-mid {
  text-align: center;
  padding: 0 20px;
}
.presencia-hero-mid h1 {
  color: #fff;
  font-size: 128px;
  margin-bottom: 12px;
}
.presencia-hero-mid p { font-family: var(--font-serif); font-size: 30px; color: #fff; }
@media (max-width: 700px) {
  .presencia-hero-mid h1 { font-size: 64px; }
  .presencia-hero-mid p { font-size: 20px; }
}

/* Simple centered itinerary list, matching real site */
.itinerary-list { max-width: 560px; margin: 0 auto; text-align: center; }
.itinerary-list .stop-name {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.itinerary-list .arrow { opacity: 0.6; margin: 10px 0; }
.itinerary-list .stop { margin-bottom: 22px; }

.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 700px) {
  .people-grid { grid-template-columns: 1fr; }
}

.price-box {
  background: #fff;
  padding: 64px 48px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.price-box .amount { font-family: var(--font-serif); font-size: 48px; color: var(--color-heading); margin: 8px 0; }
.price-list { list-style: none; padding: 0; margin: 0 auto 32px; max-width: 420px; }
.price-list li { margin-bottom: 8px; }
@media (max-width: 600px) {
  .price-box { padding: 40px 20px; }
}

.faq-box {
  border: 1px solid rgba(71,71,71,0.4);
  margin-bottom: 16px;
}
.faq-box summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-heading);
  list-style: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-box summary::-webkit-details-marker { display: none; }
.faq-box summary::after { content: "\203A"; font-size: 26px; font-family: var(--font-sans); }
.faq-box[open] summary::after { content: "\2304"; }
.faq-box .faq-body { padding: 0 24px 22px; }

.gallery-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-band img { width: 100%; height: 260px; object-fit: cover; }
.gallery-band--2 { grid-template-columns: repeat(2, 1fr); }
.gallery-band--2 img { height: 340px; }
@media (max-width: 860px) {
  .gallery-band { grid-template-columns: repeat(2, 1fr); }
  .gallery-band img { height: 180px; }
  .gallery-band--2 img { height: 220px; }
}
