/* ===================================
   FISSION FLEET - VINTAGE RETRO DESIGN
   Scientific Skincare with Retro Aesthetic
   =================================== */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.7;
  color: #2C1810;
  background: #F5EFE6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ===================================
   VINTAGE RETRO COLOR PALETTE
   =================================== */
:root {
  --vintage-cream: #F5EFE6;
  --vintage-brown: #8B4513;
  --vintage-teal: #2D5F5D;
  --vintage-peach: #E8A898;
  --vintage-gold: #D4AF37;
  --vintage-rust: #B7410E;
  --text-dark: #2C1810;
  --text-light: #F5EFE6;
  --shadow-retro: 4px 4px 0px rgba(139, 69, 19, 0.3);
}

/* ===================================
   TYPOGRAPHY - VINTAGE STYLE
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--vintage-brown);
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  letter-spacing: 1.5px;
}

h3 {
  font-size: 24px;
  letter-spacing: 1px;
}

h4 {
  font-size: 20px;
}

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

strong {
  font-weight: 700;
  color: var(--vintage-brown);
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
  background: var(--vintage-teal);
  padding: 20px 0;
  border-bottom: 5px solid var(--vintage-gold);
  position: static;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.main-nav ul {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-light);
  font-family: 'Georgia', serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: var(--vintage-gold);
  border-bottom: 2px solid var(--vintage-gold);
  transform: translateY(-2px);
}

/* ===================================
   MOBILE MENU
   =================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: var(--vintage-brown);
  color: var(--text-light);
  border: 3px solid var(--vintage-gold);
  padding: 12px 18px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-retro);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--vintage-rust);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: var(--vintage-teal);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.4);
  border-left: 5px solid var(--vintage-gold);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--vintage-rust);
  color: var(--text-light);
  border: 2px solid var(--vintage-gold);
  padding: 10px 16px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--vintage-brown);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--text-light);
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: 600;
  padding: 15px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(255,255,255,0.1);
  border-left: 4px solid var(--vintage-gold);
  transform: translateX(10px);
}

/* ===================================
   HERO SECTION - VINTAGE STYLE
   =================================== */
.hero {
  background: linear-gradient(135deg, var(--vintage-teal) 0%, var(--vintage-brown) 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 8px solid var(--vintage-gold);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.03) 10px,
    rgba(255,255,255,0.03) 20px
  );
  animation: vintage-pattern 20s linear infinite;
}

@keyframes vintage-pattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, 20px); }
}

.hero h1 {
  color: var(--text-light);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
}

.hero .subheadline {
  color: var(--vintage-cream);
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 32px;
  font-family: 'Georgia', serif;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.trust-badge {
  display: inline-block;
  background: var(--vintage-gold);
  color: var(--text-dark);
  padding: 12px 24px;
  border: 3px solid var(--vintage-brown);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: var(--shadow-retro);
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* ===================================
   BUTTONS - VINTAGE RETRO STYLE
   =================================== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 3px solid var(--vintage-brown);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-retro);
  position: relative;
}

.btn-primary {
  background: var(--vintage-rust);
  color: var(--text-light);
}

.btn-primary:hover {
  background: var(--vintage-brown);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
  background: var(--vintage-cream);
  color: var(--vintage-brown);
  border-color: var(--vintage-teal);
}

.btn-secondary:hover {
  background: var(--vintage-teal);
  color: var(--text-light);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(45, 95, 93, 0.4);
}

.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
  position: relative;
  z-index: 1;
}

/* ===================================
   PAGE HERO
   =================================== */
.page-hero {
  background: var(--vintage-peach);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 5px solid var(--vintage-brown);
  border-top: 5px solid var(--vintage-gold);
}

.page-hero h1 {
  color: var(--vintage-brown);
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Georgia', serif;
}

