/* ========================================
   RAUMWERK BREMEN - VINTAGE RETRO STYLE
   Modern meets Retro - Handcrafted Design
======================================== */

/* CSS RESET & BASE */
* {
  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: #2C3E35;
  background-color: #F4F1EA;
  overflow-x: hidden;
}

/* VINTAGE RETRO TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C5F4F;
  letter-spacing: 0.02em;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 0px rgba(212, 165, 116, 0.3);
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  border-bottom: 3px double #D4A574;
  padding-bottom: 10px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2C5F4F;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #3A3A3A;
}

a {
  color: #D4A574;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px dotted #D4A574;
}

a:hover {
  color: #2C5F4F;
  border-bottom: 2px solid #2C5F4F;
}

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%;
}

/* VINTAGE RETRO HEADER */
header {
  background: linear-gradient(180deg, #2C5F4F 0%, #3A7A64 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 4px solid #D4A574;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

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

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

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* DESKTOP NAVIGATION - VINTAGE STYLE */
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #F4F1EA;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 4px;
  border-bottom: none;
  transition: all 0.3s ease;
  background: rgba(244, 241, 234, 0.1);
}

.main-nav a:hover {
  color: #D4A574;
  border: 2px solid #D4A574;
  background: rgba(212, 165, 116, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #D4A574;
  color: #2C5F4F;
  border: 3px solid #2C5F4F;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 4px 4px 0px rgba(44, 95, 79, 0.3);
  transition: all 0.3s ease;
  font-weight: bold;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F4F 0%, #1A3A2E 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  border-left: 4px solid #D4A574;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #D4A574;
  color: #2C5F4F;
  border: 3px solid #F4F1EA;
  padding: 8px 14px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: bold;
}

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

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

.mobile-nav a {
  color: #F4F1EA;
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 15px 20px;
  border: 2px solid #D4A574;
  border-radius: 6px;
  background: rgba(212, 165, 116, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border-bottom: 2px solid #D4A574;
}

.mobile-nav a:hover {
  background: #D4A574;
  color: #2C5F4F;
  border-color: #F4F1EA;
  transform: translateX(5px);
}

/* VINTAGE HERO SECTION */
.hero {
  background: linear-gradient(135deg, #D4A574 0%, #C4956A 50%, #B4855A 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 6px double #2C5F4F;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(44, 95, 79, 0.03) 10px,
    rgba(44, 95, 79, 0.03) 20px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #2C5F4F;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(244, 241, 234, 0.5);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #2C3E35;
  margin-bottom: 32px;
  font-family: 'Georgia', serif;
  font-style: italic;
  line-height: 1.6;
}

/* VINTAGE BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 3px solid #2C5F4F;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-bottom: 3px solid #2C5F4F;
  box-shadow: 4px 4px 0px rgba(44, 95, 79, 0.3);
}

.btn-primary {
  background: #2C5F4F;
  color: #F4F1EA;
  border-color: #2C5F4F;
}

.btn-primary:hover {
  background: #1A3A2E;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(44, 95, 79, 0.4);
  border-bottom: 3px solid #2C5F4F;
}

.btn-secondary {
  background: #D4A574;
  color: #2C5F4F;
  border-color: #2C5F4F;
}

.btn-secondary:hover {
  background: #C4956A;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(212, 165, 116, 0.4);
  border-bottom: 3px solid #2C5F4F;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* TRUST BADGES - VINTAGE STYLE */
.trust-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badges span {
  background: rgba(44, 95, 79, 0.9);
  color: #F4F1EA;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #D4A574;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

/* SECTIONS - RETRO SPACING */
.section,
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5A5A5A;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
  font-style: italic;
}

/* SERVICES GRID - FLEXBOX VINTAGE CARDS */
.services-overview {
  background: #F4F1EA;
  padding: 60px 20px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 40px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: #FFFFFF;
  padding: 30px;
  border: 4px solid #2C5F4F;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 6px 6px 0px rgba(212, 165, 116, 0.4);
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px dashed #D4A574;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(212, 165, 116, 0.5);
}

.service-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: sepia(30%);
}

.service-card h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: #4A4A4A;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card .price {
  color: #D4A574;
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 16px;
  border-top: 2px dashed #D4A574;
  padding-top: 12px;
}

/* PROCESS STEPS - VINTAGE TIMELINE */
.process {
  background: linear-gradient(180deg, #E8E4D9 0%, #F4F1EA 100%);
  padding: 60px 20px;
}

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.step {
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
  padding: 25px;
  position: relative;
  background: #FFFFFF;
  border: 3px solid #2C5F4F;
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(44, 95, 79, 0.2);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #D4A574;
  color: #2C5F4F;
  border: 4px solid #2C5F4F;
  border-radius: 50%;
  font-family: 'Georgia', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.step h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  font-size: 14px;
  color: #5A5A5A;
}

/* VALUES GRID - RETRO STYLE */
.uvp {
  background: #F4F1EA;
  padding: 60px 20px;
}

.uvp h2 {
  text-align: center;
  margin-bottom: 50px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.value-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 30px;
  text-align: center;
  border: 3px solid #D4A574;
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(212, 165, 116, 0.3);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 7px 7px 0px rgba(212, 165, 116, 0.4);
}

.value-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  filter: sepia(20%);
}

.value-card h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
  font-size: 20px;
}

.value-card p {
  color: #5A5A5A;
  font-size: 14px;
}

/* TESTIMONIALS - VINTAGE CARDS */
.testimonials {
  background: linear-gradient(135deg, #2C5F4F 0%, #3A7A64 100%);
  padding: 60px 20px;
  color: #F4F1EA;
}

.testimonials h2 {
  text-align: center;
  color: #F4F1EA;
  margin-bottom: 40px;
  border-bottom-color: #D4A574;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 30px;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background: #F4F1EA;
  padding: 30px;
  border: 4px solid #D4A574;
  border-radius: 8px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-bottom: 20px;
}

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

.quote {
  color: #2C3E35;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.author {
  color: #2C5F4F;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.rating {
  color: #D4A574;
  font-size: 20px;
  letter-spacing: 2px;
}

.rating-summary {
  text-align: center;
  color: #F4F1EA;
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

/* CTA SECTION - VINTAGE CALL TO ACTION */
.cta-section {
  background: #D4A574;
  padding: 60px 20px;
  text-align: center;
  border-top: 6px double #2C5F4F;
  border-bottom: 6px double #2C5F4F;
}

.cta-section h2 {
  color: #2C5F4F;
  margin-bottom: 20px;
}

.cta-section p {
  color: #2C3E35;
  font-size: 18px;
  margin-bottom: 30px;
  font-family: 'Georgia', serif;
}

.cta-section .benefits {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-section .benefits li {
  background: #2C5F4F;
  color: #F4F1EA;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #1A3A2E;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* PAGE HERO - INTERNAL PAGES */
.page-hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #3A7A64 100%);
  padding: 60px 20px;
  color: #F4F1EA;
  text-align: center;
  border-bottom: 4px solid #D4A574;
}

.page-hero h1 {
  color: #F4F1EA;
  margin-bottom: 16px;
}

.page-hero p {
  color: #E8E4D9;
  font-size: 18px;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.breadcrumb {
  text-align: left;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: #D4A574;
  border-bottom: 1px solid #D4A574;
}

.breadcrumb a:hover {
  color: #F4F1EA;
  border-bottom-color: #F4F1EA;
}

/* SERVICES DETAILED PAGE */
.services-detailed {
  padding: 60px 20px;
  background: #F4F1EA;
}

.service-detail {
  background: #FFFFFF;
  padding: 40px;
  margin-bottom: 40px;
  border: 4px solid #2C5F4F;
  border-radius: 8px;
  box-shadow: 6px 6px 0px rgba(44, 95, 79, 0.2);
}

.service-detail h2 {
  color: #2C5F4F;
  margin-bottom: 20px;
}

.service-detail p {
  margin-bottom: 20px;
}

.service-detail .features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
}

.service-detail .features li {
  flex: 1 1 200px;
  background: #E8E4D9;
  padding: 12px 20px;
  border-left: 4px solid #D4A574;
  font-size: 15px;
  color: #2C5F4F;
  font-weight: 600;
}

.service-detail .price {
  color: #D4A574;
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0;
  padding: 15px;
  background: #F4F1EA;
  border: 2px dashed #D4A574;
  display: inline-block;
  border-radius: 6px;
}

/* PROCESS DETAILED */
.process-detailed {
  background: #E8E4D9;
  padding: 60px 20px;
}

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

.phase {
  flex: 1 1 250px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 30px;
  border: 3px solid #2C5F4F;
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(44, 95, 79, 0.2);
}

.phase h3 {
  color: #2C5F4F;
  margin-bottom: 20px;
  font-size: 20px;
  border-bottom: 2px solid #D4A574;
  padding-bottom: 10px;
}

.phase ul li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: #4A4A4A;
}

.phase ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #D4A574;
  font-weight: bold;
}

/* PACKAGES */
.packages {
  background: #F4F1EA;
  padding: 60px 20px;
}

.packages h2 {
  text-align: center;
  margin-bottom: 40px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.package-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: #FFFFFF;
  padding: 40px;
  text-align: center;
  border: 4px solid #D4A574;
  border-radius: 8px;
  box-shadow: 6px 6px 0px rgba(212, 165, 116, 0.3);
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0px rgba(212, 165, 116, 0.4);
}

.package-card h3 {
  color: #2C5F4F;
  font-size: 28px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.package-card > p {
  color: #5A5A5A;
  font-style: italic;
  margin-bottom: 20px;
}

.package-card ul {
  margin: 20px 0;
  text-align: left;
}

.package-card ul li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: #4A4A4A;
  border-bottom: 1px dotted #D4A574;
}

.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F4F;
  font-weight: bold;
  font-size: 18px;
}

.package-card .price {
  color: #D4A574;
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: 700;
  margin-top: 20px;
  display: block;
}

.custom-note {
  text-align: center;
  font-size: 16px;
  color: #5A5A5A;
  font-style: italic;
}

/* PORTFOLIO PROJECTS */
.project-grid {
  background: #F4F1EA;
  padding: 60px 20px;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.project-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: #FFFFFF;
  padding: 30px;
  border: 4px solid #2C5F4F;
  border-radius: 8px;
  box-shadow: 6px 6px 0px rgba(44, 95, 79, 0.2);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.project-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(44, 95, 79, 0.3);
}

.project-card .tag {
  display: inline-block;
  background: #D4A574;
  color: #2C5F4F;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  border: 2px solid #2C5F4F;
}

.project-card h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
  font-size: 22px;
}

