/* ===========================
   RHYTHMA — Global Styles
   =========================== */

:root {
  --primary: #F06292;
  --accent: #880E4F;
  --highlight: #FFEE58;
  --dark: #1a0a12;
  --light: #fff9fb;
  --gray: #f5e9ee;
  --text: #2d1520;
  --text-muted: #7c4a5c;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(136,14,79,0.12);
  --shadow-sm: 0 2px 12px rgba(240,98,146,0.10);
  --radius: 20px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

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

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

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

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary);
}

/* ===========================
   TYPOGRAPHY
   =========================== */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* ===========================
   UTILITIES
   =========================== */

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section--alt {
  background: var(--gray);
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark .section-label {
  color: var(--primary);
}

.section--dark p {
  color: rgba(255,255,255,0.8);
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,98,146,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--highlight);
  color: var(--dark);
  border-color: var(--highlight);
  font-weight: 700;
}

.btn--accent:hover {
  background: #f9de00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,238,88,0.5);
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(240,98,146,0.12);
  color: var(--accent);
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,249,251,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240,98,146,0.12);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-text span {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--accent);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--primary);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav__cta:hover {
  background: var(--accent);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--primary);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray);
}

/* ===========================
   BLOCK 1: HERO (turos)
   =========================== */

.turos {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.turos__bg {
  position: absolute;
  inset: 0;
  background-image: url('../hero-aerobics.png');
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.12) translate(-1%, 1%); }
}

.turos__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,10,18,0.82) 0%,
    rgba(136,14,79,0.55) 50%,
    rgba(240,98,146,0.2) 100%
  );
}

.turos__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 780px;
  padding: 9rem 1.5rem 5rem;
  margin: 0 auto;
  text-align: center;
}

.turos__eyebrow {
  display: inline-block;
  background: rgba(255,238,88,0.2);
  border: 1px solid var(--highlight);
  color: var(--highlight);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.turos__title {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s 0.2s ease both;
  line-height: 1.1;
}

.turos__title em {
  color: var(--primary);
  font-style: italic;
}

.turos__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s 0.35s ease both;
}

.turos__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.5s ease both;
  margin-bottom: 3.5rem;
}

.turos__sections {
  animation: fadeInUp 0.9s 0.65s ease both;
}

.turos__sections-title {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.turos__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  list-style: none;
}

.turos__nav-list li a {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.turos__nav-list li a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-indicator__arrow {
  width: 28px;
  height: 28px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   BLOCK 2: SLIDER / CAROUSEL
   =========================== */

.slider-section {
  overflow: hidden;
}

.slider-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.slider-container {
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.slide:nth-child(even) .slide__content {
  order: -1;
}

.slide__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.slide__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.slide__image:hover img {
  transform: scale(1.04);
}

.slide__content {
  padding: 1.5rem 0;
}

.slide__number {
  font-size: 5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: rgba(240,98,146,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.slide__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.slide__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}

.slide__text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--primary);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240,98,146,0.3);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ===========================
   BLOCK 3: ACCORDION
   =========================== */

.accordion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.accordion-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: sticky;
  top: 6rem;
}

.accordion-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border: 1.5px solid rgba(240,98,146,0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.accordion-item:hover {
  box-shadow: var(--shadow);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}

.accordion-header:hover {
  background: rgba(240,98,146,0.04);
}

.accordion-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(240,98,146,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.accordion-question {
  flex: 1;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}

.accordion-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: transform var(--transition), background var(--transition);
}

.accordion-item.open .accordion-toggle {
  transform: rotate(45deg);
  background: var(--accent);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding var(--transition);
  padding: 0 1.5rem;
}

.accordion-item.open .accordion-body {
  max-height: 400px;
  padding: 0 1.5rem 1.5rem;
}

.accordion-body p, .accordion-body ul {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-body ul {
  padding-left: 1.5rem;
}

.accordion-body ul li {
  margin-bottom: 0.4rem;
}

/* ===========================
   BLOCK 4: CIRCULAR ABOUT
   =========================== */

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,98,146,0.08), transparent);
}

.about-circular {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto 3rem;
}

.about-center-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
  box-shadow: 0 0 0 8px rgba(240,98,146,0.15), var(--shadow);
}

.about-center-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(240,98,146,0.25);
  transform: translate(-50%, -50%);
  animation: rotate 30s linear infinite;
}

.about-orbit--1 {
  width: 320px;
  height: 320px;
}

