/* =================================================================
   LUMINOUS MOSAIC - VINTAGE RETRO DETAILING STUDIO
   Professional Car Detailing with Vintage Aesthetic
   ================================================================= */

/* CSS RESET & BASE STYLES */
* {
  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;
  overflow-x: hidden;
}

/* =================================================================
   VINTAGE RETRO COLOR PALETTE
   ================================================================= */
:root {
  --vintage-cream: #F5E6D3;
  --vintage-tan: #D4A574;
  --vintage-brown: #8B6F47;
  --vintage-dark: #2C1810;
  --vintage-rust: #C85A3B;
  --vintage-teal: #4A7C7E;
  --vintage-gold: #D4AF37;
  --vintage-mint: #B8D4C8;
}

/* =================================================================
   TYPOGRAPHY - VINTAGE STYLE
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--vintage-dark);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

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

h2 {
  font-size: 32px;
  line-height: 1.3;
  border-bottom: 3px solid var(--vintage-rust);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  color: var(--vintage-brown);
}

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

a {
  color: var(--vintage-rust);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--vintage-teal);
  text-decoration: underline;
}

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

/* =================================================================
   HEADER - VINTAGE STYLE
   ================================================================= */
header {
  background: linear-gradient(to bottom, var(--vintage-tan), var(--vintage-cream));
  border-bottom: 4px double var(--vintage-brown);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.15);
}

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

header img {
  height: 60px;
  width: auto;
  filter: sepia(0.3);
}

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

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

header nav a:hover {
  color: var(--vintage-rust);
  border-bottom: 2px solid var(--vintage-rust);
  text-decoration: none;
}

.cta-button {
  background: var(--vintage-rust);
  color: #F5E6D3 !important;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  border: 3px solid var(--vintage-brown);
  box-shadow: 4px 4px 0 var(--vintage-brown);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: var(--vintage-brown);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--vintage-dark);
  text-decoration: none;
}

/* =================================================================
   MOBILE MENU - VINTAGE STYLE
   ================================================================= */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: var(--vintage-rust);
  color: var(--vintage-cream);
  border: 3px solid var(--vintage-brown);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--vintage-brown);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--vintage-brown);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--vintage-dark);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(to bottom, var(--vintage-cream), var(--vintage-tan));
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  overflow-y: auto;
  border-left: 6px double var(--vintage-brown);
  box-shadow: -8px 0 24px rgba(44, 24, 16, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--vintage-rust);
  color: var(--vintage-cream);
  border: 3px solid var(--vintage-brown);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 var(--vintage-brown);
  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 {
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--vintage-dark);
  padding: 16px 20px;
  border: 2px solid var(--vintage-brown);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: var(--vintage-rust);
  color: var(--vintage-cream);
  transform: translateX(8px);
  text-decoration: none;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 111, 71, 0.05) 2px, rgba(139, 111, 71, 0.05) 4px);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: var(--vintage-dark);
  text-shadow: 2px 2px 0 rgba(212, 165, 116, 0.5);
}

.tagline {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--vintage-rust);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  color: var(--vintage-brown);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--vintage-rust);
  color: var(--vintage-cream);
  padding: 16px 40px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  border: 3px solid var(--vintage-brown);
  box-shadow: 5px 5px 0 var(--vintage-brown);
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Georgia', serif;
}

.btn-primary:hover {
  background: var(--vintage-brown);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--vintage-dark);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--vintage-brown);
  padding: 16px 40px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  border: 3px solid var(--vintage-brown);
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Georgia', serif;
}

.btn-secondary:hover {
  background: var(--vintage-brown);
  color: var(--vintage-cream);
  text-decoration: none;
}

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

.trust-indicators span {
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--vintage-brown);
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid var(--vintage-brown);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =================================================================
   PAGE HERO - VINTAGE STYLE
   ================================================================= */
.page-hero {
  background: linear-gradient(to right, var(--vintage-tan), var(--vintage-cream));
  padding: 60px 20px;
  text-align: center;
  border-bottom: 4px double var(--vintage-brown);
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  color: var(--vintage-brown);
}

