/* ===================================================
   Ettevõtlusküla - Breakdance-style CSS
   =================================================== */

/* ---- CSS Variables ---- */
:root {
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Neutral */
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  /* Blue (koolitused) */
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-900: #1e3a8a;

  /* Sky (kalender) */
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-900: #0c4a6e;

  /* Green (kontakt) */
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-900: #14532d;

  /* Yellow (rollimängud) */
  --yellow-50: #fefce8;
  --yellow-100: #fef9c3;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --yellow-600: #ca8a04;
  --yellow-900: #713f12;

  /* Purple (juhendajaõpe) */
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-900: #581c87;

  /* Rose (Meeskonnaseiklus täiskasvanule) */
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --rose-900: #881337;

  /* Lime (Meeskonnaseiklus noorele) */
  --lime-50: #f7fee7;
  --lime-100: #ecfccb;
  --lime-500: #84cc16;
  --lime-600: #65a30d;
  --lime-900: #365314;

  /* Orange (teacher training) */
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-900: #7c2d12;

  /* Teal (Ettevõtlussimulatsioon) */
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-900: #134e4a;

  --radius-sm: 0.375rem;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--color-gray-800);
  background: var(--color-white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { line-height: 1.7; color: var(--color-gray-600); }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

/* ========================================
   NAVIGATION
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
}
.site-logo .logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--blue-600);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-family: var(--font-sans);
  font-weight: 800;
}

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-gray-700);
  border-radius: var(--radius-sm);
  transition: all .15s;
}
.nav-link:hover { background: var(--color-gray-100); color: var(--color-gray-900); }
.nav-link .chevron {
  width: 1rem; height: 1rem;
  transition: transform .2s;
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* CTA button in nav */
.nav-cta {
  background: var(--blue-600);
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2rem !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--blue-700) !important; color: white !important; }

/* Mega dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 95vw);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-gray-100);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
  pointer-events: none;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dropdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dropdown-section h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--color-gray-400);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-gray-100);
}
.dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--color-gray-700);
  transition: all .15s;
}
.dropdown-link:hover { background: var(--color-gray-50); color: var(--color-gray-900); }
.dropdown-link .dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--blue-500);
  margin-top: 0.35rem;
  flex-shrink: 0;
}

/* Mobile hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--color-gray-700); border-radius: 2px; transition: all .3s; }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 200;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-close {
  float: right;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-gray-700);
}
.mobile-nav-links { clear: both; padding-top: 2rem; }
.mobile-nav-links a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-gray-100);
  color: var(--color-gray-700);
}
.mobile-nav-section h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-gray-400);
  font-weight: 700;
  padding: 1rem 0 0.5rem;
}

/* ========================================
   HERO SECTIONS
   ======================================== */
.hero {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero-home {
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--sky-50) 50%, white 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}
.hero-title {
  color: var(--color-gray-900);
  margin-bottom: 1.25rem;
}
.hero-title span { color: var(--blue-600); }
.hero-lead {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
  max-width: 36rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  position: relative;
}
.hero-visual .card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--color-gray-100);
}
.hero-stat-card .stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-600);
}
.hero-stat-card .stat-label {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  margin-top: 0.25rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p {
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 0 auto;
}

/* Product hero */
.product-hero {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.product-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.product-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.product-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1.5rem 0; }
.product-meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; }
.product-meta-item svg { width: 1.125rem; height: 1.125rem; }
.product-hero-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  background: var(--color-gray-100);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-hero-img .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all .2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue-600);
  color: white;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.btn-primary:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--color-gray-700);
  border: 2px solid var(--color-gray-300);
}
.btn-outline:hover { border-color: var(--color-gray-600); color: var(--color-gray-900); }
.btn-white {
  background: white;
  color: var(--blue-700);
}
.btn-white:hover { background: var(--blue-50); }
.btn-pill { border-radius: 2rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Color variants */
.btn-rose { background: var(--rose-500); color: white; }
.btn-rose:hover { background: var(--rose-600); }
.btn-green { background: var(--green-600); color: white; }
.btn-green:hover { background: var(--green-900); }
.btn-purple { background: var(--purple-600); color: white; }
.btn-purple:hover { background: var(--purple-900); }
.btn-sky { background: var(--sky-500); color: white; }
.btn-sky:hover { background: var(--sky-600); }
.btn-yellow { background: var(--yellow-500); color: white; }
.btn-yellow:hover { background: var(--yellow-600); }
.btn-lime { background: var(--lime-500); color: white; }
.btn-lime:hover { background: var(--lime-600); }
.btn-teal { background: var(--teal-500); color: white; }
.btn-teal:hover { background: var(--teal-600); }

/* ========================================
   SECTIONS
   ======================================== */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-sm { padding: clamp(2rem, 4vw, 3rem) 0; }
.section-lg { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-header { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue-600);
  margin-bottom: 0.75rem;
}

/* Background variants */
.bg-white { background: white; }
.bg-gray { background: var(--color-gray-50); }
.bg-dark { background: var(--color-gray-900); color: white; }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: white; }
.bg-dark p { color: var(--color-gray-300); }
.bg-blue { background: var(--blue-600); color: white; }
.bg-blue h1, .bg-blue h2, .bg-blue h3 { color: white; }
.bg-blue p { color: var(--blue-100); }

