/*
Theme Name: Kairos Yoga Retreats
Theme URI: https://kairosyogaretreats.com
Author: Lady Launch Marketing
Description: Custom theme for Kairos Yoga Retreats, Costitx, Mallorca.
Version: 1.0.0
*/

/* =====================================================
   [GLOBAL] DESIGN TOKENS
   ===================================================== */
:root {
  --purple:       #4b0082;
  --purple-deep:  #2d004e;
  --purple-mid:   #3d006b;
  --cream:        #f4f2e0;
  --cream-dark:   #e8e5c8;
  --gold:         #d3bd71;
  --gold-light:   #e8d49a;
  --dark:         #1a1a2e;
  --night:        #0f0020;

  --font-heading: 'Cinzel', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  --radius:    8px;
  --radius-sm: 6px;
  --radius-xs: 4px;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --max-width:      1200px;
  --max-width-text: 640px;
  --transition:     all 0.3s ease;
}

/* [GLOBAL] Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--transition); }
p { line-height: 1.85; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--purple);
}
em, i { font-family: var(--font-heading); font-style: italic; }

/* [GLOBAL] Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
section { padding: var(--space-3xl) 0; }

/* [GLOBAL] Eyebrow */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* [GLOBAL] Image filter */
.site-img,
.carousel-slide img,
.about__image img,
.class-card img {
  filter: sepia(0.20) saturate(0.84) contrast(0.95) brightness(1.03);
  transition: filter 0.4s ease, transform 0.5s ease;
}