/* =================================================================
   SECTIONS - VINTAGE STYLE
   ================================================================= */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

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

section > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--vintage-brown);
}

/* =================================================================
   SERVICES GRID - VINTAGE CARDS
   ================================================================= */
.services-preview,
.services-detailed {
  background: var(--vintage-cream);
}

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

.service-card {
  background: linear-gradient(to bottom, #FFFFFF, var(--vintage-cream));
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  padding: 32px;
  width: 100%;
  max-width: 340px;
  box-shadow: 6px 6px 0 var(--vintage-tan);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-card::before {
  content: '★';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  color: var(--vintage-gold);
  opacity: 0.6;
}

.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--vintage-brown);
}

.service-card h3 {
  font-size: 22px;
  color: var(--vintage-rust);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card .price {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--vintage-rust);
  text-align: right;
  border-top: 2px dashed var(--vintage-brown);
  padding-top: 16px;
}

/* =================================================================
   SERVICE FULL DETAILS
   ================================================================= */
.service-full {
  background: #FFFFFF;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 6px 6px 0 var(--vintage-tan);
}

.service-full h2 {
  font-size: 28px;
  color: var(--vintage-rust);
  border-bottom: 3px solid var(--vintage-rust);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

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

.service-full ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  border-bottom: 1px dotted var(--vintage-tan);
}

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

.service-full .price {
  font-family: 'Georgia', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--vintage-rust);
  margin-top: 24px;
  display: block;
}

/* =================================================================
   BENEFITS & FEATURES - VINTAGE STYLE
   ================================================================= */
.why-choose-us,
.values {
  background: linear-gradient(to bottom, var(--vintage-cream), #FFFFFF);
}

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

.benefit,
.value,
.feature-item {
  background: #FFFFFF;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  padding: 32px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: 4px 4px 0 var(--vintage-tan);
  transition: all 0.3s ease;
}

.benefit:hover,
.value:hover,
.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 6px 6px 0 var(--vintage-brown);
}

.benefit h3,
.value h3 {
  color: var(--vintage-rust);
  margin-bottom: 16px;
  font-size: 20px;
}

/* =================================================================
   PROCESS STEPS - VINTAGE TIMELINE
   ================================================================= */
.process {
  background: var(--vintage-cream);
}

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

.step {
  background: #FFFFFF;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  padding: 32px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  position: relative;
  box-shadow: 5px 5px 0 var(--vintage-tan);
}

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

.step h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  color: var(--vintage-brown);
}

/* =================================================================
   TESTIMONIALS - VINTAGE CARDS
   ================================================================= */
.testimonials {
  background: linear-gradient(to bottom, #FFFFFF, var(--vintage-mint));
}

.testimonial-card {
  background: #FFFFFF;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 6px 6px 0 var(--vintage-tan);
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 56px;
  color: var(--vintage-gold);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #2C1810;
  font-style: italic;
  padding-left: 32px;
}

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

/* =================================================================
   CTA SECTIONS - VINTAGE STYLE
   ================================================================= */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, var(--vintage-rust), var(--vintage-brown));
  padding: 80px 20px;
  text-align: center;
  border-top: 6px double var(--vintage-gold);
  border-bottom: 6px double var(--vintage-gold);
}

.cta-banner h2,
.cta-section h2 {
  color: var(--vintage-cream);
  font-size: 38px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--vintage-gold);
}

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

.cta-banner .phone,
.cta-section .phone {
  font-family: 'Georgia', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--vintage-gold);
  margin-top: 24px;
}

.cta-banner .btn-primary {
  background: var(--vintage-cream);
  color: var(--vintage-brown);
  border-color: var(--vintage-gold);
  box-shadow: 5px 5px 0 var(--vintage-gold);
}

.cta-banner .btn-primary:hover {
  background: var(--vintage-gold);
  color: var(--vintage-dark);
}

/* =================================================================
   PACKAGES - VINTAGE PRICING CARDS
   ================================================================= */
