/* ===================================
   LUMINOUS TALE - MINIMALIST DESIGN
   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;
  font-size: 16px;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - MINIMALIST STYLE
   =================================== */

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

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

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

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

a:hover {
  color: #2C3E50;
}

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

li {
  margin-bottom: 8px;
}

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

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

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

/* ===================================
   BUTTONS - MINIMALIST STYLE
   =================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 32px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #8B6838;
  color: #FFFFFF;
  border: 2px solid #8B6838;
}

.btn-primary:hover {
  background-color: #2C3E50;
  border-color: #2C3E50;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #2C3E50;
  border: 2px solid #2C3E50;
}

.btn-secondary:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-link {
  background: none;
  color: #8B6838;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid #8B6838;
  font-size: 14px;
  text-transform: none;
}

.btn-link:hover {
  color: #2C3E50;
  border-bottom-color: #2C3E50;
}

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

header {
  background-color: #FFFFFF;
  padding: 24px 0;
  border-bottom: 1px solid #F8F3ED;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

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

.tagline {
  font-size: 12px;
  color: #8B6838;
  font-style: italic;
  text-align: center;
}

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

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2C3E50;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #8B6838;
  border-bottom-color: #8B6838;
}

.header-cta {
  display: flex;
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #8B6838;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mobile-menu-toggle:hover {
  background-color: #2C3E50;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  padding: 80px 40px 40px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 16px rgba(0,0,0,0.1);
}

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

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

.mobile-menu-close:hover {
  color: #8B6838;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2C3E50;
  padding: 12px 0;
  border-bottom: 1px solid #F8F3ED;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #8B6838;
  padding-left: 8px;
}

/* ===================================
   HERO SECTIONS - MINIMALIST
   =================================== */

.hero {
  background-color: #F8F3ED;
  padding: 120px 20px 80px;
  text-align: center;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #2C3E50;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: #2C3E50;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-page {
  background-color: #F8F3ED;
  padding: 80px 20px 60px;
  text-align: center;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: #8B6838;
  text-align: center;
}

.breadcrumb a {
  color: #8B6838;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

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

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

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #2C3E50;
  opacity: 0.9;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.highlight {
  font-weight: 600;
  color: #8B6838;
  font-size: 18px;
  display: block;
  margin: 32px 0;
}

.highlight-box {
  background-color: #F8F3ED;
  padding: 32px;
  margin: 40px 0;
  border-left: 4px solid #8B6838;
}

blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: #8B6838;
  padding: 40px;
  margin: 40px 0;
  text-align: center;
  border-top: 1px solid #D4A574;
  border-bottom: 1px solid #D4A574;
}

/* ===================================
   STATISTICS - MINIMAL STYLE
   =================================== */

.trust-stats {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 150px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: #8B6838;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2C3E50;
}

/* ===================================
   CARDS - MINIMALIST DESIGN
   =================================== */

.services-grid,
.values-grid,
.team-grid,
.testimonials-grid,
.steps-grid,
.styles-grid,
.actions-grid,
.awards-grid,
.options-grid,
.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
}

.service-card,
.value-card,
.team-member,
.testimonial-card,
.step,
.style-card,
.action-card,
.award-item,
.option-card,
.metric {
  background-color: #FFFFFF;
  padding: 40px 32px;
  border: 1px solid #F8F3ED;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 400px;
  position: relative;
}

.service-card:hover,
.value-card:hover,
.option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.service-card h3,
.value-card h3,
.team-member h3,
.step h3,
.style-card h3,
.option-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #2C3E50;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #8B6838;
  margin: 8px 0 16px;
  font-weight: 400;
}

.value-card img,
.option-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  opacity: 0.7;
}

/* ===================================
   TESTIMONIALS - READABLE DESIGN
   =================================== */

.testimonials {
  background-color: #F8F3ED;
  padding: 80px 20px;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 40px;
  border: none;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-featured {
  background-color: #FFFFFF;
  padding: 48px;
  margin-bottom: 40px;
  border-left: 4px solid #8B6838;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.quote {
  font-size: 18px;
  line-height: 1.8;
  color: #2C3E50;
  margin-bottom: 24px;
  font-style: italic;
}

.author {
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 8px;
  font-size: 16px;
}

.location,
.meta {
  font-size: 14px;
  color: #8B6838;
  opacity: 0.8;
}

.rating {
  color: #8B6838;
  font-size: 18px;
  margin: 16px 0;
}

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

.phase,
.step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 48px;
}

.phase-number,
.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background-color: #F8F3ED;
  color: #8B6838;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
}

.phase-duration {
  font-size: 14px;
  color: #8B6838;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* ===================================
   LISTS - CLEAN STYLE
   =================================== */

.included-list,
.location-highlights,
.expectations-list,
.pricing-points,
.privacy-points,
.timeline-list {
  list-style: none;
  margin-left: 0;
  margin-top: 24px;
}

.included-list li,
.location-highlights li,
.expectations-list li,
.pricing-points li,
.privacy-points li,
.timeline-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.8;
}

.included-list li:before,
.location-highlights li:before,
.expectations-list li:before,
.pricing-points li:before,
.privacy-points li:before,
.timeline-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B6838;
  font-weight: 600;
}

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

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

.contact-item {
  flex: 1 1 250px;
  text-align: center;
  padding: 32px;
  background-color: #F8F3ED;
}