/* [GLOBAL] BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid transparent;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease, background 0.22s ease;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--purple);
  color: var(--cream);
  border-color: var(--purple);
}
.btn-primary:hover {
  background: var(--purple-deep);
  border-color: var(--purple-deep);
  color: var(--cream);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(75,0,130,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244,242,224,0.48);
}
.btn-ghost:hover {
  background: rgba(244,242,224,0.12);
  border-color: rgba(244,242,224,0.85);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: rgba(75,0,130,0.3);
}
.btn-outline:hover {
  background: var(--purple);
  color: var(--cream);
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(75,0,130,0.3);
}
.btn-gold {
  background: linear-gradient(150deg,
    #f0de9a 0%, #d3bd71 25%, #b89030 55%, #cdb660 80%, #ecd998 100%
  );
  color: var(--purple-deep);
  border: none;
  font-weight: 700;
  box-shadow:
    0 3px 16px rgba(211,189,113,0.40),
    inset 0 1px 0 rgba(255,255,255,0.32),
    inset 0 -1px 0 rgba(0,0,0,0.10);
}
.btn-gold:hover {
  background: linear-gradient(150deg,
    #fae8a8 0%, #deca7e 25%, #c4a03c 55%, #d8c268 80%, #f4e4a8 100%
  );
  box-shadow:
    0 10px 28px rgba(211,189,113,0.52),
    inset 0 1px 0 rgba(255,255,255,0.42),
    inset 0 -1px 0 rgba(0,0,0,0.06);
  transform: translateY(-4px);
  color: var(--purple-deep);
}

/* [GLOBAL] Nav */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2.5rem;
  transition: background 0.3s ease, padding 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(45,0,78,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.1rem 2.5rem;
  border-bottom: 1px solid rgba(211,189,113,0.15);
}
.nav-icon {
  display: flex; align-items: center; flex-shrink: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.site-nav.scrolled .nav-icon { opacity: 1; pointer-events: auto; }
.nav-icon img { width: 38px; height: 38px; object-fit: contain; }
.nav-links { display: flex; gap: 4rem; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,242,224,0.85);
  display: inline-block;
  transition: color 0.3s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-links a:hover { color: var(--gold); transform: translateY(-3px); }

/* [GLOBAL] Footer */
.footer {
  background: var(--purple-deep);
  padding: 4.8rem 0 2rem;
  border-top: 1px solid rgba(211,189,113,0.15);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid rgba(211,189,113,0.08);
  margin-bottom: var(--space-lg);
}
.footer-nav-title {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(244,242,224,0.38);
  letter-spacing: 0.04em;
  display: inline-block;
  transition: color 0.3s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-links a:hover { color: var(--gold); transform: translateY(-3px); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(244,242,224,0.50);
}

/* [GLOBAL] Fade animations — progressive enhancement
   Elements are visible by default (no JS = no broken invisible content).
   When kairos-global.js loads it adds class="js" to <html>,
   which activates the animation. */
.fade-up {
  opacity: 1;
  transform: none;
}
.js .fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .fade-up.visible { opacity: 1; transform: translateY(0); }
.js .fade-up:nth-child(2) { transition-delay: 0.1s; }
.js .fade-up:nth-child(3) { transition-delay: 0.2s; }
.js .fade-up:nth-child(4) { transition-delay: 0.3s; }
.js .fade-up:nth-child(5) { transition-delay: 0.4s; }


/* =====================================================
   HOME — HERO
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--purple-deep) 0%, var(--purple) 55%, var(--purple-mid) 100%);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45,0,78,0.96) 0%,
    rgba(45,0,78,0.84) 45%,
    rgba(45,0,78,0.98) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 10;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.75rem;
  padding: 0 2rem;
  margin-top: -50px;
}
.hero__logo {
  width: 562px;
  height: auto;
  animation: logoReveal 1.6s ease forwards, logoGlow 4s ease 1.8s infinite;
}
@keyframes logoReveal {
  0%   { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes logoGlow {
  0%   { filter: drop-shadow(0 0 0px rgba(211,189,113,0)); }
  50%  { filter: drop-shadow(0 0 18px rgba(211,189,113,0.35)); }
  100% { filter: drop-shadow(0 0 0px rgba(211,189,113,0)); }
}


/* =====================================================
   HOME — RETREATS CAROUSEL
   ===================================================== */
.retreats { background: var(--cream); padding-bottom: 0; }
.retreats__header {
  text-align: center;
  max-width: 70%;
  margin: 0 auto var(--space-xl);
}
.retreats__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.retreats__header p {
  color: #4a4a5e;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.tagline-words {
  display: flex;
  justify-content: center;
}

#tagline-cultivate {
  margin-right: 2rem;
}
.carousel-wrapper {
  position: relative;
  --per-view: 5;
  --gap: 10px;
}
.carousel-viewport {
  overflow: hidden;
  padding: 0 var(--space-lg);
}
.carousel-track {
  display: flex;
  gap: var(--gap);
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
  height: 320px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-slide:hover img { transform: scale(1.04); }
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(211,189,113,0.45);
  background: rgba(45,0,78,0.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gold);
  font-size: 1.3rem;
  font-family: var(--font-body);
  font-weight: 200;
  line-height: 1;
}
.carousel-btn:hover { background: var(--purple); border-color: var(--gold); color: var(--gold); }
.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }
.carousel-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.25rem;
}
.carousel-dot {
  width: 20px; height: 2px;
  background: rgba(211,189,113,0.25);
  border-radius: 1px;
  transition: background 0.3s;
  cursor: pointer;
}
.carousel-dot.active { background: var(--gold); }
.retreats__cta { text-align: center; margin-top: var(--space-xl); }


/* =====================================================
   HOME — VIDEO
   ===================================================== */
.video-section {
  background: var(--purple-deep);
  text-align: center;
}
.video-section h2 {
  color: var(--cream);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}
.video-wrap {
  position: relative;
  max-width: 880px;
  aspect-ratio: 16/9;
  margin: 0 auto;
  background: rgba(211,189,113,0.04);
  border: 1px solid rgba(211,189,113,0.2);
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.25rem;
  overflow: hidden;
  cursor: pointer;
}


/* =====================================================
   HOME — ABOUT MANGO
   ===================================================== */
.about {
  position: relative;
  min-height: 92vh;
  background-image: url('http://kairosyogaretreats.com/wp-content/uploads/2026/06/Kairos-yoga-retreats-Mango-1.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: 65% top;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 0;
}
.about__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to left,
    rgba(45,0,78,0.92) 0%,
    rgba(45,0,78,0.78) 38%,
    rgba(45,0,78,0.28) 70%,
    rgba(45,0,78,0.18) 100%
  );
}
.about__content {
  position: relative; z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto; padding: 0 var(--space-lg);
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.about__text { max-width: 500px; }
.about__text h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: 0.06em; margin-bottom: 0.25rem;
  color: var(--cream);
}
.about__role {
  font-family: var(--font-body); font-size: 0.68rem;
  font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(211,189,113,0.65);
  margin-bottom: 1.75rem;
}
blockquote.about-quote {
  font-family: var(--font-heading); font-style: italic;
  font-size: 1.1rem; color: var(--gold);
  border-left: 2px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.5rem;
  margin: 0 0 1.75rem; line-height: 1.65;
}
.about__text p {
  color: rgba(244,242,224,0.72); font-size: 1rem; margin-bottom: 2rem;
}


