/* ==========================================
   АСАНА ОНЛАЙН — MAIN STYLESHEET
   Vanilla CSS — No Frameworks
   ========================================== */

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

:root {
  --primary: #D95030;
  --primary-dark: #b8401f;
  --accent: #98FF98;
  --accent-dark: #6adb6a;
  --highlight: #FD7B7C;
  --bg: #FDF8F4;
  --bg-warm: #F5EDE4;
  --bg-dark: #1A1410;
  --text: #2D2118;
  --text-light: #6B5A4E;
  --text-muted: #9C8A80;
  --white: #FFFFFF;
  --border: #E8D8CC;
  --border-light: #F2E8E0;
  --shadow: 0 4px 24px rgba(60,30,10,0.10);
  --shadow-md: 0 8px 40px rgba(60,30,10,0.14);
  --shadow-lg: 0 16px 60px rgba(60,30,10,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-xl: 28px;
  --transition: 0.3s ease;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

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

/* --- TYPOGRAPHY --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(217,80,48,0.10);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
}
.section-tag.centered { display: block; text-align: center; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-title.centered { text-align: center; }
.section-title em { color: var(--primary); font-style: italic; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin-bottom: 3rem;
}
.section-subtitle.centered { margin: 0 auto 3rem; text-align: center; }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(217,80,48,0.30);
  text-align: center;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(217,80,48,0.40);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline-white {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ==========================================
   COOKIE BANNER
   ========================================== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1rem;
  right: 1rem;
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  z-index: 10000;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
  transform: translateY(200%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner.hide { transform: translateY(200%); }
.cookie-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text { display: flex; align-items: flex-start; gap: 1rem; flex: 1; min-width: 200px; }
.cookie-text p { font-size: 0.9rem; opacity: 0.9; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-icon { font-size: 1.5rem; flex-shrink: 0; }
.cookie-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--accent);
  color: var(--text);
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.3rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.btn-cookie-accept:hover { background: var(--accent-dark); }
.btn-cookie-necessary, .btn-cookie-settings {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.btn-cookie-necessary:hover, .btn-cookie-settings:hover { border-color: var(--white); }

/* ==========================================
   HEADER
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(253,248,244,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(60,30,10,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.logo-accent { color: var(--primary); }
.site-header.scrolled .logo-text { color: var(--text); }
.site-header:not(.scrolled) .logo-text { color: #000; }

.main-nav {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  opacity: 0.9;
  transition: all var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.main-nav a:hover { opacity: 1; }
.main-nav a:hover::after { width: 100%; }
.site-header.scrolled .main-nav a { color: var(--text); }
.site-header.scrolled .main-nav a::after { background: var(--primary); }

.btn-header-cta {
  background: var(--primary);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-header-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  margin-left: auto;
}
.burger-btn span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.site-header.scrolled .burger-btn span { background: var(--text); }

.mobile-nav {
  display: none;
  background: var(--white);
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.2rem;
}
.btn-mobile-cta {
  display: inline-block;
  background: var(--primary) !important;
  color: var(--white) !important;
  text-align: center;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  border-bottom: none !important;
  margin-top: 0.5rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,20,16,0.75) 0%, rgba(60,30,10,0.55) 60%, rgba(217,80,48,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero-title em { color: var(--accent); font-style: italic; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: bounceDown 1.5s infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.animate-fade-in { animation: fadeIn 0.8s ease forwards; }
.animate-slide-up { animation: slideUp 0.8s ease forwards; opacity: 0; }
.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   STEPS SECTION (BLOCK 1)
   ========================================== */
.steps-section {
  padding: 6rem 0;
  background: var(--bg);
}

.steps-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(217,80,48,0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.step-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.step-connector {
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background: var(--border);
  z-index: 1;
}
.step-card:last-child .step-connector { display: none; }

/* MINI PRICE CARDS */
.mini-prices-title {
  text-align: center;
  margin-bottom: 2rem;
}
.mini-prices-title h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.mini-prices-title p { color: var(--text-light); }

.mini-price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.mini-price-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  background: var(--white);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}
.mini-price-card:hover, .mini-price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.mini-price-badge {
  display: inline-block;
  background: var(--bg-warm);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.mini-price-badge.popular { background: var(--primary); color: var(--white); }
.mini-price-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.mini-price-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.mini-price-features li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border-light);
}
.mini-price-features li:last-child { border-bottom: none; }

/* BOOKING FORM */
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.form-header { text-align: center; margin-bottom: 2rem; }
.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.form-header p { color: var(--text-light); }

.booking-form .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
}
.form-group input, .form-group select, .form-group textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217,80,48,0.10);
  background: var(--white);
}
.btn-form-submit { width: 100%; font-size: 1.1rem; padding: 1rem 2.5rem; }