/* ========================================
   CARDS
   ======================================== */
.card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  overflow: hidden;
  transition: all .2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-body { padding: 1.5rem; }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--color-gray-100); }

/* Product card */
.product-card { display: flex; flex-direction: column; }
.product-card .card-body { flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; color: var(--color-gray-900); }
.product-card p { font-size: 0.875rem; flex: 1; }
.product-card .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--color-gray-500);
}
.product-card .card-meta span { display: flex; align-items: center; gap: 0.25rem; }
.product-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-gray-100);
}
.product-card .price { font-weight: 700; font-size: 1.0625rem; color: var(--color-gray-900); }

/* Feature card */
.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  background: white;
}
.feature-card .icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.feature-card h4 { margin-bottom: 0.5rem; color: var(--color-gray-900); }
.feature-card p { font-size: 0.9375rem; }

/* Testimonial card */
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow);
}
.testimonial-card .quote-text {
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--color-gray-700);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-card .quote-text::before { content: '\201C'; }
.testimonial-card .quote-text::after { content: '\201D'; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author .avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-gray-600);
  flex-shrink: 0;
}
.testimonial-author .author-info .name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-gray-900);
}
.testimonial-author .author-info .role {
  font-size: 0.75rem;
  color: var(--color-gray-500);
}

/* Pricing card */
.pricing-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 2px solid var(--color-gray-200);
  position: relative;
  transition: all .2s;
}
.pricing-card:hover { border-color: var(--blue-300, #93c5fd); box-shadow: var(--shadow-xl); }
.pricing-card.featured {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-xl);
}
.pricing-card .price-amount {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin: 1rem 0 0.25rem;
}
.pricing-card .price-note { font-size: 0.875rem; color: var(--color-gray-500); margin-bottom: 1.5rem; }
.pricing-card ul { margin: 1.5rem 0; }
.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: var(--color-gray-700);
}
.pricing-card ul li::before {
  content: '✓';
  color: var(--green-600);
  font-weight: 700;
  flex-shrink: 0;
}

/* ========================================
   GRIDS
   ======================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
  background: var(--color-gray-900);
  color: white;
  padding: 3rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat-item .number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--blue-400, #60a5fa);
}
.stat-item .label { font-size: 1rem; color: var(--color-gray-300); margin-top: 0.5rem; }

/* ========================================
   FOCUS AREAS
   ======================================== */
.focus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.focus-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--color-gray-100);
  transition: all .2s;
}
.focus-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.focus-item .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.focus-item h3 { font-size: 1rem; color: var(--color-gray-900); }

/* ========================================
   PRODUCT CATEGORIES (Homepage)
   ======================================== */
.category-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 2rem;
  position: relative;
}
.category-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.category-card p { font-size: 0.9375rem; margin-bottom: 1.5rem; }
.category-card .links { display: flex; flex-direction: column; gap: 0.375rem; }
.category-card .links a {
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0;
  transition: gap .15s;
}
.category-card .links a::before { content: '→'; }
.category-card .links a:hover { gap: 0.5rem; }

/* Blue category */
.category-blue { background: var(--blue-50); border: 2px solid var(--blue-100); }
.category-blue h3 { color: var(--blue-900); }
.category-blue p { color: var(--blue-700); }
.category-blue .links a { color: var(--blue-600); }

/* Yellow category */
.category-yellow { background: var(--yellow-50); border: 2px solid var(--yellow-100); }
.category-yellow h3 { color: var(--yellow-900); }
.category-yellow p { color: var(--yellow-600); }
.category-yellow .links a { color: var(--yellow-600); }

/* Purple category */
.category-purple { background: var(--purple-50); border: 2px solid var(--purple-100); }
.category-purple h3 { color: var(--purple-900); }
.category-purple p { color: var(--purple-600); }
.category-purple .links a { color: var(--purple-600); }

/* ========================================
   CALENDAR SECTION
   ======================================== */
