
/* ========================================
   PureBarre — Main Stylesheet
   Colors: Berry/Rose primary, Teal accent, Cream backgrounds
   Fonts: Cormorant Garamond + Montserrat
======================================== */

:root {
  --berry: #7b2d5e;
  --berry-light: #9d3d7a;
  --berry-dark: #5a1f44;
  --rose: #c96a8f;
  --rose-light: #f2c2d6;
  --teal: #4a8c8c;
  --teal-light: #6ab4b4;
  --cream: #faf6f0;
  --cream-dark: #f0e8de;
  --sand: #e8d8c8;
  --text-dark: #2d2020;
  --text-mid: #5a4040;
  --text-light: #8a7070;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(123,45,94,0.10);
  --shadow-md: 0 4px 20px rgba(123,45,94,0.15);
  --shadow-lg: 0 8px 40px rgba(123,45,94,0.20);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

em { font-style: italic; color: var(--berry); }

a { color: var(--berry); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION COMMON ---- */
section { padding: 100px 0; }

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-light);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark); margin-bottom: 16px; }
.section-desc { font-size: 1rem; color: var(--text-mid); max-width: 600px; line-height: 1.8; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--berry);
  color: var(--white);
  border: none; border-radius: 50px;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: var(--berry-light); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary.btn-large { padding: 18px 36px; font-size: 1rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--berry-dark);
  color: var(--white);
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-text { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 280px; }
.cookie-text p { font-size: 0.85rem; }
.cookie-text a { color: var(--rose-light); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie-primary {
  background: var(--rose); color: white; border: none;
  padding: 8px 20px; border-radius: 50px; font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif; font-weight: 600; cursor: pointer;
  transition: background var(--transition);
}
.btn-cookie-primary:hover { background: var(--rose-light); color: var(--berry-dark); }
.btn-cookie-secondary {
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 20px; border-radius: 50px; font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif; cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-secondary:hover { border-color: white; color: white; }

/* ---- HEADER ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,246,240,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.site-header.scrolled { border-bottom-color: var(--sand); box-shadow: var(--shadow-sm); }
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 16px 24px;
}
.logo { display: flex; align-items: center; gap: 8px; color: var(--berry); text-decoration: none; }
.logo-icon { font-size: 1.2rem; color: var(--rose); }
.logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; letter-spacing: 0.02em; color: var(--text-dark); }
.logo-text strong { color: var(--berry); }
.logo-light .logo-text, .logo-light .logo-text strong { color: var(--white); }

.main-nav { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  color: var(--text-mid); font-size: 0.82rem; font-weight: 500;
  padding: 6px 12px; border-radius: 6px; text-decoration: none;
  transition: all var(--transition);
}
.nav-link:hover { color: var(--berry); background: var(--rose-light); }

.cta-header-btn {
  background: var(--berry); color: white; border: none;
  padding: 8px 20px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.cta-header-btn:hover { background: var(--berry-light); transform: translateY(-1px); }

.burger-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger-btn span { display: block; width: 24px; height: 2px; background: var(--berry); transition: all var(--transition); border-radius: 2px; }
.burger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%); transition: transform 0.4s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--text-dark);
  text-decoration: none; transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--berry); }

/* ---- HERO ---- */
.firtop {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(91,31,68,0.82) 0%, rgba(74,140,140,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px 60px;
  color: white;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 18px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: white; margin-bottom: 24px; line-height: 1.1;
}
.hero-title em { color: var(--rose-light); font-style: italic; }
.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  max-width: 560px; line-height: 1.8; margin-bottom: 48px;
}
.hero-nav-links { margin-bottom: 48px; }
.hero-nav-label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.6); margin-bottom: 16px;
  display: block;
}
.hero-nav-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 8px; max-width: 700px;
}
.hero-nav-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white; text-decoration: none;
  padding: 10px 16px; border-radius: 8px;
  font-size: 0.8rem; font-weight: 500;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.hero-nav-item:hover { background: rgba(255,255,255,0.2); color: white; transform: translateY(-2px); }
.hero-nav-icon { color: var(--rose-light); font-size: 0.6rem; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.7); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: 1; height: 60px; } 50% { opacity: 0.3; height: 30px; } }

/* ---- SLIDER ---- */
.section-slider { background: white; padding: 100px 0; }
.slider-wrapper { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.slider-track { display: flex; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.slide {
  min-width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
}
.slide-img-wrap { height: 480px; overflow: hidden; }
.slide-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.slide:hover .slide-img-wrap img { transform: scale(1.05); }
.slide-content {
  padding: 60px 48px;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
}
.slide-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 16px;
}
.slide-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--text-dark); margin-bottom: 16px;
}
.slide-content p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; }
.slider-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 20px; background: var(--cream-dark);
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--berry); background: transparent;
  color: var(--berry); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.slider-btn:hover { background: var(--berry); color: white; }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sand); cursor: pointer; transition: all var(--transition);
}
.slider-dot.active { background: var(--berry); width: 24px; border-radius: 4px; }

