/* ============================================================
   MANCHESTER OUTFITTERS LTD — LUXURY REDESIGN
   Theme: Black + Gold | Est. 1954
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:wght@300;400;500;600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --black:          #0A0A0A;
  --black-soft:     #111111;
  --black-mid:      #1A1A1A;
  --black-light:    #242424;
  --black-border:   #2E2E2E;

  --gold:           #C9A84C;
  --gold-light:     #E8C96D;
  --gold-dark:      #9A7A2E;
  --gold-muted:     rgba(201, 168, 76, 0.12);
  --gold-border:    rgba(201, 168, 76, 0.25);
  --gold-glow:      rgba(201, 168, 76, 0.07);

  --text-white:     #FFFFFF;
  --text-primary:   #F0EAD6;
  --text-secondary: rgba(240, 234, 214, 0.75);
  --text-muted:     rgba(240, 234, 214, 0.45);
  --text-dark:      #0A0A0A;

  --gradient-gold:   linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  --gradient-gold-h: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));

  --shadow-gold:    0 8px 32px rgba(201, 168, 76, 0.18);
  --shadow-gold-lg: 0 20px 60px rgba(201, 168, 76, 0.15);
  --shadow-card:    0 4px 24px rgba(0, 0, 0, 0.4);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --space-xl: 7rem;
  --space-lg: 4rem;
  --space-md: 2rem;

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-white);
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }

p {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-secondary);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gradient-gold);
  margin: 1.25rem auto;
}
.gold-divider.left {
  margin: 1.25rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title .label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title h2 {
  margin-bottom: 0.75rem;
}
.section-title h2 span {
  color: var(--gold);
  font-style: italic;
}
.section-title p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-weight: 300;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-border);
  transition: all 0.4s ease;
}

/* Gold shimmer top line */
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold-h);
  background-size: 200% 100%;
  animation: goldShimmer 4s linear infinite;
}

@keyframes goldShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  width: 160px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}
.logo-image:hover { opacity: 0.85; }

.logo-tagline {
  font-family: var(--font-elegant);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-style: italic;
  white-space: nowrap;
  padding-left: 0.75rem;
  border-left: 1px solid var(--gold-border);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  transition: color 0.3s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.cta-button {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gradient-gold);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.mobile-menu-btn:hover {
  background: var(--gold-muted);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.video-background-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-background-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.72) 60%,
    rgba(10, 10, 10, 0.55) 100%
  );
}
.video-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold-h);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 2rem;
  animation: heroReveal 1.2s ease forwards;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.establishment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  background: var(--gold-muted);
  margin-bottom: 1.75rem;
}
.establishment-badge::before,
.establishment-badge::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.establishment-badge span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-description {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-primary {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gradient-gold);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid rgba(240, 234, 214, 0.25);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-glow);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--black-border);
}

.stat {
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--black-border);
}
.stat h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat p {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--black-soft);
  position: relative;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-content h2 { margin-bottom: 1.5rem; }
.about-content h2 span { font-style: italic; color: var(--gold); }
.about-content > p { margin-bottom: 2rem; font-size: 1rem; line-height: 1.8; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 2.5rem 0;
}
.about-stat {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--black-mid);
  border-right: 1px solid var(--black-border);
  transition: background 0.3s ease;
}
.about-stat:last-child { border-right: none; }
.about-stat:hover { background: var(--gold-glow); }
.about-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.about-stat > div:last-child {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.credential-item i {
  color: var(--gold);
  font-size: 0.85rem;
  width: 16px;
  flex-shrink: 0;
}

.about-image-slider {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 520px;
  position: relative;
  border: 1px solid var(--black-border);
}
.about-image-slider::before,
.about-image-slider::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: 3;
  pointer-events: none;
}
.about-image-slider::before {
  top: 12px;
  left: 12px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.about-image-slider::after {
  bottom: 12px;
  right: 12px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   HISTORY — HORIZONTAL SCROLL TIMELINE
   ============================================================ */
.history-section {
  background: var(--black);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

/* Year indicator + nav arrows */
.timeline-year-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.timeline-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--gold-muted);
  color: var(--gold);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.timeline-nav-btn:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.timeline-nav-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.timeline-nav-btn:disabled:hover {
  background: var(--gold-muted);
  color: var(--gold);
  box-shadow: none;
}

.current-year-display {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  min-width: 220px;
  text-align: center;
  line-height: 1;
  transition: opacity 0.25s ease;
}
.current-year-display.fade {
  opacity: 0;
}

/* Progress dots */
.timeline-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.5rem 0 3rem;
}
.timeline-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black-border);
  border: 1px solid var(--black-light);
  cursor: pointer;
  transition: all 0.3s ease;
}
.timeline-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.5);
}

/* Scroll wrapper — full bleed */
.timeline-scroll-wrapper {
  position: relative;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* Gold connecting line */
.timeline-scroll-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-border) 8%,
    var(--gold-border) 92%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Sliding track */
.timeline-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Individual era panel */
.era-panel {
  flex-shrink: 0;
  width: 100vw;
  padding: 3rem max(2rem, calc(50vw - 600px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}

/* Era image card */
.era-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--black-border);
  background: var(--black-mid);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 2;
}
.era-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-muted), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.era-image-wrap:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}
.era-image-wrap:hover::before {
  opacity: 1;
}
.era-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform 0.6s ease;
}
.era-image-wrap:hover img {
  transform: scale(1.02);
}
.era-image-wrap.document-image {
  padding: 2.5rem;
}

/* Era number badge */
.era-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  background: var(--black);
  border: 1px solid var(--gold-border);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  z-index: 3;
}

/* Era text content */
.era-content {
  padding: 1rem 0;
  z-index: 2;
  position: relative;
}

