/* ===================================
   VINTAGE RETRO DESIGN SYSTEM
   StudioPomoc - CSS Stylesheet
   =================================== */

/* 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.6;
  color: #2c1810;
  background-color: #f5e6d3;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* VINTAGE RETRO COLOR PALETTE */
:root {
  --vintage-cream: #f5e6d3;
  --vintage-brown: #8b4513;
  --vintage-orange: #d2691e;
  --vintage-gold: #daa520;
  --vintage-teal: #5f9ea0;
  --vintage-red: #a0522d;
  --vintage-dark: #2c1810;
  --vintage-light: #fdf5e6;
  --shadow-vintage: 4px 4px 0px rgba(139, 69, 19, 0.3);
}

/* TYPOGRAPHY - VINTAGE STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--vintage-dark);
  margin-bottom: 24px;
  text-shadow: 2px 2px 0px rgba(218, 165, 32, 0.2);
}

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

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

h3 {
  font-size: 24px;
}

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

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

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

/* BUTTONS - VINTAGE RETRO STYLE */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid var(--vintage-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin: 8px;
}

.btn-primary {
  background-color: var(--vintage-orange);
  color: var(--vintage-light);
  box-shadow: var(--shadow-vintage);
}

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

.btn-secondary {
  background-color: var(--vintage-teal);
  color: var(--vintage-light);
  box-shadow: var(--shadow-vintage);
}

.btn-secondary:hover {
  background-color: #4a7a7c;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px rgba(139, 69, 19, 0.3);
}

.center-btn {
  display: block;
  margin: 32px auto;
  width: fit-content;
}

/* HEADER */
header {
  background-color: var(--vintage-brown);
  border-bottom: 5px solid var(--vintage-gold);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 8px 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;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(10deg);
}

.logo .tagline {
  font-family: 'Georgia', serif;
  font-size: 14px;
  color: var(--vintage-cream);
  font-style: italic;
}

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

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

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

.header-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: var(--vintage-orange);
  color: var(--vintage-light);
  border: 3px solid var(--vintage-dark);
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-vintage);
  font-family: 'Courier New', monospace;
}

.mobile-menu-toggle:hover {
  background-color: var(--vintage-red);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--vintage-brown);
  border-left: 5px solid var(--vintage-gold);
  z-index: 1000;
  padding: 80px 30px 30px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--vintage-red);
  color: var(--vintage-light);
  border: 3px solid var(--vintage-dark);
  padding: 10px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-vintage);
  font-family: 'Courier New', monospace;
}

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

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 20px;
  color: var(--vintage-cream);
  padding: 16px 20px;
  border: 2px solid var(--vintage-gold);
  background-color: rgba(218, 165, 32, 0.1);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: var(--vintage-gold);
  color: var(--vintage-dark);
  transform: translateX(-5px);
}

/* HERO SECTION */
.hero {
  background-color: var(--vintage-teal);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 5px solid var(--vintage-gold);
  position: relative;
  overflow: hidden;
}

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

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

.hero h1 {
  color: var(--vintage-light);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(44, 24, 16, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--vintage-cream);
  margin-bottom: 32px;
  font-family: 'Georgia', serif;
  font-style: italic;
}

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

.trust-badge {
  display: inline-block;
  background-color: var(--vintage-gold);
  color: var(--vintage-dark);
  padding: 12px 24px;
  border: 3px solid var(--vintage-dark);
  font-family: 'Georgia', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-vintage);
  margin-top: 24px;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  margin-bottom: 40px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--vintage-brown);
  margin-bottom: 40px;
  font-style: italic;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background-color: var(--vintage-light);
  border-top: 5px solid var(--vintage-gold);
  border-bottom: 5px solid var(--vintage-gold);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-item {
  flex: 1 1 280px;
  max-width: 300px;
  background-color: var(--vintage-cream);
  border: 4px solid var(--vintage-brown);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-vintage);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.4);
}