/* ---- ACCORDION ---- */
.section-accordion { background: var(--cream-dark); }
.accordion-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.accordion-left h2 { margin-bottom: 16px; }
.accordion-img { width: 100%; border-radius: var(--radius); margin-top: 32px; object-fit: cover; max-height: 360px; box-shadow: var(--shadow-md); }
.accordion-item {
  border-bottom: 1px solid var(--sand);
  padding: 4px 0;
}
.accordion-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 0; text-align: left; gap: 16px;
  font-family: 'Montserrat', sans-serif; font-size: 0.95rem;
  font-weight: 500; color: var(--text-dark);
  transition: color var(--transition);
}
.accordion-trigger:hover { color: var(--berry); }
.accordion-icon { flex-shrink: 0; transition: transform var(--transition); }
.accordion-item.active .accordion-icon { transform: rotate(180deg); }
.accordion-content { display: none; padding-bottom: 20px; }
.accordion-item.active .accordion-content { display: block; }
.accordion-content p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.9; }
.accordion-content strong { color: var(--text-dark); }

/* ---- ABOUT (CIRCULAR) ---- */
.section-about { background: white; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-circular {
  position: relative; width: 420px; height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.circular-center {
  width: 220px; height: 220px; border-radius: 50%; overflow: hidden;
  border: 4px solid var(--rose-light);
  box-shadow: 0 0 0 8px var(--cream), 0 0 0 12px var(--rose-light);
  position: relative; z-index: 2;
}
.circular-img { width: 100%; height: 100%; object-fit: cover; }
.circular-orbits { position: absolute; inset: 0; }
.orbit-item { position: absolute; }
.orbit-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--rose); border: 2px solid white;
  box-shadow: var(--shadow-sm);
}
.orbit-card {
  position: absolute;
  background: white; border-radius: var(--radius-sm);
  padding: 10px 16px; box-shadow: var(--shadow-md);
  border-left: 3px solid var(--rose);
  display: flex; flex-direction: column; align-items: center;
  white-space: nowrap;
}
.orbit-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--berry); line-height: 1; }
.orbit-label { font-size: 0.7rem; color: var(--text-light); font-weight: 500; }
.orbit-1 { top: -10px; left: 50%; transform: translateX(-50%); }
.orbit-1 .orbit-dot { margin: 0 auto 6px; }
.orbit-1 .orbit-card { transform: translateX(-50%); top: 18px; left: 0; }
.orbit-2 { right: -35px; top: 50%; transform: translateY(-50%); }
.orbit-2 .orbit-dot { margin-bottom: 6px; }
.orbit-2 .orbit-card { right: 18px; top: 0; transform: translateY(-50%); }
.orbit-3 { bottom: 55px; left: 50%; transform: translateX(-50%); }
.orbit-3 .orbit-dot { margin: 0 auto 6px; }
.orbit-3 .orbit-card { transform: translateX(-50%); top: 18px; left: 0; }
.orbit-4 { left: -55px; top: 50%; transform: translateY(-50%); }
.orbit-4 .orbit-dot { margin-bottom: 6px; }
.orbit-4 .orbit-card { left: 18px; top: 0; transform: translateY(-50%); }

