/* ═══════════════════════════════════════════
   RESET & VARIABLES
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:   #0A0A0A;
  --gold:    #C9A84C;
  --gold-lt: #E8C87A;
  --gold-dk: #8B6F2E;
  --white:   #FFFFFF;
  --off:     #F2F0EB;
  --gray:    #888888;
  --gray-lt: #CCCCCC;
  --fd: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
  --nav-h: 68px;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  font-weight: 400;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════════ */
.label {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold-bar {
  width: 44px; height: 3px;
  background: var(--gold);
  margin-bottom: 18px;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all .22s ease;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--black);
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 48px;
  border-bottom: 1px solid #181818;
}
.nav-inner {
  width: 100%; max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: var(--fd);
  font-weight: 900;
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 0.14em;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-lt);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
	.nav-links .btn.btn-gold {
  color: var(--black);
}
.nav-cta { font-size: 13px !important; padding: 10px 22px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold);
  transition: all .25s;
}
.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 menu */
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--black);
  border-top: 1px solid #1a1a1a;
  padding: 32px 48px;
  z-index: 998;
  flex-direction: column; gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { align-self: flex-start; margin-top: 8px; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: var(--black);
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.hero-bg-char {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(300px, 40vw, 600px);
  color: #101010;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  padding: 0 48px 72px;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.hero-label { margin-bottom: 28px; }
.hero-headline {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(64px, 10vw, 148px);
  line-height: 0.88;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.hero-headline .gold { color: var(--gold); }
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-sub {
  font-size: clamp(15px, 1.5vw, 19px);
  color: var(--gray-lt);
  font-weight: 300;
  line-height: 1.65;
  max-width: 480px;
}
.hero-btns {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 12px;
  flex-shrink: 0; width: fit-content;
}

.hero-btns .btn {
  width: 100%;
  text-align: center;
}

/* ═══════════════════════════════════════════
   TICKER
═══════════════════════════════════════════ */
.ticker {
  background: var(--gold);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex; gap: 64px;
  animation: ticker 22s linear infinite;
}
.ticker-item {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
}
.ticker-dot { opacity: .4; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════
   SECTIONS SHARED
═══════════════════════════════════════════ */
.section-wrap {
  width: 100%; max-width: 1400px;
  margin: 0 auto; padding: 0 48px;
}

/* ═══════════════════════════════════════════
   INTRO
═══════════════════════════════════════════ */
.intro {
  background: var(--white);
  padding: 100px 0;
}
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-headline {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: -0.01em;
}
.intro-headline .gold { color: var(--gold); }
.intro-body p {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}
.intro-body p strong { font-weight: 600; color: var(--black); }
.intro-body p:last-of-type { margin-bottom: 32px; }

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.stats { background: var(--black); }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 56px 40px;
  border-right: 1px solid #1a1a1a;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(56px, 6vw, 88px);
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 300;
  line-height: 1.45;
  max-width: 140px;
}

/* ═══════════════════════════════════════════
   NEARSHORE
═══════════════════════════════════════════ */
.nearshore {
  background: var(--off);
  padding: 100px 0;
}
.nearshore-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.nearshore-headline {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.nearshore-headline .gold { color: var(--gold); }
.nearshore-desc {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 300;
  color: #555;
  line-height: 1.7;
  margin-bottom: 36px;
}
.nearshore-list { list-style: none; }
.nearshore-list li {
  border-top: 1px solid #d8d4cc;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: start;
}
.nearshore-list li:last-child { border-bottom: 1px solid #d8d4cc; }
.ns-num {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 3px;
}
.ns-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 5px;
}
.ns-body {
  font-size: 14px;
  color: #666;
  font-weight: 300;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
  background: var(--black);
  padding: 100px 0;
}
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.services-headline {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(60px, 7.5vw, 100px);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.02em;
}
.services-headline .gold { color: var(--gold); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #181818;
}
.service-card {
  background: var(--black);
  padding: 44px 36px;
  transition: background .25s;
}
.service-card:hover { background: #0f0f0f; }
.service-bar {
  width: 40px; height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}
.service-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}
.service-body {
  font-size: 14px;
  color: #666;
  font-weight: 300;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CASES
═══════════════════════════════════════════ */
.cases {
  background: var(--white);
  padding: 100px 0 0;
}
.cases-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.cases-headline {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: -0.02em;
}
.cases-headline .gold { color: var(--gold); }
.cases-link-all {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  align-self: flex-end;
  margin-bottom: 6px;
  transition: color .2s, border-color .2s;
}
.cases-link-all:hover { color: var(--gold-dk); border-color: var(--gold-dk); }
.cases-grid {
  display: grid;
  grid-template-columns: 7fr 3fr;
	background: #000000;
}
.case-main {
  position: relative;
  height: 580px;
  background: #111;
  overflow: hidden;
}
.case-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
  transition: opacity .4s, transform .4s;
}
.case-main:hover img { opacity: 1; transform: scale(1.02); }	
.case-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, transparent 100%);
}
.case-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.case-title {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}
.cases-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.case-small {
  position: relative;
  overflow: hidden;
  background: #111;
  border-left: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.case-small:last-child { border-bottom: none; }
.case-small img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
  transition: opacity .4s, transform .4s;
}
.case-small:hover img { opacity: 1; transform: scale(1.03); }
.case-overlay-sm {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, transparent 100%);
}
.case-title-sm {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
}

/* Placeholder images (if no real image) */
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #141414 0%, #1c1710 60%, #0a0a0a 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd);
  font-weight: 900;
  font-size: 80px;
  color: #1e1e1e;
  letter-spacing: -0.03em;
}