/* =====================================================
   HOME — CLASSES MARQUEE
   ===================================================== */
.classes { background: var(--cream-dark); overflow: hidden; }
.classes__header {
  text-align: center; margin-bottom: var(--space-xl);
  max-width: 70%; margin-left: auto; margin-right: auto;
}
.classes__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.08em; margin-bottom: 1.25rem;
}
.classes__header p { color: #4a4a5e; font-size: 1.05rem; }
.marquee-viewport {
  width: 100%;
  overflow: hidden;
  margin-bottom: var(--space-xl);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee-right 55s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.mq-card {
  flex-shrink: 0;
  height: 320px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.mq-card--sm { width: 220px; }
.mq-card--lg { width: 390px; }
.mq-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.20) saturate(0.84) contrast(0.95) brightness(1.03);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.mq-card:hover img {
  transform: scale(1.04);
  filter: sepia(0.08) saturate(0.9) contrast(0.97) brightness(1.06);
}
.mq-card__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(45,0,78,0.75), transparent);
  opacity: 0; transition: opacity 0.35s ease;
}
.mq-card:hover .mq-card__label { opacity: 1; }
.mq-card__label span {
  font-family: var(--font-heading); font-size: 0.85rem;
  color: var(--cream); letter-spacing: 0.06em;
}
.classes__cta { text-align: center; }


/* =====================================================
   HOME — TESTIMONIALS
   ===================================================== */
.testimonials { background: var(--purple-deep); padding: var(--space-3xl) 0; }
.testimonials__header {
  text-align: center; margin-bottom: var(--space-xl);
  max-width: 70%; margin-left: auto; margin-right: auto;
}
.testimonials__header h2 {
  color: var(--cream);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.08em; margin-bottom: 1rem;
}
.testimonials__header p { color: rgba(244,242,224,0.45); font-size: 0.95rem; }
.testi-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 3.5rem;
}
.testi-card {
  display: none;
  background: #fff;
  border-radius: 32px;
  padding: 3rem 3rem 2.5rem;
  text-align: center;
  border: 1px solid rgba(211,189,113,0.18);
  box-shadow: 0 8px 40px rgba(15,0,32,0.35);
}
.testi-card.testi-active {
  display: block;
  animation: testiReveal 0.55s ease forwards;
}
@keyframes testiReveal {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.testi-avatar {
  width: 92px; height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  display: block;
  margin: 0 auto 1.75rem;
  filter: sepia(0.12) saturate(0.88) contrast(0.96) brightness(1.03);
}
.testi-avatar-ph {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-deep));
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem;
  font-family: var(--font-heading); font-size: 1.4rem; color: var(--gold);
}
.testi-mark {
  font-family: Georgia, serif;
  font-size: 4.5rem; line-height: 0.55;
  color: var(--gold); opacity: 0.22;
  display: block; margin-bottom: 0.6rem;
}
.testi-quote {
  font-family: var(--font-heading); font-style: italic;
  font-size: 0.96rem; color: var(--purple);
  line-height: 1.82;
  max-width: 500px; margin: 0 auto 0.4rem;
}
@keyframes quoteIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testi-divider {
  width: 32px; height: 1px;
  background: var(--gold); opacity: 0.4;
  margin: 0 auto 1.25rem;
}
.testi-quote + .testi-divider { margin-top: 1.75rem; }
.testi-quote + .testi-lang + .testi-divider { margin-top: 0; }
.testi-name {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.3rem;
}
.testi-role { font-size: 0.85rem; color: #555; font-weight: 600; margin-bottom: 0.3rem; }
.testi-lang {
  display: block;
  font-size: 0.5rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: #bbb;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(211,189,113,0.28);
  background: rgba(45,0,78,0.55);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  color: var(--gold); font-size: 1.3rem; font-weight: 200;
  z-index: 10;
}
.testi-btn:hover { background: var(--purple); border-color: var(--gold); }
.testi-prev { left: 0; }
.testi-next { right: 0; }
.testi-dots {
  display: flex; justify-content: center; gap: 7px; margin-top: 2rem;
}
.testi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(211,189,113,0.22);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.3s ease;
}
.testi-dot.testi-dot-active { background: var(--gold); transform: scale(1.35); }
.testi-counter {
  text-align: center; margin-top: 1rem;
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(244,242,224,0.2);
}