.packages,
.pricing-packages {
  background: var(--vintage-cream);
}

.package-card {
  background: linear-gradient(to bottom, #FFFFFF, var(--vintage-cream));
  border: 4px solid var(--vintage-brown);
  border-radius: 8px;
  padding: 40px;
  width: 100%;
  max-width: 340px;
  box-shadow: 8px 8px 0 var(--vintage-tan);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  margin-bottom: 24px;
}

.package-card.popular {
  border-color: var(--vintage-gold);
  box-shadow: 8px 8px 0 var(--vintage-gold);
  transform: scale(1.05);
}

.package-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 12px 12px 0 var(--vintage-brown);
}

.package-card h3 {
  font-size: 26px;
  color: var(--vintage-rust);
  margin-bottom: 16px;
}

.package-card .badge {
  display: inline-block;
  background: var(--vintage-rust);
  color: var(--vintage-cream);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.package-card ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px dotted var(--vintage-tan);
}

.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vintage-rust);
  font-weight: 700;
}

.package-card .price-old {
  font-size: 18px;
  color: var(--vintage-brown);
  text-decoration: line-through;
  opacity: 0.7;
}

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

/* =================================================================
   PRICING TABLE - VINTAGE STYLE
   ================================================================= */
.pricing-table {
  background: #FFFFFF;
}

.pricing-table h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 28px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border: 2px solid var(--vintage-tan);
  background: var(--vintage-cream);
  margin-bottom: 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.price-row:hover {
  background: #FFFFFF;
  border-color: var(--vintage-rust);
  transform: translateX(8px);
}

.price-row .service-name {
  font-weight: 600;
  color: var(--vintage-brown);
  font-size: 16px;
}

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

/* =================================================================
   PRICING FACTORS
   ================================================================= */
.pricing-factors {
  background: var(--vintage-cream);
}

.factor {
  background: #FFFFFF;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 5px 5px 0 var(--vintage-tan);
}

.factor h3 {
  color: var(--vintage-rust);
  margin-bottom: 12px;
}

/* =================================================================
   STORY & TIMELINE - VINTAGE
   ================================================================= */
