/* ========================================
   ABOUT PAGE SPECIFIC STYLES - ENHANCED
   with Premium Animations & Golden Touches
   ======================================== */

/* CSS Variables */
:root {
  --glass-bg: rgba(248, 244, 236, 0.85);
  --glass-bg-dark: rgba(44, 44, 44, 0.7);
  --glass-border: rgba(200, 168, 107, 0.25);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --glass-shadow-gold: 0 15px 35px rgba(200, 168, 107, 0.15);
  --glass-blur: blur(12px);
}

/* Page Hero with Parallax Effect */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/3912498/pexels-photo-3912498.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
  transform: scale(1);
  transition: transform 8s ease;
}

.page-hero:hover .page-hero-bg {
  transform: scale(1.05);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--charcoal), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.page-hero-content h1::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: lineExpand 1s ease 0.5s forwards;
}

@keyframes lineExpand {
  to {
    width: 80px;
  }
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gold);
}

.breadcrumb a {
  text-decoration: none;
  color: var(--charcoal);
  transition: var(--transition);
  position: relative;
}

.breadcrumb a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.breadcrumb a:hover::after {
  width: 100%;
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* Story Section with Scroll Reveal */
.story-section {
  padding: 100px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(184, 149, 93, 0.03), transparent);
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.story-text {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.8s ease forwards;
  padding-right: 20px;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.story-text .section-tag {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.2;
  margin: 20px 0 25px;
  color: var(--charcoal);
  position: relative;
  background: linear-gradient(135deg, var(--charcoal), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.story-text h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
}

.story-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

.signature {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.8s forwards;
}

.signature-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: widthPulse 2s infinite;
}

@keyframes widthPulse {
  0%, 100% { width: 50px; }
  50% { width: 70px; }
}

.signature span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
}

.story-image {
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.8s ease 0.3s forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.story-image .image-frame {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}

.story-image img {
  width: 100%;
  height: auto;
  transition: transform 0.8s ease, filter 0.5s ease;
}

.story-image:hover img {
  transform: scale(1.08);
  filter: brightness(1.02);
}

/* ========================================
   PREMIUM FOUNDER CARD - REDESIGNED
   ======================================== */

.founder-card {
  position: relative;
  background: linear-gradient(145deg, #2C2C2C, #1a1a1a);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(200, 168, 107, 0.2);
  box-shadow: var(--shadow-gold);
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transform: scaleX(0);
  transition: transform 0.6s ease;
  transform-origin: left;
  z-index: 3;
}

.founder-card:hover::before {
  transform: scaleX(1);
}

.founder-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 168, 107, 0.5);
  box-shadow: var(--shadow-gold);
}

/* Gold Corner Accents */
.founder-card .gold-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s ease;
}

.founder-card .gold-corner-tl {
  top: 12px;
  left: 12px;
  border-top-width: 2px;
  border-left-width: 2px;
  border-right: none;
  border-bottom: none;
}

.founder-card .gold-corner-tr {
  top: 12px;
  right: 12px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-left: none;
  border-bottom: none;
}

.founder-card .gold-corner-bl {
  bottom: 12px;
  left: 12px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top: none;
  border-right: none;
}

.founder-card .gold-corner-br {
  bottom: 12px;
  right: 12px;
  border-bottom-width: 2px;
  border-right-width: 2px;
  border-top: none;
  border-left: none;
}

.founder-card:hover .gold-corner {
  opacity: 0.6;
}

.founder-card:hover .gold-corner-tl,
.founder-card:hover .gold-corner-tr,
.founder-card:hover .gold-corner-bl,
.founder-card:hover .gold-corner-br {
  width: 30px;
  height: 30px;
}

/* Founder Image Container */
.founder-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  flex-shrink: 0;
}

.founder-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0.3;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.founder-card:hover .founder-image::after {
  opacity: 0.6;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.founder-card:hover .founder-image img {
  transform: scale(1.05);
}

/* Founder Badge */
.founder-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal);
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.founder-card:hover .founder-badge {
  transform: translateX(-3px) translateY(-3px);
}

/* Founder Info Section */
.founder-info {
  padding: 25px 25px 30px;
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.founder-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 5px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  align-self: center;
}

.founder-info h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s ease;
}

.founder-card:hover .founder-info h3::after {
  width: 50px;
}

.founder-title {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  margin-top: 10px;
  font-weight: 500;
}

/* Founder Quote */
.founder-quote {
  background: linear-gradient(135deg, rgba(200, 168, 107, 0.08), rgba(200, 168, 107, 0.02));
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  border-left: 3px solid var(--gold);
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.founder-quote i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: block;
  opacity: 0.7;
}