/* =====================================================
   HOME — FOLLOW THE FINCA
   ===================================================== */
.social {
  position: relative;
  min-height: 480px;
  background-image: url('http://kairosyogaretreats.com/wp-content/uploads/2026/06/Kairos-yoga-retreats-6.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex; align-items: center;
  padding: var(--space-2xl) 0;
}
.social__overlay {
  position: absolute; inset: 0;
  background: rgba(45,0,78,0.68);
}
.social .container { position: relative; z-index: 2; }
.social__header { text-align: center; margin-bottom: var(--space-lg); }
.social__header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: 0.08em; color: var(--cream);
}
.social__icons {
  display: flex; justify-content: center;
  align-items: center; gap: 2.5rem;
}
.social-icon-link {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border: 1px solid rgba(211,189,113,0.5);
  border-radius: 50%;
  color: var(--cream); transition: var(--transition);
}
.social-icon-link:hover {
  background: rgba(211,189,113,0.18); border-color: var(--gold); color: var(--gold);
}


/* =====================================================
   HOME — FAQ
   ===================================================== */
.faq { background: var(--purple-deep); }
.faq__header { text-align: center; margin-bottom: var(--space-xl); }
.faq__header h2 {
  color: var(--cream);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  letter-spacing: 0.08em;
}
.faq__list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(211,189,113,0.2); }
.faq-item:first-child { border-top: 1px solid rgba(211,189,113,0.2); }
.faq-q {
  width: 100%; background: none; border: none;
  text-align: left; padding: 1.5rem 0;
  font-family: var(--font-heading); font-size: 1rem;
  color: var(--cream); cursor: pointer;
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
  letter-spacing: 0.04em; transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q::after {
  content: '+'; font-family: var(--font-body);
  font-size: 1.5rem; font-weight: 200;
  color: var(--gold); flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-q { color: var(--gold); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none; padding-bottom: 1.75rem;
  font-size: 0.95rem;
  color: rgba(244,242,224,0.65);
  line-height: 1.85; max-width: 640px;
}
.faq-item.open .faq-a { display: block; }


/* =====================================================
   HOME — CONTACT
   ===================================================== */
.contact { background: var(--cream-dark); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact__left h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  letter-spacing: 0.06em; line-height: 1.2;
  margin-bottom: 1.25rem;
}
.contact__left > p { color: #4a4a5e; font-size: 1.05rem; margin-bottom: 2.5rem; }
.contact-details { font-size: 0.88rem; line-height: 2.1; color: #555; }
.contact-details strong {
  display: block;
  font-family: var(--font-body); font-size: 0.62rem;
  font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-top: 1rem; margin-bottom: 0.15rem;
}
.contact-details strong:first-child { margin-top: 0; }
.contact-details a { color: var(--purple); }
.contact-details a:hover { color: var(--purple-deep); text-decoration: underline; }

.form-group { margin-bottom: 1.25rem; }
label {
  display: block; font-size: 0.62rem;
  font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: #999; margin-bottom: 0.5rem;
}
input, textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid rgba(75,0,130,0.16);
  border-radius: var(--radius-sm);
  background: white;
  font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 300; color: var(--dark);
  transition: var(--transition); -webkit-appearance: none;
}
input:focus, textarea:focus {
  outline: none; border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(75,0,130,0.08);
}
textarea { min-height: 110px; resize: vertical; line-height: 1.65; }
input::placeholder, textarea::placeholder { color: #ccc; }
.form-submit .btn { width: 100%; }
.radio-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.4rem; }
.radio-label {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; font-weight: 300;
  color: var(--dark); cursor: pointer;
  text-transform: none; letter-spacing: 0;
}
.radio-label input[type="radio"] {
  width: 16px; height: 16px; padding: 0;
  border: none; background: none; box-shadow: none;
  border-radius: 50%; cursor: pointer;
  accent-color: var(--purple);
  -webkit-appearance: auto; appearance: auto;
}


/* =====================================================
   HOME — LIGHTBOX
   ===================================================== */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15,0,32,0.96);
  display: none; align-items: center; justify-content: center;
  cursor: pointer; padding: 2rem;
}
.lightbox-overlay.lb-active { display: flex; }
.lightbox-img-wrap {
  position: relative; cursor: default;
  max-width: 90vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; display: block;
  border-radius: var(--radius-sm);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute; top: -2.5rem; right: 0;
  background: none; border: none; cursor: pointer;
  color: rgba(244,242,224,0.55); font-size: 1.8rem; line-height: 1;
  transition: color 0.2s ease; font-weight: 200;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(45,0,78,0.75); border: 1px solid rgba(211,189,113,0.3);
  color: var(--gold); cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; transition: var(--transition); z-index: 1001;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--purple); border-color: var(--gold);
}
.lightbox-counter {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(244,242,224,0.35); z-index: 1001; white-space: nowrap;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .contact__inner { gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --space-3xl: 5.5rem; --space-2xl: 4rem; }
  html { font-size: 13px; }
  .container { padding: 0 0.75rem; }
  section { padding: 5rem 0; }
  .nav-links { gap: 2rem; }
  .site-nav { padding: 1.25rem; }
  .hero__logo { width: 320px; }
  /* Hero bg: shift left to show Mango (person in white) */
  .hero__bg { background-position: 28% top !important; }
  .carousel-wrapper { --per-view: 2; }
  .about {
    background-attachment: scroll;
    background-position: 5% top;
    min-height: auto;
  }
  .about__overlay {
    background: linear-gradient(to bottom, rgba(45,0,78,0.82) 0%, rgba(45,0,78,0.62) 100%);
  }
  .about__content { justify-content: center; }
  .about__text { max-width: 100%; }
  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .social__icons { gap: 1.75rem; }
  /* Testimonials: wider, more square, smaller text */
  .testi-wrap { padding: 0 2.75rem; max-width: 100%; }
  .testi-card { padding: 1.5rem 1.25rem; }
  .testi-quote { font-size: 0.82rem; line-height: 1.65; }
  .testi-mark { font-size: 3rem; }
  .testi-name { font-size: 0.75rem; }
  .testi-role { font-size: 0.65rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer__brand { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .carousel-wrapper { --per-view: 1; }
  .carousel-slide { height: 260px; }
  .btn { padding: 12px 24px; font-size: 0.62rem; }
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.6rem; letter-spacing: 0.14em; }
}


/* =====================================================
   WORDPRESS ADMIN BAR COMPENSATION
   ===================================================== */
body.admin-bar .site-nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-nav {
    top: 46px;
  }
}


