/* ===================================================================
   SHARP EDGE BARBERSHOP - Vintage Gentleman's Barbershop
   Aesthetic: Classic, Masculine & Cool
   =================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&display=swap');

/* ===================================================================
   CSS CUSTOM PROPERTIES
   =================================================================== */
:root {
  /* Colors - Classic Barbershop Palette */
  --primary: #0F172A;
  --primary-light: #1E293B;
  --primary-dark: #020617;
  --secondary: #7F1D1D;
  --secondary-light: #991B1B;
  --accent: #D4AF37;
  --accent-light: #E5C158;
  --accent-dark: #B8960C;
  --cream: #FFFBEB;
  --cream-dark: #FEF3C7;
  --wood: #78350F;
  --wood-light: #92400E;
  --white: #FFFFFF;
  --gray-light: #F8FAFC;
  --gray: #64748B;
  --gray-dark: #334155;

  /* Barbershop Pole Colors */
  --pole-red: #B91C1C;
  --pole-blue: #1E40AF;
  --pole-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.1);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.15);
  --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.2);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===================================================================
   RESET & BASE
   =================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--primary);
  background-color: var(--cream);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* ===================================================================
   TYPOGRAPHY
   =================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
}

/* ===================================================================
   UTILITY CLASSES
   =================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--primary);
  color: var(--cream);
}

.section-navy {
  background: var(--primary-light);
  color: var(--cream);
}

.section-cream {
  background: var(--cream-dark);
}

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

.text-gold {
  color: var(--accent);
}

.text-cream {
  color: var(--cream);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: var(--cream);
  opacity: 0.8;
}

/* Decorative Stripe Divider */
.stripe-divider {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 2rem 0;
}

.stripe-divider span {
  width: 4px;
  height: 40px;
  border-radius: 2px;
}

.stripe-divider span:nth-child(1) { background: var(--pole-red); }
.stripe-divider span:nth-child(2) { background: var(--pole-white); border: 1px solid var(--gray-light); }
.stripe-divider span:nth-child(3) { background: var(--pole-blue); }

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

.btn-secondary:hover {
  background: var(--cream);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--cream);
}

/* ===================================================================
   HEADER & NAVIGATION
   =================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary);
  border-bottom: 3px solid var(--accent);
  transition: all var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--cream);
  letter-spacing: 0.15em;
}

.logo-sub {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--cream);
  letter-spacing: 0.1em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.header-cta {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 1rem 0;
    border-top: 1px solid var(--primary-light);
    gap: 0;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav-link {
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }

  .nav-link::after {
    display: none;
  }

  .header-cta {
    display: none;
  }
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  overflow: hidden;
  padding-top: 80px;
}

/* Vintage pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 100px,
      rgba(212, 175, 55, 0.03) 100px,
      rgba(212, 175, 55, 0.03) 101px
    );
  pointer-events: none;
}

/* Barbershop pole accent - left */
.hero::after {
  content: '';
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 300px;
  background: repeating-linear-gradient(
    -45deg,
    var(--pole-red),
    var(--pole-red) 15px,
    var(--pole-white) 15px,
    var(--pole-white) 30px,
    var(--pole-blue) 30px,
    var(--pole-blue) 45px
  );
  border-radius: 10px;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--cream);
  z-index: 1;
  padding: 2rem;
}

/* Vintage Badge Frame */
.hero-badge {
  display: inline-block;
  padding: 3rem 4rem;
  border: 3px solid var(--accent);
  position: relative;
  margin-bottom: 2rem;
}

.hero-badge::before,
.hero-badge::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--accent);
}

.hero-badge::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.hero-badge::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}

.hero-est {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.9;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.125rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--cream);
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===================================================================
   SERVICES OVERVIEW
   =================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  color: var(--accent);
}

.service-icon svg {
  width: 36px;
  height: 36px;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-dark);
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================================
   BARBERS SECTION
   =================================================================== */
.barbers-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.barbers-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.barbers-intro p {
  font-size: 1.125rem;
  opacity: 0.9;
}

.barbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.barber-card {
  text-align: center;
}

.barber-photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 4px solid var(--accent);
  overflow: hidden;
  background: linear-gradient(135deg, var(--wood) 0%, var(--wood-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.barber-photo::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}

.barber-initials {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--cream);
  letter-spacing: 0.1em;
}

.barber-card h3 {
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.barber-title {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.barber-card p {
  color: var(--cream);
  opacity: 0.8;
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .barbers-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===================================================================
   EXPERIENCE SECTION
   =================================================================== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.experience-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: 3px solid var(--accent);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-image::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--accent);
  opacity: 0.5;
}

.experience-image-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-align: center;
}

.experience-content h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.experience-content p {
  color: var(--gray-dark);
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

.experience-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.experience-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}

