/* ===================================================================
   Easy Moving — Design System
   "Beweeg zoals jij bent"
   =================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* --- Design Tokens --- */
:root {
  /* Colors */
  --plum: #3B2E58;
  --plum-light: #503e73;
  --amber: #F4A261;
  --amber-dark: #e08e4a;
  --bg: #F8F5F0;
  --surface: #FFFFFF;
  --ink: #161311;
  --ink-light: #555D66;
  --pink: #FF4F79;
  --pink-dark: #e83a64;
  --teal: #6FB3B8;
  --sand: #E8E1D8;
  --sand-dark: #d6cec4;
  --grey-section: #F0ECE6;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Layout */
  --container: 1140px;
  --radius: 12px;
  --radius-sm: 8px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(22,19,17,0.06);
  --shadow-md: 0 4px 20px rgba(22,19,17,0.08);
  --shadow-lg: 0 8px 40px rgba(22,19,17,0.1);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--plum);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--plum);
  color: #fff;
  padding: var(--space-xs) var(--space-md);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 10000;
  font-weight: 700;
  font-size: 0.875rem;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  color: #fff;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--plum);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

.overline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--sand);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-lg);
  max-width: var(--container);
  margin: 0 auto;
  min-height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1.15;
}

.site-logo .logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 0;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
  border-radius: var(--radius-sm);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--plum);
  background: var(--bg);
}

/* Dropdown */
.nav-list li.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 4px;
  vertical-align: middle;
  margin-top: -2px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: var(--space-xs) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--duration) var(--ease);
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  padding: var(--space-xs) var(--space-lg);
  font-size: 0.8125rem;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--plum);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
  transform-origin: center;
}

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

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

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

/* Search */
.header-search {
  display: flex;
  align-items: center;
}

.header-search input {
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.4rem 0.75rem;
  border: 1.5px solid var(--sand);
  border-radius: 20px;
  outline: none;
  width: 160px;
  background: var(--bg);
  transition: border-color var(--duration) var(--ease), width var(--duration) var(--ease);
}

.header-search input:focus {
  border-color: var(--plum);
  width: 200px;
}

.header-search button {
  margin-left: -32px;
  padding: 4px;
  color: var(--ink-light);
}

.header-search button svg {
  width: 16px;
  height: 16px;
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--plum) 0%, #4a3a72 50%, var(--plum-light) 100%);
  color: #fff;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(244,162,97,0.12);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,79,121,0.08);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero .overline {
  color: var(--amber);
  margin-bottom: var(--space-md);
  display: block;
}

.hero h1 {
  color: #fff;
  margin-bottom: var(--space-lg);
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-text {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: var(--space-xl);
}

.hero-text strong {
  color: var(--amber);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

.hero-decoration {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px dashed rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-decoration .dance-emoji {
  font-size: 5rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  line-height: 1.2;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: var(--plum);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,162,97,0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

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

.btn-outline-dark:hover {
  background: var(--plum);
  color: #fff;
}

.btn-pink {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

.btn-pink:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,79,121,0.3);
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.btn-teal:hover {
  background: #5a9ea3;
  border-color: #5a9ea3;
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1.25rem;
}

/* ===================================================================
   SECTION STYLES
   =================================================================== */
.section {
  padding: var(--space-3xl) 0;
}

.section-grey {
  background: var(--grey-section);
}

.section-plum {
  background: var(--plum);
  color: #fff;
}

.section-plum h2,
.section-plum h3,
.section-plum h4 {
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-2xl);
}

.section-header .overline {
  margin-bottom: var(--space-sm);
  display: block;
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--ink-light);
  font-size: 1.0625rem;
}

/* ===================================================================
   WELCOME / INTRO SECTION
   =================================================================== */
.welcome {
  padding: var(--space-3xl) 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.welcome-text h2 {
  margin-bottom: var(--space-lg);
}

.welcome-text p {
  color: var(--ink-light);
  margin-bottom: var(--space-md);
}

.welcome-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.welcome-card .badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--amber);
  color: var(--plum);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.welcome-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: center;
  margin-top: var(--space-lg);
}

.welcome-stats .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--plum);
}

.welcome-stats .stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  font-weight: 600;
}