/* =====================================================
   NAV FALLBACK — CSS-only scroll-driven background
   ===================================================== */
@supports (animation-timeline: scroll()) {
  .site-nav:not(.scrolled) {
    animation: navBg linear both;
    animation-timeline: scroll(root);
    animation-range: 60px 160px;
  }
  @keyframes navBg {
    from { background: transparent; }
    to   { background: rgba(45,0,78,0.97); }
  }
/* ==========================================
   PRODUCT PAGE
   ========================================== */

/* Image padding */
.edd_download_image {
    padding: 20px !important;
    box-sizing: border-box !important;
}

/* Purchase form - centered below both columns */
.edd_download_purchase_form,
#edd_download_purchase_form {
    clear: both !important;
    float: none !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin: 30px 0 50px !important;
    padding: 0 !important;
}

/* Purchase button - solid gold, pill */
.edd-add-to-cart {
    background: #c9a96e !important;
    color: #1a0033 !important;
    border: 1px solid #c9a96e !important;
    padding: 14px 50px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-family: 'Raleway', sans-serif !important;
    border-radius: 50px !important;
    font-size: 12px !important;
    cursor: pointer !important;
    display: inline-block !important;
}
.edd-add-to-cart:hover {
    background: #b8902d !important;
}

/* Hide the "Checkout" button — redirect handles navigation */
.edd_go_to_checkout,
a.edd_go_to_checkout {
    display: none !important;
}

