/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:       #0B1A2C;
  --navy-mid:   #132338;
  --gold:       #C9A557;
  --gold-muted: rgba(201,165,87,0.15);
  --off-white:  #F7F6F3;
  --paper:      #F2F0EC;
  --text:       #1a1a2e;
  --text-muted: #5a6a7a;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(11,26,44,0.10);
  --shadow-lg:  0 8px 40px rgba(11,26,44,0.18);
  --transition: 0.28s ease;
  --max-w:      1200px;
}

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

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ── Utilities ─────────────────────────────────────────────── */
.container { width: 92%; max-width: var(--max-w); margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title span { color: var(--gold); }
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: #b8932e; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.82rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--gold-muted); }

/* ── Reveal animation ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── ───────────────── SECTIONS BELOW ──────────────────────── */

/* ── HERO ──────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 40%, rgba(201,165,87,0.08) 0%, transparent 55%),
    linear-gradient(135deg, rgba(201,165,87,0.04) 25%, transparent 25%),
    linear-gradient(225deg, rgba(201,165,87,0.04) 25%, transparent 25%);
  background-size: auto, 48px 48px, 48px 48px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-card-wrap { display: none; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,165,87,0.12);
  border: 1px solid rgba(201,165,87,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem 0.4rem 0.55rem;
  margin-bottom: 1.75rem;
}
.hero-badge-logo {
  height: 18px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.hero-badge span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.hero-badge-text {
  color: var(--gold) !important;
  font-size: 0.78rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.4rem;
  font-weight: 700;
}
.hero-title span { color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.25rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.82rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.22);
  transition: var(--transition);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* hero card */
.hero-card-wrap { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,165,87,0.25);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}
.hero-card-logo { text-align: center; margin-bottom: 1.5rem; }
.hero-card-logo img { height: 60px; width: auto; margin: 0 auto; object-fit: contain; }
.hero-card-divider { height: 1px; background: rgba(201,165,87,0.2); margin-bottom: 1.5rem; }
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-card-tag {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  text-align: center;
  border-top: 1px solid rgba(201,165,87,0.12);
  padding-top: 1rem;
}
.hero-card-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,165,87,0.18) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── TRUST STRIP ───────────────────────────────────────────── */
#trust-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,165,87,0.15);
  border-bottom: 1px solid rgba(201,165,87,0.15);
  padding: 1.4rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-label, .trust-right {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.trust-logos img {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity var(--transition);
}
.trust-logos img:hover { opacity: 1; }
.trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.18); }

/* ── NAV ───────────────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#site-nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.nav-logo img { height: 44px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-switcher { display: flex; gap: 0.25rem; }
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
  transition: var(--transition);
  letter-spacing: 0.06em;
}
.lang-btn:hover, .lang-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,165,87,0.1);
}
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
#hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
@media (max-width: 840px) {
  #hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
}

/* ── SERVICES ──────────────────────────────────────────────── */
#services {
  padding: 100px 0;
  background: var(--off-white);
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-sub { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 2.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,165,87,0.12);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.service-bullets {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.service-bullets li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── STATS BAND ────────────────────────────────────────────── */
#stats-band {
  background: var(--navy);
  padding: 64px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 1rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(201,165,87,0.22);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .stat-divider { display: none; }
  .stats-grid { gap: 0.5rem; }
  .stat-item { flex: 1 1 44%; border-bottom: 1px solid rgba(201,165,87,0.1); padding-bottom: 1.25rem; }
}

/* ── TEAM ──────────────────────────────────────────────────── */
#team {
  padding: 100px 0;
  background: var(--off-white);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 0;
}
@media (max-width: 860px) {
  .team-grid { grid-template-columns: 1fr; }
}
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,165,87,0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,165,87,0.3);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.team-avatar--ag { background: linear-gradient(135deg, #1a4a7a 0%, #0B1A2C 100%); }
.team-avatar--bu { background: linear-gradient(135deg, #7a4a1a 0%, #4a2a08 100%); }
.team-body { display: flex; flex-direction: column; gap: 0.9rem; }
.team-meta { display: flex; flex-direction: column; gap: 0.35rem; }
.team-meta h3 { font-size: 1.3rem; color: var(--navy); }
.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.team-firm {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.15rem;
}
.team-firm-logo {
  height: 16px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
}
.team-firm span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.team-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.72;
}
.team-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid var(--gold-muted);
  padding-top: 1rem;
  margin-top: 0.25rem;
}
.team-highlights li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.team-highlights li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.52em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── ABOUT ─────────────────────────────────────────────────── */
#about {
  padding: 100px 0;
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.about-text .section-title { margin-bottom: 1.5rem; }
.about-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.about-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 0.5rem;
}
.pillar {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.pillar-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--gold-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.pillar p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CREDENTIALS ───────────────────────────────────────────── */
#credentials {
  padding: 100px 0;
  background: var(--off-white);
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.cred-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,165,87,0.1);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.cred-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.cred-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper);
}
.cred-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.cred-card:hover .cred-thumb img { transform: scale(1.04); }
.cred-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,26,44,0.62);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.cred-card:hover .cred-overlay { opacity: 1; }
.cred-overlay svg { width: 28px; height: 28px; color: var(--gold); }
.cred-overlay span { font-size: 0.8rem; font-weight: 600; color: #fff; letter-spacing: 0.04em; }
.cred-info {
  padding: 1.1rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.cred-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.cred-info h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.cred-info p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ── LIGHTBOX ──────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(11,26,44,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox img {
  max-width: min(90vw, 900px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lb-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lb-close:hover { background: rgba(255,255,255,0.2); }

/* ── CLIENT PORTFOLIO ──────────────────────────────────────── */
#portfolio {
  padding: 100px 0 80px;
  background: var(--paper);
  overflow: hidden;
}
#portfolio .section-header { margin-bottom: 3.5rem; }

.marquee-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 0 1.5rem;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.25rem 2.5rem;
  cursor: default;
  flex-shrink: 0;
}
.logo-item img {
  height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.45);
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
  display: block;
}
.logo-item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.08);
}
.logo-item span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.logo-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.port-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.65;
  text-align: center;
  margin-top: 1rem;
}