.more-details-wrap { text-align: center; margin-top: 2rem; }
.btn-more-details {
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.15rem;
  transition: all var(--transition);
}
.btn-more-details:hover { color: var(--primary-dark); border-color: var(--primary-dark); }

/* ==========================================
   SLIDER SECTION (BLOCK 2)
   ========================================== */
.slider-section {
  padding: 6rem 0 4rem;
  background: var(--bg-warm);
  overflow: hidden;
}
.slider-section .container { margin-bottom: 3rem; }

.slider-container { position: relative; overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide {
  min-width: 100%;
  padding: 0 2rem;
}
.slide-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.slide-inner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.slide-caption { padding: 3rem 3rem 3rem 1rem; }
.slide-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(217,80,48,0.12);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.slide-caption h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}
.slide-caption p { color: var(--text-light); line-height: 1.7; font-size: 1.05rem; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2.5rem 2rem 1rem;
}
.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.slider-dots { display: flex; gap: 0.6rem; }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active { background: var(--primary); width: 28px; border-radius: 5px; }

/* ==========================================
   FAQ / ACCORDION (BLOCK 3)
   ========================================== */
.faq-section {
  padding: 6rem 0;
  background: var(--bg);
}
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.faq-left .section-title { margin-bottom: 1.5rem; }
.faq-image {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius);
  margin-top: 2rem;
}