.story,
.achievements {
  background: linear-gradient(to bottom, var(--vintage-cream), #FFFFFF);
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.milestone {
  background: #FFFFFF;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  padding: 32px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--vintage-tan);
  position: relative;
}

.milestone .year {
  display: inline-block;
  background: var(--vintage-rust);
  color: var(--vintage-cream);
  padding: 8px 24px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  border: 3px solid var(--vintage-brown);
  font-family: 'Georgia', serif;
}

/* =================================================================
   TEAM - VINTAGE CARDS
   ================================================================= */
.team {
  background: var(--vintage-cream);
}

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

.team-member {
  background: #FFFFFF;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  padding: 36px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  box-shadow: 6px 6px 0 var(--vintage-tan);
}

.team-member h3 {
  color: var(--vintage-rust);
  font-size: 24px;
  margin-bottom: 8px;
}

.team-member .role {
  font-family: 'Georgia', serif;
  font-style: italic;
  color: var(--vintage-brown);
  font-size: 16px;
  margin-bottom: 16px;
}

/* =================================================================
   STATS - VINTAGE STYLE
   ================================================================= */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stat {
  background: linear-gradient(to bottom, var(--vintage-rust), var(--vintage-brown));
  border: 4px solid var(--vintage-gold);
  border-radius: 8px;
  padding: 40px;
  width: 100%;
  max-width: 240px;
  text-align: center;
  box-shadow: 6px 6px 0 var(--vintage-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat .number {
  font-family: 'Georgia', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--vintage-gold);
  line-height: 1;
}

.stat .label {
  font-size: 16px;
  color: var(--vintage-cream);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =================================================================
   PROJECTS & GALLERY - VINTAGE
   ================================================================= */
.projects-showcase,
.transformation-stories {
  background: #FFFFFF;
}

.project-card,
.story-card {
  background: var(--vintage-cream);
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  padding: 36px;
  margin-bottom: 32px;
  box-shadow: 6px 6px 0 var(--vintage-tan);
}

.project-card h3,
.story-card h3 {
  color: var(--vintage-rust);
  font-size: 24px;
  margin-bottom: 12px;
}

.project-card .vehicle {
  font-family: 'Georgia', serif;
  font-style: italic;
  color: var(--vintage-brown);
  font-size: 16px;
  margin-bottom: 16px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.tags span {
  background: var(--vintage-rust);
  color: var(--vintage-cream);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  border: 2px solid var(--vintage-brown);
  font-weight: 600;
}

.project-card .duration {
  font-size: 14px;
  color: var(--vintage-brown);
  font-style: italic;
  margin-top: 16px;
  border-top: 2px dashed var(--vintage-tan);
  padding-top: 16px;
}

.story-card .before,
.story-card .process,
.story-card .after {
  margin-bottom: 16px;
  padding: 16px;
  background: #FFFFFF;
  border-left: 4px solid var(--vintage-rust);
  border-radius: 4px;
}

.story-card .testimonial {
  font-style: italic;
  color: var(--vintage-brown);
  margin-top: 20px;
  padding: 20px;
  background: #FFFFFF;
  border: 2px dashed var(--vintage-tan);
  border-radius: 4px;
}

/* =================================================================
   CONTACT PAGE - VINTAGE
   ================================================================= */
.contact-methods {
  background: var(--vintage-cream);
}

.contact-card {
  background: #FFFFFF;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  padding: 36px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  box-shadow: 6px 6px 0 var(--vintage-tan);
  margin-bottom: 24px;
}

.contact-card h3 {
  color: var(--vintage-rust);
  font-size: 22px;
  margin-bottom: 16px;
}

.contact-card .detail {
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--vintage-brown);
  margin-bottom: 12px;
}

/* =================================================================
   CONTACT FORM - VINTAGE
   ================================================================= */
.contact-form-section {
  background: #FFFFFF;
}

.form-notice {
  background: var(--vintage-cream);
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 6px 6px 0 var(--vintage-tan);
}

.form-notice p {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--vintage-brown);
}

.form-notice strong {
  color: var(--vintage-rust);
  font-size: 18px;
}

/* =================================================================
   BUSINESS HOURS - VINTAGE TABLE
   ================================================================= */
.business-hours {
  background: var(--vintage-cream);
}

.hours-table {
  max-width: 600px;
  margin: 0 auto 32px;
  background: #FFFFFF;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--vintage-tan);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 2px dotted var(--vintage-tan);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row:nth-child(odd) {
  background: var(--vintage-cream);
}

.hours-row span:first-child {
  font-weight: 600;
  color: var(--vintage-brown);
}

.hours-row span:last-child {
  font-family: 'Georgia', serif;
  color: var(--vintage-rust);
  font-weight: 600;
}

.business-hours .note {
  text-align: center;
  font-style: italic;
  color: var(--vintage-brown);
  margin-top: 20px;
}

/* =================================================================
   LOCATION INFO - VINTAGE
   ================================================================= */
.location-info {
  background: #FFFFFF;
}

.parking-info {
  background: var(--vintage-mint);
  border: 3px solid var(--vintage-teal);
  border-radius: 8px;
  padding: 32px;
  margin-top: 32px;
  box-shadow: 5px 5px 0 var(--vintage-teal);
}

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

/* =================================================================
   BOOKING PROCESS - VINTAGE
   ================================================================= */
.booking-process {
  background: var(--vintage-cream);
}

/* =================================================================
   LEGAL CONTENT - VINTAGE
   ================================================================= */
.legal-content {
  background: #FFFFFF;
}

.legal-content .container {
  max-width: 900px;
}

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

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

.legal-content ul li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

/* =================================================================
   THANK YOU PAGE - VINTAGE
   ================================================================= */
.thank-you-hero {
  background: linear-gradient(135deg, var(--vintage-mint), var(--vintage-cream));
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--vintage-rust);
  color: var(--vintage-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  margin: 0 auto 32px;
  border: 6px solid var(--vintage-gold);
  box-shadow: 8px 8px 0 var(--vintage-brown);
}

.thank-you-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.thank-you-hero ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
}

.thank-you-hero ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  border-bottom: 1px dotted var(--vintage-tan);
}

.thank-you-hero ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vintage-rust);
  font-weight: 700;
}