.benefit-item h3 {
  color: var(--vintage-orange);
  margin-bottom: 16px;
  font-size: 22px;
}

/* FEATURED PACKAGES */
.featured-packages {
  background-color: var(--vintage-cream);
}

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

.package-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: var(--vintage-light);
  border: 4px solid var(--vintage-brown);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-vintage);
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.4);
}

.package-card h3 {
  color: var(--vintage-brown);
  margin-bottom: 20px;
  font-size: 22px;
}

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

/* BADGE */
.badge {
  display: inline-block;
  background-color: var(--vintage-red);
  color: var(--vintage-light);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--vintage-dark);
  position: absolute;
  top: -12px;
  right: 20px;
  transform: rotate(-3deg);
  box-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

/* HOW IT WORKS */
.how-it-works {
  background-color: var(--vintage-teal);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
}

.how-it-works h2 {
  color: var(--vintage-light);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: var(--vintage-light);
  border: 4px solid var(--vintage-dark);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-vintage);
  position: relative;
}

.step-icon {
  width: 60px;
  height: 60px;
  background-color: var(--vintage-orange);
  color: var(--vintage-light);
  border: 3px solid var(--vintage-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Georgia', serif;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-vintage);
}

/* TESTIMONIALS */
.testimonials {
  background-color: var(--vintage-gold);
  background-image: repeating-radial-gradient(circle at 0 0, transparent 0, var(--vintage-gold) 40px), repeating-linear-gradient(rgba(139, 69, 19, 0.05), rgba(139, 69, 19, 0.05));
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background-color: var(--vintage-light);
  border: 4px solid var(--vintage-brown);
  padding: 32px;
  box-shadow: var(--shadow-vintage);
  position: relative;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: var(--vintage-orange);
  font-family: Georgia, serif;
  line-height: 1;
}

.quote {
  font-size: 16px;
  font-style: italic;
  color: var(--vintage-dark);
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.author {
  font-weight: 700;
  color: var(--vintage-brown);
  margin-bottom: 12px;
}

.rating {
  color: var(--vintage-orange);
  font-size: 20px;
  letter-spacing: 4px;
}

/* CTA SECTION */
.cta-section,
.cta-about,
.cta-bottom,
.cta-final,
.blog-cta {
  background-color: var(--vintage-brown);
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.05) 2px, rgba(255,255,255,0.05) 4px);
  text-align: center;
  padding: 60px 20px;
  border-top: 5px solid var(--vintage-gold);
  border-bottom: 5px solid var(--vintage-gold);
}

.cta-section h2,
.cta-about h2,
.cta-bottom h2,
.cta-final h2,
.blog-cta h2 {
  color: var(--vintage-light);
  margin-bottom: 20px;
}

.cta-section p,
.cta-about p,
.cta-bottom p,
.cta-final p,
.blog-cta p {
  color: var(--vintage-cream);
  font-size: 18px;
  margin-bottom: 32px;
}

.guarantee {
  margin-top: 24px;
  font-size: 14px;
  color: var(--vintage-gold);
  font-style: italic;
}

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

/* CONTACT INFO */
.contact-info {
  background-color: var(--vintage-cream);
  text-align: center;
}

.contact-details {
  max-width: 600px;
  margin: 0 auto 32px;
  padding: 32px;
  background-color: var(--vintage-light);
  border: 4px solid var(--vintage-brown);
  box-shadow: var(--shadow-vintage);
}

.contact-details p {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--vintage-dark);
}

/* PRODUCT GRID */
.product-grid {
  background-color: var(--vintage-cream);
}

.products {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.product-card {
  flex: 1 1 340px;
  max-width: 400px;
  background-color: var(--vintage-light);
  border: 4px solid var(--vintage-brown);
  padding: 32px;
  box-shadow: var(--shadow-vintage);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.4);
}

