/* ===================================
   IVORY PATHWAY - MONOCHROME SOPHISTICATED DESIGN
   Sophisticated monochrome design with black/white/gray palette
   =================================== */

/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

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

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - ELEGANT MONOCHROME
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
  letter-spacing: 0.02em;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  font-weight: 700;
}

h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: #2a2a2a;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ===================================
   HEADER - MINIMALIST BLACK & WHITE
   =================================== */

header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000000;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #000000;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ===================================
   BUTTONS - DRAMATIC CONTRAST
   =================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: #ffffff;
  color: #000000;
}

.btn-secondary:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}

/* ===================================
   MOBILE MENU - SOPHISTICATED OVERLAY
   =================================== */

.mobile-menu-toggle {
  display: none;
  background: #000000;
  color: #ffffff;
  border: none;
  font-size: 28px;
  cursor: pointer;
  padding: 10px 16px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  transition: all 0.3s ease;
  line-height: 1;
}

.mobile-menu-toggle:hover {
  background: #2a2a2a;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #ffffff;
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #000000;
  color: #ffffff;
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 8px 16px;
  line-height: 1;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #2a2a2a;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 80px 40px 40px;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #000000;
  padding-left: 10px;
}

/* ===================================
   HERO SECTION - DRAMATIC ELEGANCE
   =================================== */

.hero {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 100px 20px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #000000, transparent);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #000000;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-indicator,
.trust-element {
  font-size: 14px;
  color: #666666;
  margin-top: 24px;
  font-style: italic;
}

.stat-highlight {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===================================
   SECTIONS - CLEAN SPACING
   =================================== */

section {
  padding: 80px 20px;
  margin-bottom: 0;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #000000;
}

/* ===================================
   VALUE CARDS - MINIMALIST GRID
   =================================== */

.value-cards,
.benefit-grid,
.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.value-card,
.benefit-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 40px 32px;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  transition: all 0.4s ease;
  position: relative;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #000000;
  transition: width 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #000000;
}

.value-card:hover::before {
  width: 100%;
}

.value-card h3,
.benefit-card h3 {
  margin-bottom: 16px;
  color: #000000;
  font-size: 24px;
}

.value-card p,
.benefit-card p {
  color: #4a4a4a;
  line-height: 1.6;
}

/* ===================================
   PRICING CARDS - SOPHISTICATED TIERS
   =================================== */

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 48px;
}

.pricing-card {
  flex: 1 1 320px;
  max-width: 380px;
  padding: 48px 36px;
  background: #ffffff;
  border: 2px solid #d0d0d0;
  position: relative;
  transition: all 0.4s ease;
}

.pricing-card.featured {
  border-color: #000000;
  border-width: 3px;
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

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

.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #000000;
  color: #ffffff;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #000000;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
}

.pricing-card > p {
  color: #4a4a4a;
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-card ul {
  margin-bottom: 32px;
}

.pricing-card li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #2a2a2a;
  font-size: 15px;
  position: relative;
  padding-left: 24px;
}

.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 700;
}

.ideal-for {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-bottom: 24px;
}

/* ===================================
   COMPARISON TABLE
   =================================== */

.comparison-table {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.pricing-tier {
  flex: 1 1 320px;
  max-width: 380px;
  padding: 48px 36px;
  background: #fafafa;
  border: 2px solid #d0d0d0;
  position: relative;
  transition: all 0.4s ease;
}

.pricing-tier.featured {
  background: #ffffff;
  border-color: #000000;
  border-width: 3px;
}

.pricing-tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* ===================================
   PROCESS STEPS - LINEAR FLOW
   =================================== */

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.step {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #000000;
}

.step h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  color: #000000;
}

.step p {
  color: #4a4a4a;
  line-height: 1.6;
}

/* ===================================
   TESTIMONIALS - ELEGANT CARDS
   =================================== */

.testimonials {
  background: #f8f8f8;
  padding: 80px 20px;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  padding: 40px 36px;
  background: #ffffff;
  border-left: 4px solid #000000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: #e0e0e0;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.testimonial-card > p:first-of-type {
  font-size: 16px;
  color: #1a1a1a;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
  font-size: 16px;
}

.testimonial-card .role,
.testimonial-card .location {
  font-size: 14px;
  color: #666666;
  margin-bottom: 0;
}

.testimonial-single {
  max-width: 800px;
  margin: 48px auto;
  padding: 40px;
  background: #f8f8f8;
  border-left: 4px solid #000000;
  text-align: center;
}

.testimonial-single p:first-child {
  font-size: 18px;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 24px;
}

/* ===================================
   WORKSHOP CARDS
   =================================== */

.workshop-cards,
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.workshop-card,
.category-card {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  transition: all 0.4s ease;
  position: relative;
}

