/* ============================================
   WHISPER INQUIRE - SOFT PASTEL DESIGN SYSTEM
   Modern Photography Studio with Dreamy Aesthetic
   ============================================ */

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

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #4A5568;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 100%);
  overflow-x: hidden;
}

/* ============================================
   SOFT PASTEL COLOR SYSTEM
   ============================================ */

:root {
  --pastel-pink: #FFE4E9;
  --pastel-lavender: #E5DEFF;
  --pastel-blue: #D4E7FF;
  --pastel-mint: #D4FFE8;
  --pastel-peach: #FFE8D6;
  --pastel-rose: #FFD6E8;
  --soft-gray: #F7F9FC;
  --text-dark: #4A5568;
  --text-medium: #718096;
  --text-light: #A0AEC0;
  --white: #FFFFFF;
  --shadow-soft: 0 8px 24px rgba(169, 169, 225, 0.12);
  --shadow-medium: 0 12px 32px rgba(169, 169, 225, 0.18);
  --shadow-hover: 0 16px 40px rgba(169, 169, 225, 0.24);
}

/* ============================================
   TYPOGRAPHY - SOFT & DREAMY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2D3748;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #4A5568;
  line-height: 1.8;
}

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

a:hover {
  color: #5A67D8;
}

strong {
  font-weight: 600;
  color: #2D3748;
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #4A5568;
}

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

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

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(169, 169, 225, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}

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

.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

.main-nav a {
  font-weight: 500;
  font-size: 16px;
  color: #4A5568;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-lavender), var(--pastel-pink));
  transition: width 0.3s ease;
}

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

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

/* ============================================
   MOBILE MENU - SMOOTH SLIDING OVERLAY
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 150;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  color: #4A5568;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(255, 228, 233, 0.98), rgba(229, 222, 255, 0.98));
  backdrop-filter: blur(20px);
  z-index: 200;
  padding: 80px 32px 32px;
  box-shadow: -8px 0 32px rgba(169, 169, 225, 0.2);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  color: #4A5568;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--white);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #4A5568;
  transition: all 0.3s ease;
  text-align: left;
}

.mobile-nav a:hover {
  background: var(--white);
  transform: translateX(8px);
  box-shadow: var(--shadow-soft);
  color: #667EEA;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
}

/* ============================================
   HERO SECTIONS - DREAMY & SPACIOUS
   ============================================ */

.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 50%, var(--pastel-blue) 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #2D3748;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
  font-size: 20px;
  color: #4A5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ============================================
   BUTTONS - SOFT PASTELS WITH HOVER EFFECTS
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, #667EEA, #764BA2);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, #5A67D8, #6B46C1);
}

.btn-secondary {
  background: var(--white);
  color: #667EEA;
  border: 2px solid var(--pastel-lavender);
}

.btn-secondary:hover {
  background: var(--pastel-lavender);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-link {
  color: #667EEA;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  display: inline-block;
  padding: 4px 0;
}

.btn-link::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

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

/* ============================================
   SECTIONS - CONSISTENT SPACING
   ============================================ */

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CARDS - SOFT SHADOWS & ROUNDED CORNERS
   ============================================ */

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

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

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, rgba(255, 228, 233, 0.3), rgba(229, 222, 255, 0.3));
}

.service-card h3 {
  color: #2D3748;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-medium);
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #667EEA;
  margin: 8px 0;
}

/* ============================================
   GRID LAYOUTS - FLEXBOX ONLY
   ============================================ */

.services-grid,
.values-grid,
.testimonials-grid,
.workshop-grid,
.collections-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.services-grid > *,
.values-grid > *,
.workshop-grid > *,
.collections-grid > * {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

.testimonials-grid > * {
  flex: 1 1 100%;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST FOR READABILITY
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-mint));
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2D3748;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-medium);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p:first-child {
  font-size: 18px;
  line-height: 1.8;
  color: #2D3748;
  font-style: italic;
}