.product-card h3 {
  color: var(--vintage-brown);
  margin-bottom: 16px;
  font-size: 20px;
}

.product-card .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--vintage-orange);
  margin: 16px 0;
  font-family: 'Georgia', serif;
}

/* PAGE HEADER */
.page-header {
  background-color: var(--vintage-teal);
  padding: 40px 20px;
  text-align: center;
  border-bottom: 5px solid var(--vintage-gold);
}

.page-header h1 {
  color: var(--vintage-light);
  margin-bottom: 16px;
}

.page-subtitle {
  color: var(--vintage-cream);
  font-size: 18px;
  font-style: italic;
}

.tagline-display {
  color: var(--vintage-gold);
  font-size: 16px;
  font-weight: 700;
  margin-top: 12px;
}

.breadcrumb {
  font-size: 14px;
  color: var(--vintage-light);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--vintage-gold);
}

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

/* PACKAGE COMPARISON */
.package-comparison {
  background-color: var(--vintage-light);
}

.comparison-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.comparison-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: var(--vintage-cream);
  border: 4px solid var(--vintage-brown);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-vintage);
  transition: all 0.3s ease;
  position: relative;
}

.comparison-card.featured {
  border-color: var(--vintage-orange);
  border-width: 6px;
  transform: scale(1.05);
  background-color: var(--vintage-gold);
}

.comparison-card:hover {
  transform: translateY(-5px) scale(1.05);
}

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

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

/* DETAILED PACKAGES */
.detailed-packages {
  background-color: var(--vintage-cream);
}

.package-detail {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 40px;
  background-color: var(--vintage-light);
  border: 4px solid var(--vintage-brown);
  box-shadow: var(--shadow-vintage);
}

.package-detail .category {
  display: inline-block;
  background-color: var(--vintage-teal);
  color: var(--vintage-light);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 2px solid var(--vintage-dark);
}

.package-detail .tagline {
  font-style: italic;
  color: var(--vintage-brown);
  font-size: 18px;
  margin-bottom: 16px;
}

.package-detail ul {
  margin: 24px 0;
  padding-left: 20px;
}

.package-detail ul li {
  margin-bottom: 12px;
  color: var(--vintage-dark);
  list-style: square;
}

/* FEATURES GRID */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.feature,
.feature-item {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: var(--vintage-light);
  border: 3px solid var(--vintage-brown);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-vintage);
}

.feature h3,
.feature-item h3 {
  color: var(--vintage-orange);
  margin-bottom: 12px;
}

/* CUSTOM PACKAGE */
.custom-package {
  background-color: var(--vintage-light);
  text-align: center;
}

.contact-info-text {
  font-size: 18px;
  color: var(--vintage-brown);
  margin: 24px 0;
  font-weight: 700;
}

/* GROUP DISCOUNTS */
.group-discounts {
  background-color: var(--vintage-gold);
  text-align: center;
}

.group-discounts ul {
  max-width: 500px;
  margin: 32px auto;
  text-align: left;
  list-style: none;
}

.group-discounts ul li {
  background-color: var(--vintage-light);
  padding: 16px 24px;
  margin-bottom: 12px;
  border: 3px solid var(--vintage-brown);
  font-weight: 700;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.2);
}

/* GUARANTEES */
.package-guarantee {
  background-color: var(--vintage-cream);
}

.guarantees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.guarantee-item {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: var(--vintage-light);
  border: 4px solid var(--vintage-teal);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-vintage);
}

.guarantee-item h3 {
  color: var(--vintage-teal);
  margin-bottom: 16px;
}

/* STORY SECTION */
.story-section {
  background-color: var(--vintage-light);
}

.story-section p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

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