.about-lead { font-size: 1.1rem; font-weight: 500; color: var(--text-dark); margin-bottom: 16px; line-height: 1.7; }
.about-text p { color: var(--text-mid); margin-bottom: 16px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag {
  background: var(--cream-dark); color: var(--text-mid);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 500; border: 1px solid var(--sand);
}

/* ---- SCHEDULE ---- */
.section-schedule { background: var(--cream-dark); }
.schedule-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.schedule-table { width: 100%; border-collapse: collapse; background: white; font-size: 0.88rem; }
.schedule-table thead tr { background: var(--berry); }
.schedule-table th {
  color: white; padding: 14px 16px; text-align: left;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.schedule-table td { padding: 12px 16px; vertical-align: middle; }
.schedule-table tbody tr { border-bottom: 1px solid var(--cream-dark); transition: background var(--transition); }
.schedule-table tbody tr:hover { background: var(--cream); }
.schedule-table tbody tr.row-highlight { background: rgba(250,246,240,0.7); }
.day-badge {
  display: inline-block; padding: 4px 10px; border-radius: 50px;
  background: var(--rose-light); color: var(--berry); font-weight: 700; font-size: 0.78rem;
}
.dir-tag { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 0.78rem; font-weight: 500; }
.dir-classic { background: #ede7f6; color: #5e35b1; }
.dir-cardio { background: #fce4ec; color: #c2185b; }
.dir-flex { background: #e0f2f1; color: #00796b; }
.dir-power { background: #fff3e0; color: #e65100; }
.dir-post { background: #f3e5f5; color: #7b1fa2; }
.level-badge { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.level-begin { background: #e8f5e9; color: #2e7d32; }
.level-mid { background: #fff8e1; color: #f57f17; }
.level-adv { background: #fbe9e7; color: #bf360c; }
.level-all { background: #e3f2fd; color: #1565c0; }
.spots-badge { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.spots-free { background: #e8f5e9; color: #2e7d32; }
.spots-full { background: #ffebee; color: #c62828; }
.schedule-note { margin-top: 16px; color: var(--text-light); font-size: 0.82rem; }

/* ---- PRICING ORIGAMI ---- */
.section-pricing { background: var(--berry-dark); }
.section-pricing .section-tag { background: rgba(255,255,255,0.15); color: var(--rose-light); }
.section-pricing .section-title { color: white; }
.section-pricing .section-title em { color: var(--rose-light); }
.section-pricing .section-desc { color: rgba(255,255,255,0.75); }
.pricing-origami { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.origami-card {
  position: relative; height: 380px;
  perspective: 1000px; cursor: pointer;
}
.origami-front, .origami-back {
  position: absolute; inset: 0;
  border-radius: var(--radius);
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 32px 24px;
}
.origami-front {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: white; text-align: center;
  transform: rotateY(0deg);
}
.origami-back {
  background: white;
  transform: rotateY(180deg);
  align-items: flex-start;
}
.origami-card:hover .origami-front { transform: rotateY(-180deg); }
.origami-card:hover .origami-back { transform: rotateY(0deg); }
.origami-icon { font-size: 2.5rem; color: var(--rose-light); margin-bottom: 16px; }
.origami-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: 12px; }
.origami-price { font-size: 0.9rem; color: rgba(255,255,255,0.8); text-align: center; line-height: 1.6; }
.origami-price em { font-size: 1.5rem; color: var(--rose-light); font-style: normal; display: block; }
.origami-back h3 { font-size: 1.4rem; color: var(--berry); margin-bottom: 12px; }
.origami-back p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.6; }
.origami-back ul { list-style: none; margin-bottom: 20px; }
.origami-back li { font-size: 0.82rem; color: var(--text-mid); padding: 4px 0; padding-left: 16px; position: relative; }
.origami-back li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.btn-origami {
  background: var(--berry); color: white; border: none;
  padding: 10px 24px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition); margin-top: auto;
}
.btn-origami:hover { background: var(--berry-light); }

/* ---- LEVELS ---- */
.section-levels { background: white; }
.levels-tabs { display: flex; gap: 4px; margin-bottom: 40px; flex-wrap: wrap; }
.level-tab {
  background: var(--cream-dark); border: none;
  padding: 10px 24px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 500;
  cursor: pointer; color: var(--text-mid); transition: all var(--transition);
}
.level-tab.active, .level-tab:hover { background: var(--berry); color: white; }
.level-panel { display: none; }
.level-panel.active { display: block; }
.level-sets { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.level-set {
  background: var(--cream); border-radius: var(--radius);
  padding: 36px 32px; border: 1px solid var(--sand);
  transition: all var(--transition);
}
.level-set:hover { box-shadow: var(--shadow-md); border-color: var(--rose-light); }
.set-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose); display: block; margin-bottom: 8px; }
.level-set-header h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 12px; }
.level-set-header p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.btn-set-details {
  background: var(--berry); color: white; border: none;
  padding: 10px 20px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
}
.btn-set-details:hover { background: var(--berry-light); transform: translateY(-1px); }

/* ---- RECOMMENDATIONS ---- */
.section-recommendations { background: var(--cream-dark); }
.recommendations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.rec-item {
  background: white; border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--sand); transition: all var(--transition);
}
.rec-item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--rose-light); }
.rec-icon {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  background: var(--rose-light); color: var(--berry);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.rec-item h3 { font-size: 1.2rem; color: var(--text-dark); margin-bottom: 12px; }
.rec-item p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.8; }

/* ---- TIPS BY LEVEL ---- */
.section-tips { background: white; }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.tips-level-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px; padding-bottom: 20px;
  border-bottom: 2px solid var(--sand);
}
.tips-level-header h3 { font-size: 1.4rem; color: var(--text-dark); }
.beginner-header { color: var(--teal); }
.beginner-header h3 { color: var(--teal); }
.intermediate-header { color: var(--rose); }
.intermediate-header h3 { color: var(--rose); }
.advanced-header { color: var(--berry); }
.advanced-header h3 { color: var(--berry); }
.tips-list { display: flex; flex-direction: column; gap: 24px; }
.tip-item { display: flex; gap: 16px; }
.tip-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--rose-light); font-weight: 300;
  line-height: 1; min-width: 32px;
}
.tip-body h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; font-family: 'Montserrat', sans-serif; }
.tip-body p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.8; }

/* ---- PROGRAMS ---- */
.section-programs { background: var(--cream-dark); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: all var(--transition);
  background: white;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-img-wrap { height: 200px; position: relative; overflow: hidden; }
.program-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.program-card:hover .program-img-wrap img { transform: scale(1.08); }
.program-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(91,31,68,0.7));
}
.program-card-body { padding: 24px; }
.program-icon { font-size: 1.5rem; color: var(--rose); margin-bottom: 10px; }
.program-card-body h3 { font-size: 1.3rem; color: var(--text-dark); margin-bottom: 8px; }
.program-card-body p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.btn-program {
  background: transparent; color: var(--berry);
  border: 1px solid var(--berry); padding: 8px 18px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
}
.btn-program:hover { background: var(--berry); color: white; }

/* ---- TERMINOLOGY FLIP CARDS ---- */
.section-terminology { background: var(--berry-dark); }
.section-terminology .section-tag { background: rgba(255,255,255,0.15); color: var(--rose-light); }
.section-terminology .section-title { color: white; }
.section-terminology .section-title em { color: var(--rose-light); }
.section-terminology .section-desc { color: rgba(255,255,255,0.75); }
.terminology-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.term-card {
  height: 220px; perspective: 1000px; cursor: pointer;
}
.term-card-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d; transition: transform 0.6s ease;
}
.term-card.flipped .term-card-inner { transform: rotateY(180deg); }
.term-front, .term-back {
  position: absolute; inset: 0;
  border-radius: var(--radius);
  backface-visibility: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px;
}
.term-front {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}
.term-back { background: white; transform: rotateY(180deg); }
.term-french {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; color: var(--rose-light); font-style: italic;
  margin-bottom: 8px;
}
.term-ru { font-size: 0.9rem; color: rgba(255,255,255,0.9); font-weight: 500; margin-bottom: 16px; }
.term-hint { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; }
.term-back h4 { font-size: 1.2rem; color: var(--berry); margin-bottom: 10px; }
.term-back p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.8; text-align: center; }