.founder-quote p {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.85rem;
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
}

/* Founder Bio */
.founder-bio {
  margin-bottom: 18px;
}

.founder-bio p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-size: 0.8rem;
  margin: 0;
}

/* Social Links */
.founder-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.founder-social-link {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(200, 168, 107, 0.2);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.founder-social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transition: left 0.3s ease;
  z-index: -1;
}

.founder-social-link:hover::before {
  left: 0;
}

.founder-social-link:hover {
  color: var(--charcoal);
  transform: translateY(-3px);
  border-color: transparent;
}

/* Signature Line */
.founder-signature-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
}

.founder-quote-mark {
  color: var(--gold);
  font-size: 11px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Mission & Vision Section with Hover Animations */
.mission-vision {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--cream), var(--ivory));
  position: relative;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission-card, .vision-card, .value-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 45px 35px;
  text-align: center;
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  opacity: 0;
  transform: translateY(30px);
  animation: cardReveal 0.6s ease forwards;
}

.mission-card { animation-delay: 0.1s; }
.vision-card { animation-delay: 0.3s; }
.value-card { animation-delay: 0.5s; }

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mission-card::before, .vision-card::before, .value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}

.mission-card:hover::before, .vision-card:hover::before, .value-card:hover::before {
  transform: scaleX(1);
}

.mission-card:hover, .vision-card:hover, .value-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
}

.mission-card .card-icon, .vision-card .card-icon, .value-card .card-icon {
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.mission-card:hover .card-icon, .vision-card:hover .card-icon, .value-card:hover .card-icon {
  transform: scale(1.1);
}

.mission-card h3, .vision-card h3, .value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--charcoal);
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--charcoal), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mission-card h3::after, .vision-card h3::after, .value-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.4s ease;
}

.mission-card:hover h3::after, .vision-card:hover h3::after, .value-card:hover h3::after {
  width: 100%;
}

.mission-card p, .vision-card p, .value-card p {
  color: #666;
  line-height: 1.7;
}

.card-number {
  position: absolute;
  bottom: 20px;
  right: 25px;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(200, 168, 107, 0.08);
  font-family: 'Playfair Display', serif;
  transition: all 0.3s ease;
}

.mission-card:hover .card-number, .vision-card:hover .card-number, .value-card:hover .card-number {
  font-size: 4rem;
  color: rgba(200, 168, 107, 0.15);
}

/* Timeline Section with Animated Entry */
.timeline {
  padding: 100px 0;
  background: var(--ivory);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}

.section-tag::before {
  content: '✦';
  margin-right: 10px;
  opacity: 0.8;
  font-size: 0.7rem;
}

.section-tag::after {
  content: '✦';
  margin-left: 10px;
  opacity: 0.8;
  font-size: 0.7rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--charcoal), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  margin: 20px auto 0;
  position: relative;
  border-radius: 2px;
}

.section-line::before,
.section-line::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section-line::before {
  left: -15px;
  box-shadow: 0 0 5px var(--gold);
}

.section-line::after {
  right: -15px;
  box-shadow: 0 0 5px var(--gold);
}

.timeline-grid {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--sage), var(--gold));
  animation: heightGrow 1.5s ease forwards;
  transform-origin: top;
}

@keyframes heightGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  animation: timelineReveal 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1s; }

@keyframes timelineReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-year {
  width: 100px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-top: 10px;
  position: relative;
}

.timeline-year::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
  opacity: 0;
  animation: lineAppear 0.5s ease 0.3s forwards;
}

@keyframes lineAppear {
  to {
    opacity: 1;
    width: 30px;
  }
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 25px 35px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 25px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--ivory);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.timeline-item:hover .timeline-content::before {
  transform: scale(1.3);
  box-shadow: 0 0 15px var(--gold-glow);
}

.timeline-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(184, 149, 93, 0.05), transparent);
  transition: width 0.4s ease;
}

.timeline-content:hover::after {
  width: 100%;
}

.timeline-content:hover {
  transform: translateX(12px);
  box-shadow: var(--shadow-gold);
}

.timeline-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.timeline-content:hover h3 {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

/* Artisans Section - Single Artisan */
.artisans {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--cream), var(--ivory));
}

.artisans-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 400px;
  margin: 0 auto;
  gap: 35px;
}

.artisan-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  animation: artisanReveal 0.7s ease forwards;
}

.artisan-card:nth-child(1) { animation-delay: 0.1s; }

@keyframes artisanReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.artisan-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
}

.artisan-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.artisan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.artisan-card:hover .artisan-image img {
  transform: scale(1.1);
}

.artisan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(200, 168, 107, 0.9), rgba(107, 138, 116, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  transform: scale(0.9);
}