/* ===================================
   FEATURES GRID - FLEXBOX LAYOUT
   =================================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.feature {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--vintage-cream);
  padding: 32px;
  border: 4px solid var(--vintage-brown);
  box-shadow: var(--shadow-retro);
  text-align: center;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.4);
  background: var(--vintage-peach);
}

.feature img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: sepia(0.8) hue-rotate(-10deg);
}

.feature h3 {
  color: var(--vintage-brown);
  font-size: 22px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature p {
  font-size: 15px;
  line-height: 1.6;
}

/* ===================================
   SERVICES GRID - FLEXBOX LAYOUT
   =================================== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--vintage-teal);
  color: var(--text-light);
  padding: 32px;
  border: 4px solid var(--vintage-gold);
  box-shadow: var(--shadow-retro);
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: scale(1.03);
  background: var(--vintage-brown);
}

.service-card h3 {
  color: var(--vintage-gold);
  font-size: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--vintage-peach);
  font-family: 'Georgia', serif;
  margin: 0;
}

/* ===================================
   SERVICE ITEMS
   =================================== */
.service-item {
  background: var(--vintage-cream);
  padding: 32px;
  margin-bottom: 24px;
  border: 4px solid var(--vintage-brown);
  border-left: 8px solid var(--vintage-rust);
  box-shadow: var(--shadow-retro);
}

.service-item h3 {
  color: var(--vintage-brown);
  font-size: 26px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-item .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--vintage-rust);
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
}

.service-item p {
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ===================================
   PROCESS STEPS - FLEXBOX
   =================================== */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--vintage-peach);
  padding: 32px;
  border: 4px solid var(--vintage-brown);
  position: relative;
  box-shadow: var(--shadow-retro);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  background: var(--vintage-rust);
  color: var(--text-light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  border: 4px solid var(--vintage-gold);
  font-family: 'Georgia', serif;
}

.step h3 {
  margin-top: 20px;
  color: var(--vintage-brown);
  font-size: 22px;
  text-transform: uppercase;
}

/* ===================================
   TESTIMONIALS - FLEXBOX
   =================================== */
.testimonials {
  background: var(--vintage-teal);
  padding: 60px 20px;
  border-top: 5px solid var(--vintage-gold);
  border-bottom: 5px solid var(--vintage-gold);
}

.testimonials h2 {
  color: var(--vintage-gold);
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: var(--vintage-cream);
  padding: 32px;
  border: 4px solid var(--vintage-brown);
  box-shadow: var(--shadow-retro);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  color: var(--text-dark);
  margin: 0;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--vintage-brown);
  font-style: normal;
  text-align: right;
  font-family: 'Georgia', serif;
  border-top: 2px solid var(--vintage-rust);
  padding-top: 16px;
  margin: 0;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */
.value-proposition,
.services-preview,
.process,
.location,
.cta-final {
  padding: 60px 20px;
  margin-bottom: 0;
}

.value-proposition {
  background: var(--vintage-cream);
}

.services-preview {
  background: var(--vintage-peach);
  border-top: 5px solid var(--vintage-brown);
  border-bottom: 5px solid var(--vintage-brown);
}

.process {
  background: var(--vintage-cream);
}

.location {
  background: var(--vintage-teal);
  color: var(--text-light);
  text-align: center;
  border-top: 5px solid var(--vintage-gold);
}

.location h2,
.location p,
.location strong {
  color: var(--text-light);
}

.cta-final {
  background: var(--vintage-rust);
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px;
  border-top: 8px solid var(--vintage-gold);
}

.cta-final h2 {
  color: var(--vintage-gold);
  font-size: 42px;
  margin-bottom: 24px;
}

.cta-final p {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-final ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 32px auto 0;
  text-align: left;
}

.cta-final li {
  padding-left: 30px;
  position: relative;
  color: var(--vintage-cream);
  font-size: 16px;
}

.cta-final li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vintage-gold);
  font-weight: 700;
  font-size: 20px;
}

/* ===================================
   EDUCATIONAL SECTIONS
   =================================== */