.about-orbit--2 {
  width: 480px;
  height: 480px;
  animation-direction: reverse;
  animation-duration: 45s;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.about-card {
  position: absolute;
  width: 130px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(240,98,146,0.15);
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-card:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow);
  z-index: 10;
}

.about-card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
}

.about-card__num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.about-card__label {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 0.2rem;
}

/* 8 cards positioned around 2 orbits */
.about-card--1 { top: 2%; left: 50%; transform: translateX(-50%); }
.about-card--2 { top: 50%; right: 2%; transform: translateY(-50%); }
.about-card--3 { bottom: 2%; left: 50%; transform: translateX(-50%); }
.about-card--4 { top: 50%; left: 2%; transform: translateY(-50%); }
.about-card--5 { top: 12%; right: 10%; }
.about-card--6 { bottom: 12%; right: 10%; }
.about-card--7 { bottom: 12%; left: 10%; }
.about-card--8 { top: 12%; left: 10%; }

.about-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* ===========================
   BLOCK 5: TABLE
   =========================== */

.table-section {}

.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.schedule-table {
  width: 100%;
  min-width: 700px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  font-size: 0.95rem;
}

.schedule-table thead {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--white);
}

.schedule-table thead th {
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-table thead th:first-child {
  border-radius: var(--radius) 0 0 0;
}
.schedule-table thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.schedule-table tbody tr {
  border-bottom: 1px solid rgba(240,98,146,0.1);
  transition: background var(--transition);
}

.schedule-table tbody tr:hover {
  background: rgba(240,98,146,0.04);
}

.schedule-table tbody tr:last-child {
  border-bottom: none;
}

.schedule-table td {
  padding: 1rem 1.25rem;
  color: var(--text);
}

.schedule-table td:first-child {
  font-weight: 600;
}

.level-badge {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.level-badge--beginner {
  background: rgba(76,175,80,0.12);
  color: #388e3c;
}

.level-badge--middle {
  background: rgba(255,152,0,0.12);
  color: #e65100;
}

.level-badge--advanced {
  background: rgba(240,98,146,0.15);
  color: var(--accent);
}

/* ===========================
   BLOCK 6: PRICE ORIGAMI
   =========================== */

.price-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2d0a1e 100%);
  color: var(--white);
}

.price-section .section-title {
  color: var(--white);
}

.price-section .section-subtitle {
  color: rgba(255,255,255,0.65);
}

.origami-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.origami-piece {
  position: relative;
  padding: 3rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.origami-piece::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  opacity: 0;
  transition: opacity 0.45s ease;
  border-radius: 50%;
}

.origami-piece--1::before { background: radial-gradient(circle, rgba(240,98,146,0.3), transparent 70%); }
.origami-piece--2::before { background: radial-gradient(circle, rgba(255,238,88,0.25), transparent 70%); }
.origami-piece--3::before { background: radial-gradient(circle, rgba(136,14,79,0.35), transparent 70%); }
.origami-piece--4::before { background: radial-gradient(circle, rgba(240,98,146,0.2), transparent 70%); }

.origami-piece:hover::before {
  opacity: 1;
}

.origami-piece:hover {
  background: rgba(255,255,255,0.08);
  transform: scale(1.02);
  z-index: 2;
  border-color: var(--primary);
}

.origami-piece--1:hover { color: var(--primary); }
.origami-piece--2:hover { color: var(--highlight); }
.origami-piece--3:hover { color: #f48fb1; }
.origami-piece--4:hover { color: var(--primary); }

.origami-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  width: fit-content;
  transition: all var(--transition);
}

.origami-piece:hover .origami-tag {
  background: var(--primary);
  color: var(--white);
}

.origami-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.origami-price sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 0.5rem;
}

.origami-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  font-family: var(--font-heading);
}

.origami-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.origami-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.origami-features li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.origami-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

/* ===========================
   BLOCK 7: INSTRUCTION LEVELS
   =========================== */

.levels-section {}

.levels-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.levels-tab {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(240,98,146,0.25);
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text);
  font-family: var(--font-body);
}

.levels-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.levels-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(240,98,146,0.35);
}

.levels-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.levels-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.levels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.level-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 2rem;
  border: 1.5px solid rgba(240,98,146,0.15);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.level-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.level-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.level-card:hover::after {
  transform: scaleX(1);
}

.level-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.level-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.level-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.level-card__more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.level-card:hover .level-card__more {
  gap: 0.7rem;
}

/* ===========================
   MODAL
   =========================== */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,10,18,0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.modal__close:hover {
  background: var(--primary);
  color: var(--white);
}