/* ---- VIRTUAL TOUR ---- */
.section-tour { background: white; }
.tour-zone-header { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.tour-zone-btn {
  background: var(--cream-dark); border: 1px solid var(--sand);
  padding: 10px 24px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 500;
  cursor: pointer; color: var(--text-mid); transition: all var(--transition);
}
.tour-zone-btn.active, .tour-zone-btn:hover { background: var(--berry); color: white; border-color: var(--berry); }
.tour-panel { display: none; }
.tour-panel.active { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.tour-panel-img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.tour-panel-img img { width: 100%; height: 360px; object-fit: cover; }
.tour-hotspot { position: absolute; }
.hotspot-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--rose); border: 3px solid white;
  box-shadow: 0 0 0 4px rgba(201,106,143,0.4);
  cursor: pointer; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(201,106,143,0.4); } 50% { box-shadow: 0 0 0 8px rgba(201,106,143,0.2); } }
.hotspot-tooltip {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: var(--berry); color: white;
  padding: 6px 12px; border-radius: 6px; font-size: 0.75rem;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.tour-hotspot:hover .hotspot-tooltip { opacity: 1; }
.tour-panel-text h3 { font-size: 1.8rem; color: var(--text-dark); margin-bottom: 16px; }
.tour-panel-text p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.8; margin-bottom: 12px; }

/* ---- FLEX GRID ---- */
.section-flexgrid { background: var(--cream-dark); }
.flex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 280px;
  gap: 16px;
}
.flex-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer;
}
.flex-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.flex-item:hover img { transform: scale(1.06); }
.flex-wide { grid-column: span 2; }
.flex-tall { grid-row: span 2; }
.flex-tooltip {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(91,31,68,0.9) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; opacity: 0; transition: opacity var(--transition);
}
.flex-item:hover .flex-tooltip { opacity: 1; }
.flex-tooltip strong { color: white; font-size: 1rem; display: block; margin-bottom: 6px; }
.flex-tooltip p { color: rgba(255,255,255,0.85); font-size: 0.82rem; line-height: 1.6; }

