@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Montserrat:wght@100..900&display=swap');

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

:root {
  --burgundy: #900020;
  --red: #EF3038;
  --dark-red: #A2231D;
  --white: #ffffff;
  --off-white: #FAF8F6;
  --light-gray: #F2EFEB;
  --mid-gray: #D1CCC6;
  --text-dark: #1A1A1A;
  --text-body: #3A3A3A;
  --text-muted: #7A7A7A;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p { margin-bottom: 1rem; }

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

a:hover { color: var(--dark-red); }

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

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

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

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--burgundy);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  gap: 8px;
}

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

.btn-primary:hover {
  background: var(--dark-red);
  border-color: var(--dark-red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.logo:hover .logo-icon { transform: rotate(15deg); }

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  transition: color var(--transition);
}

.header.scrolled .logo-text { color: var(--text-dark); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.header.scrolled .nav-links a {
  color: var(--text-body);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover {
  color: var(--white);
}

.header.scrolled .nav-links a:hover {
  color: var(--burgundy);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--burgundy);
  color: var(--white) !important;
  border-radius: 4px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--dark-red) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  display: block;
}

.header.scrolled .burger span { background: var(--text-dark); }

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) { opacity: 0; }

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0008 0%, #900020 40%, #A2231D 70%, #5a0015 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--white);
}

.hero-bg-shapes .shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.hero-bg-shapes .shape-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

.hero-bg-shapes .shape-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 30%;
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 140px 0 80px;
}

.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-side {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
}

.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

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

/* ===== CONTENT BLOCKS (image+text) ===== */
.content-section {
  padding: 100px 0;
}

.content-section:nth-child(even) {
  background: var(--off-white);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-grid.reverse .content-image { order: 2; }
.content-grid.reverse .content-text { order: 1; }

.content-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform var(--transition-slow);
}

.content-image:hover img { transform: scale(1.03); }

.content-image .image-accent {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid var(--burgundy);
  border-radius: 8px;
  z-index: 2;
}

.content-image .image-accent.top-left {
  top: -15px;
  left: -15px;
  border-right: none;
  border-bottom: none;
}

.content-image .image-accent.bottom-right {
  bottom: -15px;
  right: -15px;
  border-left: none;
  border-top: none;
}

.content-text {
  padding: 20px 0;
}

.content-text p {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.85;
}

.content-text ul {
  list-style: none;
  margin: 20px 0;
}

.content-text ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.7;
}

.content-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--burgundy);
  border-radius: 50%;
}

/* ===== sliker SECTION ===== */
.sliker-section {
  padding: 100px 0;
  background: var(--text-dark);
  color: var(--white);
  overflow: hidden;
}

.sliker-section .section-label { color: var(--red); }
.sliker-section .section-title { color: var(--white); }
.sliker-section .section-subtitle { color: rgba(255,255,255,0.6); }

.sliker-header {
  text-align: center;
  margin-bottom: 50px;
}

.sliker-header .section-subtitle {
  margin: 0 auto;
}

.sliker-wrapper {
  position: relative;
  overflow: hidden;
}

.sliker-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sliker-slide {
  min-width: 100%;
  position: relative;
}

.sliker-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.sliker-slide .slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  border-radius: 0 0 8px 8px;
}

.sliker-slide .slide-caption h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.sliker-slide .slide-caption p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.sliker-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.sliker-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1.2rem;
}

.sliker-btn:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.sliker-dots {
  display: flex;
  gap: 8px;
}

.sliker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.sliker-dot.active {
  background: var(--burgundy);
  transform: scale(1.3);
}

/* ===== akord SECTION ===== */
.akord-section {
  padding: 100px 0;
  background: var(--off-white);
}

.akord-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.akord-intro {
  position: sticky;
  top: 120px;
}

.akord-intro p {
  font-size: 1.05rem;
  margin-top: 20px;
  line-height: 1.85;
}

.akord-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.akord-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

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

.akord-trigger {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition);
  gap: 16px;
}

.akord-trigger:hover { color: var(--burgundy); }

.akord-trigger .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 1.2rem;
  line-height: 1;
}

.akord-item.active .akord-trigger .icon {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
  transform: rotate(45deg);
}

.akord-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.akord-content-inner {
  padding: 0 24px 24px;
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--text-body);
}