/* ===================================================================
   EVENT CARDS
   =================================================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.event-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}

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

.event-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.event-card:hover .event-card-image img {
  transform: scale(1.05);
}

.event-card-image .event-date {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--plum);
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  line-height: 1.2;
  text-align: center;
}

.event-card-image .event-date .day {
  display: block;
  font-size: 1.25rem;
  font-family: var(--font-display);
}

.event-card-image .event-tag {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  font-size: 0.6875rem;
  padding: 0.3rem 0.65rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-card-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card-body h3 {
  margin-bottom: var(--space-xs);
  color: var(--plum);
}

.event-card-body .event-audience {
  font-size: 0.8125rem;
  color: var(--amber-dark);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.event-card-body p {
  color: var(--ink-light);
  font-size: 0.9375rem;
  flex: 1;
}

.event-card-footer {
  padding: 0 var(--space-lg) var(--space-lg);
  display: flex;
  justify-content: flex-end;
}

/* Single event card - full width */
.event-card-single {
  grid-column: 1 / -1;
}

.event-card-single .event-card-image {
  height: 300px;
}

/* ===================================================================
   TRUST / PARTNERS SECTION
   =================================================================== */
.trust {
  padding: var(--space-2xl) 0;
  background: var(--surface);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-xl);
  align-items: center;
  justify-content-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  transition: opacity var(--duration) var(--ease);
  padding: var(--space-sm);
}

.trust-item:hover {
  opacity: 1;
}

.trust-item img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

/* ===================================================================
   PAGE HERO (for subpages)
   =================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--plum) 0%, #4a3a72 100%);
  padding: var(--space-2xl) 0 var(--space-xl);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(244,162,97,0.08);
  pointer-events: none;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: var(--space-md);
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  font-size: 0.8125rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--duration);
}

.breadcrumb a:hover {
  color: var(--amber);
}

.breadcrumb span {
  color: rgba(255,255,255,0.35);
}

.breadcrumb .current {
  color: var(--amber);
  font-weight: 600;
}

/* ===================================================================
   CONTENT SECTION (for subpages)
   =================================================================== */
.content-section {
  padding: var(--space-2xl) 0;
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  margin-bottom: var(--space-lg);
}

.content-block h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--plum);
}

.content-block ul {
  padding-left: 0;
  margin-bottom: var(--space-lg);
}

.content-block ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--ink-light);
}

.content-block ul li::before {
  content: '♪';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

/* ===================================================================
   CLASS CARDS (LESSONS page)
   =================================================================== */
.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.class-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand);
  transition: all var(--duration) var(--ease);
  text-align: center;
}

.class-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--amber);
  transform: translateY(-3px);
}

.class-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), var(--plum-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto var(--space-md);
}

.class-card h3 {
  margin-bottom: var(--space-sm);
}

.class-card p {
  color: var(--ink-light);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.class-meta {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  font-size: 0.8125rem;
  color: var(--ink-light);
  flex-wrap: wrap;
}

.class-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.class-age {
  background: var(--sand);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--plum);
}

/* ===================================================================
   SCHEDULE TABLE
   =================================================================== */
.schedule-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 0.9375rem;
}

.schedule-table thead {
  background: var(--plum);
  color: #fff;
}

.schedule-table th {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.schedule-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--sand);
  color: var(--ink-light);
}

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

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

.schedule-style-tag {
  display: inline-block;
  background: var(--amber);
  color: var(--plum);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===================================================================
   TEAM GRID
   =================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.team-card {
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}

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

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), var(--sand-dark));
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--plum);
  overflow: hidden;
}

.team-card h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
}

.team-card .team-role {
  font-size: 0.8125rem;
  color: var(--amber-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.team-card p {
  color: var(--ink-light);
  font-size: 0.9375rem;
}

/* ===================================================================
   PRICING
   =================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 2px solid var(--sand);
  transition: all var(--duration) var(--ease);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--amber);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
  content: 'Populairst';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--plum);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--plum);
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: var(--space-xs);
}

.pricing-card .price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-light);
}

.pricing-card .price-period {
  font-size: 0.8125rem;
  color: var(--ink-light);
  margin-bottom: var(--space-lg);
}

.pricing-features {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.pricing-features li {
  padding: var(--space-xs) 0;
  color: var(--ink-light);
  font-size: 0.9375rem;
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.pricing-features li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===================================================================
   FORMS (CONTACT)
   =================================================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
  color: var(--plum);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  outline: none;
  background: var(--bg);
  color: var(--ink);
  transition: border-color var(--duration) var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--plum);
  background: #fff;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-info-card h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-info-card p {
  color: var(--ink-light);
  font-size: 0.9375rem;
}

.contact-info-card a {
  color: var(--plum);
  font-weight: 600;
}

/* ===================================================================
   AGENDA
   =================================================================== */
.agenda-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.agenda-item {
  display: flex;
  gap: var(--space-xl);
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand);
  transition: all var(--duration) var(--ease);
}

.agenda-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--amber);
}