.experience-feature svg {
  width: 24px;
  height: 24px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===================================================================
   GALLERY SECTION
   =================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover::before {
  opacity: 0.2;
}

.gallery-placeholder {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--cream);
  letter-spacing: 0.1em;
  opacity: 0.5;
  text-align: center;
  padding: 1rem;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 1.0625rem;
  color: var(--gray-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.testimonial-info h4 {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 0.125rem;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--gray);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================================
   CTA SECTION
   =================================================================== */
.cta-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 50px,
      rgba(212, 175, 55, 0.03) 50px,
      rgba(212, 175, 55, 0.03) 51px
    );
}

.cta-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.cta-content h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--cream);
  opacity: 0.9;
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.cta-info-item {
  text-align: center;
}

.cta-info-item span {
  display: block;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.cta-info-item p {
  color: var(--cream);
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .cta-info {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--primary-dark);
  color: var(--cream);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--cream);
  opacity: 0.7;
  font-size: 0.9375rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer h4 {
  color: var(--accent);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.15em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--cream);
  opacity: 0.7;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--cream);
  opacity: 0.7;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 251, 235, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--cream);
  opacity: 0.5;
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--accent);
  opacity: 0.8;
}

.footer-bottom a:hover {
  opacity: 1;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--cream);
  opacity: 0.5;
  font-size: 0.875rem;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--accent);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* ===================================================================
   ABOUT PAGE
   =================================================================== */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--primary);
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 100px,
      rgba(212, 175, 55, 0.03) 100px,
      rgba(212, 175, 55, 0.03) 101px
    );
}

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

.page-hero h1 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--cream);
  opacity: 0.9;
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Story Section */
.story-section {
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid var(--accent);
}

.story-image-inner {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-align: center;
  padding: 2rem;
}

.story-content h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.story-content p {
  color: var(--gray-dark);
  font-size: 1.0625rem;
  margin-bottom: 1.25rem;
}

.story-since {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-image {
    aspect-ratio: 4/3;
  }

  .story-image::before {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
  }
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 251, 235, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

.value-card h3 {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--cream);
  opacity: 0.8;
  font-size: 0.9375rem;
  margin: 0;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Facility Section */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.facility-item {
  text-align: center;
}

.facility-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  margin-bottom: 1.5rem;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.facility-image span {
  font-family: var(--font-heading);
  color: var(--accent);
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.facility-item h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.facility-item p {
  color: var(--gray);
  font-size: 0.9375rem;
  margin: 0;
}

@media (max-width: 768px) {
  .facility-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  padding: 2rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image span {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.product-card h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.product-card p {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--accent-dark);
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ===================================================================
   SERVICES PAGE
   =================================================================== */
.service-category {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

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

.service-category:nth-child(even) {
  background: var(--cream-dark);
}

.category-header {
  text-align: center;
  margin-bottom: 3rem;
}

.category-header h2 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.category-header p {
  color: var(--gray);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.15);
}

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

.service-info {
  flex: 1;
}

.service-info h3 {
  font-size: 1.375rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.service-info p {
  color: var(--gray);
  font-size: 0.9375rem;
  margin: 0;
}

.service-item .service-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-dark);
  letter-spacing: 0.05em;
  margin-left: 2rem;
}

/* Combos Section */
.combos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.combo-card {
  background: var(--primary);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.combo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
}

.combo-card.featured {
  background: var(--accent);
}

.combo-card.featured h3,
.combo-card.featured p,
.combo-card.featured .combo-price,
.combo-card.featured .combo-includes li {
  color: var(--primary);
}

.combo-card.featured::before {
  background: var(--primary);
}

.combo-card h3 {
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.combo-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.combo-includes {
  text-align: left;
  margin-bottom: 2rem;
}

.combo-includes li {
  color: var(--cream);
  opacity: 0.9;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 251, 235, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.combo-includes li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
}

.combo-card.featured .combo-includes li {
  border-color: rgba(15, 23, 42, 0.1);
}

.combo-card.featured .combo-includes li::before {
  color: var(--primary);
}

@media (max-width: 768px) {
  .combos-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-section h2 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-form-section > p {
  color: var(--gray);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--gray-light);
  background: var(--white);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-section {
  background: var(--primary);
  padding: 3rem;
  color: var(--cream);
}

.contact-info-section h2 {
  color: var(--cream);
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-item h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  opacity: 0.9;
  font-size: 0.9375rem;
  margin: 0;
}

.contact-hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-hours h4 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Map Section */
.map-section {
  background: var(--primary);
  padding: 0;
}

.map-container {
  height: 400px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--accent);
  margin: 0 2rem;
}

.map-placeholder {
  text-align: center;
  color: var(--cream);
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.map-placeholder p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-left: 4px solid var(--accent);
}

.faq-item h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--gray-dark);
  font-size: 0.9375rem;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

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

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

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
