/* =====================================================
   ABOUT PAGE STYLES - PREMIUM JEWELLERY WEBSITE
   ===================================================== */

/* ========================================
   CSS VARIABLES
======================================== */
:root {
  --gold: #c9a962;
  --gold-light: #d4b978;
  --gold-dark: #a68b4b;
  --dark-bg: #0a0a0a;
  --dark-surface: #111111;
  --dark-card: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   GLOBAL OVERFLOW FIXES
======================================== */
/* Prevent horizontal overflow without breaking fixed elements */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Prevent any element from causing horizontal overflow */
*, *::before, *::after {
  box-sizing: border-box;
}

img, video {
  max-width: 100%;
  height: auto;
}

/* Header must be above everything */
.header {
  z-index: 9999 !important;
}

/* Mobile menu elements z-index hierarchy */
.mobile-menu-toggle {
  z-index: 10001 !important;
  position: relative !important;
}

.nav-links {
  z-index: 10000 !important;
}

.nav-overlay {
  z-index: 9998 !important;
}

/* ========================================
   ABOUT HERO SECTION
======================================== */
.about-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.hero-eyebrow {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  padding: 0.5rem 2rem;
  border: 1px solid var(--gold);
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 0.3s forwards;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  font-family: "Elsie Swash Caps", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 0.5s forwards;
}

.title-accent {
  font-family: "Ephesis", cursive;
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--gold);
  animation-delay: 0.7s;
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 0.9s forwards;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 1.1s forwards;
}

.scroll-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.5;
    transform: scaleY(0.7);
  }
}

/* Floating Stats */
.hero-floating-stats {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 1.3s forwards;
  width: 90%;
  max-width: 600px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.stat-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   SECTION COMMON STYLES
======================================== */
.section-tag {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 60px;
}

.section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: "Elsie Swash Caps", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   OUR STORY SECTION
======================================== */
.our-story {
  padding: 8rem 5%;
  background: var(--dark-bg);
}

.story-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* Image Stack */
.story-images {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.image-stack {
  position: relative;
  height: clamp(400px, 50vw, 600px);
  width: 100%;
  max-width: 100%;
}

.stack-image {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
}

.stack-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-image {
  width: 70%;
  height: 450px;
  top: 0;
  left: 0;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.accent-image {
  width: 55%;
  height: 350px;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 3px solid var(--gold);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.stack-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: var(--dark-bg);
  padding: 1.5rem 2rem;
  border: 1px solid var(--gold);
}

.deco-year {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Story Content */
.story-content {
  padding-right: 2rem;
}

.story-text {
  margin-bottom: 2rem;
}

.story-text .lead-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.story-text .lead-text strong {
  color: var(--gold);
}

.story-text p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.story-text p em {
  color: var(--gold-light);
  font-style: italic;
}

.story-signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.signature-img {
  height: 50px;
  filter: invert(1) brightness(0.8) sepia(1) hue-rotate(5deg);
}

.signature-text {
  display: flex;
  flex-direction: column;
}

.signature-name {
  font-family: "Ephesis", cursive;
  font-size: 1.75rem;
  color: var(--gold);
}

.signature-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========================================
   BRAND VALUES SECTION
======================================== */
.brand-values {
  padding: 8rem 5%;
  background: linear-gradient(
    180deg,
    var(--dark-bg) 0%,
    var(--dark-surface) 100%
  );
}

.values-header {
  text-align: center;
  margin-bottom: 5rem;
}

.values-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.1);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.5s var(--transition-smooth);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.value-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--transition-smooth);
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(201, 169, 98, 0.1);
}

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

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  color: var(--gold);
  transition: transform 0.5s var(--transition-smooth);
}