.artisan-card:hover .artisan-overlay {
  opacity: 1;
  transform: scale(1);
}

.artisan-overlay span {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 24px;
  border: 1.5px solid white;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.artisan-overlay span:hover {
  background: white;
  color: var(--gold);
  transform: scale(1.05);
}

.artisan-info {
  padding: 25px;
  text-align: center;
  position: relative;
}

.artisan-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.4s ease;
}

.artisan-card:hover .artisan-info::before {
  width: 60%;
}

.artisan-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--charcoal);
  transition: color 0.3s ease;
  background: linear-gradient(135deg, var(--charcoal), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.artisan-card:hover .artisan-info h3 {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.artisan-info p {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 1px;
}

/* Philosophy Section with Parallax Text */
.philosophy {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--charcoal), #1a1a1a);
  text-align: center;
  overflow: hidden;
}

.philosophy-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/276583/pexels-photo-276583.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  transition: transform 8s ease;
}

.philosophy:hover .philosophy-bg {
  transform: scale(1.05);
}

.philosophy-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.philosophy-content .section-tag {
  color: var(--gold);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.philosophy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  background: linear-gradient(135deg, #ffffff, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.philosophy-content > p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 50px;
  opacity: 0.9;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.philosophy-quote {
  padding: 40px;
  border-left: 3px solid var(--gold);
  text-align: left;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  opacity: 0;
  transform: translateY(30px);
  animation: quoteReveal 0.8s ease 0.8s forwards;
}

@keyframes quoteReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.philosophy-quote i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.6;
  display: inline-block;
  animation: float 3s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.philosophy-quote p {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.philosophy-quote span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 1px;
}

/* Stats Section with Counters Animation */
.stats-about {
  padding: 80px 0;
  background: var(--ivory);
}

.stats-about .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: statReveal 0.6s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes statReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
}

.stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.05);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--charcoal);
  letter-spacing: 1px;
}

/* Why Choose Us Section with Icon Animations */
.why-choose {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--cream), var(--ivory));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 35px;
}

.feature {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 40px 30px;
  text-align: center;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: var(--glass-shadow);
  opacity: 0;
  transform: translateY(30px);
  animation: featureReveal 0.6s ease forwards;
  position: relative;
  overflow: hidden;
}

.feature:nth-child(1) { animation-delay: 0.05s; }
.feature:nth-child(2) { animation-delay: 0.1s; }
.feature:nth-child(3) { animation-delay: 0.15s; }
.feature:nth-child(4) { animation-delay: 0.2s; }
.feature:nth-child(5) { animation-delay: 0.25s; }
.feature:nth-child(6) { animation-delay: 0.3s; }

@keyframes featureReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sage), var(--gold));
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.feature:hover::before {
  transform: translateX(0);
}

.feature:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
}

.feature-icon {
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}

.feature:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
}

.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.feature:hover h3 {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature p {
  color: #666;
  line-height: 1.7;
}

/* CTA Section with Pulse Animation */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--charcoal), #1a1a1a);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/276583/pexels-photo-276583.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  transition: transform 8s ease;
}

.cta-section:hover .cta-bg {
  transform: scale(1.05);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  animation: ctaReveal 0.8s ease forwards;
}

@keyframes ctaReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-content p {
  margin-bottom: 35px;
  opacity: 0.8;
}

