:root {
  --crimson: #B22222;
  --crimson-light: #CC3333;
  --crimson-dark: #8B0000;
  --gold: #D4AF37;
  --gold-light: #ECC84A;
  --gold-pale: #F8EDD0;
  --dark: #3D1A08;
  --dark-mid: #52240A;
  --text-light: #F5E6C8;
  --text-muted: #CCA372;
  --bg: #2E1305;
  --bg-mid: #3D1A08;
  --card-bg: #4A1F0A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 90px;
  background: rgba(26,10,0,0.95);
  border-bottom: 1px solid rgba(212,175,55,0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

nav.scrolled {
  height: 85px;
  background: rgba(26,10,0,0.98);
  border-bottom-color: var(--gold);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.logo-emblem {
  width: 45px;
  height: 45px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--crimson-dark);
  font-weight: 700;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 700;
}

.logo-tagline {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ===== PAGES ===== */
.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* ===== HOME PAGE ===== */
/* Hero Banners */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 6%;
}

.banner-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
}

.banner-slide.active { opacity: 1; }

.banner-bg {
  top: 50%;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.banner-slide.active .banner-bg {
  transform: scale(1);
}
.mobile-banner {
  display: none;
}
.banner-cta {
  position: absolute;
  bottom: 48px;
  left: 20%;
  transform: translateX(-50%);
  z-index: 10;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92,0,0,0.85) 0%, rgba(26,10,0,0.6) 50%, rgba(26,10,0,0.4) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 0 10%;
  max-width: 700px;
}

.banner-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 1.05;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.banner-title span { color: var(--gold); }

.banner-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--crimson-dark);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

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

.btn-readmore {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 28px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

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

.btn-readmore span {
  display: inline-block;
  transition: transform 0.3s;
  margin-left: 6px;
}

.btn-readmore:hover span {
  transform: translateX(5px);
}

.btn-secondary {
  display: inline-block;
  padding: 13px 40px;
  background: transparent;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-secondary:hover {
  background: rgba(212,175,55,0.1);
}

.banner-btn {
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.banner-indicators {
  position: absolute;
  bottom: 40px;
  left: 10%;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.indicator {
  width: 30px;
  height: 2px;
  background: rgba(212,175,55,0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background: var(--gold);
  width: 60px;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 10%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s infinite;
}

/* Section Styles */
.section {
  padding: 100px 10%;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.section-title span { color: var(--gold); }

.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 20px auto 0;
}

/* Brand Journey */
.journey {
  background: var(--dark-mid);
  position: relative;
  overflow: hidden;
}

.journey::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,0,0,0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 20px;
}

.timeline-item {
  position: relative;
  padding: 40px 30px;
  border: 1px solid rgba(212,175,55,0.15);
  background: rgba(139,0,0,0.1);
  transition: all 0.4s;
  overflow: hidden;
}

.timeline-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.timeline-item:hover {
  border-color: var(--gold);
  background: rgba(139,0,0,0.2);
  transform: translateY(-5px);
}

.timeline-item:hover::before { opacity: 1; }

.timeline-year {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 10px;
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* How We Prepare */
.prepare {
  position: relative;
}

.prepare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.prepare-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
  background: linear-gradient(160deg, rgba(139,0,0,0.15) 0%, rgba(26,10,0,0.5) 100%);
  padding: 50px 35px;
  transition: all 0.4s;
  text-align: center;
}

.prepare-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139,0,0,0.3);
}

.prepare-icon {
  width: 70px;
  height: 70px;
  background: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 28px;
  border: 2px solid var(--gold);
  transition: all 0.4s;
}

.prepare-card:hover .prepare-icon {
  background: var(--gold);
  transform: scale(1.1);
}

.prepare-step {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.prepare-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: white;
  margin-bottom: 15px;
}

.prepare-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Get In Touch (Home) */
.home-contact {
  background: var(--crimson-dark);
  position: relative;
  overflow: hidden;
}

.home-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(212,175,55,0.03) 0px,
    rgba(212,175,55,0.03) 1px,
    transparent 1px,
    transparent 20px
  );
}