/* ── INTERNATIONAL EXPERIENCE ──────────────────────────────── */
#intl-experience {
  padding: 100px 0;
  background: var(--navy);
}
#intl-experience .section-label { color: rgba(201,165,87,0.85); }
#intl-experience .section-title { color: #fff; }
#intl-experience .section-title span { color: var(--gold); }
#intl-experience .section-sub { color: rgba(255,255,255,0.6); }
.intl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 860px) {
  .intl-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.intl-text { display: flex; flex-direction: column; gap: 1rem; }
.intl-text .btn-primary { align-self: flex-start; margin-top: 0.5rem; }
.intl-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 500px) {
  .intl-cards { grid-template-columns: 1fr; }
}
.intl-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,165,87,0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: background var(--transition), border-color var(--transition);
}
.intl-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,165,87,0.4);
}
.intl-card-icon {
  width: 44px; height: 44px;
  background: var(--gold-muted);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.intl-card-icon svg { width: 22px; height: 22px; }
.intl-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}
.intl-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ── FOOTER ────────────────────────────────────────────────── */
#footer { background: var(--navy); border-top: 1px solid rgba(201,165,87,0.12); }
.footer-main { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
}
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
.footer-logo img { height: 44px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color var(--transition), color var(--transition);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-socials svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col a { color: inherit; }
.footer-col li:hover, .footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer-contact svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 0.2em;
  opacity: 0.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.1rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-inner span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-lang { display: flex; gap: 0.25rem; }

/* ── CONTACT ───────────────────────────────────────────────── */
#contact {
  padding: 100px 0;
  background: var(--off-white);
}
#contact .section-header { margin-bottom: 2.5rem; }

/* tabs */
.contact-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  background: #fff;
  border: 1px solid rgba(201,165,87,0.18);
  border-radius: var(--radius-lg);
  padding: 0.35rem;
  width: fit-content;
}
.contact-tab-btn {
  padding: 0.65rem 1.5rem;
  border-radius: calc(var(--radius-lg) - 4px);
  border: none;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.contact-tab-btn.active {
  background: var(--navy);
  color: #fff;
}
.contact-tab-btn:hover:not(.active) { color: var(--navy); background: var(--gold-muted); }

/* panes */
.contact-tab-pane { display: none; }
.contact-tab-pane.active { display: block; }

/* general layout */
.contact-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
.contact-info h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.contact-info > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.35rem; }
.contact-detail-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-detail-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--gold-muted);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-item > div {
  display: flex; flex-direction: column; gap: 0.2rem;
}
.contact-detail-item span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-detail-item a {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-detail-item a:hover { color: var(--gold); }

/* shared form styles */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-group label .req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.72rem 1rem;
  border: 1.5px solid rgba(11,26,44,0.14);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,165,87,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { align-self: flex-start; margin-top: 0.5rem; }

/* audit form extras */
.audit-intro {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
  color: #fff;
}
.audit-intro-icon { color: var(--gold); flex-shrink: 0; }
.audit-intro-icon svg { width: 48px; height: 48px; }
.audit-intro h3 { font-size: 1.15rem; color: #fff; margin-bottom: 0.4rem; }
.audit-intro p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

.audit-form { gap: 0; }
.audit-section {
  border: 1px solid rgba(201,165,87,0.14);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.audit-section-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}
.audit-step {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.audit-section-header h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.audit-section-divider {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--gold-muted);
  padding-top: 1rem;
  margin-top: 0.25rem;
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  padding: 0.75rem 0;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}
.audit-submit-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.audit-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}