.milestone {
  background-color: var(--vintage-orange);
  color: var(--vintage-light);
  padding: 16px 24px;
  border: 3px solid var(--vintage-dark);
  font-weight: 700;
  box-shadow: var(--shadow-vintage);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* MISSION VISION */
.mission-vision {
  background-color: var(--vintage-cream);
}

.mission,
.vision,
.values {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 32px;
  background-color: var(--vintage-light);
  border: 4px solid var(--vintage-brown);
  box-shadow: var(--shadow-vintage);
}

.mission h2,
.vision h2,
.values h2 {
  text-align: left;
  margin-bottom: 20px;
}

.values ul {
  list-style: none;
  padding-left: 0;
}

.values ul li {
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
}

.values ul li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--vintage-orange);
  font-size: 18px;
}

/* WHY US */
.why-us {
  background-color: var(--vintage-teal);
}

.why-us h2 {
  color: var(--vintage-light);
}

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.reason {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: var(--vintage-light);
  border: 4px solid var(--vintage-gold);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-vintage);
}

.reason h3 {
  color: var(--vintage-orange);
  font-size: 22px;
  margin-bottom: 12px;
}

.metric {
  font-size: 20px;
  font-weight: 700;
  color: var(--vintage-teal);
  margin-top: 12px;
}

/* LOCATION INFO */
.location-info,
.location-details-section {
  background-color: var(--vintage-gold);
  text-align: center;
}

.location-details {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background-color: var(--vintage-light);
  border: 4px solid var(--vintage-brown);
  box-shadow: var(--shadow-vintage);
  text-align: left;
}

.location-details p {
  margin-bottom: 12px;
  color: var(--vintage-dark);
}

/* BLOG */
.featured-post {
  background-color: var(--vintage-orange);
  padding: 60px 20px;
}

.post-featured {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--vintage-light);
  padding: 40px;
  border: 4px solid var(--vintage-dark);
  box-shadow: var(--shadow-vintage);
  position: relative;
}

.post-featured h2 {
  text-align: left;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--vintage-brown);
  margin-top: 20px;
}

.post-meta span {
  padding: 4px 12px;
  background-color: var(--vintage-cream);
  border: 2px solid var(--vintage-brown);
}

/* BLOG GRID */
.blog-grid {
  background-color: var(--vintage-cream);
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.post-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: var(--vintage-light);
  border: 4px solid var(--vintage-brown);
  padding: 32px;
  box-shadow: var(--shadow-vintage);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.post-card:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.4);
}

.post-card .category {
  display: inline-block;
  background-color: var(--vintage-teal);
  color: var(--vintage-light);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 2px solid var(--vintage-dark);
}

.post-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

/* NEWSLETTER SIGNUP */
.newsletter-signup {
  background-color: var(--vintage-brown);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
  text-align: center;
  padding: 60px 20px;
}

.newsletter-signup h2 {
  color: var(--vintage-light);
}

.newsletter-benefits {
  max-width: 600px;
  margin: 32px auto;
  padding: 24px;
  background-color: var(--vintage-light);
  border: 4px solid var(--vintage-gold);
  text-align: left;
}

.newsletter-benefits p {
  margin-bottom: 12px;
  color: var(--vintage-dark);
  font-weight: 600;
}

.privacy-note {
  font-size: 14px;
  color: var(--vintage-gold);
  font-style: italic;
  margin-top: 24px;
}

/* CONTACT METHODS */
.contact-methods {
  background-color: var(--vintage-cream);
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.method-card {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: var(--vintage-light);
  border: 4px solid var(--vintage-teal);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-vintage);
}

.method-card h3 {
  color: var(--vintage-teal);
  margin-bottom: 16px;
}

.method-card .value {
  font-size: 20px;
  font-weight: 700;
  color: var(--vintage-orange);
  margin: 16px 0;
  font-family: 'Georgia', serif;
}

.method-card .hours {
  font-size: 14px;
  color: var(--vintage-brown);
  font-style: italic;
  margin: 8px 0;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  background-color: var(--vintage-light);
  text-align: center;
}

.form-note {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background-color: var(--vintage-gold);
  border: 4px solid var(--vintage-brown);
  box-shadow: var(--shadow-vintage);
}