/* Faded watermark year */
.era-content::before {
  content: attr(data-year);
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 700;
  color: var(--gold);
  opacity: 0.045;
  pointer-events: none;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  z-index: 0;
}

.era-content h4 {
  margin-bottom: 0.5rem;
}
.era-content h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--text-white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.era-content h3 em {
  font-style: italic;
  color: var(--gold);
}
.era-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Legacy section */
.legacy-section {
  margin-top: 5rem;
  text-align: center;
  padding: 0 var(--space-md);
}
.legacy-year {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  padding: 0.75rem 2.5rem;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  background: var(--gold-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.08em;
}
.legacy-card {
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--black-mid);
  transition: border-color 0.3s ease, box-shadow 0.4s ease;
  max-width: 1100px;
  margin: 0 auto;
}
.legacy-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold-lg);
}
.legacy-image {
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.legacy-image img {
  max-width: 100%;
  max-height: 580px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform 0.7s ease;
}
.legacy-card:hover .legacy-image img {
  transform: scale(1.02);
}

/* ============================================================
   PRODUCTS / COLLECTIONS
   ============================================================ */
.products-section {
  background: var(--black-soft);
  position: relative;
}
.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--black-mid);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-card);
}
.product-card:hover::before {
  transform: scaleX(1);
}
.product-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.9);
}
.product-card:hover .product-image {
  transform: scale(1.04);
  filter: brightness(1);
}
.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gradient-gold);
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  z-index: 2;
}
.product-content {
  padding: 1.75rem;
}
.product-content h3 {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 0.6rem;
}
.product-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  background: var(--black);
}

.process-tabs {
  display: flex;
  margin-bottom: 3.5rem;
  justify-content: center;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.process-tab {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  background: var(--black-mid);
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  border-right: 1px solid var(--black-border);
}
.process-tab:last-child { border-right: none; }
.process-tab:hover { color: var(--gold); background: var(--gold-glow); }
.process-tab.active { background: var(--gold-muted); color: var(--gold); }

.process-content { display: none; }
.process-content.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.process-video {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--black-border);
  position: relative;
}
.process-video::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.process-video:hover::after { opacity: 1; }
.process-video video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.process-info h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.process-info > p { margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.75; }

.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.process-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--black-border);
}
.process-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.process-list li:last-child { border-bottom: none; }

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section {
  background: var(--black-soft);
  position: relative;
}
.events-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.events-slider {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--black-border);
}
.events-slider-track {
  position: relative;
  height: 520px;
}
.events-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.events-slide.active { opacity: 1; }
.events-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.events-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
}
.events-slide-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}
.events-slide-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.events-info-column {
  display: flex;
  flex-direction: column;
}
.event-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.event-description h3 {
  font-size: 1.9rem;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.event-description p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.event-stats-compact {
  display: flex;
  margin: 2.5rem 0;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.compact-stat {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--black-mid);
  border-right: 1px solid var(--black-border);
  transition: background 0.3s ease;
}
.compact-stat:last-child { border-right: none; }
.compact-stat:hover { background: var(--gold-glow); }
.compact-stat i {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}
.compact-stat h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}
.compact-stat p {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-form {
  background: var(--black-mid);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--black-border);
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1rem;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
  outline: none;
}
.form-input::placeholder {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.form-input:focus {
  border-color: var(--gold-border);
  background: var(--black-light);
}
textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-gold);
  color: var(--black);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.success-msg {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--gold);
  text-align: center;
}

.contact-info { padding: 1rem 0; }
.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}
.contact-info-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon { color: var(--gold); font-size: 0.9rem; }
.contact-item h4 {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.contact-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-soft);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid var(--black-border);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold-h);
  opacity: 0.35;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-top: 1.25rem;
  max-width: 260px;
}
.footer-logo {
  width: 160px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-links h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--black-border);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom .gold-mark { color: var(--gold); font-style: italic; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.35rem;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  z-index: 999;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: var(--shadow-gold-lg);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  animation: ringPulse 2.5s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.12); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid,
  .process-grid,
  .events-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .era-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
  .era-image-wrap { min-height: 280px; }
  .era-image-wrap img { max-height: 320px; }
  .era-content::before { display: none; }
  .timeline-scroll-wrapper { margin-left: 0; margin-right: 0; }
  .timeline-scroll-wrapper::before { display: none; }
  .legacy-image { padding: 1.5rem; }
  .legacy-image img { max-height: 280px; }
}

@media (max-width: 768px) {
  :root { --space-xl: 4rem; }
  .nav-desktop { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-desktop.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem 2rem;
    border-bottom: 1px solid var(--black-border);
    gap: 0.5rem;
    z-index: 999;
  }
  .nav-desktop.mobile-open .nav-links { flex-direction: column; gap: 0; }
  .nav-desktop.mobile-open .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--black-border);
    font-size: 0.85rem;
  }
  .hero-stats { gap: 1.75rem; }
  .stat + .stat::before { display: none; }
  .about-image-slider { height: 360px; }
  .events-slider-track { height: 360px; }
  .process-tabs { width: 100%; }
  .process-tab { flex: 1; font-size: 0.62rem; padding: 0.75rem 0.4rem; }
  .process-video video { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .current-year-display { font-size: 2.2rem; min-width: 160px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .nav-container { padding: 0.9rem 1rem; }
  .logo-image { width: 130px; }
  .logo-tagline { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .event-stats-compact { flex-direction: column; }
  .compact-stat { border-right: none; border-bottom: 1px solid var(--black-border); }
  .compact-stat:last-child { border-bottom: none; }
  .contact-form { padding: 1.5rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .timeline-nav-btn { width: 36px; height: 36px; font-size: 0.8rem; }
}

/* ============================================================
   IMAGE PROTECTION
   ============================================================ */
img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}