.testimonial-card .client-name,
.testimonial-card .participant-name {
  font-weight: 600;
  color: #667EEA;
  margin-bottom: 0;
}

/* ============================================
   INTRODUCTION & TEXT SECTIONS
   ============================================ */

.introduction,
.story,
.approach,
.workshop-philosophy,
.gallery-introduction {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
}

.values-list {
  list-style: none;
  padding: 0;
  margin-top: 32px;
}

.values-list li {
  padding: 16px 0 16px 40px;
  position: relative;
  color: #4A5568;
}

.values-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 16px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  color: #667EEA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ============================================
   VALUES & FEATURES
   ============================================ */

.value-card,
.collection-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover,
.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.value-card h3,
.collection-card h3 {
  color: #667EEA;
  margin-bottom: 16px;
}

.price-range {
  font-size: 20px;
  font-weight: 600;
  color: #667EEA;
  margin-top: 16px;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
}

.process h2 {
  text-align: center;
  margin-bottom: 48px;
}

.process-steps,
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(255, 228, 233, 0.3), rgba(229, 222, 255, 0.3));
  border-radius: 16px;
  padding: 28px;
  position: relative;
  margin-bottom: 20px;
}

.step h3 {
  color: #667EEA;
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================
   CTA BANNER - GRADIENT BACKGROUND
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  border-radius: 24px;
  padding: 60px 32px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: var(--shadow-medium);
}

.cta-banner h2 {
  color: #2D3748;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #4A5568;
  font-size: 18px;
  margin-bottom: 32px;
}

/* ============================================
   PORTFOLIO SECTIONS
   ============================================ */

.portfolio-filter {
  margin-bottom: 48px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.filter-btn {
  padding: 12px 24px;
  background: var(--white);
  border: 2px solid var(--pastel-lavender);
  border-radius: 50px;
  color: #4A5568;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  color: #2D3748;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.portfolio-grid .grid-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.portfolio-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  height: 320px;
  background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-mint));
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.item-overlay {
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
  padding: 24px;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .item-overlay {
  transform: translateY(0);
}

.item-overlay h3 {
  color: #2D3748;
  margin-bottom: 8px;
  font-size: 20px;
}

.item-overlay p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.featured-work {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
}

.featured-project {
  margin-top: 32px;
}

.project-details {
  color: var(--text-light);
  font-size: 14px;
  font-style: italic;
  margin-top: 20px;
}

/* ============================================
   WORKSHOP SECTIONS
   ============================================ */

.workshop-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

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

.workshop-card .level {
  display: inline-block;
  padding: 6px 12px;
  background: var(--pastel-lavender);
  color: #667EEA;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.workshop-card h3 {
  color: #2D3748;
  margin-bottom: 12px;
}

.workshop-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #667EEA;
  margin: 8px 0;
}

.learning-outcomes {
  background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-rose));
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 60px;
}

.skills-list {
  list-style: none;
  padding: 0;
  margin-top: 32px;
}

.skills-list li {
  padding: 16px 0 16px 40px;
  position: relative;
  color: #2D3748;
  font-size: 18px;
}

.skills-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 16px;
  color: #667EEA;
  font-size: 24px;
}

/* ============================================
   GALLERY & COLLECTIONS
   ============================================ */

.print-quality,
.collector-services {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
}

.quality-info ul,
.services-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.quality-info li,
.services-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  color: #4A5568;
}

.quality-info li::before,
.services-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 12px;
  color: #667EEA;
  font-size: 16px;
}

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

.contact-content {
  margin-bottom: 60px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.contact-form-section,
.contact-info-section {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.form-container {
  margin-top: 24px;
}

.form-notice {
  background: linear-gradient(135deg, rgba(255, 228, 233, 0.3), rgba(229, 222, 255, 0.3));
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

.info-block {
  margin-bottom: 32px;
}

.info-block h3 {
  color: #667EEA;
  margin-bottom: 12px;
  font-size: 18px;
}

.info-block p,
.info-block a {
  color: #4A5568;
  line-height: 1.8;
}

.info-block a:hover {
  color: #667EEA;
}

.info-block ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
}

.info-block li {
  padding: 8px 0;
  color: #4A5568;
}

.studio-visit,
.location-contact {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
}

.contact-info h2 {
  margin-bottom: 24px;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-blue));
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #48BB78, #38B2AC);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-medium);
}