.project-card p {
  color: #5A5A5A;
  font-size: 15px;
  margin-bottom: 10px;
}

.project-card .year {
  color: #D4A574;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 14px;
  margin-top: 15px;
}

/* STATS SECTION */
.stats {
  background: linear-gradient(135deg, #D4A574 0%, #C4956A 100%);
  padding: 60px 20px;
  border-top: 4px solid #2C5F4F;
  border-bottom: 4px solid #2C5F4F;
}

.stats h2 {
  text-align: center;
  color: #2C5F4F;
  margin-bottom: 40px;
}

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

.stat {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 30px;
  background: #FFFFFF;
  border: 4px solid #2C5F4F;
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(44, 95, 79, 0.3);
}

.stat .number {
  display: block;
  font-family: 'Georgia', serif;
  font-size: 48px;
  font-weight: 700;
  color: #D4A574;
  margin-bottom: 10px;
  line-height: 1;
}

.stat p {
  color: #2C5F4F;
  font-size: 16px;
  font-weight: 600;
}

/* WORKSHOPS */
.workshop-benefits {
  background: #F4F1EA;
  padding: 60px 20px;
}

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

.benefit {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  padding: 30px;
  background: #FFFFFF;
  border: 3px solid #D4A574;
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(212, 165, 116, 0.2);
}

.benefit img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  filter: sepia(20%);
}