.home-contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 50px);
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-info h2 span { color: var(--gold); }

.contact-info p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: var(--text-muted);
}

.contact-detail-item .icon {
  width: 40px;
  height: 40px;
  background: rgba(212,175,55,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-form-mini {
  background: rgba(26,10,0,0.5);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 45px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--text-light);
  padding: 12px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

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

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

.form-group select option { background: var(--dark); }

/* ===== ABOUT PAGE ===== */
.about-hero {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 75px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?w=1600') center/cover;
  filter: brightness(0.3) saturate(1.5);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(92,0,0,0.9) 0%, rgba(26,10,0,0.5) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 10%;
}

.about-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 900;
  line-height: 1;
  color: white;
}

.about-hero-content h1 span { color: var(--gold); }

.about-story {
  background: var(--dark);
  padding: 100px 10%;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-image-stack {
  position: relative;
  height: 550px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  object-fit: cover;
  border: 3px solid var(--crimson);
}

.about-img-badge {
  position: absolute;
  bottom: 60px; left: 55%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--crimson-dark);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 10px 20px;
  font-weight: 700;
  text-align: center;
  z-index: 3;
  white-space: nowrap;
}

.about-text-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: white;
  line-height: 1.2;
  margin-bottom: 25px;
}

.about-text h2 span { color: var(--gold); }

.about-text p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(212,175,55,0.2);
}

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

.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
}

.about-values {
  background: var(--dark-mid);
  padding: 80px 10%;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.value-card {
  padding: 35px 25px;
  border: 1px solid rgba(212,175,55,0.15);
  text-align: center;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.05);
}

.value-icon { font-size: 36px; margin-bottom: 15px; }

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== INFRASTRUCTURE ===== */
.infra-section {
  background: var(--dark-heavy);
  position: relative;
  overflow: hidden;
}
.infra-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.infra-img-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
}

.infra-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.infra-img-wrap:hover img {
  transform: scale(1.05);
}

.infra-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.infra-intro {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 680px;
  margin: 20px auto 50px;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.infra-card {
  background: linear-gradient(160deg, rgba(255,248,225,0.97) 0%, rgba(245,235,210,0.95) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(212,175,55,0.06) 0px,
      rgba(212,175,55,0.06) 1px,
      transparent 1px,
      transparent 12px
    );
  border: 1px solid rgba(180,130,30,0.2);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.infra-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.infra-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(139,0,0,0.12);
  border-color: rgba(180,130,30,0.4);
}

.infra-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.infra-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #3D1A08;
  margin-bottom: 12px;
}

.infra-card p {
  font-size: 13px;
  color: #7A5230;
  line-height: 1.75;
}

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

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

@media (max-width: 400px) {
  .infra-grid { grid-template-columns: 1fr; }
}
/* ===== INFRA TIMELINE ===== */
.infra-timeline {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  position: relative;
}

.infra-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

/* Horizontal connecting line */
.infra-step-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  position: absolute;
  top: 36px;
  left: 50%;
  z-index: 0;
}

/* Icon circle */
.infra-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson-dark), var(--dark-mid));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}

.infra-step:hover .infra-step-icon {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(212,175,55,0.2), 0 8px 25px rgba(139,0,0,0.3);
}

/* Text body */
.infra-step-body {
  margin-top: 20px;
  text-align: center;
  padding: 0 10px;
}

.infra-step-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.infra-step-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Mobile — vertical timeline */
@media (max-width: 768px) {
  .infra-timeline {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    gap: 0;
  }

  .infra-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 35px;
    position: relative;
  }

  /* Vertical line on mobile */
  .infra-step-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--crimson));
    position: absolute;
    top: 36px;
    left: 35px;
    z-index: 0;
  }

  .infra-step-body {
    text-align: left;
    margin-top: 15px;
    padding: 0;
  }

  .infra-step-icon {
    flex-shrink: 0;
  }
}