.value-card:hover .card-icon {
  transform: scale(1.1) rotateY(180deg);
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.card-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.card-number {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 600;
  color: rgba(201, 169, 98, 0.1);
  line-height: 1;
  transition: color 0.3s;
}

.value-card:hover .card-number {
  color: rgba(201, 169, 98, 0.2);
}

/* ========================================
   THE PROCESS / TIMELINE SECTION
======================================== */
.the-process {
  padding: 8rem 5%;
  background: var(--dark-bg);
  position: relative;
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-timeline {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.timeline-item {
  position: relative;
  margin-bottom: 6rem;
  opacity: 0;
  transform: translateY(30px);
}

.timeline-item.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s var(--transition-smooth);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--dark-bg);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--gold);
  z-index: 2;
  transition: all 0.3s;
}

.timeline-item:hover .timeline-number {
  background: var(--gold);
  color: var(--dark-bg);
  transform: translateX(-50%) scale(1.1);
}

.timeline-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}

.timeline-content.reverse {
  flex-direction: row-reverse;
}

.timeline-image {
  flex: 1;
  height: 300px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.timeline-item:hover .timeline-image img {
  transform: scale(1.05);
}

.timeline-info {
  flex: 1;
  padding: 0 2rem;
}

.timeline-content:not(.reverse) .timeline-info {
  text-align: right;
}

.timeline-title {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.timeline-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.timeline-line {
  position: absolute;
  left: 50%;
  bottom: -3rem;
  transform: translateX(-50%);
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item:last-child .timeline-line {
  display: none;
}

/* ========================================
   ATELIER SECTION
======================================== */
.atelier-section {
  padding: 8rem 5%;
  background: linear-gradient(
    135deg,
    var(--dark-surface) 0%,
    var(--dark-bg) 100%
  );
}

.atelier-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.atelier-video {
  position: relative;
}

.video-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--dark-card);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(201, 169, 98, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--transition-smooth);
  z-index: 2;
}

.video-play-btn i {
  font-size: 2rem;
  color: var(--dark-bg);
  margin-left: 5px;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold);
}

.video-play-btn.playing {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.video-play-btn.playing i {
  color: white;
  margin-left: 0;
  font-size: 1.25rem;
}

.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.video-caption span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
}

.atelier-content {
  padding-left: 2rem;
}

.atelier-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.atelier-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 30px;
}

.feature-item i {
  color: var(--gold);
  font-size: 1rem;
}

.feature-item span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark-bg);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

/* ========================================
   TEAM SECTION
======================================== */
.team-section {
  padding: 8rem 5%;
  background: var(--dark-bg);
}

.team-header {
  text-align: center;
  margin-bottom: 5rem;
}

.team-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s var(--transition-smooth);
}

.team-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.team-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
}

.card-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.team-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  transform: translateY(100%);
  transition: transform 0.4s var(--transition-smooth);
}

.team-card:hover .card-overlay {
  transform: translateY(0);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--dark-bg);
  border-radius: 50%;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

.card-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.team-role {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}

.team-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   MILESTONES SECTION
======================================== */
.milestones-section {
  padding: 8rem 5%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1f1f 0%, var(--dark-bg) 100%);
}

.milestones-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.milestone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 98, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.milestones-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.milestones-header {
  text-align: center;
  margin-bottom: 5rem;
}

.milestones-timeline {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.milestone-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.milestone-item {
  flex: 1 1 150px;
  min-width: 140px;
  max-width: 200px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}

.milestone-item.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s var(--transition-smooth);
}

.milestone-year {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 2rem;
}

.milestone-dot {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
  top: 0;
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
}

.milestone-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.milestone-content p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0 0.5rem;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
  padding: 8rem 5%;
  background: var(--dark-surface);
}