.akord-item.active .akord-content {
  max-height: 500px;
}

/* ===== TABLE SECTION ===== */
.table-section {
  padding: 100px 0;
}

.table-header {
  text-align: center;
  margin-bottom: 50px;
}

.table-header .section-subtitle {
  margin: 0 auto;
}

.schedule-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.schedule-table thead {
  background: var(--burgundy);
}

.schedule-table th {
  padding: 18px 20px;
  text-align: left;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.schedule-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--light-gray);
  color: var(--text-body);
}

.schedule-table tbody tr {
  transition: background var(--transition);
}

.schedule-table tbody tr:hover {
  background: var(--off-white);
}

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

.table-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.table-badge.beginner {
  background: #E8F5E9;
  color: #2E7D32;
}

.table-badge.intermediate {
  background: #FFF3E0;
  color: #E65100;
}

.table-badge.advanced {
  background: #FCE4EC;
  color: var(--burgundy);
}

/* ===== soldi CARDS ===== */
.sold-section {
  padding: 100px 0;
  background: var(--off-white);
}

.sold-header {
  text-align: center;
  margin-bottom: 60px;
}

.sold-header .section-subtitle {
  margin: 0 auto;
}

.sold-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.soldi-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.soldi-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.soldi-card.featured {
  background: var(--burgundy);
  color: var(--white);
}

.soldi-card.featured .soldi-card-title,
.soldi-card.featured .soldi-card-soldi,
.soldi-card.featured .soldi-card-features li {
  color: var(--white);
}

.soldi-card.featured .soldi-card-features li::before {
  border-color: rgba(255,255,255,0.5);
}

.soldi-card.featured .btn {
  background: var(--white);
  color: var(--burgundy);
}

.soldi-card.featured .btn:hover {
  background: var(--off-white);
}

.soldi-card-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--red);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(45deg);
}

.soldi-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.soldi-card-soldi {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.soldi-card-soldi span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}

.soldi-card-desc {
  font-size: 0.92rem;
  opacity: 0.7;
  margin-bottom: 28px;
  line-height: 1.6;
}

.soldi-card-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.soldi-card-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
}

.soldi-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--burgundy);
}

.soldi-card.featured .soldi-card-features li::before {
  color: rgba(255,255,255,0.8);
}

.soldi-card .btn {
  width: 100%;
  text-align: center;
}

/* ===== TEXT-ONLY SECTION ===== */
.text-section {
  padding: 100px 0;
}

.text-section-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.text-section-inner p {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-body);
}

.text-section-inner .highlight-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--burgundy);
  border-left: 4px solid var(--burgundy);
  padding-left: 24px;
  margin: 40px 0;
  text-align: left;
  line-height: 1.6;
}

.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

/* ===== benet DIAGRAM ===== */
.benet-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0008 0%, #900020 60%, #5a0015 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.benet-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.benet-section::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.benet-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.benet-header .section-label { color: var(--red); }
.benet-header .section-title { color: var(--white); }
.benet-header .section-subtitle {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
}

.benet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.benefit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--burgundy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.benefit-card h4 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.benefit-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== GRAY-TO-COLOR GALLERY ===== */
.gallery-section {
  padding: 100px 0;
  background: var(--off-white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header .section-subtitle {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(7) { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  filter: grayscale(100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(144, 0, 32, 0.7), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay span {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ===== STUDIO sliker ===== */
.studio-section {
  padding: 100px 0;
}

.studio-header {
  text-align: center;
  margin-bottom: 50px;
}

.studio-header .section-subtitle {
  margin: 0 auto;
}

.studio-sliker-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.studio-sliker-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.studio-slide {
  min-width: 100%;
}

.studio-slide img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.studio-sliker-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.studio-sliker-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--mid-gray);
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1.2rem;
}

.studio-sliker-btn:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.studio-dots {
  display: flex;
  gap: 8px;
}

.studio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mid-gray);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.studio-dot.active {
  background: var(--burgundy);
  transform: scale(1.3);
}

/* ===== VERTICAL PHOTOS SECTION ===== */
.vertical-section {
  padding: 100px 0;
  background: var(--off-white);
}

.vertical-header {
  text-align: center;
  margin-bottom: 60px;
}

.vertical-header .section-subtitle {
  margin: 0 auto;
}

.vertical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.vertical-item {
  position: relative;
  text-align: center;
}

.vertical-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: var(--mid-gray);
}

.vertical-item:last-child::after { display: none; }

.vertical-item-image {
  padding: 0 20px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
}

.vertical-item-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform var(--transition-slow);
}

.vertical-item:hover .vertical-item-image img {
  transform: scale(1.05);
}

.vertical-divider {
  width: 40px;
  height: 2px;
  background: var(--burgundy);
  margin: 16px auto;
}

.vertical-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  padding: 0 20px;
}