.benefit h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit p {
  color: #5A5A5A;
  font-size: 14px;
}

/* WORKSHOP CATEGORIES */
.workshop-categories {
  background: #E8E4D9;
  padding: 60px 20px;
}

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

.category-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 30px;
  text-align: center;
  border: 3px solid #2C5F4F;
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(44, 95, 79, 0.2);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 7px 7px 0px rgba(44, 95, 79, 0.3);
}

.category-card h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

.category-card p {
  color: #5A5A5A;
  font-size: 15px;
  margin-bottom: 15px;
}

.category-card .duration {
  color: #D4A574;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 14px;
  border-top: 2px dashed #D4A574;
  padding-top: 12px;
  margin-top: 12px;
}

/* UPCOMING WORKSHOPS */
.upcoming-workshops {
  background: #F4F1EA;
  padding: 60px 20px;
}

.workshops-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 800px;
  margin: 40px auto 0;
}

.workshop-item {
  background: #FFFFFF;
  padding: 30px;
  border: 4px solid #2C5F4F;
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(44, 95, 79, 0.2);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.workshop-item h3 {
  color: #2C5F4F;
  margin-bottom: 8px;
}

.workshop-item .datetime {
  color: #5A5A5A;
  font-size: 15px;
  font-weight: 600;
}

.workshop-item .price {
  color: #D4A574;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
}

/* TEAM PAGE */
.our-story {
  background: #F4F1EA;
  padding: 60px 20px;
}

.our-story h2 {
  margin-bottom: 30px;
}

.our-story p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 17px;
  line-height: 1.8;
}

.values {
  background: #E8E4D9;
  padding: 60px 20px;
}