.form-note p {
  margin-bottom: 16px;
  color: var(--vintage-dark);
}

/* FAQ */
.faq-section,
.faq-contact {
  background-color: var(--vintage-cream);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--vintage-light);
  border: 3px solid var(--vintage-brown);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.2);
}

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

.faq-item p {
  color: var(--vintage-dark);
}

/* LOCATION DETAILS */
.location-details-section {
  background-color: var(--vintage-light);
}

.location-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.info-block {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: var(--vintage-cream);
  border: 4px solid var(--vintage-brown);
  padding: 24px;
  box-shadow: var(--shadow-vintage);
}

.info-block h3 {
  color: var(--vintage-orange);
  margin-bottom: 16px;
}

/* CONTACT CTA */
.contact-cta {
  background-color: var(--vintage-teal);
  text-align: center;
}

.contact-cta h2 {
  color: var(--vintage-light);
}

.contact-cta p {
  color: var(--vintage-cream);
  font-size: 18px;
  margin-bottom: 32px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background-color: var(--vintage-gold);
  background-image: repeating-radial-gradient(circle at 0 0, transparent 0, var(--vintage-gold) 40px);
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--vintage-teal);
  color: var(--vintage-light);
  border: 5px solid var(--vintage-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-vintage);
}

.subtitle {
  font-size: 22px;
  color: var(--vintage-brown);
  font-weight: 700;
  margin-bottom: 20px;
}

/* NEXT STEPS */
.next-steps {
  background-color: var(--vintage-cream);
}

/* USEFUL LINKS */
.useful-links {
  background-color: var(--vintage-light);
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.link-card {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: var(--vintage-cream);
  border: 4px solid var(--vintage-brown);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-vintage);
}

.link-card h3 {
  margin-bottom: 16px;
}

/* CONTACT INFO REMINDER */
.contact-info-reminder {
  background-color: var(--vintage-teal);
  text-align: center;
}

.contact-info-reminder h2 {
  color: var(--vintage-light);
}

.contact-item {
  background-color: var(--vintage-light);
  padding: 20px;
  margin: 16px auto;
  max-width: 400px;
  border: 3px solid var(--vintage-dark);
  box-shadow: var(--shadow-vintage);
}

.contact-item .hours {
  font-size: 14px;
  color: var(--vintage-brown);
  font-style: italic;
  margin-top: 8px;
}

/* TESTIMONIAL SINGLE */
.testimonial-single {
  background-color: var(--vintage-gold);
  text-align: center;
}

.testimonial-single .testimonial-card {
  max-width: 700px;
  margin: 0 auto;
}

/* RETURN CTA */
.return-cta {
  background-color: var(--vintage-orange);
  text-align: center;
}

.return-cta h2 {
  color: var(--vintage-light);
}

.return-cta p {
  color: var(--vintage-cream);
  font-size: 18px;
  margin-bottom: 32px;
}

/* LEGAL CONTENT */
.legal-content {
  background-color: var(--vintage-light);
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--vintage-cream);
  border: 4px solid var(--vintage-brown);
  box-shadow: var(--shadow-vintage);
}

.content-wrapper h2 {
  text-align: left;
  font-size: 28px;
  color: var(--vintage-brown);
  margin-top: 32px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--vintage-gold);
  padding-bottom: 12px;
}

.content-wrapper p {
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.content-wrapper ul li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* PRODUCT BENEFITS */
.product-benefits {
  background-color: var(--vintage-light);
}

/* CUSTOMIZATION INFO */
.customization-info {
  background-color: var(--vintage-gold);
  text-align: center;
}

.customization-info ul {
  max-width: 600px;
  margin: 24px auto;
  text-align: left;
  list-style: none;
  padding: 24px;
  background-color: var(--vintage-light);
  border: 4px solid var(--vintage-brown);
}

.customization-info ul li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.customization-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vintage-teal);
  font-weight: 700;
  font-size: 18px;
}

