/* ========================================
   PRISTAYA — Global Stylesheet
   Palette: Or #B8860B | Creme #FDF8F0 | Brun #2C2C2C | Blanc #FFF | Gris #666
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #B8860B;
  --gold-light: #d4a843;
  --gold-dark: #8a6508;
  --cream: #FDF8F0;
  --brown: #2C2C2C;
  --white: #FFFFFF;
  --gray: #666666;
  --gray-light: #e8e4de;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', 'Segoe UI', Arial, sans-serif;
  --max-width: 1200px;
  --transition: .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--brown); line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.section-title {
  text-align: center;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: .8rem auto 0;
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,134,11,.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--gold);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  color: var(--gold);
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,248,240,.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  transition: background var(--transition);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 0;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}
.logo img {
  height: 80px;
  width: auto;
}
.logo span { font-weight: 400; }

.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-links a {
  color: var(--brown);
  font-size: .88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--brown);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--cream) 0%, #f5efe3 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184,134,11,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content h1 {
  margin-bottom: 1.2rem;
  color: var(--brown);
}
.hero-content h1 span { color: var(--gold); display: block; }
.hero-content p {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image .placeholder-img {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-radius: 200px 200px 100px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(184,134,11,.2);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, var(--cream), #f5efe3);
  text-align: center;
}
.page-hero h1 { color: var(--gold); margin-bottom: .8rem; }
.page-hero p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* --- Sections --- */
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--white);
}

/* --- Pillars / Features Grid --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.pillar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,.1);
}
.pillar-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}
.pillar-card h3 {
  margin-bottom: .8rem;
  color: var(--gold);
}
.pillar-card p {
  color: var(--gray);
  font-size: .95rem;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold);
  font-family: var(--font-heading);
  position: absolute;
  top: .5rem; left: 1.5rem;
  line-height: 1;
  opacity: .3;
}
.testimonial-text {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: .95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 100px; height: 150px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--brown); font-size: .95rem; }
.testimonial-role { color: var(--gray); font-size: .85rem; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* --- Social Banner --- */
.social-banner {
  background: var(--brown);
  color: var(--white);
  text-align: center;
  padding: 3rem 0;
}
.social-banner h3 { color: var(--gold); margin-bottom: 1.5rem; }
.social-links { display: flex; justify-content: center; gap: 2rem; }
.social-link {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--white);
}

/* --- Footer --- */
.site-footer {
  background: var(--brown);
  color: var(--gray-light);
  padding: 3rem 0 1.5rem;
  font-size: .9rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--gray-light); font-size: .85rem; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--gray); text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.pricing-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,.06);
  transition: transform var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card-header {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 2rem;
  text-align: center;
}
.pricing-card-header h3 { color: var(--white); margin-bottom: .5rem; }
.pricing-card-header .price { font-size: 2.2rem; font-weight: 700; }
.pricing-card-header .price-sub { font-size: .85rem; opacity: .85; }
.pricing-card-body {
  padding: 2rem;
}
.pricing-card-body ul { margin-bottom: 2rem; }
.pricing-card-body li {
  padding: .5rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: .95rem;
  color: var(--gray);
  position: relative;
  padding-left: 1.5rem;
}
.pricing-card-body li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* Featured / highlighted card */
.pricing-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.05); }

/* --- Steps --- */
.steps-list {
  max-width: 700px;
  margin: 0 auto;
}
.step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.step-number {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-content h3 { color: var(--gold); margin-bottom: .3rem; font-size: 1.15rem; }
.step-content p { color: var(--gray); font-size: .95rem; }

/* --- Calendar Grid (Cercles) --- */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.calendar-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,.05);
  transition: transform var(--transition);
}
.calendar-card:hover { transform: translateY(-3px); }
.calendar-card-date {
  background: var(--gold);
  color: var(--white);
  padding: .8rem 1.2rem;
  font-weight: 700;
  font-size: .9rem;
}
.calendar-card-body { padding: 1.5rem; }
.calendar-card-body h3 { color: var(--brown); margin-bottom: .3rem; font-size: 1.1rem; }
.calendar-card-archetype { color: var(--gold); font-style: italic; font-size: .9rem; margin-bottom: .5rem; }
.calendar-card-body p { color: var(--gray); font-size: .9rem; }
.calendar-card.past { opacity: .55; }