.educational-section {
  padding: 60px 20px;
  background: var(--vintage-cream);
  border-bottom: 4px solid var(--vintage-brown);
}

.educational-section:nth-child(even) {
  background: var(--vintage-peach);
}

.educational-section h2 {
  font-size: 36px;
  color: var(--vintage-brown);
  margin-bottom: 24px;
  border-bottom: 4px solid var(--vintage-rust);
  padding-bottom: 16px;
}

.educational-section h3 {
  font-size: 24px;
  color: var(--vintage-rust);
  margin: 32px 0 16px;
  text-transform: uppercase;
}

.educational-section ul,
.educational-section ol {
  margin-left: 24px;
  margin-bottom: 24px;
}

.educational-section li {
  margin-bottom: 12px;
  line-height: 1.7;
  padding-left: 8px;
}

.educational-section ul li {
  list-style: square;
  color: var(--vintage-rust);
}

.educational-section ol li {
  list-style: decimal;
  color: var(--vintage-rust);
}

/* ===================================
   CONTENT NAVIGATION
   =================================== */
.content-nav {
  background: var(--vintage-teal);
  padding: 40px 20px;
  border-top: 5px solid var(--vintage-gold);
  border-bottom: 5px solid var(--vintage-gold);
}

.content-nav h2 {
  color: var(--vintage-gold);
  text-align: center;
  margin-bottom: 24px;
}

.content-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.content-nav li {
  display: block;
}

.content-nav a {
  display: inline-block;
  background: var(--vintage-cream);
  color: var(--vintage-brown);
  padding: 12px 24px;
  border: 3px solid var(--vintage-brown);
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-retro);
}

.content-nav a:hover {
  background: var(--vintage-rust);
  color: var(--text-light);
  transform: translateY(-3px);
}

/* ===================================
   PHILOSOPHY & VALUES
   =================================== */
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.value,
.principle {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--vintage-peach);
  padding: 32px;
  border: 4px solid var(--vintage-brown);
  border-left: 8px solid var(--vintage-rust);
  box-shadow: var(--shadow-retro);
}

.value h3,
.principle h3 {
  color: var(--vintage-brown);
  font-size: 22px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--vintage-teal);
  color: var(--text-light);
  padding: 32px;
  text-align: center;
  border: 4px solid var(--vintage-gold);
  box-shadow: var(--shadow-retro);
}

.method img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1);
}

.method h3 {
  color: var(--vintage-gold);
  font-size: 22px;
  margin-bottom: 16px;
}

.method p {
  color: var(--text-light);
  margin-bottom: 8px;
}

.method strong {
  color: var(--vintage-peach);
}

/* ===================================
   FORM PLACEHOLDER
   =================================== */
.form-placeholder {
  background: var(--vintage-cream);
  padding: 40px;
  border: 4px solid var(--vintage-brown);
  box-shadow: var(--shadow-retro);
  max-width: 600px;
  margin: 40px auto;
}

.form-placeholder p {
  font-weight: 700;
  color: var(--vintage-brown);
  margin-bottom: 20px;
  font-size: 18px;
}

.form-placeholder ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.form-placeholder li {
  margin-bottom: 12px;
  list-style: square;
  color: var(--vintage-rust);
}

/* ===================================
   QUICK SERVICES
   =================================== */
.services-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.quick-service {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--vintage-peach);
  padding: 24px;
  border: 4px solid var(--vintage-brown);
  text-align: center;
  box-shadow: var(--shadow-retro);
}

.quick-service h3 {
  font-size: 20px;
  color: var(--vintage-brown);
  margin-bottom: 12px;
}

.quick-service .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--vintage-rust);
  font-family: 'Georgia', serif;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-item {
  background: var(--vintage-cream);
  padding: 24px;
  margin-bottom: 20px;
  border: 3px solid var(--vintage-brown);
  border-left: 6px solid var(--vintage-rust);
}