/* ===== PRODUCTS PAGE ===== */
.products-hero {
  height: 45vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 75px;
}

.products-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506368249639-73a05d6f6488?w=1600') center/cover;
  filter: brightness(0.25) saturate(2);
}

.products-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(92,0,0,0.9) 30%, transparent 100%);
}

.products-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 10%;
}

.products-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  color: white;
}

.products-hero-content h1 span { color: var(--gold); }

.products-section {
  padding: 80px 10%;
  background: var(--dark);
}

/* Category Tabs */
.category-tabs {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
  scrollbar-width: none; /* hide scrollbar Firefox */
  gap: 5px;
  flex-wrap: nowrap; /* prevent wrapping */
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding-bottom: 20px;
}

.category-tabs::-webkit-scrollbar {
  display: none; /* hide scrollbar Chrome/Safari */
}

.cat-tab {
  flex-shrink: 0; /* prevent tabs from shrinking */
}

.cat-tab {
  padding: 14px 28px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: -1px;
}

.cat-tab:hover { color: var(--gold); }

.cat-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card {
  background: linear-gradient(160deg, rgba(139,0,0,0.15) 0%, rgba(26,10,0,0.8) 100%);
  border: 1px solid rgba(212,175,55,0.15);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(139,0,0,0.4);
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-img-placeholder {
  width: 100%;
  height: 220px;
  background: 
    linear-gradient(160deg, rgba(224, 220, 176, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(212,175,55,0.07) 0px,
      rgba(212,175,55,0.07) 1px,
      transparent 1px,
      transparent 12px
    );
  border-bottom: 1px solid rgba(180,130,30,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.product-info {
  padding: 20px;
}

.product-category-tag {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.product-hover-btn {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--gold);
  color: var(--crimson-dark);
  text-align: center;
  padding: 12px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.product-card:hover .product-hover-btn {
  transform: translateY(0);
}

/* Product Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--dark-mid);
  border: 1px solid rgba(212,175,55,0.3);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-images {
  position: relative;
background: 
    linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(240,225,195,0.9) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(212,175,55,0.07) 0px,
      rgba(212,175,55,0.07) 1px,
      transparent 1px,
      transparent 12px
    );
    }

.modal-main-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 400px;
background: 
    linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(240,225,195,0.9) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(212,175,55,0.07) 0px,
      rgba(212,175,55,0.07) 1px,
      transparent 1px,
      transparent 12px
    );  overflow: hidden;
}

.modal-main-placeholder {
  width: 100%;
  height: 400px;
background: 
    linear-gradient(160deg, rgba(255,248,225,0.95) 0%, rgba(240,225,195,0.9) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(212,175,55,0.07) 0px,
      rgba(212,175,55,0.07) 1px,
      transparent 1px,
      transparent 12px
    );  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}

.modal-thumbnails {
  display: flex;
  gap: 8px;
  padding: 15px;
  background: rgba(0,0,0,0.3);
  overflow-x: auto;
}

.modal-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.modal-thumb.active, .modal-thumb:hover {
  border-color: var(--gold);
}

.modal-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.modal-category {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: white;
  line-height: 1.2;
  margin-bottom: 15px;
}

.modal-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.modal-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  flex: 1;
}

.modal-features {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(212,175,55,0.2);
}

.modal-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.modal-feature::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.modal-close:hover {
  background: var(--gold);
  color: var(--crimson-dark);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  height: 45vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 75px;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=1600') center/cover;
  filter: brightness(0.25) saturate(1.5);
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(92,0,0,0.9) 30%, transparent 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 10%;
}

.contact-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  color: white;
}

.contact-hero-content h1 span { color: var(--gold); }

.contact-main {
  padding: 10% 10%;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.contact-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: white;
  margin-bottom: 20px;
}

.contact-left h2 span { color: var(--gold); }

.contact-left p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  border: 1px solid rgba(212,175,55,0.15);
  background: rgba(139,0,0,0.1);
  transition: all 0.3s;
}

.contact-info-card:hover {
  border-color: var(--gold);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contact-info-text p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-form-full {
  background: linear-gradient(160deg, rgba(139,0,0,0.1) 0%, rgba(26,10,0,0.5) 100%);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 50px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-full h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: white;
  margin-bottom: 30px;
}

.contact-form-full h3 span { color: var(--gold); }

/* ===== AWARDS PAGE ====== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.cert-logo-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.cert-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== CAREERS PAGE ===== */
.careers-hero {
  height: 45vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 75px;
}

.careers-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1529539795054-3c162aab037a?w=1600') center/cover;
  filter: brightness(0.25);
}

.careers-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(92,0,0,0.9) 30%, transparent 100%);
}

.careers-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 10%;
}

.careers-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  color: white;
}