.btn-primary-large {
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(184, 149, 93, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(184, 149, 93, 0);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop */
@media (max-width: 1200px) {
  .story-grid {
    gap: 40px;
  }
  
  .founder-info h3 {
    font-size: 1.4rem;
  }
}

/* Desktop */
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .story-text {
    padding-right: 0;
    text-align: center;
  }
  
  .story-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .signature {
    justify-content: center;
  }
  
  .founder-card {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-grid::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: column;
    gap: 10px;
  }
  
  .timeline-year {
    padding-left: 50px;
  }
  
  .timeline-year::before {
    display: none;
  }
  
  .timeline-content::before {
    left: -36px;
  }
  
  .stats-about .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .philosophy-content h2 {
    font-size: 2.5rem;
  }
  
  .page-hero-content h1 {
    font-size: 3rem;
  }
  
  .section-header h2,
  .story-text h2,
  .timeline .section-header h2,
  .why-choose .section-header h2,
  .stats-about .section-header h2 {
    font-size: 2.5rem;
  }
  
  .cta-content h2 {
    font-size: 2.2rem;
  }
  
  .founder-info h3 {
    font-size: 1.6rem;
  }
  
  .founder-quote p {
    font-size: 0.85rem;
  }
}

/* Tablet & Mobile - Timeline Fix (Year visible) */
@media (max-width: 768px) {
  .page-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .story-text h2 {
    font-size: 2rem;
  }
  
  .philosophy-content h2 {
    font-size: 1.8rem;
  }
  
  .stats-about .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .philosophy-quote p {
    font-size: 1rem;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  /* FIXED: Timeline - Year remains visible on mobile */
  .timeline-grid::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
  }
  
  .timeline-year {
    width: auto;
    min-width: 70px;
    font-size: 1.2rem;
    padding-top: 8px;
    padding-left: 0;
  }
  
  .timeline-year::before {
    display: none;
  }
  
  .timeline-content {
    flex: 1;
    padding: 18px 20px;
  }
  
  .timeline-content::before {
    left: -8px;
    top: 20px;
    width: 14px;
    height: 14px;
  }
  
  .timeline-content h3 {
    font-size: 1rem;
  }
  
  .timeline-content p {
    font-size: 0.85rem;
  }
  
  /* Founder Card Mobile */
  .founder-info {
    padding: 20px;
  }
  
  .founder-info h3 {
    font-size: 1.3rem;
  }
  
  .founder-title {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
  
  .founder-quote {
    padding: 14px;
  }
  
  .founder-quote p {
    font-size: 0.8rem;
  }
  
  .founder-social-link {
    width: 35px;
    height: 35px;
    font-size: 0.85rem;
  }
  
  .gold-corner {
    display: none;
  }
  
  /* Section Headers */
  .section-header h2,
  .story-text h2,
  .timeline .section-header h2,
  .why-choose .section-header h2,
  .stats-about .section-header h2 {
    font-size: 2rem;
  }
  
  .mission-card h3, .vision-card h3, .value-card h3 {
    font-size: 1.3rem;
  }
  
  /* Artisans Grid - Single Artisan */
  .artisans-grid {
    max-width: 320px;
  }
  
  .artisan-info h3 {
    font-size: 1.3rem;
  }
  
  .artisan-info p {
    font-size: 0.75rem;
  }
  
  /* Philosophy */
  .philosophy-content > p {
    font-size: 0.9rem;
    padding: 0 15px;
  }
  
  .philosophy-quote {
    padding: 25px 20px;
    margin: 0 15px;
  }
  
  .philosophy-quote p {
    font-size: 1rem;
  }
  
  .philosophy-quote i {
    font-size: 2rem;
  }
  
  /* Statistics */
  .stats-about .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature {
    padding: 30px 20px;
  }
  
  .feature h3 {
    font-size: 1.2rem;
  }
  
  .feature p {
    font-size: 0.85rem;
  }
  
  /* CTA */
  .cta-content h2 {
    font-size: 1.6rem;
  }
  
  .cta-content p {
    font-size: 0.9rem;
    padding: 0 20px;
  }
  
  .btn-primary-large {
    padding: 12px 30px;
    font-size: 0.8rem;
  }
}

/* Small Mobile - Timeline adjustments */
@media (max-width: 576px) {
  .timeline-item {
    gap: 12px;
  }
  
  .timeline-year {
    min-width: 60px;
    font-size: 1rem;
    padding-top: 5px;
  }
  
  .timeline-content {
    padding: 15px;
  }
  
  .timeline-content h3 {
    font-size: 0.9rem;
  }
  
  .timeline-content p {
    font-size: 0.75rem;
  }
  
  .timeline-content::before {
    width: 10px;
    height: 10px;
    top: 15px;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .page-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2,
  .story-text h2,
  .timeline .section-header h2,
  .why-choose .section-header h2 {
    font-size: 1.6rem;
  }
  
  .section-tag {
    font-size: 0.65rem;
    letter-spacing: 3px;
  }
  
  .stats-about .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .founder-info h3 {
    font-size: 1.2rem;
  }
  
  .founder-badge {
    padding: 4px 12px;
    font-size: 9px;
  }
  
  .founder-quote p {
    font-size: 0.75rem;
  }
  
  .founder-bio p {
    font-size: 0.75rem;
  }
  
  .artisans-grid {
    max-width: 280px;
  }
}

/* ========================================
   GOLDEN SPARKLE EFFECT
   ======================================== */

.feature, .mission-card, .vision-card, .value-card, .artisan-card {
  position: relative;
  overflow: hidden;
}

.feature::after, .mission-card::after, .vision-card::after, .value-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 168, 107, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.feature:hover::after, .mission-card:hover::after, .vision-card:hover::after, .value-card:hover::after {
  opacity: 1;
  animation: sparkleRotate 2s linear infinite;
}

@keyframes sparkleRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========================================
   SCROLL REVEAL
   ======================================== */

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}