.team {
  background: #F4F1EA;
  padding: 60px 20px;
}

.team h2 {
  text-align: center;
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  flex: 1 1 250px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 30px;
  text-align: center;
  border: 4px solid #D4A574;
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(212, 165, 116, 0.2);
}

.team-member h3 {
  color: #2C5F4F;
  margin-bottom: 8px;
  font-size: 22px;
}

.team-member .role {
  color: #D4A574;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.team-member p {
  color: #5A5A5A;
  font-size: 14px;
}

/* CONTACT PAGE */
.contact-methods {
  background: #F4F1EA;
  padding: 60px 20px;
}

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

.method {
  flex: 1 1 280px;
  max-width: 320px;
  background: #FFFFFF;
  padding: 35px;
  text-align: center;
  border: 4px solid #2C5F4F;
  border-radius: 8px;
  box-shadow: 6px 6px 0px rgba(44, 95, 79, 0.2);
  transition: all 0.3s ease;
}

.method:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0px rgba(44, 95, 79, 0.3);
}

.method img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  filter: sepia(20%);
}

.method h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

.method p {
  color: #4A4A4A;
  font-size: 15px;
  margin-bottom: 8px;
}

.method .detail {
  color: #D4A574;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 14px;
  font-style: italic;
}

.location-info {
  background: #E8E4D9;
  padding: 60px 20px;
}

.location-content {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.address-block {
  flex: 1 1 300px;
  background: #FFFFFF;
  padding: 35px;
  border: 4px solid #D4A574;
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(212, 165, 116, 0.2);
}

.address-block h3 {
  color: #2C5F4F;
  margin-bottom: 15px;
  font-size: 24px;
}

.address-block h4 {
  color: #2C5F4F;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
}

.address-block p {
  color: #4A4A4A;
  line-height: 1.7;
}

.address-block .note {
  color: #D4A574;
  font-style: italic;
  font-size: 14px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px dashed #D4A574;
}

.contact-info {
  background: #F4F1EA;
  padding: 60px 20px;
}

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

.contact-info p {
  font-size: 16px;
  margin-bottom: 12px;
}

.trust-elements {
  background: #E8E4D9;
  padding: 60px 20px;
}

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

.trust-item {
  flex: 1 1 250px;
  max-width: 300px;
  background: #FFFFFF;
  padding: 30px;
  text-align: center;
  border: 3px solid #2C5F4F;
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(44, 95, 79, 0.2);
}

.trust-item h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

.trust-item p {
  color: #5A5A5A;
  font-size: 14px;
}

/* LEGAL PAGES */
.legal-page {
  background: #F4F1EA;
  padding: 60px 20px;
}

.legal-content {
  max-width: 900px;
  margin: 40px auto 0;
  background: #FFFFFF;
  padding: 50px;
  border: 4px solid #2C5F4F;
  border-radius: 8px;
  box-shadow: 6px 6px 0px rgba(44, 95, 79, 0.2);
}

.legal-content h2 {
  color: #2C5F4F;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-content h3 {
  color: #2C5F4F;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 22px;
}

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

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

.legal-content ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #4A4A4A;
}

.legal-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #D4A574;
  font-weight: bold;
}

.last-updated {
  color: #5A5A5A;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 30px;
}

.subtitle {
  font-size: 18px;
  color: #5A5A5A;
  font-style: italic;
  margin-bottom: 20px;
}