.vertical-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0 20px;
  line-height: 1.7;
}

.vertical-line {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--burgundy) 20%, var(--burgundy) 80%, transparent);
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 100px 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-header .section-subtitle {
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  padding: 32px;
  transition: all var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #F5A623;
  font-size: 1rem;
}

.review-text {
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-author-info h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.review-author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== SUBSCRIPTION FORM ===== */
.form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0008 0%, #900020 60%, #5a0015 100%);
  color: var(--white);
  position: relative;
}

.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
  background-size: 200px;
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.form-info .section-label { color: var(--red); }
.form-info .section-title { color: var(--white); }

.form-info p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-top: 20px;
}

.form-info .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.form-info .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.subscription-form {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(8px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all var(--transition);
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group input:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(239, 48, 56, 0.15);
}

.form-group .error-message {
  font-size: 0.8rem;
  color: var(--red);
  margin-top: 6px;
  display: none;
}

.form-group.has-error .error-message { display: block; }

.form-group.has-error input {
  border-color: var(--red);
}

.form-consent {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  line-height: 1.6;
}

.form-consent a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
}

.subscription-form .btn {
  width: 100%;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.cookie-settings {
  display: none;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--off-white);
  border-radius: 8px;
}

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

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}

.cookie-option:last-child { border-bottom: none; }

.cookie-option-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cookie-option-label strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.cookie-option-label span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle .sliker-toggle {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mid-gray);
  border-radius: 24px;
  transition: background var(--transition);
}

.cookie-toggle .sliker-toggle::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
}

.cookie-toggle input:checked + .sliker-toggle {
  background: var(--burgundy);
}

.cookie-toggle input:checked + .sliker-toggle::before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .sliker-toggle {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 0.78rem;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 120px 0 80px;
}

.legal-page h1 {
  margin-bottom: 12px;
}

.legal-page .legal-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
}

.legal-page p,
.legal-page li {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--text-body);
}

.legal-page ul,
.legal-page ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page li { margin-bottom: 8px; }

/* ===== THANKS PAGE ===== */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--off-white);
  padding: 40px;
}

.thanks-content {
  max-width: 500px;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.thanks-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thanks-content h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.thanks-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

.animate-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-fade-left.visible,
.animate-fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26, 0, 8, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-nav-links li {
  margin-bottom: 24px;
}

.mobile-nav-links a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-nav-links a:hover { color: var(--red); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--dark-red);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .content-grid,
  .akord-grid,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-grid.reverse .content-image,
  .content-grid.reverse .content-text {
    order: unset;
  }

  .sold-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vertical-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .vertical-item::after { display: none; }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(7) {
    grid-row: auto;
    grid-column: auto;
  }

  .akord-intro {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .hero-content { padding: 120px 0 60px; }
  .hero-image-side { width: 100%; opacity: 0.15; }

  .content-section,
  .sliker-section,
  .akord-section,
  .table-section,
  .sold-section,
  .text-section,
  .benet-section,
  .gallery-section,
  .studio-section,
  .vertical-section,
  .reviews-section,
  .form-section {
    padding: 70px 0;
  }

  .sold-grid,
  .benet-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vertical-grid {
    grid-template-columns: 1fr;
  }

  .text-columns {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .sliker-slide img,
  .studio-slide img {
    height: 300px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .soldi-card { padding: 28px 20px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== LEGAL PAGE HEADER ===== */
.legal-header {
  background: linear-gradient(135deg, #1a0008 0%, #900020 60%, #5a0015 100%);
  padding: 100px 0 50px;
  text-align: center;
}

.legal-header h1 {
  color: var(--white);
}

.legal-header p {
  color: rgba(255,255,255,0.6);
}

/* ===== COUNTER/STATS ===== */
.stats-bar {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--burgundy);
  display: block;
}

.stat-item .stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