.contact-item h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #2C3E50;
}

.contact-item p {
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-item a {
  color: #8B6838;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-section {
  background-color: #2C3E50;
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

.cta-content h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.cta-content p {
  color: #FFFFFF;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
}

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

.cta-section .btn-primary {
  background-color: #D4A574;
  border-color: #D4A574;
  color: #2C3E50;
}

.cta-section .btn-primary:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #2C3E50;
}

.cta-section .btn-secondary {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.cta-section .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #2C3E50;
}

.trust-elements,
.trust-element,
.social-proof {
  font-size: 14px;
  color: #D4A574;
  margin-top: 24px;
}

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

footer {
  background-color: #F8F3ED;
  padding: 60px 20px 32px;
  border-top: 1px solid #D4A574;
}

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

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

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #2C3E50;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #2C3E50;
  opacity: 0.8;
}

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

.footer-nav a {
  font-size: 14px;
  color: #2C3E50;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #8B6838;
  padding-left: 4px;
}

.footer-tagline {
  font-style: italic;
  color: #8B6838;
  margin-top: 16px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #D4A574;
  text-align: center;
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.legal-nav a {
  font-size: 13px;
  color: #2C3E50;
  opacity: 0.7;
}

.legal-nav a:hover {
  opacity: 1;
  color: #8B6838;
}

.copyright {
  font-size: 13px;
  color: #2C3E50;
  opacity: 0.7;
  margin-bottom: 8px;
}

.certification {
  font-size: 12px;
  color: #8B6838;
  font-style: italic;
}

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

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

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

.legal-page h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-page h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-page .intro {
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.last-updated {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #F8F3ED;
  font-size: 14px;
  color: #8B6838;
}

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

.thank-you-page {
  padding: 120px 20px 80px;
  text-align: center;
  background-color: #F8F3ED;
}

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

.checkmark {
  width: 80px;
  height: 80px;
  background-color: #8B6838;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

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

.subtitle {
  font-size: 18px;
  color: #2C3E50;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* ===================================
   PORTFOLIO ITEMS
   =================================== */

.portfolio-item {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #F8F3ED;
}

.portfolio-item:last-child {
  border-bottom: none;
}

.project-meta {
  font-size: 14px;
  color: #8B6838;
  margin-bottom: 24px;
}

.project-highlights {
  background-color: #F8F3ED;
  padding: 24px 32px;
  margin: 32px 0;
  list-style: none;
}

.project-highlights li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.project-highlights li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8B6838;
}

/* ===================================
   SERVICE DETAIL PAGES
   =================================== */

.service-detail {
  margin-bottom: 80px;
  padding: 48px;
  background-color: #F8F3ED;
  border-left: 4px solid #8B6838;
}

.service-tagline {
  font-size: 18px;
  color: #8B6838;
  font-style: italic;
  margin-bottom: 16px;
}

.ideal-for {
  background-color: #FFFFFF;
  padding: 24px;
  margin: 32px 0;
  border-left: 3px solid #D4A574;
  font-style: italic;
}

.pricing-note,
.note,
.refund-note,
.response-time,
.booking-note,
.no-pressure,
.timeline-note,
.office-hours {
  font-size: 14px;
  color: #8B6838;
  font-style: italic;
  margin-top: 24px;
  text-align: center;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 1px solid #D4A574;
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}

.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;
  font-size: 14px;
  line-height: 1.6;
  color: #2C3E50;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.accept-all {
  background-color: #8B6838;
  color: #FFFFFF;
}

.accept-all:hover {
  background-color: #2C3E50;
}

.reject-all,
.cookie-settings {
  background-color: transparent;
  color: #2C3E50;
  border: 1px solid #2C3E50;
}

.reject-all:hover,
.cookie-settings:hover {
  background-color: #F8F3ED;
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  padding: 8px;
}

.cookie-modal-close:hover {
  color: #8B6838;
}

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

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

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-toggle label {
  font-weight: 500;
  color: #2C3E50;
}

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

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.save-preferences {
  width: 100%;
  padding: 16px;
  background-color: #8B6838;
  color: #FFFFFF;
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
}

.save-preferences:hover {
  background-color: #2C3E50;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  /* Header */
  header {
    padding: 16px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Sections */
  section {
    padding: 60px 20px;
  }
  
  .hero {
    padding: 80px 20px 60px;
  }
  
  .hero-page {
    padding: 60px 20px 40px;
  }
  
  /* Flexbox grids */
  .stats-grid,
  .services-grid,
  .values-grid,
  .team-grid,
  .steps-grid,
  .contact-grid,
  .footer-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .service-card,
  .value-card,
  .team-member,
  .step,
  .style-card,
  .option-card,
  .contact-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Buttons */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Process steps */
  .phase,
  .step {
    padding-left: 0;
    padding-top: 70px;
  }
  
  .phase-number,
  .step-number {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 100%;
  }
  
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  /* Service details */
  .service-detail {
    padding: 32px 24px;
  }
  
  /* Footer */
  .footer-grid {
    gap: 32px;
  }
  
  .legal-nav {
    flex-direction: column;
    gap: 12px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .value-card,
  .team-member {
    flex: 1 1 calc(50% - 16px);
  }
  
  .stats-grid {
    gap: 40px;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

.hero-content,
.service-card,
.value-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #8B6838;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
}