/* THANK YOU PAGE */
.thank-you {
  background: linear-gradient(135deg, #D4A574 0%, #C4956A 100%);
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 60px 40px;
  border: 5px solid #2C5F4F;
  border-radius: 12px;
  box-shadow: 8px 8px 0px rgba(44, 95, 79, 0.3);
}

.icon-success {
  width: 100px;
  height: 100px;
  background: #2C5F4F;
  color: #F4F1EA;
  border: 5px solid #D4A574;
  border-radius: 50%;
  font-size: 60px;
  line-height: 90px;
  text-align: center;
  margin: 0 auto 30px;
  box-shadow: 5px 5px 0px rgba(212, 165, 116, 0.4);
}

.thank-you h1 {
  color: #2C5F4F;
  margin-bottom: 20px;
}

.thank-you .subtitle {
  color: #4A4A4A;
  font-size: 18px;
}

.next-steps {
  background: #F4F1EA;
  padding: 60px 20px;
}

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

.steps-grid .step {
  flex: 1 1 220px;
  max-width: 250px;
}

/* VINTAGE FOOTER */
footer {
  background: linear-gradient(180deg, #1A3A2E 0%, #2C5F4F 100%);
  color: #F4F1EA;
  padding: 50px 20px 20px;
  border-top: 6px double #D4A574;
}

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

.footer-col {
  flex: 1 1 220px;
  max-width: 280px;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.tagline {
  color: #D4A574;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #D4A574;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #D4A574;
  padding-bottom: 8px;
}

.footer-col p {
  color: #E8E4D9;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

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

.footer-col nav a {
  color: #E8E4D9;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
}

.footer-col nav a:hover {
  color: #D4A574;
  border-bottom-color: #D4A574;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(212, 165, 116, 0.3);
}

.footer-bottom p {
  color: #B0A898;
  font-size: 14px;
  font-family: 'Georgia', serif;
}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #2C5F4F 0%, #1A3A2E 100%);
  color: #F4F1EA;
  padding: 25px 20px;
  z-index: 9999;
  border-top: 4px solid #D4A574;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

#cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

#cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  color: #E8E4D9;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #D4A574;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

#accept-all-cookies {
  background: #D4A574;
  color: #2C5F4F;
}

#accept-all-cookies:hover {
  background: #C4956A;
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
}

#reject-all-cookies {
  background: transparent;
  color: #F4F1EA;
  border-color: #F4F1EA;
}

#reject-all-cookies:hover {
  background: rgba(244, 241, 234, 0.1);
  transform: translateY(-2px);
}

#cookie-settings {
  background: transparent;
  color: #D4A574;
  border-color: #D4A574;
}

#cookie-settings:hover {
  background: rgba(212, 165, 116, 0.1);
  transform: translateY(-2px);
}

/* COOKIE MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  padding: 20px;
  overflow-y: auto;
}

#cookie-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background: #F4F1EA;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 5px solid #2C5F4F;
  border-radius: 12px;
  position: relative;
  box-shadow: 8px 8px 0px rgba(44, 95, 79, 0.4);
}

.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #D4A574;
  color: #2C5F4F;
  border: 3px solid #2C5F4F;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: bold;
}

.cookie-modal-close:hover {
  background: #2C5F4F;
  color: #D4A574;
  transform: rotate(90deg);
}

.cookie-modal-content h2 {
  color: #2C5F4F;
  margin-bottom: 25px;
  font-size: 28px;
}

.cookie-category {
  margin-bottom: 25px;
  padding: 20px;
  background: #FFFFFF;
  border: 3px solid #D4A574;
  border-radius: 8px;
  box-shadow: 3px 3px 0px rgba(212, 165, 116, 0.2);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

.cookie-category h3 {
  color: #2C5F4F;
  font-size: 18px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 60px;
  height: 30px;
  background: #B0A898;
  border: 3px solid #2C5F4F;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #2C5F4F;
  border-radius: 50%;
  transition: left 0.3s ease;
}

.cookie-toggle.active {
  background: #D4A574;
}

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

.cookie-category p {
  color: #5A5A5A;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 3px dashed #D4A574;
}

.cookie-modal-buttons button {
  padding: 12px 24px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid #2C5F4F;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0px rgba(44, 95, 79, 0.2);
}

#save-cookie-preferences {
  background: #2C5F4F;
  color: #F4F1EA;
}

#save-cookie-preferences:hover {
  background: #1A3A2E;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(44, 95, 79, 0.3);
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Grid adjustments - all use flexbox */
  .services-grid,
  .values-grid,
  .process-steps,
  .testimonial-grid,
  .team-grid,
  .stats-grid,
  .benefits-grid,
  .categories-grid,
  .methods-grid,
  .trust-grid,
  .packages-grid,
  .phases {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .value-card,
  .step,
  .testimonial-card,
  .team-member,
  .stat,
  .benefit,
  .category-card,
  .method,
  .trust-item,
  .package-card,
  .phase {
    max-width: 100%;
    width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    max-width: 100%;
  }
  
  /* Cookie banner mobile */
  #cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Modal mobile */
  .cookie-modal-content {
    padding: 30px 20px;
    margin: 20px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Legal content mobile */
  .legal-content {
    padding: 30px 20px;
  }
  
  /* Reduce padding on mobile */
  .section,
  section {
    padding: 40px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .services-grid {
    justify-content: center;
  }
  
  .service-card {
    flex: 1 1 45%;
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-section,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
:focus {
  outline: 3px solid #D4A574;
  outline-offset: 2px;
}

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

/* HIGH CONTRAST MODE SUPPORT */
@media (prefers-contrast: high) {
  .service-card,
  .value-card,
  .testimonial-card {
    border-width: 3px;
  }
}

/* REDUCED MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* END OF VINTAGE RETRO STYLESHEET */