.modal__badge {
  margin-bottom: 1rem;
}

.modal__title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.modal__subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal__notes {
  background: var(--gray);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-left: 3px solid var(--primary);
}

.modal__exercises {
  margin-bottom: 1.5rem;
}

.modal__exercises h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.modal__exercises ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal__exercises ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.modal__exercises ul li::before {
  content: '▶';
  color: var(--primary);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ===========================
   BLOCK 8: RECOMMENDATIONS
   =========================== */

.recs-section {}

.recs-intro {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-muted);
}

.recs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.rec-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 2rem 1.5rem;
  border: 1.5px solid rgba(240,98,146,0.15);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rec-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.rec-card__icon {
  font-size: 2.5rem;
}

.rec-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.rec-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.rec-card__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(240,98,146,0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
}

/* ===========================
   BLOCK 9: TIPS BY LEVEL
   =========================== */

.tips-section {
  background: linear-gradient(180deg, var(--gray) 0%, var(--white) 100%);
}

.tips-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 3rem;
  background: var(--white);
  border-radius: 50px;
  padding: 0.4rem;
  box-shadow: var(--shadow-sm);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tips-tab {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-muted);
  font-family: var(--font-body);
}

.tips-tab.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(240,98,146,0.35);
}

.tips-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tips-content.active {
  display: block;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tip-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 2rem 1.5rem;
  border: 1.5px solid rgba(240,98,146,0.12);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.tip-card__number {
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(240,98,146,0.08);
  line-height: 1;
  pointer-events: none;
}

.tip-card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.tip-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.tip-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===========================
   BLOCK 10: ENERGY RHYTHM
   =========================== */

.energy-section {
  background: var(--dark);
  overflow: hidden;
  position: relative;
}

.energy-canvas-wrap {
  width: 100%;
  height: 420px;
  position: relative;
  cursor: crosshair;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
}

#energy-canvas {
  width: 100%;
  height: 100%;
}

.energy-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.energy-btn {
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.energy-btn:hover, .energy-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ===========================
   BLOCK 11: ACHIEVEMENTS
   =========================== */

.achievements-section {}

.achievements-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.goals-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(240,98,146,0.12);
}

.goals-form h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.goals-form p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.goals-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.goal-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(240,98,146,0.15);
  transition: all var(--transition);
}

.goal-checkbox:hover {
  border-color: var(--primary);
  background: rgba(240,98,146,0.04);
}

.goal-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

.goal-checkbox span {
  font-size: 0.95rem;
  font-weight: 500;
}

.achievements-display {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.progress-chart {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(240,98,146,0.12);
}

.progress-chart h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--dark);
}

.progress-bar-item {
  margin-bottom: 1rem;
}

.progress-bar-item:last-child {
  margin-bottom: 0;
}

.progress-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.progress-bar-track {
  height: 8px;
  background: var(--gray);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  width: 0%;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.badges-grid {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(240,98,146,0.12);
}

.badges-grid h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge-item {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 2px solid rgba(240,98,146,0.2);
  cursor: default;
  transition: all var(--transition);
  position: relative;
}

.badge-item.earned {
  border-color: var(--primary);
  background: rgba(240,98,146,0.08);
  animation: pulse 2s ease-in-out infinite;
}

.badge-item.locked {
  opacity: 0.35;
  filter: grayscale(1);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,98,146,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(240,98,146,0); }
}

/* ===========================
   BLOCK 12: RHYTHM SOUL
   =========================== */

.rhythm-soul-section {
  position: relative;
  overflow: hidden;
}

.rhythm-visualizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 160px;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(240,98,146,0.06), rgba(136,14,79,0.04));
  border-radius: var(--radius);
  border: 1px solid rgba(240,98,146,0.12);
  cursor: pointer;
}

.visualizer-bar {
  width: 8px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transition: height 0.15s ease;
  min-height: 4px;
}

.rhythm-soul-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.rhythm-soul-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(240,98,146,0.12);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all var(--transition);
}

.rhythm-soul-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.rhythm-soul-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(240,98,146,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rhythm-soul-card__body h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.rhythm-soul-card__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   BLOCK 13: GALLERY
   =========================== */

.gallery-section {}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(136,14,79,0.6), rgba(240,98,146,0.3));
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--tall img { height: 100%; }