.testimonials-container {
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-slider {
  position: relative;
  min-height: 350px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s var(--transition-smooth);
  padding: 3rem;
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.2);
  text-align: center;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

.quote-icon {
  margin-bottom: 2rem;
}

.quote-icon i {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.5;
}

.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

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

.author-name {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
}

.author-location {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.testimonial-rating i {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.nav-btn {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.nav-btn:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.nav-dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(201, 169, 98, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active,
.dot:hover {
  background: var(--gold);
  transform: scale(1.2);
}

/* ========================================
   CTA SECTION
======================================== */
.about-cta {
  padding: 8rem 5%;
  background: var(--dark-bg);
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cta-content {
  padding-right: 2rem;
}

.cta-title {
  font-family: "Elsie Swash Caps", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-item i {
  color: var(--gold);
  font-size: 1rem;
}

.contact-item span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--text-secondary);
}

.cta-image {
  position: relative;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--gold);
  padding: 1rem;
}

.image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.image-frame::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid rgba(201, 169, 98, 0.3);
  z-index: -1;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--dark-surface);
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.footer-logo {
  font-family: "Elsie Swash Caps", serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: "Ephesis", cursive;
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

.footer-social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: var(--gold);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark-bg);
  border-color: var(--gold);
}


.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
}


.link-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 140px;
}

.link-column h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  white-space: nowrap;
}


.link-column a {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
  white-space: nowrap;
}

.link-column a:hover {
  color: var(--gold);
}

