@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* ── Variables ── */
:root {
  --navy:    #0D1B2A;
  --navy2:   #112236;
  --gold:    #C8971A;
  --gold-lt: #E8B94F;
  --green:   #2C6E49;
  --green-lt:#4A9E6E;
  --white:   #F5F4EF;
  --gray:    #8A96A3;
  --border:  rgba(200,151,26,.18);
  --card-bg: rgba(255,255,255,.04);
  --radius:  14px;
  --shadow:  0 8px 40px rgba(0,0,0,.45);
  --trans:   .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--navy); color: var(--white); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.section-tag { font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; display: block; }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.section-sub { color: var(--gray); max-width: 560px; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 96px 0; }

/* ── Divider ── */
.gold-line { width: 56px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); border-radius: 2px; margin: 1rem 0 1.5rem; }
.center { text-align: center; }
.center .gold-line { margin-inline: auto; }
.center .section-sub { margin-inline: auto; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  background: rgba(13,27,42,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.navbar.scrolled { background: rgba(13,27,42,.97); }
.nav-brand { display: flex; align-items: center; gap: .75rem; }
.nav-brand img { height: 44px; width: auto; }
.nav-brand span { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; letter-spacing: .04em; line-height: 1.15; }
.nav-brand span em { display: block; font-style: normal; font-size: .65rem; font-family: 'Inter', sans-serif; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .88rem; font-weight: 500; letter-spacing: .04em; position: relative; padding: .25rem 0; transition: color var(--trans); }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); border-radius: 2px; transition: width var(--trans); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { background: var(--gold); color: var(--navy); font-size: .82rem; font-weight: 700; padding: .55rem 1.25rem; border-radius: 8px; display: flex; align-items: center; gap: .4rem; transition: var(--trans); white-space: nowrap; }
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav ── */
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 998;
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column; gap: 1rem;
  transform: translateY(-110%);
  transition: transform var(--trans);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { font-size: 1rem; font-weight: 500; padding: .75rem 0; border-bottom: 1px solid var(--border); }
.mobile-nav .nav-cta { text-align: center; justify-content: center; margin-top: .5rem; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.0); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.92) 0%, rgba(13,27,42,.65) 60%, rgba(44,110,73,.35) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(200,151,26,.15); border: 1px solid var(--border);
  padding: .4rem 1rem; border-radius: 50px;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-lt);
  margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); color: #fff; margin-bottom: 1.2rem; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.1rem; color: rgba(245,244,239,.8); max-width: 580px; margin-bottom: 2.2rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy); font-weight: 700; font-size: .9rem;
  padding: .85rem 2rem; border-radius: 10px;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: var(--trans); box-shadow: 0 4px 24px rgba(200,151,26,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,151,26,.5); }
.btn-outline {
  border: 1.5px solid rgba(245,244,239,.35); color: var(--white);
  font-weight: 600; font-size: .9rem;
  padding: .85rem 2rem; border-radius: 10px;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: var(--trans);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.hero-scroll span { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,244,239,.5); }
.scroll-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: bounce 1.6s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ══════════════════════════════
   STATS BAR
══════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, var(--green) 0%, var(--navy2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 2.2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background var(--trans);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.05); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: .78rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(245,244,239,.65); margin-top: .35rem; }