/* ---- GALLERY ---- */
.section-gallery { background: white; }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(91,31,68,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 600; font-size: 0.9rem; }

/* ---- CONTACT ---- */
.section-contact { background: var(--cream-dark); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-left h2 { margin-bottom: 20px; }
.contact-left > p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 28px; }
.contact-info-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-info-item { display: flex; align-items: center; gap: 12px; color: var(--text-mid); font-size: 0.88rem; }
.contact-info-item svg { color: var(--rose); flex-shrink: 0; }
.contact-img { border-radius: var(--radius); object-fit: cover; width: 100%; max-height: 300px; }

.booking-form { background: white; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
.booking-form h3 { font-size: 1.6rem; color: var(--text-dark); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--sand); border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif; font-size: 0.88rem;
  color: var(--text-dark); background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--berry); background: white;
}
.form-group textarea { resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.form-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--berry); flex-shrink: 0; }
.form-check label { font-size: 0.82rem; color: var(--text-mid); }

/* ---- FOOTER ---- */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.7); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding: 60px 0; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin: 16px 0; }
.footer-legal p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-legal a { color: rgba(255,255,255,0.55); }
.footer-nav-group h4 { color: white; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-nav-group a { display: block; color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 8px; transition: color var(--transition); }
.footer-nav-group a:hover { color: var(--rose-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; justify-content: space-between; font-size: 0.8rem; flex-wrap: wrap; gap: 8px; }

/* ---- MODALS ---- */
.modal-overlay, .level-modal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(45,32,32,0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
  padding: 24px;
}
.modal-overlay.open, .level-modal-overlay.open { opacity: 1; pointer-events: all; }
.modal, .level-modal {
  background: white; border-radius: var(--radius);
  max-width: 680px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  position: relative; padding: 48px;
  transform: translateY(20px); transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal, .level-modal-overlay.open .level-modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--cream-dark); border: none; border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-mid); transition: all var(--transition);
}
.modal-close:hover { background: var(--rose-light); color: var(--berry); }
.modal-content h2 { font-size: 2rem; color: var(--berry); margin-bottom: 12px; }
.modal-content .modal-tag { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--rose); margin-bottom: 20px; display: block; }
.modal-content p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.9; margin-bottom: 14px; }
.modal-content h3 { font-size: 1.3rem; color: var(--text-dark); margin: 20px 0 12px; }
.modal-content ul { list-style: none; margin-bottom: 16px; }
.modal-content li { padding: 6px 0 6px 20px; position: relative; font-size: 0.9rem; color: var(--text-mid); }
.modal-content li::before { content: '✦'; position: absolute; left: 0; color: var(--rose); font-size: 0.6rem; top: 10px; }
.modal-cta { margin-top: 32px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .pricing-origami { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; }
  .about-circular { margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .main-nav, .cta-header-btn { display: none; }
  .burger-btn { display: flex; }
  .slide { grid-template-columns: 1fr; }
  .slide-img-wrap { height: 260px; }
  .slide-content { padding: 28px; }
  .accordion-layout { grid-template-columns: 1fr; }
  .accordion-img { display: none; }
  .about-circular { width: 300px; height: 300px; }
  .circular-center { width: 160px; height: 160px; }
  .recommendations-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .terminology-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-panel.active { grid-template-columns: 1fr; }
  .flex-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .flex-wide { grid-column: span 2; }
  .flex-tall { grid-row: span 1; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-large { grid-column: span 2; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 1; }
  .contact-layout { grid-template-columns: 1fr; }
  .level-sets { grid-template-columns: 1fr; }
  .pricing-origami { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-form { padding: 28px 20px; }
  .modal, .level-modal { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .pricing-origami { grid-template-columns: 1fr; }
  .terminology-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; }
}

/* ---- SCHEDULE RESPONSIVE ---- */
@media (max-width: 700px) {
  .schedule-table thead { display: none; }
  .schedule-table tbody tr {
    display: block; margin-bottom: 16px;
    border: 1px solid var(--sand); border-radius: var(--radius-sm);
    padding: 12px;
  }
  .schedule-table td {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 8px; font-size: 0.82rem;
    border-bottom: 1px solid var(--cream-dark);
  }
  .schedule-table td:last-child { border-bottom: none; }
  .schedule-table td::before {
    content: attr(data-label);
    font-weight: 600; font-size: 0.75rem; color: var(--text-light);
    min-width: 80px;
  }
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--rose); }