.accordion { display: flex; flex-direction: column; gap: 1px; }
.accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
  margin-bottom: 0.75rem;
}
.accordion-item.active { border-color: var(--primary); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  gap: 1rem;
  transition: all var(--transition);
}
.accordion-trigger:hover { color: var(--primary); }
.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.accordion-item.active .accordion-icon { transform: rotate(45deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion-content p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================
   ABOUT (CIRCULAR) (BLOCK 4)
   ========================================== */
.about-section {
  padding: 6rem 0;
  background: var(--bg-warm);
}
.about-section .section-title { margin-bottom: 3.5rem; }

.circular-about {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
.circular-items {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.circular-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.right-items .circular-item { flex-direction: row-reverse; }
.right-items .circular-item-text { text-align: right; }
.circular-item-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.circular-item-text h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.circular-item-text p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

.circular-center { text-align: center; }
.circular-photo-ring {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
  margin: 0 auto 1.5rem;
}
.studio-photo { width: 100%; height: 100%; object-fit: cover; }
.circular-center-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.circular-center-text strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
}
.circular-center-text span { font-size: 0.9rem; color: var(--text-muted); }

/* ==========================================
   SCHEDULE TABLE (BLOCK 5)
   ========================================== */
.schedule-section {
  padding: 6rem 0;
  background: var(--bg);
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.schedule-table th {
  background: var(--text);
  color: var(--white);
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.schedule-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: var(--text);
  vertical-align: middle;
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: var(--bg); }

.day-badge {
  background: var(--bg-warm);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}
.level-badge {
  background: rgba(152,255,152,0.2);
  color: #2d7a2d;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.seats-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.seats-badge.available { background: rgba(152,255,152,0.2); color: #2d7a2d; }
.seats-badge.few { background: rgba(253,215,123,0.3); color: #8a6a00; }
.seats-badge.full { background: rgba(253,123,124,0.2); color: #b03030; }

.table-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================
   PRICE CARDS (BLOCK 6)
   ========================================== */
.prices-section {
  padding: 6rem 0;
  background: var(--bg-warm);
}
.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.price-card-label {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-card-header {
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--white) 100%);
}
.price-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.price-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
}
.price-amount span { font-size: 1.5rem; }
.price-per { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }
.price-features {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.price-features li {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.price-features li.inactive { color: var(--text-muted); opacity: 0.6; }
.btn-price-card {
  display: block;
  margin: 0 1.5rem 1.5rem;
  text-align: center;
  background: var(--bg-warm);
  color: var(--primary);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-price-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-price-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-price-card.featured:hover { background: var(--primary-dark); }

/* CALCULATOR */
.calculator-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.calc-header { text-align: center; margin-bottom: 2.5rem; }
.calc-header h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 0.5rem; }
.calc-header p { color: var(--text-light); }
.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.calc-group { display: flex; flex-direction: column; gap: 1rem; }
.calc-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  letter-spacing: 0.03em;
}
.calc-slider-wrap { display: flex; flex-direction: column; gap: 0.75rem; }
.calc-range {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: var(--border);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(217,80,48,0.3);
  transition: all var(--transition);
}
.calc-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-value-display {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
}
.calc-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.calc-option {
  background: var(--bg-warm);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  color: var(--text);
  transition: all var(--transition);
}
.calc-option:hover { border-color: var(--primary); color: var(--primary); }
.calc-option.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.calc-result {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.5rem;
}
.calc-result-label { font-size: 1rem; opacity: 0.85; }
.calc-result-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
}
.calc-result-note {
  opacity: 0.85;
  font-size: 0.9rem;
  grid-column: 1 / -1;
}

/* ==========================================
   SELLING TEXT SECTION (BLOCK 7)
   ========================================== */
.selling-section {
  padding: 6rem 0;
  background: var(--text);
  color: var(--white);
}
.selling-section .section-tag {
  color: var(--accent);
  background: rgba(152,255,152,0.15);
}
.selling-section .section-title { color: var(--white); }
.selling-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.selling-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}
.selling-col p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 0.95rem;
}
.selling-quote {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.9) !important;
  margin: 2rem 0 !important;
}
.selling-highlights {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2.5rem;
}
.selling-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.sh-icon { font-size: 1.3rem; }

/* ==========================================
   INFOGRAPHIC SECTION (BLOCK 7.5)
   ========================================== */
.infographic-section {
  padding: 6rem 0;
  background: var(--bg);
}
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.infographic-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.infographic-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.infographic-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-warm) 0%, rgba(217,80,48,0.1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 3px solid rgba(217,80,48,0.2);
}
.infographic-icon { font-size: 1.8rem; }
.infographic-percent {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.infographic-item h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.infographic-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.infographic-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery-section {
  padding: 6rem 0 0;
  background: var(--bg-warm);
}
.gallery-section .container { margin-bottom: 2rem; }
.gallery-line {
  border: none;
  border-top: 2px solid var(--border);
  margin: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  height: 400px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,20,16,0.85));
  color: var(--white);
  padding: 2rem 1.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ==========================================
   FOCUS CARDS (BLOCK 8)
   ========================================== */
.focus-section {
  padding: 6rem 0;
  background: var(--bg);
}
.focus-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.focus-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.focus-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.focus-card-icon {
  font-size: 3rem;
  width: 70px;
  height: 70px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.focus-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text);
}
.focus-card p { color: var(--text-light); font-size: 0.9rem; flex: 1; }
.btn-focus-more {
  display: inline-block;
  background: none;
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
  margin-top: auto;
  width: fit-content;
}
.btn-focus-more:hover, .focus-card:hover .btn-focus-more {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ==========================================
   MODAL
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,20,16,0.65);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
  animation: fadeIn 0.25s ease;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUpModal 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-settings-box { max-width: 460px; }
