:root {
  --navy: #0f2444;

  /* 🟡 Gold (primary accent) */
  --gold: #c9972b;

  /* 🟡 Light gold (hover / highlight) */
  --gold-light: #e8b84b;

  /* 🟡 Pale gold (backgrounds / tints) */
  --gold-pale: #fdf8ee;

  --cream: #faf8f4;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7280;

  --border: rgba(201,151,43,0.2);

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text); overflow-x: hidden; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 60px;
  background: rgba(15,36,68,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,151,43,0.25);
  transition: padding 0.3s ease;
}
nav.scrolled { padding: 12px 60px; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark img{
  width: 50px; height: 50px; background: var(--gold); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white);
}
.nav-name { font-family: var(--font-display); font-size: 17px; color: var(--white); font-weight: 600; line-height: 1.1; }
.nav-tagline { font-size: 9px; color: var(--gold-light); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75);
  text-decoration: none; padding: 7px 14px; border-radius: 6px;
  transition: all 0.2s ease; letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(201,151,43,0.15); }
.nav-links .cta-btn { background: var(--gold); color: var(--white); font-weight: 600; padding: 8px 18px; border-radius: 6px; margin-left: 6px; }
.nav-links .cta-btn:hover { background: var(--gold-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; display: block; }

/* BUTTONS */
.btn-primary {
  background: var(--gold); color: var(--white);
  padding: 13px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  cursor: pointer; border: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s ease; letter-spacing: 0.2px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: 13px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  cursor: pointer; border: 1.5px solid rgba(255,255,255,0.3);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s ease;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #0f2444 0%, #1a3a6e 50%, #0f2444 100%);
  padding: 120px 60px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(201,151,43,0.03) 40px, rgba(201,151,43,0.03) 41px);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.page-hero h1 { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.8; }

/* SECTION */
.section { padding: 60px 60px; max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(32px,4vw,48px); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.8; max-width: 580px; }

/* HERO BADGE */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,151,43,0.15); border: 1px solid rgba(201,151,43,0.4);
  color: var(--gold-light); font-size: 11px; font-weight: 600;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
  letter-spacing: 0.8px; text-transform: uppercase;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* CTA BAND */
.cta-band { background: var(--navy); padding: 50px 60px; }
.cta-band-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--font-display); font-size: 36px; color: var(--white); font-weight: 700; }
.cta-band h2 em { color: var(--gold-light); font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 15px; margin-top: 6px; }

/* FOOTER */
footer { background: #070e1d; padding: 50px 60px 28px; border-top: 1px solid rgba(201,151,43,0.2); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 12px; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: var(--gold-light); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-regs { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-regs span { font-size: 10px; color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); padding: 3px 8px; border-radius: 4px; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  nav.scrolled { padding: 10px 24px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 20px 24px; gap: 4px; border-bottom: 1px solid rgba(201,151,43,0.2); }
  .hamburger { display: flex; }
  .section { padding: 60px 24px; }
  .cta-band { padding: 50px 24px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .page-hero { padding: 120px 24px 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 40px 24px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}



/* GRID LAYOUT */
.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  padding: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================= */
/* 🌐 SECTION STYLING */
/* ========================= */

.clients-section {
  padding: 60px 20px;
  background: var(--cream);
}

.section-wrap {
  max-width: 1100px;
  margin: auto;
}

/* ========================= */
/* 📦 GRID LAYOUT */
/* ========================= */

/* (clients-grid defined above) */

/* ========================= */
/* 🧊 CARD (GLASS EFFECT) */
/* ========================= */

.clients-block {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.clients-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ========================= */
/* 🏷️ LABEL BADGE */
/* ========================= */

.clients-block-label {
  background: rgba(201,151,43,0.1);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

/* ========================= */
/* 📝 HEADING */
/* ========================= */

.clients-block h3 {
  color: var(--navy);
  margin-bottom: 18px;
  font-size: 20px;
}

/* ========================= */
/* 👥 CLIENT ITEM */
/* ========================= */

.client-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  transition: 0.3s;
}

.client-item:hover {
  background: rgba(201,151,43,0.06);
}

/* ========================= */
/* 🧩 LOGO BOX */
/* ========================= */

.client-logo-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), #1a3660);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-logo-box.green {
  background: linear-gradient(135deg, #c9972b, #e8b84b);
}

.client-logo-box img {
  width: 28px;
  height: auto;
}

/* ========================= */
/* 📝 TEXT */
/* ========================= */

.client-name {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}

.client-sub {
  font-size: 13px;
  color: var(--muted);
}

/* ========================= */
/* 🖼️ GALLERY */
/* ========================= */

.gallery {
  column-count: 2;
  column-gap: 12px;
  margin-top: 10px;
}

.gallery img {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 14px;
  transition: 0.3s;
  cursor: pointer;
  object-fit: cover;
}

.gallery img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    column-count: 1;
  }
}