.workshop-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #000000;
  transition: height 0.4s ease;
  z-index: 0;
}

.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #000000;
}

.workshop-card:hover::after {
  height: 4px;
}

.workshop-card h3,
.category-card h3 {
  position: relative;
  z-index: 1;
  color: #000000;
  margin-bottom: 12px;
}

.workshop-card p,
.category-card p {
  position: relative;
  z-index: 1;
  color: #4a4a4a;
  font-size: 15px;
}

/* ===================================
   STATS SECTION - DRAMATIC NUMBERS
   =================================== */

.stats {
  background: #000000;
  color: #ffffff;
  padding: 80px 20px;
}

.stats h2 {
  color: #ffffff;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-top: 48px;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-number {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 12px;
  line-height: 1;
}

.stat p:last-child {
  font-size: 16px;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ===================================
   WORKSHOP FORMATS & LISTS
   =================================== */

.format-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.format-card {
  flex: 1 1 280px;
  max-width: 300px;
  padding: 32px 28px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

.format-card:hover {
  border-color: #000000;
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.format-card h3 {
  margin-bottom: 8px;
  color: #000000;
}

.format-card p:first-of-type {
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
  font-size: 18px;
}

.availability {
  font-size: 13px;
  color: #666666;
  font-style: italic;
  margin-top: 16px;
}

.workshop-list,
.event-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.workshop-item,
.event-item {
  padding: 32px;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-left: 4px solid #000000;
  transition: all 0.3s ease;
}

.workshop-item:hover,
.event-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(8px);
}

.workshop-item h3,
.event-item h3 {
  margin-bottom: 12px;
  color: #000000;
}

.workshop-item p,
.event-item p {
  color: #4a4a4a;
  margin-bottom: 8px;
}

/* ===================================
   INSTRUCTOR & ARTIST GRIDS
   =================================== */

.instructor-grid,
.artist-grid,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.instructor-card,
.artist-card,
.team-member {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 40px 32px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

.instructor-card:hover,
.artist-card:hover,
.team-member:hover {
  background: #ffffff;
  border-color: #000000;
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.specialty,
.role {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 600;
}

/* ===================================
   TWO COLUMN LAYOUT
   =================================== */

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 48px;
  align-items: flex-start;
}

.column {
  flex: 1 1 400px;
  min-width: 300px;
}

.column h3 {
  margin-bottom: 24px;
  color: #000000;
}

.column ul {
  list-style: none;
  margin-bottom: 24px;
}

.column li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: #2a2a2a;
  border-bottom: 1px solid #f0f0f0;
}

.column li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 700;
}

.note,
.seller-note {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 16px;
}

/* ===================================
   RANGE & SERVICE CARDS
   =================================== */

.range-grid,
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.range-card,
.service-card {
  flex: 1 1 280px;
  max-width: 300px;
  padding: 36px 28px;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  text-align: center;
  transition: all 0.3s ease;
}

.range-card:hover,
.service-card:hover {
  border-color: #000000;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.savings {
  font-size: 14px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq {
  background: #f8f8f8;
  padding: 80px 20px;
}

.faq-items {
  max-width: 900px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #000000;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  margin-bottom: 16px;
  color: #000000;
  font-size: 20px;
}

.faq-item p {
  color: #4a4a4a;
  line-height: 1.7;
}

/* ===================================
   FEATURE LIST
   =================================== */

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: #000000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-item h3 {
  color: #000000;
  margin-bottom: 8px;
}

.feature-item p {
  color: #4a4a4a;
}

/* ===================================
   CTA SECTION - POWERFUL CONTRAST
   =================================== */

.cta-section {
  background: #000000;
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 44px;
}

.cta-section p {
  color: #cccccc;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.cta-section .btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cta-section .btn-primary:hover {
  background: transparent;
  color: #ffffff;
}

.cta-section .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-section .btn-secondary:hover {
  background: #ffffff;
  color: #000000;
}

.trust-elements {
  font-size: 14px;
  color: #999999;
  margin-top: 24px;
}

/* ===================================
   CONTACT SECTIONS
   =================================== */

.contact-options {
  padding: 60px 20px;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.option-card {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 40px 32px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

.option-card:hover {
  border-color: #000000;
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.option-card h3 {
  margin-bottom: 16px;
  color: #000000;
}

.contact-info,
.department-contacts {
  padding: 60px 20px;
  background: #f8f8f8;
}

.info-block {
  max-width: 600px;
  margin: 32px auto;
  padding: 40px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
}

.info-block p {
  margin-bottom: 24px;
  color: #2a2a2a;
}

.department-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 32px auto;
}

.department {
  padding: 32px;
  background: #ffffff;
  border-left: 4px solid #000000;
  border: 1px solid #e0e0e0;
}

.department h3 {
  margin-bottom: 12px;
  color: #000000;
}

.department p {
  color: #4a4a4a;
  margin-bottom: 8px;
}

/* ===================================
   LEGAL CONTENT
   =================================== */

.legal-content {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 32px;
  color: #000000;
}

.legal-content h2 {
  font-size: 32px;
  margin-top: 48px;
  margin-bottom: 20px;
  color: #000000;
  text-align: left;
}

.legal-content h3 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #2a2a2a;
}

.legal-content ul {
  margin: 24px 0;
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #2a2a2a;
  line-height: 1.7;
  list-style: disc;
}

.legal-content strong {
  color: #000000;
  font-weight: 600;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-section {
  padding: 100px 20px;
  text-align: center;
  min-height: 60vh;
}

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

.thank-you-content h1 {
  margin-bottom: 24px;
  color: #000000;
}

.thank-you-content h2 {
  margin-top: 64px;
  margin-bottom: 32px;
  font-size: 32px;
}

.next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.next-steps .step {
  flex: 1 1 280px;
  max-width: 300px;
  padding: 32px 24px;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
}

.explore-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 48px 0;
}

.explore-card {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px 24px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

.explore-card:hover {
  border-color: #000000;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.explore-card h3 {
  margin-bottom: 12px;
  color: #000000;
  font-size: 20px;
}

.explore-card p {
  color: #4a4a4a;
  font-size: 14px;
}

.response-time {
  font-size: 14px;
  color: #666666;
  margin-top: 24px;
  font-style: italic;
}

/* ===================================
   MILESTONES
   =================================== */

.milestones {
  margin-top: 32px;
  padding: 32px;
  background: #f8f8f8;
  border-left: 4px solid #000000;
}

.milestones p {
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
  color: #2a2a2a;
}

.milestones p::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 24px;
  line-height: 1;
}

/* ===================================
   FOOTER - MINIMALIST
   =================================== */

footer {
  background: #1a1a1a;
  color: #cccccc;
  padding: 60px 20px 32px;
  border-top: 2px solid #000000;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-section img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-section p,
.footer-section a {
  color: #999999;
  font-size: 14px;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-section nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-legal {
  padding-top: 32px;
  border-top: 1px solid #333333;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: #999999;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

.footer-legal p {
  font-size: 13px;
  color: #666666;
  margin: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid #000000;
  padding: 24px 20px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin: 0;
  color: #2a2a2a;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

.cookie-btn-accept {
  background: #000000;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #2a2a2a;
}

.cookie-btn-reject {
  background: #ffffff;
  color: #000000;
}

.cookie-btn-reject:hover {
  background: #f8f8f8;
}

.cookie-btn-settings {
  background: transparent;
  color: #000000;
  border: 2px solid #d0d0d0;
}

.cookie-btn-settings:hover {
  border-color: #000000;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 48px 40px;
  border: 2px solid #000000;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #000000;
  color: #ffffff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 16px;
  line-height: 1;
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: #000000;
  font-size: 32px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category h3 {
  margin-bottom: 12px;
  color: #000000;
  font-size: 20px;
}

.cookie-category p {
  color: #4a4a4a;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle label {
  font-size: 14px;
  color: #2a2a2a;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  
  .hero h1 { font-size: 38px; }
  .price { font-size: 40px; }
  .stat-number { font-size: 48px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  .header-content {
    padding: 16px 0;
  }
  
  .logo img {
    height: 35px;
  }
  
  /* Sections */
  section {
    padding: 60px 20px;
  }
  
  .hero {
    padding: 80px 20px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Cards - stack on mobile */
  .value-cards,
  .pricing-cards,
  .workshop-cards,
  .category-grid,
  .stats-grid,
  .format-cards,
  .instructor-grid,
  .artist-grid,
  .team-grid,
  .range-grid,
  .service-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .value-card,
  .pricing-card,
  .workshop-card,
  .category-card,
  .format-card,
  .instructor-card,
  .artist-card,
  .team-member,
  .range-card,
  .service-card {
    max-width: 100%;
    width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
  
  /* Two column to single column */
  .two-column {
    flex-direction: column;
  }
  
  .column {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal nav {
    flex-direction: column;
    align-items: center;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Stats grid on mobile */
  .stats-grid {
    gap: 32px;
  }
  
  .stat {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Process steps */
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  h1 { font-size: 44px; }
  h2 { font-size: 36px; }
  
  .hero h1 { font-size: 48px; }
  
  /* Ensure mobile menu is hidden on tablet */
  .mobile-menu-toggle {
    display: none;
  }
  
  .mobile-menu {
    display: none;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.pt-48 {
  padding-top: 48px;
}

.pb-48 {
  padding-bottom: 48px;
}

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

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

*:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}