/* ═══════════════════════════════════════════
   FOUNDER
═══════════════════════════════════════════ */
.founder {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.founder-img {
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
  min-height: 500px;
}
.founder-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.founder-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-weight: 900; font-size: 120px;
  color: #1a1a1a;
}
.founder-img-caption {
  position: absolute; bottom: 32px; left: 32px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.founder-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-headline {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.founder-headline .gold { color: var(--gold); }
.founder-body {
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 300;
  color: var(--gray-lt);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.founder-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.tag {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dk);
  padding: 7px 16px;
}

/* ═══════════════════════════════════════════
   CLIENTS
═══════════════════════════════════════════ */
.clients {
  background: var(--off);
  padding: 100px 0;
}
.clients-headline {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 56px;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.client-cell {
  border: 1px solid #d8d4cc;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: -1px 0 0 -1px;
  transition: background .2s;
}
.client-cell:hover { background: #ebe8e2; }
.client-name {
  font-size: 12px;
  font-weight: 500;
  color: #777;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  background: var(--black);
  padding: 100px 0 80px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-headline {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.contact-headline .gold { color: var(--gold); }
.contact-intro {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  color: var(--gray-lt);
  line-height: 1.65;
  max-width: 440px;
}
.contact-right { padding-top: 8px; }
.contact-person {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 44px;
}
.contact-avatar {
  width: 72px; height: 72px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  overflow: hidden;
  flex-shrink: 0;
}
.contact-avatar img { width: 100%; height: 100%; object-fit: cover; }
.contact-avatar-init {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-weight: 900; font-size: 22px; color: var(--gold);
}
.contact-name {
  font-family: var(--fd);
  font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--white); margin-bottom: 2px;
}
.contact-role {
  font-size: 12px; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 300;
  margin-bottom: 6px;
}
.contact-email {
  font-size: 14px; color: var(--gold); font-weight: 400;
  transition: color .2s;
}
.contact-email:hover { color: var(--gold-lt); }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-row { display: flex; gap: 20px; align-items: baseline; }
.contact-lbl {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: #444; font-weight: 500;
  min-width: 52px;
}
.contact-val { font-size: 14px; color: #aaa; font-weight: 300; }
.contact-val.gold-text { color: var(--gold); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid #181818;
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
}
.footer-logo-text {
  font-family: var(--fd);
  font-weight: 900; font-size: 20px;
  color: var(--gold); letter-spacing: 0.12em;
}
.footer-tagline {
  font-size: 12px; color: #3a3a3a;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.footer-links {
  display: flex; gap: 28px; list-style: none;
}
.footer-links a {
  font-size: 12px; color: #444;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   EAGLE SVG (inline — reuse as needed)
═══════════════════════════════════════════ */
.eagle-svg { display: block; }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .section-wrap { padding: 0 32px; }

  /* Nav */
  .nav-links { gap: 24px; }
  .nav-links li:not(:last-child):nth-child(n+3) { display: none; }

  /* Hero */
  .hero-content { padding: 0 32px 60px; }
  .hero-btns { align-items: flex-start; }

  /* Intro */
  .intro-inner { gap: 48px; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid #1a1a1a; }
  .stat:nth-child(odd) { border-right: 1px solid #1a1a1a; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  /* Nearshore */
  .nearshore-inner { gap: 48px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Cases */
  .cases-grid { grid-template-columns: 1fr; }
  .case-main { height: 480px; }
  .cases-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: 280px; }

  /* Founder */
  .founder-content { padding: 64px 48px; }

  /* Clients */
  .clients-grid { grid-template-columns: repeat(4, 1fr); }

  /* Contact */
  .contact-inner { gap: 48px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  nav { padding: 0 20px; }
  .section-wrap { padding: 0 20px; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-content { padding: 0 20px 52px; }
  .hero-headline { font-size: clamp(52px, 14vw, 80px); margin-bottom: 32px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero-btns { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .hero-sub { max-width: 100%; }
  .hero-bg-char { display: none; }

  /* Ticker */
  .ticker-item { font-size: 14px; }

  /* Intro */
  .intro { padding: 72px 0; }
  .intro-inner { grid-template-columns: 1fr; gap: 36px; }
  .intro-headline { font-size: clamp(44px, 12vw, 64px); }

  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat { padding: 36px 24px; }
  .stat-num { font-size: 56px; }

  /* Nearshore */
  .nearshore { padding: 72px 0; }
  .nearshore-inner { grid-template-columns: 1fr; gap: 40px; }
  .nearshore-headline { font-size: clamp(40px, 10vw, 60px); }

  /* Services */
  .services { padding: 72px 0; }
  .services-head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
  .services-headline { font-size: clamp(52px, 13vw, 76px); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }

  /* Cases */
  .cases { padding: 72px 0 0; }
  .cases-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .cases-headline { font-size: clamp(48px, 12vw, 70px); }
  .cases-grid { grid-template-columns: 1fr; }
  .case-main { height: 340px; }
  .cases-side { grid-template-columns: 1fr; grid-template-rows: auto; }
  .case-small { height: 240px; border-left: none; border-top: 1px solid #1a1a1a; }

  /* Founder */
  .founder { grid-template-columns: 1fr; }
  .founder-img { min-height: 380px; }
  .founder-content { padding: 52px 20px; }
  .founder-headline { font-size: clamp(40px, 10vw, 60px); }
  .founder-body { max-width: 100%; }

  /* Clients */
  .clients { padding: 72px 0; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-cell { padding: 18px 12px; }
  .client-name { font-size: 11px; }

  /* Contact */
  .contact { padding: 72px 0 60px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-headline { font-size: clamp(56px, 14vw, 80px); }

  /* Footer */
  footer { padding: 28px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-tagline { display: none; }
}

/* ═══════════════════════════════════════════
   MOBILE SMALL (max 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .founder-tags { gap: 6px; }
  .tag { font-size: 11px; padding: 6px 12px; }
  .stat-label { font-size: 13px; max-width: 120px; }
}






*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:   #0A0A0A;
  --gold:    #C9A84C;
  --gold-lt: #E8C87A;
  --gold-dk: #8B6F2E;
  --white:   #FFFFFF;
  --off:     #F2F0EB;
  --gray:    #888888;
  --gray-lt: #CCCCCC;
  --fd: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
  --nav-h: 68px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--off); color: var(--black); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color .2s; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--black); height: var(--nav-h);
  display: flex; align-items: center; padding: 0 48px;
  border-bottom: 1px solid #181818;
}
.nav-inner {
  width: 100%; max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-text { font-family: var(--fd); font-weight: 900; font-size: 24px; color: var(--gold); letter-spacing: .14em; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--gray-lt); letter-spacing: .05em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
	.btn.btn-gold {  color: var(--black);}
.btn-gold-sm { background: var(--gold) !important; color: var(--black) !important; padding: 10px 22px; font-family: var(--fd); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.btn-gold-sm:hover { background: var(--gold-lt) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all .25s; }
.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-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--black); border-top: 1px solid #1a1a1a; padding: 32px 48px; z-index: 998; flex-direction: column; gap: 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--fd); font-size: 28px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .06em; }
.mobile-menu a:hover { color: var(--gold); }
	
	/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all .22s ease;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ── HERO ── */
.page-hero {
  background: var(--black);
  padding-top: var(--nav-h);
}
.page-hero-inner {
  max-width: 1400px; margin: 0 auto; padding: 80px 48px 0;
}
.page-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 36px; transition: gap .2s;
}
.page-back:hover { gap: 14px; color: var(--gold-lt); }
.hero-label {
  font-size: 12px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.page-headline {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(72px, 10vw, 140px);
  line-height: .88; text-transform: uppercase;
  color: var(--white); letter-spacing: -.02em;
  padding-bottom: 72px;
}
.page-headline .gold { color: var(--gold); }
.gold-strip { height: 4px; background: var(--gold); }

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--white);
  padding: 72px 0;
}
.intro-strip-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.intro-strip-headline {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: .95; text-transform: uppercase;
  color: var(--black); letter-spacing: -.01em;
}
.intro-strip-headline .gold { color: var(--gold); }
.intro-strip-body p {
  font-size: clamp(15px, 1.4vw, 17px); font-weight: 300;
  color: #444; line-height: 1.75; margin-bottom: 16px;
}
.intro-strip-body p:last-child { margin-bottom: 0; }
.intro-strip-body strong { font-weight: 600; color: var(--black); }

/* ── PERKS ── */
.perks {
  background: var(--black);
  padding: 72px 0;
}
.perks-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 48px;
}
.perks-label {
  font-size: 12px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 40px;
}
.perks-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: #181818;
}
.perk {
  background: var(--black); padding: 36px 28px;
}
.perk-bar { width: 36px; height: 3px; background: var(--gold); margin-bottom: 20px; }
.perk-title {
  font-family: var(--fd); font-weight: 700; font-size: 18px;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--white); margin-bottom: 10px; line-height: 1.1;
}
.perk-body { font-size: 14px; color: #666; font-weight: 300; line-height: 1.65; }

/* ── JOBS LIST ── */
.jobs-section {
  background: var(--off);
  padding: 80px 0 100px;
}
.jobs-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 48px;
}
.jobs-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
.jobs-headline {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: .9; text-transform: uppercase;
  color: var(--black); letter-spacing: -.01em;
}
.jobs-headline .gold { color: var(--gold); }
.jobs-count {
  font-family: var(--fd); font-weight: 700; font-size: 16px;
  color: var(--gray); letter-spacing: .08em; text-transform: uppercase;
  padding-bottom: 8px;
}

/* Accordion */
.accordion { border-top: 1px solid #d0ccc5; }

.accordion-item { border-bottom: 1px solid #d0ccc5; }

.accordion-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
  transition: background .15s;
}
.accordion-trigger:hover .acc-title { color: var(--gold); }
.accordion-trigger:hover .acc-plus { color: var(--gold); border-color: var(--gold); }

.acc-info { display: flex; flex-direction: column; gap: 6px; }
.acc-title {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(22px, 2.8vw, 32px);
  text-transform: uppercase; letter-spacing: -.01em;
  color: var(--black); transition: color .2s; line-height: 1;
}
.acc-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.acc-tag {
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; padding: 4px 12px;
}
.tag-dept { background: var(--black); color: var(--gold); }
.tag-type { background: transparent; color: #888; border: 1px solid #ccc; }
.tag-loc  { background: transparent; color: #888; border: 1px solid #ccc; }

.acc-arrow {
  width: 40px; height: 40px; border: 1.5px solid #bbb;
  display: flex; align-items: center; justify-content: center;
  color: #888; flex-shrink: 0; transition: all .25s;
  font-size: 20px; line-height: 1;
}
.accordion-item.open .acc-arrow {
  border-color: var(--gold); color: var(--gold);
  transform: rotate(45deg);
}

/* Content panel */
.accordion-panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.accordion-item.open .accordion-panel { grid-template-rows: 1fr; }
.accordion-panel-inner { overflow: hidden; }
.panel-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; padding: 0 0 48px; border-top: 1px solid #e0dcd6;
  margin-top: 0; padding-top: 40px;
}
.panel-col-label {
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.panel-text { font-size: 15px; font-weight: 300; color: #444; line-height: 1.75; margin-bottom: 14px; }
.panel-text:last-of-type { margin-bottom: 0; }
.panel-text strong { font-weight: 600; color: var(--black); }
.panel-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.panel-list li {
  font-size: 15px; font-weight: 300; color: #444; line-height: 1.6;
  padding-left: 20px; position: relative;
}
.panel-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold); font-weight: 600;
}
.panel-cta {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 20px;
  padding-top: 32px; border-top: 1px solid #e0dcd6;
  flex-wrap: wrap;
}
.btn-apply {
  display: inline-block;
  background: var(--gold); color: var(--black);
  font-family: var(--fd); font-weight: 700; font-size: 16px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 16px 40px; transition: background .2s;
}
.btn-apply:hover { background: var(--gold-lt); }
.apply-hint { font-size: 14px; color: #888; font-weight: 300; }
.apply-hint a { color: var(--gold); border-bottom: 1px solid var(--gold-dk); padding-bottom: 1px; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--black); padding: 80px 0;
}
.cta-strip-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 48px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap;
}
.cta-strip-text {}
.cta-strip-headline {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(40px, 5vw, 64px); line-height: .92;
  text-transform: uppercase; color: var(--white); letter-spacing: -.01em;
  margin-bottom: 12px;
}
.cta-strip-headline .gold { color: var(--gold); }
.cta-strip-sub { font-size: 16px; font-weight: 300; color: #666; max-width: 440px; line-height: 1.6; }
.cta-strip-btn {
  flex-shrink: 0;
  display: inline-block;
  background: var(--gold); color: var(--black);
  font-family: var(--fd); font-weight: 700; font-size: 18px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 20px 52px; transition: background .2s;
}
.cta-strip-btn:hover { background: var(--gold-lt); }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 1px solid #181818; padding: 32px 48px; }
.footer-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-text { font-family: var(--fd); font-weight: 900; font-size: 20px; color: var(--gold); letter-spacing: .12em; }
.footer-tagline { font-size: 12px; color: #3a3a3a; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 12px; color: #444; letter-spacing: .05em; text-transform: uppercase; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-links a.active-page { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav, footer { padding-left: 32px; padding-right: 32px; }
  .page-hero-inner, .intro-strip-inner, .perks-inner, .jobs-inner, .cta-strip-inner { padding-left: 32px; padding-right: 32px; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .panel-content { gap: 40px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  nav, footer { padding-left: 20px; padding-right: 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { padding: 24px 20px; }
  .page-hero-inner, .intro-strip-inner, .perks-inner, .jobs-inner, .cta-strip-inner { padding-left: 20px; padding-right: 20px; }
  .page-headline { font-size: clamp(56px, 14vw, 90px); padding-bottom: 52px; }
  .intro-strip { padding: 52px 0; }
  .intro-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .perks-grid { grid-template-columns: 1fr; gap: 1px; }
  .jobs-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .accordion-trigger { grid-template-columns: 1fr auto; gap: 16px; }
  .panel-content { grid-template-columns: 1fr; gap: 28px; }
  .panel-cta { flex-direction: column; align-items: flex-start; }
  .cta-strip { padding: 60px 0; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  footer { padding: 24px 20px; }
  .footer-tagline { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 480px) {
  .acc-meta { gap: 8px; }
  .acc-arrow { width: 34px; height: 34px; }
}











/* barlow-100 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-100italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 100;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-100italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-200 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-200italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 200;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-200italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-300 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-300italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-regular - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-500 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-500italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-600 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-600italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-700 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-700italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-800 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-800italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-900 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/barlow/barlow/barlow-v13-latin_latin-ext_vietnamese-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-900italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 900;
  src: url('../fonts/barlow/barlow-v13-latin_latin-ext_vietnamese-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* barlow-condensed-100 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-100italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: italic;
  font-weight: 100;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-100italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-200 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-200italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: italic;
  font-weight: 200;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-200italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-300 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-300italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-regular - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-500 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-500italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-600 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-600italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-700 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-700italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-800 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-800italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-900 - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-900italic - latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: italic;
  font-weight: 900;
  src: url('../fonts/barlow-condensed/barlow-condensed-v13-latin_latin-ext_vietnamese-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ═══════════════════════════════════════════
   SPRACHSWITCHER  DE · EN · GR
   Rechts neben dem CTA in der Desktop-Nav
═══════════════════════════════════════════ */
.lang-switch {
  display: flex; align-items: center; gap: 6px;
  margin-left: 10px; padding-left: 16px;
  border-left: 1px solid #222;
}
.lang-btn {
  font-family: var(--fd); font-weight: 700; font-size: 13px;
  letter-spacing: .1em; color: #555;
  transition: color .2s; text-transform: uppercase;
}
.lang-btn:hover { color: var(--gold-lt); }
.lang-active   { color: var(--gold) !important; }
.lang-sep      { color: #2a2a2a; font-size: 11px; user-select: none; }

/* Mobile-Menü Sprachswitcher */
.mobile-lang {
  display: flex; align-items: center; gap: 14px;
  margin-top: 8px; padding-top: 24px;
  border-top: 1px solid #1a1a1a;
}
.mobile-lang-btn {
  font-family: var(--fd); font-weight: 700; font-size: 24px;
  letter-spacing: .08em; color: #555;
  text-transform: uppercase; transition: color .2s;
}
.mobile-lang-btn:hover  { color: var(--gold); }
.mobile-lang-active     { color: var(--gold) !important; }
.mobile-lang-sep        { color: #2a2a2a; font-size: 18px; }

/* ═══════════════════════════════════════════
   VIDEO HERO — Platzhalter-Animation
   Video einbinden: videos/showreel.mp4 ablegen
   und <source>-Tag auskommentieren entfernen.
   Opacity: --hero-video-opacity anpassen
═══════════════════════════════════════════ */
:root { --hero-video-opacity: 0.10; }

.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: var(--hero-video-opacity);
}
.hero-video-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    #0a0a0a 0%, #1a1005 20%, #0f0a02 40%,
    #0a0a1a 60%, #100a05 80%, #0a0a0a 100%);
  background-size: 400% 400%;
  animation: heroGrad 12s ease-in-out infinite;
}
@keyframes heroGrad {
  0%   { background-position: 0% 50%; }
  33%  { background-position: 100% 0%; }
  66%  { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}
.hero-content { position: relative; z-index: 1; }
.hero-bg-char { z-index: 0; }

/* ═══════════════════════════════════════════
   FIX: Mobile Cases — 3. Kachel nicht mehr
   abgeschnitten (cases-side height reset)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Tablet-Rule setzt height:280px — hier zurücksetzen */
  .cases-side {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    height: auto !important;
    min-height: 480px;
  }
  .case-small {
    height: 240px;
    border-left: none;
    border-top: 1px solid #1a1a1a;
  }
}