/* ══════════════════════════════
   FEATURE CARDS
══════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--trans);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-lt));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans);
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(200,151,26,.4); background: rgba(255,255,255,.07); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.feature-card p { font-size: .88rem; color: var(--gray); line-height: 1.7; }

/* ══════════════════════════════
   PRODUCT CARDS
══════════════════════════════ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; margin-top: 3rem; }
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(200,151,26,.4); }
.product-img { height: 220px; width: 100%; object-fit: cover; transition: transform var(--trans); }
.product-card:hover .product-img { transform: scale(1.04); }
.product-body { padding: 1.5rem; }
.product-tag { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; display: block; }
.product-body h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.product-body p { font-size: .875rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.2rem; }
.product-specs { display: flex; flex-wrap: wrap; gap: .5rem; }
.spec-pill { font-size: .72rem; font-weight: 600; background: rgba(200,151,26,.12); border: 1px solid rgba(200,151,26,.25); color: var(--gold-lt); padding: .3rem .75rem; border-radius: 50px; }

/* ══════════════════════════════
   MARQUEE (PARTNERS)
══════════════════════════════ */
.marquee-section { padding: 64px 0; background: var(--navy2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.marquee-track { display: flex; gap: 2.5rem; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { flex-shrink: 0; background: rgba(255,255,255,.06); border: 1px solid var(--border); border-radius: 10px; padding: .75rem 1.25rem; display: flex; align-items: center; justify-content: center; transition: var(--trans); }
.marquee-item:hover { background: rgba(255,255,255,.12); border-color: rgba(200,151,26,.4); }
.marquee-item img { height: 48px; width: auto; object-fit: contain; filter: grayscale(60%) brightness(1.3); transition: filter var(--trans); }
.marquee-item:hover img { filter: grayscale(0%) brightness(1); }

/* ══════════════════════════════
   GALLERY GRID
══════════════════════════════ */
.gallery-grid { columns: 3; gap: 1rem; margin-top: 3rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; display: block; transition: transform var(--trans); }
.gallery-item::after { content: '🔍'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 2rem; background: rgba(13,27,42,.6); opacity: 0; transition: opacity var(--trans); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after { opacity: 1; }

/* ── Lightbox ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.92); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; cursor: pointer; color: #fff; line-height: 1; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 1.5rem; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--trans); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--navy); }

/* ══════════════════════════════
   ABOUT / TIMELINE
══════════════════════════════ */
.timeline { position: relative; padding-left: 2.5rem; margin-top: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--gold), var(--green)); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.92rem; top: .35rem; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,151,26,.2); }
.timeline-item h4 { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: .3rem; }
.timeline-item p { font-size: .9rem; color: var(--gray); line-height: 1.7; }

/* ── Location cards ── */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.location-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; text-align: center; transition: var(--trans);
}
.location-card:hover { transform: translateY(-4px); border-color: rgba(200,151,26,.4); }
.location-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.location-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.location-card p { font-size: .875rem; color: var(--gray); }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.contact-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.2rem; display: flex; flex-direction: column; gap: .75rem;
  transition: var(--trans);
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(200,151,26,.4); }
.contact-icon { font-size: 2rem; }
.contact-card h3 { font-size: 1rem; font-weight: 700; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; }
.contact-card a, .contact-card span { font-size: .95rem; color: var(--gray); transition: color var(--trans); display: block; }
.contact-card a:hover { color: var(--gold); }
.map-wrap { margin-top: 3rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 400px; display: block; border: 0; }

/* ══════════════════════════════
   CTA STRIP
══════════════════════════════ */
.cta-strip {
  background: linear-gradient(135deg, var(--green) 0%, var(--navy2) 100%);
  padding: 80px 0; text-align: center;
  border-top: 1px solid var(--border);
}
.cta-strip h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.cta-strip p { color: rgba(245,244,239,.72); max-width: 520px; margin: 0 auto 2rem; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #080f17; border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 50px; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; color: var(--gray); line-height: 1.75; max-width: 320px; }
.footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .875rem; color: var(--gray); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: var(--gray); flex-wrap: wrap; gap: .75rem; }

/* ══════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════ */
.page-hero {
  position: relative; padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-bottom: 1px solid var(--border); text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,151,26,.08) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: .8rem; color: var(--gray); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: var(--gray); max-width: 600px; margin: 1rem auto 0; font-size: 1.05rem; }

/* ══════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-l.visible { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-r.visible { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
/* ── Responsive two-column grid utility ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col-start {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.fac-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fac-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 3; gap: .5rem; }
  .stats-bar .container { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .two-col, .two-col-start { grid-template-columns: 1fr; gap: 2rem; }
  .fac-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { columns: 3; gap: .3rem; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .two-col, .two-col-start { grid-template-columns: 1fr; gap: 1.5rem; }
  .fac-img-grid { grid-template-columns: 1fr 1fr; }
  .fac-strip { grid-template-columns: 1fr 1fr; gap: .4rem; }
  /* Hide decorative right-column images on mobile for Our Story */
  .hide-mobile { display: none; }
}