.confirmation-message {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
}

.next-steps {
  margin-bottom: 60px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.suggestion-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

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

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-hero {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-blue));
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.legal-hero h1 {
  margin-bottom: 16px;
}

.last-updated {
  color: var(--text-medium);
  font-size: 14px;
  margin-top: 8px;
}

.legal-content {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
}

.legal-content h2 {
  color: #667EEA;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: #2D3748;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.legal-content th,
.legal-content td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--pastel-lavender);
}

.legal-content th {
  background: var(--pastel-lavender);
  color: #2D3748;
  font-weight: 600;
}

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */

.services-detailed {
  margin-bottom: 60px;
}

.service-detail {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 32px;
}

.service-detail h2 {
  color: #667EEA;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 28px;
  font-weight: 700;
  color: #667EEA;
  margin: 20px 0;
}

.service-detail ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.service-detail li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #4A5568;
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  color: #667EEA;
  font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, #2D3748, #4A5568);
  color: var(--white);
  padding: 60px 20px 32px;
  margin-top: 80px;
}

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

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

.footer-section h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 24px rgba(169, 169, 225, 0.2);
  padding: 24px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  color: #4A5568;
  margin-bottom: 0;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: linear-gradient(135deg, #667EEA, #764BA2);
  color: var(--white);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.cookie-reject {
  background: var(--soft-gray);
  color: #4A5568;
}

.cookie-reject:hover {
  background: var(--pastel-lavender);
}

.cookie-settings {
  background: transparent;
  color: #667EEA;
  border: 2px solid var(--pastel-lavender);
}

.cookie-settings:hover {
  background: var(--pastel-lavender);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 55, 72, 0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-hover);
}

.cookie-modal h3 {
  color: #2D3748;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--soft-gray);
  border-radius: 12px;
}

.cookie-category h4 {
  color: #4A5568;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: var(--text-light);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #667EEA;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: var(--text-medium);
  font-size: 14px;
  margin-bottom: 0;
}

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .services-grid > *,
  .values-grid > *,
  .workshop-grid > *,
  .collections-grid > * {
    flex: 1 1 100%;
  }
  
  .process-steps .step,
  .steps .step {
    flex: 1 1 100%;
  }
  
  .portfolio-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .contact-form-section,
  .contact-info-section {
    flex: 1 1 100%;
  }
  
  .suggestion-card {
    flex: 1 1 100%;
  }
  
  .introduction,
  .story,
  .approach,
  .workshop-philosophy,
  .gallery-introduction,
  .process,
  .featured-work,
  .print-quality,
  .collector-services,
  .studio-visit,
  .location-contact,
  .confirmation-message,
  .legal-content {
    padding: 32px 24px;
  }
  
  .cta-banner {
    padding: 40px 24px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-group .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .mobile-menu {
    max-width: 100%;
  }
  
  .card,
  .service-card,
  .workshop-card,
  .value-card,
  .collection-card,
  .suggestion-card {
    padding: 24px;
  }
}



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

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

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.hidden {
  display: none;
}

.visible {
  display: block;
}

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

:focus {
  outline: 3px solid var(--pastel-lavender);
  outline-offset: 2px;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--white);
  padding: 8px 16px;
  z-index: 100;
  text-decoration: none;
  color: #667EEA;
  font-weight: 600;
}

.skip-to-content:focus {
  top: 0;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: var(--white);
  }
  
  .hero {
    background: var(--white);
    padding: 20px 0;
  }
  
  .btn {
    border: 1px solid #2D3748;
    background: var(--white);
    color: #2D3748;
  }
}