@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@400;600;700&display=swap');

:root {
  --navy: #0a1628;
  --steel: #1c3557;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #f4f6f9;
  --muted: #8a9bb0;
  --dark: #060e1a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--white); font-family: 'Barlow', sans-serif; overflow-x: hidden; }

/* ===================== NAV ===================== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 12px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(6,14,26,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  backdrop-filter: blur(12px);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { 
  height: 64px; width: auto; display: block;
  filter: drop-shadow(0px 0px 4px rgba(255,255,255,0.3));
}
.nav-links { list-style: none; display: flex; gap: 32px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 0.73rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 9px 20px !important; font-weight: 700 !important; border-radius: 2px; letter-spacing: 1.5px !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: rgba(6,14,26,0.98); padding: 20px 24px; border-bottom: 1px solid rgba(201,168,76,0.15); z-index: 99; flex-direction: column; gap: 0; }
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--muted); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(201,168,76,0.08); transition: color 0.3s; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
.mobile-menu a:last-child { border-bottom: none; color: var(--gold); font-weight: 700; margin-top: 8px; }

/* ===================== HERO ===================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 0 60px; overflow: hidden; }
.hero-bg-photo { position: absolute; inset: 0; z-index: 0; }
.hero-bg-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-bg-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(6,14,26,0.96) 40%, rgba(6,14,26,0.65) 100%); }
.grid-lines { position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 120px 0 80px; }
.hero-logo-img { 
  height: 180px; width: auto; display: block; margin-bottom: 40px;
  filter: drop-shadow(0px 2px 8px rgba(0,0,0,0.8)) drop-shadow(0px 0px 20px rgba(201,168,76,0.2));
}

.eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 6vw, 5.5rem); line-height: 0.95; letter-spacing: 2px; margin-bottom: 24px; }
h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 1rem; line-height: 1.75; color: var(--muted); max-width: 500px; margin-bottom: 36px; font-weight: 300; }
.btn-group { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--navy); padding: 14px 32px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: background 0.3s, transform 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(201,168,76,0.4); color: var(--gold); padding: 14px 32px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; text-decoration: none; background: transparent; cursor: pointer; transition: all 0.3s; display: inline-block; }
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* scroll indicator */
.scroll-indicator { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ===================== PAGE HERO ===================== */
.page-hero { padding: 130px 60px 70px; position: relative; overflow: hidden; border-bottom: 1px solid rgba(201,168,76,0.15); }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(0.25); }
.page-hero-content { position: relative; z-index: 2; }

/* ===================== TAGLINE BAND ===================== */
.tagline-band { background: var(--steel); padding: 22px 60px; display: flex; align-items: center; justify-content: center; gap: 18px; border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); }
.tagline-band p { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 3px; text-align: center; }
.tagline-band p span { color: var(--gold); }
.diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ===================== EXPERIENCE BANNER ===================== */
.exp-banner { background: var(--gold); padding: 18px 60px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.exp-banner p { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 3px; color: var(--navy); text-align: center; }
.exp-banner strong { font-size: 1.3rem; }

/* ===================== SECTIONS ===================== */
section { padding: 100px 60px; }
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 3.5vw, 3.2rem); letter-spacing: 2px; margin-bottom: 14px; line-height: 1.05; }
.section-intro { color: var(--muted); font-size: 0.95rem; line-height: 1.75; max-width: 520px; margin-bottom: 64px; font-weight: 300; }

/* ===================== PHOTO BANNER ===================== */
.photo-banner { position: relative; height: 380px; overflow: hidden; }
.photo-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; filter: brightness(0.4); }
.photo-banner-overlay { position: absolute; inset: 0; display: flex; align-items: center; padding: 0 60px; background: linear-gradient(to right, rgba(6,14,26,0.88) 45%, transparent); }
.photo-banner-overlay h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: 2px; max-width: 480px; }
.photo-banner-overlay h2 em { font-style: normal; color: var(--gold); }
.photo-banner-overlay p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; max-width: 400px; font-weight: 300; margin-top: 14px; }

/* ===================== PHOTO SIDE ===================== */
.photo-side { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.photo-side-img { position: relative; overflow: hidden; }
.photo-side-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); transition: filter 0.4s; }
.photo-side-img:hover img { filter: brightness(0.7); }
.photo-side-content { background: var(--navy); padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }

/* ===================== SERVICES ===================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.service-card { background: var(--navy); padding: 40px 28px; border-top: 3px solid transparent; transition: border-color 0.3s, background 0.3s; }
.service-card:hover { border-top-color: var(--gold); background: #0d1f38; }
.service-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--gold); line-height: 1; margin-bottom: 16px; opacity: 0.9; }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 0.82rem; line-height: 1.7; color: var(--muted); font-weight: 300; }

/* ===================== STEPS ===================== */
.steps-section { background: var(--navy); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 48px; position: relative; }
.steps::before { content: ''; position: absolute; top: 25px; left: 10%; right: 10%; height: 1px; background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.1)); }
.step { position: relative; z-index: 1; padding: 0 14px; text-align: center; }
.step-circle { width: 50px; height: 50px; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.step h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.76rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ===================== PARTNERS ===================== */
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 48px; }
.partner-card { background: var(--navy); padding: 40px; display: flex; align-items: flex-start; gap: 24px; border-top: 3px solid transparent; transition: all 0.3s; }
.partner-card:hover { background: var(--steel); border-top-color: var(--gold); }
.partner-flag { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); }
.partner-info { flex: 1; }
.partner-info h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.partner-info p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; font-weight: 300; }
.partner-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); padding: 4px 10px; white-space: nowrap; align-self: flex-start; flex-shrink: 0; }