.faq-item h3 {
  color: var(--vintage-brown);
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item p {
  margin: 0;
}

/* ===================================
   THANK YOU PAGE
   =================================== */
.thank-you-hero {
  background: var(--vintage-peach);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 5px solid var(--vintage-brown);
}

.checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: sepia(0.8) hue-rotate(-10deg);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.content-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.content-link {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--vintage-cream);
  padding: 32px;
  border: 4px solid var(--vintage-brown);
  box-shadow: var(--shadow-retro);
}

.content-link h3 {
  color: var(--vintage-brown);
  font-size: 22px;
  margin-bottom: 16px;
}

.content-link a {
  color: var(--vintage-rust);
  font-weight: 700;
  border-bottom: 2px solid var(--vintage-rust);
}

.content-link a:hover {
  color: var(--vintage-brown);
}

/* ===================================
   LEGAL PAGES
   =================================== */
.legal-hero {
  background: var(--vintage-teal);
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 5px solid var(--vintage-gold);
}

.legal-hero h1 {
  color: var(--vintage-gold);
  font-size: 42px;
  margin-bottom: 16px;
}

.legal-hero p {
  color: var(--text-light);
  font-size: 16px;
}

.legal-content {
  padding: 60px 20px;
  background: var(--vintage-cream);
}

.legal-content h2 {
  color: var(--vintage-brown);
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--vintage-rust);
  padding-bottom: 12px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border: 3px solid var(--vintage-brown);
}

.legal-content th,
.legal-content td {
  padding: 16px;
  text-align: left;
  border: 2px solid var(--vintage-brown);
}

.legal-content th {
  background: var(--vintage-teal);
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
}

.legal-content td {
  background: var(--vintage-cream);
}

/* ===================================
   FOOTER - VINTAGE STYLE
   =================================== */
footer {
  background: var(--vintage-brown);
  color: var(--text-light);
  padding: 60px 20px 30px;
  border-top: 8px solid var(--vintage-gold);
}

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

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

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

.footer-col h4 {
  color: var(--vintage-gold);
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
  color: var(--vintage-cream);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--vintage-gold);
  text-decoration: underline;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid var(--vintage-gold);
  color: var(--vintage-cream);
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vintage-brown);
  color: var(--text-light);
  padding: 24px;
  z-index: 999;
  border-top: 4px solid var(--vintage-gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: var(--vintage-cream);
}

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

.cookie-btn {
  padding: 12px 24px;
  border: 2px solid var(--vintage-gold);
  background: var(--vintage-teal);
  color: var(--text-light);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
}

.cookie-btn:hover {
  background: var(--vintage-gold);
  color: var(--text-dark);
}

.cookie-btn.accept-all {
  background: var(--vintage-rust);
}

.cookie-btn.accept-all:hover {
  background: var(--vintage-gold);
}

/* ===================================
   COOKIE MODAL
   =================================== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background: var(--vintage-cream);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border: 5px solid var(--vintage-brown);
  box-shadow: var(--shadow-retro);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content h2 {
  color: var(--vintage-brown);
  font-size: 28px;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--vintage-peach);
  border: 3px solid var(--vintage-brown);
}

.cookie-category h3 {
  color: var(--vintage-brown);
  font-size: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle.active {
  background: var(--vintage-rust);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--vintage-cream);
  border-radius: 50%;
  top: 1px;
  left: 2px;
  transition: all 0.3s ease;
}

.cookie-toggle.active::after {
  left: 26px;
}

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

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 38px; }
  .hero .subheadline { font-size: 16px; }
  
  .main-nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .feature,
  .service-card,
  .step,
  .testimonial-card,
  .value,
  .principle,
  .method,
  .quick-service,
  .content-link {
    flex: 1 1 100%;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .feature,
  .value,
  .principle {
    flex: 1 1 calc(50% - 24px);
  }
  
  .service-card,
  .step,
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}