.calendar-month-group { margin-bottom: 2.5rem; }
.calendar-month-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.calendar-month-header h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-gray-500);
}
.calendar-month-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-gray-200);
}
.event-card {
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  margin-bottom: 0.75rem;
  transition: all .2s;
}
.event-card:hover { box-shadow: var(--shadow); border-color: var(--sky-200, #bae6fd); }
.event-date {
  text-align: center;
  background: var(--sky-50);
  border-radius: var(--radius);
  padding: 0.75rem;
  border: 1px solid var(--sky-100);
}
.event-date .day {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sky-700, #0369a1);
  line-height: 1;
}
.event-date .month { font-size: 0.75rem; color: var(--sky-600); text-transform: uppercase; font-weight: 600; }
.event-content h4 { color: var(--color-gray-900); margin-bottom: 0.25rem; }
.event-content p { font-size: 0.875rem; }
.event-meta { display: flex; gap: 1rem; margin-top: 0.5rem; flex-wrap: wrap; }
.event-meta span { font-size: 0.8125rem; color: var(--color-gray-500); display: flex; align-items: center; gap: 0.25rem; }
.event-actions { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-end; }

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow);
}
.contact-card h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-gray-100);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .icon-box {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-700, #15803d);
  font-size: 1rem;
}
.contact-info-item .info strong { display: block; font-size: 0.8125rem; color: var(--color-gray-500); margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.contact-info-item .info a { color: var(--color-gray-800); font-weight: 500; }
.contact-info-item .info a:hover { color: var(--green-600); }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.team-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--color-gray-50);
  border-radius: var(--radius);
}
.team-card .avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--green-200, #bbf7d0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--green-800, #166534);
  flex-shrink: 0;
}
.team-card .info .name { font-size: 0.875rem; font-weight: 600; color: var(--color-gray-900); }
.team-card .info .role { font-size: 0.75rem; color: var(--color-gray-500); }

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.product-detail-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.sticky-sidebar { position: sticky; top: 5rem; }
.booking-card {
  background: white;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
}
.booking-card h3 { font-size: 1.125rem; margin-bottom: 1.25rem; }
.booking-option {
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-gray-100);
  margin-bottom: 0.75rem;
  transition: border-color .2s;
}
.booking-option:hover { border-color: var(--blue-300, #93c5fd); }
.booking-option .option-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.booking-option .option-title { font-weight: 600; font-size: 0.9375rem; }
.booking-option .option-price { font-weight: 700; font-size: 1.125rem; color: var(--color-gray-900); }
.booking-option .option-desc { font-size: 0.8125rem; color: var(--color-gray-500); }

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--color-gray-900);
  color: var(--color-gray-300);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { color: white; font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }
.footer-col h5 {
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.875rem; color: var(--color-gray-400); transition: color .15s; }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-gray-800, #1f2937);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.font-bold { font-weight: 700; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.w-full { width: 100%; }
.rounded-full { border-radius: 9999px; }

/* Divider */
.divider { height: 1px; background: var(--color-gray-200); margin: 1.5rem 0; }

/* Tag variants */
.tag { display: inline-flex; align-items: center; padding: 0.25rem 0.75rem; border-radius: 2rem; font-size: 0.75rem; font-weight: 600; }
.tag-blue { background: var(--blue-100); color: var(--blue-700); }
.tag-sky { background: var(--sky-100); color: var(--sky-900); }
.tag-green { background: var(--green-100); color: var(--green-700, #15803d); }
.tag-purple { background: var(--purple-100); color: var(--purple-700, #7e22ce); }
.tag-rose { background: var(--rose-100); color: var(--rose-700, #be123c); }
.tag-yellow { background: var(--yellow-100); color: var(--yellow-700, #a16207); }
.tag-orange { background: var(--orange-100); color: var(--orange-700, #c2410c); }
.tag-teal { background: var(--teal-100); color: var(--teal-700, #0f766e); }
.tag-lime { background: var(--lime-100); color: var(--lime-700, #4d7c0f); }

/* Section accent bars */
.section-bar { height: 4px; width: 3rem; border-radius: 2px; margin-bottom: 1rem; }
.bar-blue { background: var(--blue-500); }
.bar-sky { background: var(--sky-500); }
.bar-green { background: var(--green-500); }
.bar-purple { background: var(--purple-500); }
.bar-rose { background: var(--rose-500); }
.bar-yellow { background: var(--yellow-500); }
.bar-teal { background: var(--teal-500); }

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-gray-500);
  padding: 1rem 0;
}
.breadcrumb a { color: var(--color-gray-500); transition: color .15s; }
.breadcrumb a:hover { color: var(--color-gray-900); }
.breadcrumb span { color: var(--color-gray-300); }

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: var(--blue-600);
  color: white;
  padding: 3rem 0;
  text-align: center;
}
.cta-banner h2 { color: white; margin-bottom: 0.75rem; }
.cta-banner p { color: var(--blue-100); max-width: 36rem; margin: 0 auto 1.5rem; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dropdown-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .product-hero-inner { grid-template-columns: 1fr; }
  .product-hero-img { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }
  .event-card { grid-template-columns: 4rem 1fr; }
  .event-actions { grid-column: 1 / -1; flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .team-grid { grid-template-columns: 1fr; }
  .dropdown-menu { display: none; }
}

@media (max-width: 480px) {
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn .4s ease forwards; }
.counter { display: inline-block; }

/* Active nav state */
.nav-link.active { color: var(--blue-600); background: var(--blue-50); }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--blue-600);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 999;
  font-size: 0.875rem;
}
.skip-link:focus { top: 0; }