/* ===================== FIELD PHOTO GALLERY ===================== */
.photo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 48px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s, filter 0.4s; filter: brightness(0.65); }
.gallery-item:hover img { transform: scale(1.05); filter: brightness(0.85); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 14px 12px; background: linear-gradient(to top, rgba(6,14,26,0.9), transparent); font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

/* ===================== CLIENTS ===================== */
.clients-section { background: var(--navy); }
.clients-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.client-tag { background: var(--steel); border: 1px solid rgba(201,168,76,0.15); padding: 10px 20px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.76rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); transition: all 0.3s; }
.client-tag:hover { border-color: var(--gold); color: var(--white); }

/* ===================== VALUES ===================== */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
.value-card { background: var(--navy); padding: 32px 26px; border-left: 3px solid var(--gold); }
.value-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.88rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ===================== STATS ===================== */
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.stat-card { background: var(--steel); padding: 36px 28px; text-align: center; }
.big-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.2rem; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-card p { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-family: 'Barlow Condensed', sans-serif; }

/* ===================== CTA ===================== */
.cta-section { background: var(--steel); padding: 80px 60px; text-align: center; }
.cta-section .section-label { justify-content: center; }
.cta-section .cta-body { color: var(--muted); font-size: 0.95rem; max-width: 440px; margin: 0 auto 32px; font-weight: 300; line-height: 1.75; }
.cta-emails { display: flex; justify-content: center; gap: 28px; margin-top: 24px; flex-wrap: wrap; }
.cta-email { font-family: 'Barlow Condensed', sans-serif; font-size: 0.76rem; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; }
.cta-email a { color: var(--gold); text-decoration: none; }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-info h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.contact-item { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(201,168,76,0.1); }
.contact-item:last-child { border-bottom: none; }
.contact-item a { color: var(--gold); text-decoration: none; font-size: 0.92rem; }
.contact-item p { color: var(--muted); font-size: 0.82rem; margin-top: 5px; font-weight: 300; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 5px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; background: var(--navy); border: 1px solid rgba(201,168,76,0.2); color: var(--white); padding: 12px 14px; font-family: 'Barlow', sans-serif; font-size: 0.88rem; font-weight: 300; outline: none; transition: border-color 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form select option { background: var(--navy); }
.contact-form button { border: none; width: 100%; font-size: 0.82rem; cursor: pointer; padding: 14px; }

/* ===================== ABOUT ===================== */
.about-body p { font-size: 0.92rem; line-height: 1.8; color: var(--muted); font-weight: 300; margin-bottom: 18px; }
.about-body p strong { color: var(--white); font-weight: 600; }

/* ===================== FOOTER ===================== */
.gold-bar { height: 2px; background: linear-gradient(to right, var(--gold), transparent); }
footer { background: var(--dark); padding: 40px 60px; border-top: 1px solid rgba(201,168,76,0.1); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { text-decoration: none; display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo img { 
  height: 56px; width: auto; display: block;
  filter: drop-shadow(0px 0px 4px rgba(255,255,255,0.25));
}
.footer-tagline { font-family: 'Barlow Condensed', sans-serif; font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-top: 5px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--muted); font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.7rem; color: var(--muted); text-align: right; line-height: 1.5; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.8s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ===================== MOBILE ===================== */
@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 0 20px; }
  .hero-content { padding: 100px 0 60px; }
  .hero-logo-img { height: 120px; margin-bottom: 20px; filter: drop-shadow(0px 2px 6px rgba(0,0,0,0.8)) drop-shadow(0px 0px 14px rgba(201,168,76,0.2)); }
  h1 { font-size: 2.6rem; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 2rem; }
  .scroll-indicator { display: none; }

  section { padding: 56px 20px; }
  .tagline-band { padding: 18px 20px; flex-wrap: wrap; }
  .tagline-band p { font-size: 0.85rem; letter-spacing: 2px; }
  .exp-banner { padding: 14px 20px; }
  .exp-banner p { font-size: 0.85rem; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card { padding: 28px 20px; }

  .steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps::before { display: none; }
  .step { padding: 0; }

  .partners-grid { grid-template-columns: 1fr; }
  .partner-card { padding: 28px 20px; flex-direction: column; }

  .photo-gallery { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr; gap: 2px; }

  .photo-banner { height: 260px; }
  .photo-banner-overlay { padding: 0 20px; }
  .photo-banner-overlay h2 { font-size: 1.6rem; }

  .photo-side { grid-template-columns: 1fr; }
  .photo-side-img { height: 260px; }
  .photo-side-content { padding: 40px 20px; }

  .page-hero { padding: 110px 20px 56px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .cta-section { padding: 64px 20px; }

  footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-copy { text-align: left; }

  h2 { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .photo-gallery { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
}


/* ===================== BRANDS ===================== */
.brands-section { background: var(--dark); padding: 100px 60px; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-top: 52px;
}
.brand-tile {
  background: var(--navy);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.06);
  transition: all 0.3s;
  min-height: 90px;
}
.brand-tile:hover { background: var(--steel); border-color: rgba(201,168,76,0.25); }
.brand-tile img {
  max-height: 48px; max-width: 120px; width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.8);
  opacity: 0.75;
  transition: all 0.3s;
}
.brand-tile:hover img { filter: grayscale(0%) brightness(1); opacity: 1; }
.brand-tile span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); text-align: center; transition: color 0.3s;
}
.brand-tile:hover span { color: var(--white); }
.brands-note {
  font-size: 0.75rem; color: var(--muted); font-weight: 300;
  margin-top: 28px; text-align: center; letter-spacing: 1px;
  border-top: 1px solid rgba(201,168,76,0.1); padding-top: 20px;
}

@media (max-width: 900px) {
  .brands-section { padding: 64px 24px; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}