/* --- Resource Cards --- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}
.resource-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,.06);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.resource-img {
  height: 260px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  padding: 1rem;
}
.resource-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.resource-body h3 { margin-bottom: .8rem; color: var(--brown); }
.resource-body p { color: var(--gray); font-size: .95rem; margin-bottom: 1.5rem; flex: 1; }

/* --- Email Capture Form --- */
.capture-form {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
}
.capture-form input[type="text"],
.capture-form input[type="email"] {
  min-width: 0;
  flex: 1 1 140px;
}
.capture-form .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}
.capture-form input[type="text"],
.capture-form input[type="email"] {
  flex: 1;
  padding: .8rem 1.2rem;
  border: 2px solid var(--gray-light);
  border-radius: 50px;
  font-size: .95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}
.capture-form input:focus {
  outline: none;
  border-color: var(--gold);
}

/* --- About / Bio --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.about-image .placeholder-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(184,134,11,.2);
}
.about-text h2 { color: var(--gold); margin-bottom: 1rem; }
.about-text p { margin-bottom: 1.2rem; color: var(--gray); }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.mission-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0,0,0,.05);
  border-top: 3px solid var(--gold);
}
.mission-card h3 { color: var(--gold); margin-bottom: .5rem; font-size: 1.1rem; }
.mission-card p { color: var(--gray); font-size: .9rem; }

/* --- Method / Levels --- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.method-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  border-left: 4px solid var(--gold);
}
.method-card .level-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 20px;
  margin-bottom: .8rem;
}
.method-card h3 { margin-bottom: .5rem; }
.method-card p { color: var(--gray); font-size: .95rem; }

/* --- Transformation list --- */
.transform-list {
  max-width: 700px;
  margin: 2rem auto;
}
.transform-list li {
  padding: .6rem 0 .6rem 2rem;
  position: relative;
  color: var(--gray);
  font-size: 1rem;
}
.transform-list li::before {
  content: '\2728';
  position: absolute;
  left: 0;
}

/* --- Promo Badge --- */
.promo-badge {
  display: inline-block;
  background: #e74c3c;
  color: var(--white);
  font-weight: 700;
  padding: .3rem 1rem;
  border-radius: 20px;
  font-size: .85rem;
  margin-left: .5rem;
}

/* --- Legal pages --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}
.legal-content h2 { color: var(--gold); margin-top: 2.5rem; margin-bottom: .8rem; font-size: 1.4rem; }
.legal-content h3 { margin-top: 1.5rem; margin-bottom: .5rem; font-size: 1.15rem; }
.legal-content p, .legal-content li { color: var(--gray); margin-bottom: .8rem; font-size: .95rem; }
.legal-content ul { padding-left: 1.5rem; list-style: disc; }

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--brown);
  color: var(--white);
  padding: 1.2rem 2rem;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .9rem;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { flex: 1; min-width: 250px; }
.cookie-banner a { color: var(--gold); }
.cookie-btn {
  padding: .5rem 1.5rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: .85rem;
}
.cookie-accept { background: var(--gold); color: var(--white); }
.cookie-reject { background: transparent; color: var(--gray-light); border: 1px solid var(--gray); }

/* --- Animations (fade-in on scroll) --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Video embed --- */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  max-width: 700px;
  margin: 2rem auto;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-image { order: -1; }
  .hero-image .placeholder-img { max-width: 300px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 350px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .logo img { height: 55px; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 350px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.2rem;
    box-shadow: -5px 0 20px rgba(0,0,0,.1);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; z-index: 1001; }
  .hero { min-height: auto; padding: 8rem 0 4rem; }
  .section { padding: 3.5rem 0; }
  .page-hero { padding: 8rem 0 3rem; }
  .footer-content { flex-direction: column; text-align: center; }
  .capture-form { flex-direction: column; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: 1fr; }
}