/* FOOTER */
footer {
  background-color: var(--vintage-brown);
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
  color: var(--vintage-cream);
  padding: 60px 20px 20px;
  border-top: 5px solid var(--vintage-gold);
}

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

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

.footer-column h3 {
  color: var(--vintage-gold);
  font-size: 20px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.footer-column .tagline {
  font-style: italic;
  color: var(--vintage-cream);
  margin-bottom: 12px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

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

.footer-column nav a {
  color: var(--vintage-cream);
  font-size: 14px;
  padding: 4px 0;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 8px;
}

.footer-column nav a:hover {
  color: var(--vintage-gold);
  border-left-color: var(--vintage-gold);
  padding-left: 12px;
}

.footer-bottom {
  border-top: 3px solid var(--vintage-gold);
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.legal-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.legal-menu a {
  color: var(--vintage-cream);
  font-size: 13px;
  padding: 4px 12px;
  border: 2px solid var(--vintage-gold);
  transition: all 0.3s ease;
}

.legal-menu a:hover {
  background-color: var(--vintage-gold);
  color: var(--vintage-dark);
}

.copyright {
  font-size: 13px;
  color: var(--vintage-gold);
  text-align: center;
}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--vintage-brown);
  border-top: 5px solid var(--vintage-gold);
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: var(--vintage-cream);
  font-size: 14px;
}

.cookie-text p {
  margin-bottom: 8px;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 3px solid var(--vintage-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--vintage-teal);
  color: var(--vintage-light);
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

.cookie-btn.accept {
  background-color: var(--vintage-orange);
}

.cookie-btn.reject {
  background-color: var(--vintage-red);
}

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

/* COOKIE MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 24, 16, 0.85);
  z-index: 1002;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--vintage-light);
  border: 5px solid var(--vintage-brown);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--vintage-red);
  color: var(--vintage-light);
  border: 3px solid var(--vintage-dark);
  padding: 8px 16px;
  font-size: 20px;
  cursor: pointer;
  font-family: 'Courier New', monospace;
}

.modal-content h2 {
  color: var(--vintage-brown);
  margin-bottom: 24px;
  text-align: left;
}

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

.cookie-category h3 {
  color: var(--vintage-orange);
  margin-bottom: 12px;
  font-size: 18px;
}

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

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background-color: var(--vintage-brown);
  border: 3px solid var(--vintage-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch.active {
  background-color: var(--vintage-teal);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: var(--vintage-light);
  transition: all 0.3s ease;
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    width: 100%;
    flex-direction: column;
  }
  
  .header-cta .btn-primary,
  .header-cta .btn-secondary {
    width: 100%;
    margin: 4px 0;
  }
  
  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Sections */
  section {
    padding: 40px 20px;
  }
  
  /* Flexbox containers - mobile stacking */
  .benefits-grid,
  .packages-grid,
  .steps-grid,
  .testimonials-grid,
  .products,
  .comparison-grid,
  .features-grid,
  .guarantees-grid,
  .reasons-grid,
  .methods-grid,
  .posts-grid,
  .links-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit-item,
  .package-card,
  .step,
  .testimonial-card,
  .product-card,
  .comparison-card,
  .feature,
  .feature-item,
  .guarantee-item,
  .reason,
  .method-card,
  .post-card,
  .link-card {
    max-width: 100%;
    width: 100%;
  }
  
  /* Footer */
  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    max-width: 100%;
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
  
  .legal-menu {
    flex-direction: column;
    align-items: center;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Modal */
  .modal-content {
    padding: 24px;
    max-height: 90vh;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons .cookie-btn {
    width: 100%;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .package-card .price,
  .comparison-card .price {
    font-size: 24px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .container {
    padding: 0 16px;
  }
}

/* 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; }

/* ACCESSIBILITY */
.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;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}