/* ==============================================
   JUDITH SAMAMA-PATTE — SHARED STYLES
   Extracted from index.html for multi-page use
   ============================================== */

/* ==============================================
   FONT FACES
   ============================================== */
@font-face{font-family:'Lora';font-style:italic;font-weight:400;font-display:swap;src:url(fonts/0QIhMX1D_JOuMw_LIftLtfOm8w.woff2) format('woff2')}
@font-face{font-family:'Lora';font-style:italic;font-weight:600;font-display:swap;src:url(fonts/0QIhMX1D_JOuMw_LIftLtfOm8w.woff2) format('woff2')}
@font-face{font-family:'Lora';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/0QIvMX1D_JOuMwr7I_FMl_E.woff2) format('woff2')}
@font-face{font-family:'Lora';font-style:normal;font-weight:600;font-display:swap;src:url(fonts/0QIvMX1D_JOuMwr7I_FMl_E.woff2) format('woff2')}
@font-face{font-family:'Manrope';font-style:normal;font-weight:400;font-display:optional;src:url(fonts/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2')}
@font-face{font-family:'Manrope';font-style:normal;font-weight:500;font-display:optional;src:url(fonts/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2')}
@font-face{font-family:'Manrope';font-style:normal;font-weight:600;font-display:optional;src:url(fonts/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2')}
@font-face{font-family:'Manrope';font-style:normal;font-weight:700;font-display:optional;src:url(fonts/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2')}
@font-face{font-family:'Manrope';font-style:normal;font-weight:800;font-display:optional;src:url(fonts/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2')}
@font-face{font-family:'Sora';font-style:normal;font-weight:700;font-display:optional;src:url(fonts/xMQ9uFFYT72X5wkB_18qmnndmSdSnh2BAfO5mnuyOo1lfiQwV6-xo6eeIw.woff2) format('woff2')}
@font-face{font-family:'Sora';font-style:normal;font-weight:800;font-display:optional;src:url(fonts/xMQ9uFFYT72X5wkB_18qmnndmSdSnh2BAfO5mnuyOo1lfiQwV6-xo6eeIw.woff2) format('woff2')}

/* Fallback fonts with size-adjust to minimize CLS */
@font-face { font-family: 'Sora Fallback'; src: local('Arial'); size-adjust: 100%; ascent-override: 95%; descent-override: 22%; line-gap-override: 0%; }
@font-face { font-family: 'Lora Fallback'; src: local('Georgia'); size-adjust: 97%; ascent-override: 93%; descent-override: 25%; line-gap-override: 0%; }
@font-face { font-family: 'Manrope Fallback'; src: local('Arial'); size-adjust: 96%; ascent-override: 98%; descent-override: 25%; line-gap-override: 0%; }

/* ==============================================
   RESET
   ============================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
a, button, [onclick] { -webkit-tap-highlight-color: transparent; }

:root {
  --blue: #CC8078;
  --blue-dark: #A86058;
  --blue-deep: #4D2D3E;
  --orange: #2E8A98;
  --orange-mid: #257A86;
  --orange-dark: #C8956E;
  --orange-light: #F8D2C8;
  --orange-pale: #FFEDE6;
  --sky: #FDDDD6;
  --sky-light: #FEE8E3;
  --sky-pale: #FFF2EE;
  --cream: #FFF7F3;
  --white: #FFFFFF;
  --text-dark: #1F1F1F;
  --text-body: #444444;
  --text-light: #6B6B6B;
  --text-muted: #999999;

  --font-impact: 'Sora', 'Sora Fallback', -apple-system, sans-serif;
  --font-serif: 'Lora', 'Lora Fallback', Georgia, serif;
  --font-body: 'Manrope', 'Manrope Fallback', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ==============================================
   UTILITIES
   ============================================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }
.container--wide { max-width: 1440px; }

/* ==============================================
   TYPOGRAPHY
   ============================================== */
.t-impact {
  font-family: var(--font-impact);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.t-serif {
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.25;
}

.t-huge { font-size: clamp(3rem, 8vw, 7rem); }
.t-big { font-size: clamp(2.2rem, 5.5vw, 4.5rem); }
.t-medium { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
.t-body-lg { font-size: clamp(1.05rem, 1.8vw, 1.25rem); }

/* ==============================================
   BUTTONS
   ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 18px 40px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  letter-spacing: 0.02em;
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
}
.btn--blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(204,128,120,0.3);
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
}
.btn--orange:hover {
  background: var(--orange-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46,138,152,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

.btn--large { padding: 22px 52px; font-size: 1.05rem; }

.btn svg { width: 18px; height: 18px; }

/* ==============================================
   ANIMATIONS
   ============================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(.25,.46,.45,.94), transform 0.9s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ==============================================
   NAV (multi-page)
   ============================================== */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 18px 0;
  transition: all 0.4s ease;
}
.nav.scrolled, .nav--solid {
  background: rgba(77,45,62,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo {
  font-family: var(--font-impact);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 4px 0;
}
.nav__link:hover { color: var(--white); }
.nav__link--active {
  color: var(--white);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
}
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__login {
  padding: 10px 24px; font-size: 0.85rem;
  border: 1.5px solid rgba(255,255,255,0.5); border-radius: 50px;
  color: var(--white); text-decoration: none;
  font-family: var(--font-body); font-weight: 500;
  transition: all 0.2s;
}
.nav__login:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.nav__cta { padding: 10px 28px; font-size: 0.85rem; }
.nav__hamburger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  color: var(--white);
  align-items: center; justify-content: center;
}
.nav__hamburger svg { width: 24px; height: 24px; }

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: var(--blue-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav__overlay.open { display: flex; }
.nav__overlay-close {
  position: absolute; top: 18px; right: 24px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.nav__overlay-close svg { width: 28px; height: 28px; }
.nav__overlay-links {
  list-style: none; text-align: center;
  display: flex; flex-direction: column; gap: 0;
}
.nav__overlay-links li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__overlay-links a {
  display: block;
  font-family: var(--font-impact);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  padding: 20px 48px;
  text-decoration: none;
  transition: color 0.2s;
}
.nav__overlay-links a:hover { color: var(--white); }
.nav__overlay-cta { margin-top: 32px; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
}
.nav__overlay-login {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 12px 28px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  transition: all 0.2s;
  text-align: center;
}
.nav__overlay-login:hover { color: var(--white); border-color: var(--white); }

/* ==============================================
   FAQ ACCORDION (shared item-level styles)
   ============================================== */
.faq__item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease;
}

.faq__item:hover { border-color: var(--blue); }
.faq__item.active { border-color: var(--blue); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transition: color 0.3s ease;
}

.faq__q:hover { color: var(--blue); }

.faq__q-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq__q-icon svg {
  width: 14px; height: 14px;
  color: var(--blue);
  transition: transform 0.3s ease;
}

.faq__item.active .faq__q-icon { background: var(--blue); }
.faq__item.active .faq__q-icon svg { color: var(--white); transform: rotate(180deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.25,.46,.45,.94);
}

.faq__item.active .faq__a { max-height: 400px; }

.faq__a-inner {
  padding: 0 24px 24px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-body);
}

/* ==============================================
   FOOTER (expanded, 3 columns)
   ============================================== */
.footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.5);
  padding: 64px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer__brand {}
.footer__brand-logo {
  font-family: var(--font-impact);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.footer__brand-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__brand-social {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__brand-social:hover { color: var(--white); }
.footer__brand-social svg { width: 18px; height: 18px; }

.footer__nav {}
.footer__nav-title {
  font-family: var(--font-impact);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer__nav-links {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.footer__nav-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__nav-links a:hover { color: rgba(255,255,255,0.85); }
.footer__nav-sep {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 12px 0;
}

.footer__newsletter {}
.footer__newsletter-title {
  font-family: var(--font-impact);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer__newsletter-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Kajabi newsletter embed */
.embed-newsletter #kajabi-form .kajabi-form__subtitle { display: none !important; }
.embed-newsletter #kajabi-form .kajabi-form__form-item {
  margin-bottom: 0 !important;
  margin-right: 0 !important;
  flex: 1 !important;
}
.embed-newsletter #kajabi-form fieldset {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  background-color: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  padding: 6px !important;
  border-radius: 8px !important;
  margin: 0 !important;
}
.embed-newsletter #kajabi-form .kajabi-form__btn {
  margin-top: 0 !important;
  border: 1px solid var(--blue) !important;
  color: var(--blue) !important;
  border-radius: 6px !important;
  background: transparent !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}
.embed-newsletter #kajabi-form .kajabi-form__btn:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
}
.embed-newsletter #kajabi-form.kajabi-form--inline { padding: 0 !important; }
.embed-newsletter #kajabi-form .kajabi-form__content {
  width: 100% !important;
  max-width: 1000px !important;
}
.embed-newsletter #kajabi-form input[type="email"] {
  background-color: transparent !important;
  color: var(--white) !important;
  border: none !important;
  box-shadow: none !important;
}
.embed-newsletter #kajabi-form input::placeholder { color: rgba(255,255,255,0.4) !important; }
@media (max-width: 768px) {
  .embed-newsletter #kajabi-form { width: 100%; max-width: 400px; }
  .embed-newsletter #kajabi-form .kajabi-form__btn { width: auto !important; }
}
@media (max-width: 500px) {
  .embed-newsletter #kajabi-form { width: 100%; max-width: 300px; }
}
@media (max-width: 350px) {
  .embed-newsletter #kajabi-form { width: 100%; max-width: 250px; }
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer { padding: 48px 0 32px; }
}

/* ==============================================
   PAGE HERO (for inner pages)
   ============================================== */
.page-hero {
  position: relative;
  min-height: min(60vh, 480px);
  display: flex;
  align-items: flex-end;
  background: var(--blue-deep);
  color: var(--white);
  overflow: hidden;
  padding: 0 0 48px;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.page-hero__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--blue-deep) 0%, rgba(77,45,62,0.5) 50%, transparent 100%);
  z-index: 1;
}
.page-hero__content {
  position: relative; z-index: 2; width: 100%;
}
@media (max-width: 480px) {
  .page-hero { min-height: 360px; padding-bottom: 36px; }
}

/* ==============================================
   CONTACT CARD
   ============================================== */
.contact-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 4px 32px rgba(204,128,120,0.08);
}
.contact-card__portrait {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
}
.contact-card__title {
  font-family: var(--font-impact);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.contact-card__intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.6;
}
.contact-card__block {
  margin-bottom: 24px;
}
.contact-card__label {
  font-family: var(--font-impact);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.contact-card__email {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-card__email:hover { color: var(--orange-mid); }
.contact-card__social {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem; color: var(--blue);
  text-decoration: none; transition: color 0.2s;
}
.contact-card__social:hover { color: var(--blue-dark); }
.contact-card__social svg { width: 18px; height: 18px; }
.contact-card__note {
  font-size: 0.85rem; color: var(--text-muted);
  margin-top: 32px; line-height: 1.6;
}
@media (max-width: 480px) {
  .contact-card { padding: 36px 24px; }
  .contact-card__title { font-size: 1.6rem; }
}

/* ==============================================
   LEGAL ARTICLE
   ============================================== */
.legal-article h2 {
  font-family: var(--font-impact);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 16px;
  margin-top: 48px;
  line-height: 1.1;
}
.legal-article h2:first-child { margin-top: 0; }
.legal-article h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  margin-top: 32px;
}
.legal-article p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}
.legal-article a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.legal-article a:hover { color: var(--orange-mid); }
.legal-article ul { margin-bottom: 16px; padding-left: 24px; }
.legal-article li { font-size: 1rem; line-height: 1.8; color: var(--text-body); margin-bottom: 4px; }

/* ==============================================
   SAV/FAQ (native details/summary)
   ============================================== */
.sav-category { margin-bottom: 56px; }
.sav-category:last-child { margin-bottom: 0; }
.sav-category__label {
  font-family: var(--font-impact);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 24px;
}
.sav-category details {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease;
  margin-bottom: 8px;
}
.sav-category details:hover { border-color: var(--blue); }
.sav-category details[open] { border-color: var(--blue); }
.sav-category summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  list-style: none;
  transition: color 0.3s ease;
}
.sav-category summary::-webkit-details-marker { display: none; }
.sav-category summary::marker { display: none; }
.sav-category summary:hover { color: var(--blue); }
.sav-category summary::after {
  content: '';
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--orange-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23CC8078' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") center/14px no-repeat;
  transition: all 0.3s ease;
}
.sav-category details[open] summary::after {
  background-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  transform: rotate(180deg);
}
.sav-category .faq__a-inner {
  padding: 0 24px 24px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-body);
}

/* ==============================================
   PRINCIPLE CARDS (for /ma-methode)
   ============================================== */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.principle-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px;
}
.principle-card__num {
  font-family: var(--font-impact);
  font-size: 2.5rem;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 16px;
}
.principle-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 12px;
}
.principle-card__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .principles { grid-template-columns: 1fr; }
}

/* ==============================================
   NOSCRIPT FALLBACK
   ============================================== */
@media (scripting: none) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