@keyframes slideUpModal {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-warm);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text);
  font-family: var(--font-body);
}
.modal-close:hover { background: var(--primary); color: var(--white); }
.focus-modal-box { max-width: 560px; }
.modal-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.modal-box h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.modal-box p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}
.modal-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }

.cookie-option { margin-bottom: 1rem; }
.cookie-option label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}
.cookie-option-desc { font-size: 0.85rem; color: var(--text-light); margin-top: 0.35rem; margin-left: 1.5rem; }

.radio-group { display: flex; flex-direction: column; gap: 0.6rem; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.radio-label:hover { background: var(--bg); }
.radio-label input { accent-color: var(--primary); }

/* ==========================================
   REVIEWS
   ========================================== */
.reviews-section {
  padding: 6rem 0;
  background: var(--bg-warm);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.review-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 1rem; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-author div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.review-author strong { font-size: 0.95rem; color: var(--text); }
.review-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-nav-col, .footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav-col h4, .footer-contact-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.footer-nav-col a {
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-nav-col a:hover { color: var(--accent); }
.footer-contact-col p { font-size: 0.9rem; }
.footer-contact-col a { color: var(--accent); }
.footer-legal {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.55;
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================
   INNER PAGES
   ========================================== */
.inner-page {
  padding: 9rem 0 6rem;
  min-height: 100vh;
}
.inner-page-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border);
}
.inner-page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.inner-page-header p { color: var(--text-muted); }
.inner-page-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
  color: var(--text);
}
.inner-page-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.inner-page-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.inner-page-content ul li {
  color: var(--text-light);
  margin-bottom: 0.4rem;
  line-height: 1.7;
}
.back-to-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 2rem;
  transition: gap var(--transition);
}
.back-to-home:hover { gap: 0.8rem; }

/* THANKS PAGE */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-warm) 100%);
  padding: 2rem;
}
.thanks-box {
  max-width: 560px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-lg);
}
.thanks-icon { font-size: 4rem; margin-bottom: 1.5rem; display: block; }
.thanks-box h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.thanks-box p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.05rem;
}
.thanks-box .btn-primary { margin-top: 1rem; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .steps-map { grid-template-columns: repeat(3, 1fr); }
  .step-card:nth-child(3) .step-connector { display: none; }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .infographic-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .circular-about { gap: 1.5rem; }
  .circular-photo-ring { width: 220px; height: 220px; }
}

@media (max-width: 900px) {
  .faq-container { grid-template-columns: 1fr; gap: 3rem; }
  .faq-image { display: none; }
  .calc-body { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 280px; }
  .focus-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .circular-about { grid-template-columns: 1fr; }
  .circular-items.left-items, .circular-items.right-items { order: 1; }
  .circular-center { order: 0; }
  .right-items .circular-item { flex-direction: row; }
  .right-items .circular-item-text { text-align: left; }
  .selling-columns { grid-template-columns: 1fr; gap: 1.5rem; }
  .slide-inner { grid-template-columns: 1fr; }
  .slide-inner img { height: 280px; }
  .slide-caption { padding: 2rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .main-nav { display: none; }
  .btn-header-cta { display: none; }
  .burger-btn { display: flex; }
  .header-inner { padding: 1rem 1.25rem; }
  .hero-section { min-height: 90vh; }
  .hero-content { padding: 6rem 1.5rem 4rem; }
  .hero-stats { gap: 2rem; }
  .steps-map { grid-template-columns: 1fr; }
  .step-connector { display: none !important; }
  .mini-price-cards { grid-template-columns: 1fr; }
  .booking-form .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 2rem 1.5rem; }
  .price-cards { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .focus-cards-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .infographic-grid { grid-template-columns: 1fr; }
  .selling-highlights { gap: 0.75rem; }
  .calc-result { grid-template-columns: 1fr; text-align: center; }
  .cookie-content { flex-direction: column; gap: 1.25rem; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-stats { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 260px; }
  .gallery-caption { transform: translateY(0) !important; }
  .modal-box { padding: 2rem 1.5rem; }
}