.footer-newsletter h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-newsletter p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.2);
  color: var(--text-primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  width: 50px;
  background: var(--gold);
  border: none;
  color: var(--dark-bg);
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-bottom p {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-legal a {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Large tablets and small desktops - 1200px */
@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .milestones-timeline {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .milestone-item {
    flex: none;
    width: calc(33.333% - 1.5rem);
  }

  .milestone-line {
    display: none;
  }

  .milestone-dot {
    top: 0;
    margin-bottom: 1rem;
  }

  .story-container {
    gap: 4rem;
  }

  .atelier-container {
    gap: 3rem;
  }

  .cta-container {
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 3rem;
  }
}

/* Tablets - 992px */
@media (max-width: 992px) {
  /* Section padding */
  .our-story,
  .brand-values,
  .the-process,
  .atelier-section,
  .team-section,
  .milestones-section,
  .testimonials-section,
  .about-cta {
    padding: 5rem 5%;
  }

  .story-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .story-images {
    order: -1;
  }

  .image-stack {
    height: 500px;
    max-width: 550px;
    margin: 0 auto;
  }

  .story-content {
    padding-right: 0;
    text-align: center;
  }

  .section-tag {
    padding-left: 0;
  }

  .section-tag::before {
    display: none;
  }

  .story-signature {
    justify-content: center;
  }

  .atelier-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .atelier-content {
    padding-left: 0;
    text-align: center;
  }

  .atelier-features {
    justify-content: center;
  }

  .atelier-content .btn {
    margin: 0 auto;
  }

  .cta-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-content {
    padding-right: 0;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .cta-contact {
    justify-content: center;
  }

  .cta-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .timeline-content,
  .timeline-content.reverse {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .timeline-content:not(.reverse) .timeline-info {
    text-align: center;
  }

  .timeline-info {
    padding: 0;
  }

  .timeline-number {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto 1.5rem;
  }

  .timeline-line {
    left: 50%;
  }

  .milestone-item {
    width: calc(50% - 1rem);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

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

  .footer-newsletter {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Tablets and large phones - 768px */
@media (max-width: 768px) {
  /* Hero section */
  .about-hero {
    min-height: 600px;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-floating-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    bottom: 8%;
    padding: 0 1rem;
  }

  .floating-stat {
    min-width: 100px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-text {
    font-size: 0.8rem;
  }

  /* Section typography */
  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .section-desc {
    font-size: 1rem;
  }

  /* Values grid */
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .values-header {
    margin-bottom: 3rem;
  }

  .value-card {
    padding: 2.5rem 2rem;
  }

  /* Team grid */
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .team-header {
    margin-bottom: 3rem;
  }

  /* Timeline */
  .timeline-item {
    margin-bottom: 4rem;
  }

  .timeline-image {
    height: 250px;
    width: 100%;
  }

  .timeline-content {
    gap: 1.5rem;
  }

  .timeline-title {
    font-size: 1.5rem;
  }

  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Image frame */
  .image-frame img {
    height: 400px;
  }

  /* Footer */
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

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

  /* Testimonials */
  .testimonials-slider {
    min-height: 400px;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .nav-btn {
    width: 45px;
    height: 45px;
  }
}

/* Large phones - 576px */
@media (max-width: 576px) {
  /* Hero section */
  .about-hero {
    min-height: 100vh;
    min-height: 550px;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    padding: 0.4rem 1.25rem;
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
  }

  .title-line {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .title-accent {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-floating-stats {
    flex-direction: column;
    gap: 1rem;
    bottom: 5%;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-text {
    font-size: 0.75rem;
  }

  .scroll-line {
    height: 40px;
  }

  /* Section padding */
  .our-story,
  .brand-values,
  .the-process,
  .atelier-section,
  .team-section,
  .milestones-section,
  .testimonials-section,
  .about-cta {
    padding: 4rem 4%;
  }

  /* Image stack */
  .image-stack {
    height: 400px;
  }

  .main-image {
    width: 85%;
    height: 320px;
  }

  .accent-image {
    width: 65%;
    height: 230px;
  }

  .stack-decoration {
    padding: 1rem 1.5rem;
  }

  .deco-year {
    font-size: 0.875rem;
  }

  /* Story text */
  .story-text .lead-text {
    font-size: 1.125rem;
  }

  .story-text p {
    font-size: 1rem;
  }

  .signature-name {
    font-size: 1.5rem;
  }

  .signature-title {
    font-size: 0.8rem;
  }

  /* Milestone */
  .milestone-item {
    width: 100%;
  }

  .milestone-year {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .milestone-dot {
    width: 14px;
    height: 14px;
    margin-bottom: 1rem;
  }

  .milestone-content h4 {
    font-size: 1rem;
  }

  .milestone-content p {
    font-size: 0.875rem;
  }

  /* Testimonials */
  .testimonials-slider {
    min-height: 450px;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .quote-icon i {
    font-size: 2rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

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

  .author-name {
    font-size: 1rem;
  }

  .testimonial-nav {
    gap: 1rem;
    margin-top: 2rem;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
  }

  /* Footer */
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
  }

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

  /* CTA image */
  .image-frame {
    padding: 0.5rem;
  }

  .image-frame img {
    height: 350px;
  }

  .cta-contact {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .contact-item {
    width: 100%;
    justify-content: center;
  }
}

/* Extra small phones - 480px and below */
@media (max-width: 480px) {
  /* Remove cursor styles for mobile */
  *, *:hover, *:active, *:focus {
    cursor: auto !important;
  }
  .cursor, .cursor-follower {
    display: none !important;
  }
}

/* Tablets and small devices - 992px and below */
@media (max-width: 992px) and (min-width: 481px) {
  *, *:hover, *:active, *:focus {
    cursor: auto !important;
  }
  .cursor, .cursor-follower {
    display: none !important;
  }
}
  /* Hero */
  .hero-eyebrow {
    font-size: 0.65rem;
    padding: 0.35rem 1rem;
  }

  .title-line {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .title-accent {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-content {
    padding: 0 1rem;
  }

  /* Section titles */
  .section-tag {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 1.75rem);
  }

  /* All sections padding */
  .our-story,
  .brand-values,
  .the-process,
  .atelier-section,
  .team-section,
  .milestones-section,
  .testimonials-section,
  .about-cta {
    padding: 3rem 4%;
  }

  .values-header,
  .team-header,
  .process-header,
  .milestones-header,
  .testimonials-header {
    margin-bottom: 2.5rem;
  }

  /* Value cards */
  .value-card {
    padding: 1.75rem 1.25rem;
  }

  .card-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 1.5rem;
  }

  .card-title {
    font-size: 1.125rem;
  }

  .card-text {
    font-size: 0.9rem;
  }

  .card-number {
    font-size: 3rem;
  }

  /* Timeline */
  .timeline-item {
    margin-bottom: 3rem;
  }

  .timeline-number {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
  }

  .timeline-image {
    height: 200px;
  }

  .timeline-title {
    font-size: 1.25rem;
  }

  .timeline-text {
    font-size: 0.95rem;
  }

  /* Atelier */
  .video-wrapper {
    aspect-ratio: 4/3;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
  }

  .video-play-btn i {
    font-size: 1.25rem;
    margin-left: 3px;
  }

  .atelier-text {
    font-size: 0.95rem;
  }

  .atelier-features {
    gap: 0.75rem;
  }

  .feature-item {
    padding: 0.5rem 0.875rem;
  }

  .feature-item i {
    font-size: 0.875rem;
  }

  .feature-item span {
    font-size: 0.875rem;
  }

  /* Team */
  .card-image {
    height: 260px;
  }

  .card-info {
    padding: 1.25rem;
  }

  .team-name {
    font-size: 1.125rem;
  }

  .team-role {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .team-quote {
    font-size: 0.85rem;
  }

  /* Testimonials */
  .testimonials-slider {
    min-height: 480px;
  }

  .quote-icon {
    margin-bottom: 1rem;
  }

  .quote-icon i {
    font-size: 1.75rem;
  }

  .testimonial-author img {
    width: 50px;
    height: 50px;
  }

  /* CTA */
  .cta-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  .cta-text {
    font-size: 0.95rem;
  }

  .cta-buttons {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .image-frame img {
    height: 280px;
  }

  /* Footer */
  .footer-top {
    padding: 3rem 4%;
  }

  .footer-logo {
    font-size: 1.75rem;
  }

  .footer-tagline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .link-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .link-column a {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

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

  .newsletter-form input {
    width: 100%;
    padding: 0.875rem;
  }

  .newsletter-form button {
    width: 100%;
    padding: 0.875rem;
  }

  .footer-bottom {
    padding: 1.5rem 4%;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }

  .footer-legal a {
    font-size: 0.8rem;
  }
}

/* Very small screens - 360px and below */
@media (max-width: 360px) {
  .title-line {
    font-size: 1.35rem;
  }

  .title-accent {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .image-stack {
    height: 350px;
  }

  .main-image {
    height: 280px;
  }

  .accent-image {
    height: 200px;
  }

  .value-card {
    padding: 1.5rem 1rem;
  }

  .timeline-image {
    height: 180px;
  }

  .card-image {
    height: 240px;
  }

  .image-frame img {
    height: 250px;
  }
}

/* Extra small screens - 480px and below */
@media (max-width: 480px) {
  /* Hero section adjustments */
  .about-hero {
    min-height: 550px;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    letter-spacing: 0.2em;
  }

  .title-line {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .title-accent {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-floating-stats {
    gap: 1rem;
    bottom: 5%;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-text {
    font-size: 0.75rem;
  }

  /* Section typography */
  .section-tag {
    font-size: 0.75rem;
    padding-left: 40px;
    letter-spacing: 0.2em;
  }

  .section-tag::before {
    width: 25px;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* Story section */
  .our-story,
  .brand-values,
  .the-process,
  .atelier-section,
  .team-section,
  .milestones-section,
  .testimonials-section,
  .about-cta {
    padding: 4rem 4%;
  }

  .story-text .lead-text {
    font-size: 1.125rem;
  }

  .story-text p {
    font-size: 1rem;
  }

  /* Value cards */
  .value-card {
    padding: 2rem 1.5rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .card-title {
    font-size: 1.25rem;
  }

  /* Timeline adjustments */
  .timeline-item {
    margin-bottom: 4rem;
  }

  .timeline-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .timeline-image {
    height: 200px;
  }

  .timeline-title {
    font-size: 1.25rem;
  }

  .timeline-text {
    font-size: 1rem;
  }

  /* Atelier section */
  .video-wrapper {
    aspect-ratio: 4/3;
  }

  .video-play-btn {
    width: 70px;
    height: 70px;
  }

  .video-play-btn i {
    font-size: 1.5rem;
  }

  .atelier-text {
    font-size: 1rem;
  }

  .feature-item {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  /* Team cards */
  .card-image {
    height: 280px;
  }

  .team-name {
    font-size: 1.25rem;
  }

  .team-quote {
    font-size: 0.875rem;
  }

  /* Milestones */
  .milestone-year {
    font-size: 1.25rem;
  }

  .milestone-dot {
    width: 12px;
    height: 12px;
  }

  .milestone-content h4 {
    font-size: 1rem;
  }

  .milestone-content p {
    font-size: 0.875rem;
  }

  /* Testimonials */
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .author-name {
    font-size: 1rem;
  }

  /* CTA section */
  .cta-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .cta-text {
    font-size: 1rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }

  /* Footer */
  .footer-logo {
    font-size: 2rem;
  }

  .footer-tagline {
    font-size: 0.875rem;
  }

  .link-column h4 {
    font-size: 1rem;
  }

  .link-column a {
    font-size: 0.875rem;
  }

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

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
    padding: 0.75rem;
  }

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

/* ========================================
   ANIMATION DELAYS FOR STAGGERED EFFECT
======================================== */
.value-card:nth-child(1) {
  transition-delay: 0.1s;
}
.value-card:nth-child(2) {
  transition-delay: 0.2s;
}
.value-card:nth-child(3) {
  transition-delay: 0.3s;
}
.value-card:nth-child(4) {
  transition-delay: 0.4s;
}

.team-card:nth-child(1) {
  transition-delay: 0.1s;
}
.team-card:nth-child(2) {
  transition-delay: 0.2s;
}
.team-card:nth-child(3) {
  transition-delay: 0.3s;
}
.team-card:nth-child(4) {
  transition-delay: 0.4s;
}

.timeline-item:nth-child(1) {
  transition-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  transition-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  transition-delay: 0.3s;
}
.timeline-item:nth-child(4) {
  transition-delay: 0.4s;
}
.timeline-item:nth-child(5) {
  transition-delay: 0.5s;
}

.milestone-item:nth-child(2) {
  transition-delay: 0.1s;
}
.milestone-item:nth-child(3) {
  transition-delay: 0.2s;
}
.milestone-item:nth-child(4) {
  transition-delay: 0.3s;
}
.milestone-item:nth-child(5) {
  transition-delay: 0.4s;
}
.milestone-item:nth-child(6) {
  transition-delay: 0.5s;
}

/* ========================================
   GRID LINES CUSTOMIZATION FOR ABOUT PAGE
======================================== */

/* Hide middle grid lines (2nd, 3rd, 4th) - only show 1st and 5th (extreme lines) */
body .grid-lines .grid-line:nth-child(2),
body .grid-lines .grid-line:nth-child(3),
body .grid-lines .grid-line:nth-child(4) {
  opacity: 0;
}

/* Only show extreme grid lines for specific sections */
.our-story,
.brand-values,
.the-process,
.atelier-section {
  position: relative;
  z-index: 1;
}

/* Create custom grid lines for sections - only 2 extreme lines */
.our-story::before,
.our-story::after,
.brand-values::before,
.brand-values::after,
.the-process::before,
.the-process::after,
.atelier-section::before,
.atelier-section::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201, 169, 98, 0.08) 15%,
    rgba(201, 169, 98, 0.08) 85%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.our-story::before,
.brand-values::before,
.the-process::before,
.atelier-section::before {
  left: 5%;
}

.our-story::after,
.brand-values::after,
.the-process::after,
.atelier-section::after {
  right: 5%;
}

/* Hide all grid lines in the hero section - hero has higher z-index than grid lines */
.about-hero {
  z-index: 5;
}

/* Ensure hero overlay covers grid lines too */
.about-hero .hero-overlay {
  z-index: 1;
}