.contact-confirmation,
.while-you-wait,
.back-to-site {
  padding: 60px 20px;
}

.suggestion-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.suggestion-card {
  background: #FFFFFF;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  padding: 32px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--vintage-tan);
}

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

.back-to-site .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* =================================================================
   FOOTER - VINTAGE STYLE
   ================================================================= */
footer {
  background: linear-gradient(to bottom, var(--vintage-brown), var(--vintage-dark));
  color: var(--vintage-cream);
  padding: 60px 20px 20px;
  border-top: 6px double var(--vintage-gold);
}

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

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  color: var(--vintage-gold);
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--vintage-rust);
  padding-bottom: 10px;
}

.footer-section p,
.footer-section a {
  color: var(--vintage-cream);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  display: block;
}

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

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

/* =================================================================
   COOKIE CONSENT BANNER - VINTAGE STYLE
   ================================================================= */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--vintage-brown), var(--vintage-rust));
  color: var(--vintage-cream);
  padding: 24px 20px;
  z-index: 950;
  border-top: 4px solid var(--vintage-gold);
  box-shadow: 0 -6px 20px rgba(44, 24, 16, 0.4);
  display: none;
}

#cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

#cookie-banner p {
  flex: 1;
  min-width: 250px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: 3px solid var(--vintage-gold);
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Georgia', serif;
}

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

.cookie-btn.accept:hover {
  background: var(--vintage-cream);
  transform: translateY(-2px);
}

.cookie-btn.reject,
.cookie-btn.settings {
  background: transparent;
  color: var(--vintage-cream);
}

.cookie-btn.reject:hover,
.cookie-btn.settings:hover {
  background: var(--vintage-cream);
  color: var(--vintage-brown);
}

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

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

.cookie-modal-content {
  background: linear-gradient(to bottom, var(--vintage-cream), #FFFFFF);
  border: 6px double var(--vintage-brown);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 12px 12px 0 var(--vintage-gold);
}

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

.cookie-category {
  background: #FFFFFF;
  border: 2px solid var(--vintage-tan);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 16px;
}

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

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

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

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

/* =================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================================= */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  header nav {
    display: none;
  }
  
  header .cta-button {
    display: none;
  }
  
  /* Hero adjustments */
  .hero h1 {
    font-size: 38px;
  }
  
  .tagline {
    font-size: 20px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Cards full width on mobile */
  .service-card,
  .package-card,
  .benefit,
  .value,
  .step,
  .team-member,
  .contact-card,
  .suggestion-card {
    max-width: 100%;
  }
  
  /* Stack buttons vertically */
  .cta-group,
  .cookie-buttons,
  .modal-buttons,
  .back-to-site .links {
    flex-direction: column;
  }
  
  .cta-group a,
  .cookie-btn,
  .back-to-site .links a {
    width: 100%;
  }
  
  /* Process steps */
  .process-steps {
    flex-direction: column;
  }
  
  /* Footer */
  footer .container {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    width: 100%;
  }
  
  /* Cookie banner */
  #cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 30px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

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

/* =================================================================
   UTILITY CLASSES
   ================================================================= */
.text-center {
  text-align: center;
}

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

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

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.hidden {
  display: none;
}

/* =================================================================
   ACCESSIBILITY
   ================================================================= */
*:focus {
  outline: 3px solid var(--vintage-gold);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid var(--vintage-gold);
}

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

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

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

/* Hover effects */
.service-card,
.package-card,
.benefit,
.value,
.team-member,
.project-card,
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Button transitions */
button,
.btn-primary,
.btn-secondary,
.cta-button,
.cookie-btn {
  transition: all 0.3s ease;
}

/* Link transitions */
a {
  transition: color 0.3s ease, text-decoration 0.3s ease;
}