.careers-hero-content h1 span { color: var(--gold); }

.careers-main {
  padding: 100px 10%;
  background: var(--dark);
}

.careers-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.careers-intro p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.job-card {
  border: 1px solid rgba(212,175,55,0.2);
  padding: 35px;
  background: rgba(139,0,0,0.08);
  transition: all 0.3s;
  cursor: pointer;
}

.job-card:hover {
  border-color: var(--gold);
  background: rgba(139,0,0,0.15);
  transform: translateY(-4px);
}

.job-dept {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.job-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: white;
  margin-bottom: 10px;
}

.job-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.job-meta span {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.job-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  padding-bottom: 3px;
  transition: all 0.3s;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.job-apply:hover {
  gap: 12px;
  border-bottom-color: var(--gold);
}

.careers-culture {
  background: var(--dark-mid);
  padding: 80px 10%;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.culture-card {
  text-align: center;
  padding: 40px 25px;
  border: 1px solid rgba(212,175,55,0.1);
  transition: all 0.3s;
}

.culture-card:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.03);
}

.culture-icon { font-size: 40px; margin-bottom: 20px; }

.culture-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 12px;
}

.culture-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
  background: #0D0500;
  border-top: 1px solid rgba(212,175,55,0.2);
  padding: 70px 10% 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo-emblem {
  width: 55px;
  height: 55px;
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-brand .logo-name {
  font-size: 18px;
  margin-bottom: 3px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 15px;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a,
.footer-col ul li {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1.6;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.3), transparent);
  margin-bottom: 25px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom p span { color: var(--gold); }

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.social-link:hover {
  background: var(--gold);
  color: var(--crimson-dark);
  border-color: var(--gold);
}

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

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .journey-timeline { grid-template-columns: repeat(2, 1fr); }
  .prepare-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 35px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }

}

@media (max-width: 768px) {
  nav { padding: 0 5%; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 75px; left: 0; right: 0;
    background: rgba(26,10,0,0.98);
    padding: 30px 5%;
    gap: 20px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
  }
  .section-awards {padding-top: 50px; }

  .hamburger { display: flex; }
  .section { padding: 70px 5%; }
  .journey-timeline { grid-template-columns: 1fr; }
  .prepare-grid { grid-template-columns: 1fr; }
  .home-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-image-stack { height: 350px; }
.contact-main {
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 8px 16px; /* top/bottom 8px, left/right 16px */
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}  .form-row { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1.2fr); }
  .modal { grid-template-columns: 1fr; }
  .modal-images { display: flex; }
  .awards-grid { grid-template-columns: 1fr;}
  .banner-cta { left: 50%; bottom: 7%; }
  .desktop-banner {
    display: none;
  }
  .mobile-banner {
    display: block;
  }
  .hero {
    margin-top: 10%;
  }
  .careers-grid { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  /* .category-tabs { display: none; overflow-x: scroll;} */
}