.agenda-date {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  padding-top: var(--space-xs);
}

.agenda-date .month {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
}

.agenda-date .day {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1.1;
}

.agenda-date .year {
  font-size: 0.75rem;
  color: var(--ink-light);
}

.agenda-content {
  flex: 1;
}

.agenda-content h3 {
  margin-bottom: var(--space-xs);
}

.agenda-content p {
  color: var(--ink-light);
  font-size: 0.9375rem;
}

.agenda-tag {
  display: inline-block;
  background: var(--sand);
  color: var(--plum);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: var(--space-sm);
}

/* ===================================================================
   HOUSE RULES
   =================================================================== */
.rules-list {
  counter-reset: rule;
}

.rule-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--amber);
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.rule-item::before {
  counter-increment: rule;
  content: counter(rule);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.rule-item p {
  color: var(--ink-light);
  flex: 1;
}

.rule-item strong {
  color: var(--plum);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: var(--plum);
  color: rgba(255,255,255,0.8);
  padding: var(--space-2xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .site-logo .logo-text {
  color: #fff;
}

.footer-brand .site-logo .logo-text small {
  color: rgba(255,255,255,0.5);
}

.footer-brand p {
  margin-top: var(--space-md);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
  background: var(--amber);
  color: var(--plum);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  transition: color var(--duration) var(--ease);
}

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

.footer-contact-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.footer-contact-item .icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: var(--amber);
}

.footer-bottom {
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

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

/* ===================================================================
   COOKIE BANNER
   =================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
  z-index: 9999;
  padding: var(--space-lg);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

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

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  font-size: 0.875rem;
  color: var(--ink-light);
  margin-bottom: var(--space-sm);
}

.cookie-text a {
  color: var(--plum);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ===================================================================
   UTILITY CLASSES
   =================================================================== */
.text-center { text-align: center; }
.text-plum { color: var(--plum); }
.text-amber { color: var(--amber); }
.text-pink { color: var(--pink); }
.text-teal { color: var(--teal); }
.text-muted { color: var(--ink-light); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ===================================================================
   DISCOUNT / SPECIAL OFFERS
   =================================================================== */
.discount-card {
  background: linear-gradient(135deg, var(--plum), #4a3a72);
  color: #fff;
  border-radius: var(--radius);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.discount-card::before {
  content: '★';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 8rem;
  opacity: 0.06;
}

.discount-card h3 {
  color: var(--amber);
  margin-bottom: var(--space-sm);
}

.discount-card p {
  color: rgba(255,255,255,0.85);
}

.discount-card .highlight {
  color: var(--amber);
  font-weight: 700;
}

/* ===================================================================
   MAP EMBED PLACEHOLDER
   =================================================================== */
.map-placeholder {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-size: 0.9375rem;
  margin-top: var(--space-xl);
  border: 1px dashed var(--sand-dark);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

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

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

  .hero-decoration {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--surface);
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    z-index: 999;
    padding: 80px var(--space-xl) var(--space-xl);
    transition: right var(--duration) var(--ease);
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list a {
    padding: var(--space-md);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--sand);
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: var(--space-lg);
  }

  .header-search {
    display: none;
  }

  .hero {
    padding: var(--space-2xl) 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

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

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

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

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .agenda-item {
    flex-direction: column;
    gap: var(--space-md);
  }

  .agenda-date {
    width: auto;
    display: flex;
    gap: var(--space-xs);
    align-items: baseline;
  }

  .agenda-date .day {
    font-size: 1.75rem;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

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

  .header-inner {
    padding: var(--space-sm) var(--space-md);
  }

  h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
  }

  .welcome-stats {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .rule-item {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

/* --- Mobile nav overlay --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- Animations on scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* --- Motion lines decoration --- */
.motion-line {
  position: absolute;
  width: 60px;
  height: 2px;
  background: var(--amber);
  opacity: 0.3;
  border-radius: 2px;
}

.motion-line:nth-child(1) { top: 20%; left: 5%; transform: rotate(-15deg); width: 40px; }
.motion-line:nth-child(2) { top: 40%; right: 8%; transform: rotate(10deg); width: 50px; }
.motion-line:nth-child(3) { bottom: 30%; left: 10%; transform: rotate(-8deg); width: 35px; }