.gallery-item:nth-child(1) { grid-column: span 2; height: 280px; }
.gallery-item:nth-child(2) { height: 280px; }
.gallery-item:nth-child(3) { height: 280px; }
.gallery-item:nth-child(4) { height: 220px; }
.gallery-item:nth-child(5) { height: 220px; }
.gallery-item:nth-child(6) { grid-column: span 2; height: 220px; }
.gallery-item:nth-child(7) { height: 240px; }
.gallery-item:nth-child(8) { height: 240px; }
.gallery-item:nth-child(9) { height: 240px; }
.gallery-item:nth-child(10) { height: 240px; }

/* ===========================
   BLOCK 14: DIRECTION CARDS
   =========================== */

.directions-section {}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.direction-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(240,98,146,0.12);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.direction-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.direction-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition);
}

.direction-card:hover .direction-card__img {
  transform: scale(1.04);
}

.direction-card__img-wrap {
  overflow: hidden;
  height: 200px;
}

.direction-card__body {
  padding: 1.5rem;
}

.direction-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.direction-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.direction-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.direction-card__btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.direction-card__btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ===========================
   DIRECTION MODAL
   =========================== */

.direction-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(240,98,146,0.2);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(240,98,146,0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(240,98,146,0.15);
  transition: all var(--transition);
  font-size: 0.9rem;
}

.radio-option:hover {
  border-color: var(--primary);
  background: rgba(240,98,146,0.04);
}

.radio-option input {
  accent-color: var(--primary);
}

/* ===========================
   BOOKING FORM SECTION
   =========================== */

.booking-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(240,98,146,0.15);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.booking-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.booking-text p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}

.booking-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.perk-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.booking-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.booking-form-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ===========================
   COOKIE BANNER
   =========================== */

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: 0 12px 40px rgba(26,10,18,0.2);
  border: 1.5px solid rgba(240,98,146,0.2);
  z-index: 3000;
  width: min(560px, calc(100vw - 3rem));
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  font-family: var(--font-body);
}

.cookie-btn--accept {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cookie-btn--accept:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.cookie-btn--necessary {
  background: transparent;
  color: var(--text-muted);
  border-color: rgba(0,0,0,0.15);
}

.cookie-btn--necessary:hover {
  border-color: var(--text-muted);
}

.cookie-btn--settings {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand .logo-text {
  color: var(--white);
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.footer__brand .company-info {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer__col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}

.footer__contact-item span:first-child {
  color: var(--primary);
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__legal-links a:hover {
  color: var(--primary);
}

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   LEGAL PAGES
   =========================== */

.legal-page {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.legal-page .legal-date {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content p, .legal-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.5rem;
}

/* ===========================
   THANKS PAGE
   =========================== */

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--light), var(--gray));
}

.thanks-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 4rem 3rem;
  text-align: center;
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(240,98,146,0.15);
}

.thanks-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: bounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounceIn {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.thanks-card h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.thanks-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .slide { grid-template-columns: 1fr; gap: 2rem; }
  .slide__image img { height: 300px; }
  .slide:nth-child(even) .slide__content { order: 0; }
  .accordion-grid { grid-template-columns: 1fr; }
  .accordion-image { position: static; }
  .about-circular { width: 500px; height: 500px; }
  .about-orbit--2 { width: 380px; height: 380px; }
  .about-card--5, .about-card--6, .about-card--7, .about-card--8 { display: none; }
  .recs-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 2rem; }
  .directions-grid { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 4rem 0; }

  .turos__content { padding: 7rem 1.25rem 4rem; }
  .turos__actions { flex-direction: column; align-items: center; }

  .about-circular { width: 360px; height: 360px; }
  .about-center-img { width: 140px; height: 140px; }
  .about-orbit--1 { width: 240px; height: 240px; }
  .about-orbit--2 { width: 320px; height: 320px; }
  .about-card { width: 100px; padding: 0.75rem 0.5rem; }
  .about-card__num { font-size: 1.1rem; }
  .about-card__label { font-size: 0.65rem; }

  .origami-grid { grid-template-columns: 1fr; }
  .levels-grid { grid-template-columns: 1fr; }
  .recs-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { height: 180px !important; grid-column: auto !important; }
  .directions-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .rhythm-soul-grid { grid-template-columns: 1fr; }
  .achievements-form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 480px) {
  .about-circular { width: 280px; height: 280px; }
  .about-orbit--1 { width: 190px; height: 190px; }
  .about-orbit--2 { width: 260px; height: 260px; }
  .about-center-img { width: 110px; height: 110px; }
  .about-card--2, .about-card--4 { display: none; }
  .modal { padding: 1.75rem 1.25rem; }
  .booking-form-card { padding: 1.75rem; }
}