/* ==========================================
   CHECKOUT PAGE
   ========================================== */

#edd_checkout_form_wrap {
    max-width: 60% !important;
    margin: 30px auto !important;
}

p.edd-description,
.edd-description { display: none !important; }

/* Un-style the remove-from-cart button */
.edd-cart-download-remove,
.edd-cart-download-remove a,
td.edd_cart_remove a,
.edd_remove_from_cart,
a.edd_remove_from_cart {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    color: #c0392b !important;
    padding: 2px 5px !important;
    font-size: 13px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-family: inherit !important;
    display: inline !important;
}

/* Terms: force block stacking, reset any flex parent */
#edd_purchase_form fieldset,
#edd_purchase_form > div,
.edd-checkout-before-purchase-form,
.edd_purchase_form_wrap {
    display: block !important;
    float: none !important;
}

#edd_terms,
#edd_terms_agreement {
    float: none !important;
    clear: both !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#edd_terms {
    font-size: 11px !important;
    line-height: 1.4 !important;
    margin-bottom: 15px !important;
    text-align: left !important;
    height: auto !important;
    max-height: 9999px !important;
    overflow: visible !important;
}

#edd_show_terms { display: none !important; }

#edd_terms_agreement {
    font-size: 11px !important;
    text-align: left !important;
    margin: 0 0 20px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
}

#edd_agree_to_terms {
    flex-shrink: 0 !important;
    width: 14px !important;
    height: 14px !important;
    margin: 0 8px 0 0 !important;
    -webkit-appearance: checkbox !important;
    appearance: auto !important;
}

/* Payment containers */
#edd_payment_mode_select,
.edd-paypal-commerce-smart-buttons,
#edd-paypal-smart-buttons-wrap,
#edd-paypal-commerce-hosted-fields-wrap {
    max-width: 60% !important;
    margin: 0 auto !important;
}

/* Checkout submit button - solid gold, pill */
#edd_purchase_submit {
    text-align: center !important;
    max-width: 60% !important;
    margin: 20px auto !important;
}

#edd_purchase_submit input[type="submit"],
#edd_purchase_submit button[type="submit"] {
    background: #c9a96e !important;
    color: #1a0033 !important;
    border: 1px solid #c9a96e !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-size: 12px !important;
    padding: 12px 40px !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    font-family: 'Raleway', sans-serif !important;
}
#edd_purchase_submit input[type="submit"]:hover,
#edd_purchase_submit button[type="submit"]:hover {
    background: #b8902d !important;
}
  .edd_download_purchase_form ~ .edd_download_purchase_form { display: none !important; }
input.edd-add-to-cart.edd-no-js { display: none !important; }
  #edd_checkout_user_info .edd-label,
#edd_purchase_form label.edd-label {
    display: block !important;
    margin-bottom: 10px !important;
    margin-top: 18px !important;
    font-size: 9px !important;
}
  /* Confirmation page */
.edd_purchase_receipt,
#edd_purchase_receipt {
    max-width: 65% !important;
    margin: 60px auto !important;
}
  /* Generic pages (confirmation, etc.) */
.generic-page-wrap {
    max-width: 760px;
    margin: 80px auto 60px;
    padding: 0 40px;
}

/* Hide bold product title in receipt — keep download link */
.edd_purchase_receipt td strong {
    display: none !important;
}

/* Tighten receipt spacing */
.edd_purchase_receipt table td,
.edd_purchase_receipt table th {
    padding: 6px 0 !important;
    vertical-align: top !important;
}
 /* ==========================================
   HOMEPAGE TAGLINE — Cultivate. Elevate
   ========================================== */
.tagline-section {
  background: #f4f2e0;
  padding: 3rem 0;
  text-align: center;
}
.tagline-words {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
}
.tagline-word {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 400;
  color: #4b0082;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.tagline-word.tagline-visible {
  opacity: 1;
  transform: translateY(0);
}