:root {
  --jvv-navy: #111d2e;
  --jvv-blue: #1d3557;
  --jvv-gold: #b89b5e;
  --jvv-cream: #f7f4ef;
  --jvv-muted: #eef0f2;
  --jvv-text: #1f2933;
  --jvv-soft: #667085;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--jvv-text);
  background: #ffffff;
}

.site-navbar {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 29, 46, 0.08);
  padding: 0.55rem 0;
}

.navbar-brand {
  color: var(--jvv-navy);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--jvv-navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.nav-link {
  color: var(--jvv-navy);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--jvv-gold);
}

.language-switcher {
  display: flex;
  border: 1px solid rgba(17, 29, 46, 0.12);
  border-radius: 999px;
  padding: 3px;
  background: #fff;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--jvv-navy);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-weight: 700;
  font-size: 0.78rem;
}

.lang-btn.active {
  background: var(--jvv-navy);
  color: #fff;
}

.hero-section {
  min-height: 92vh;
  padding: 9rem 0 5rem;
  color: #fff;
  background: linear-gradient(120deg, rgba(17, 29, 46, 0.97), rgba(29, 53, 87, 0.88)), radial-gradient(circle at 85% 25%, rgba(184, 155, 94, 0.28), transparent 28%), var(--jvv-navy);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--jvv-gold);
  margin-bottom: 1rem;
}

.eyebrow.dark {
  color: var(--jvv-gold);
}

.hero-lead {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 760px;
}

.btn-primary {
  background: var(--jvv-gold);
  border-color: var(--jvv-gold);
  color: var(--jvv-navy);
  font-weight: 700;
}

.btn-primary:hover, .btn-primary:focus {
  background: #c7aa6d;
  border-color: #c7aa6d;
  color: var(--jvv-navy);
}

.btn-outline-light {
  font-weight: 700;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255,255,255,0.22), rgba(255,255,255,0.04));
  box-shadow: 0 28px 80px rgba(0,0,0,0.22);
}

.hero-card-inner {
  border-radius: 27px;
  padding: 2rem;
  background: rgba(255,255,255,0.08);
}

.card-kicker {
  color: var(--jvv-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.75rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  font-size: 1.05rem;
}

.hero-list li:last-child {
  border-bottom: 0;
}

.section-padding {
  padding: 6rem 0;
}

.section-muted {
  background: var(--jvv-cream);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 3rem;
}

.section-heading h2, #about h2, #international h2, #contact h2 {
  color: var(--jvv-navy);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p, #about p, #international p, #contact p {
  color: rgb(255,255,255);
  line-height: 1.75;
  font-size: 1.05rem;
}

.expertise-card {
  border: 1px solid rgba(17, 29, 46, 0.09);
  border-radius: 24px;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 18px 40px rgba(17, 29, 46, 0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(17, 29, 46, 0.11);
}

.expertise-card h3 {
  color: var(--jvv-navy);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.expertise-card p {
  color: var(--jvv-soft);
  line-height: 1.7;
  margin-bottom: 0;
}

.info-panel {
  border-radius: 28px;
  padding: 2.25rem;
  background: var(--jvv-navy);
  color: #fff;
}

.info-panel h3 {
  color: var(--jvv-gold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.info-panel p {
  color: #fff;
  line-height: 1.7;
  font-size: 1.05rem;
}

.info-panel hr {
  border-color: rgba(255,255,255,0.15);
  margin: 1.75rem 0;
}

.cta-band {
  padding: 4rem 0;
  background: var(--jvv-blue);
  color: #fff;
}

.cta-band h2 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cta-band p {
  color: rgba(255,255,255,0.74);
  max-width: 780px;
  margin-bottom: 0;
}

.contact-card {
  border-radius: 28px;
  padding: 2.25rem;
  background: #fff;
  border: 1px solid rgba(17, 29, 46, 0.09);
  box-shadow: 0 18px 50px rgba(17,29,46,0.07);
}

.contact-card h3 {
  color: var(--jvv-navy);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.contact-grid a {
  display: block;
  text-decoration: none;
  border-radius: 18px;
  padding: 1rem;
  background: var(--jvv-cream);
  border: 1px solid rgba(17,29,46,0.07);
  color: var(--jvv-navy);
}

.contact-grid a:hover {
  border-color: var(--jvv-gold);
}

.contact-grid span {
  display: block;
  color: var(--jvv-soft);
  font-size: 0.83rem;
  margin-bottom: 0.25rem;
}

.contact-grid strong {
  display: block;
  word-break: break-word;
}

.site-footer {
  padding: 2rem 0;
  background: var(--jvv-navy);
  color: rgba(255,255,255,0.72);
}

.site-footer a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--jvv-gold);
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 7.5rem;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 1rem 0;
  }
}

@media (max-width: 991px) {
  .language-switcher {
    margin-top: 0.75rem;
    width: max-content;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 4.5rem 0;
  }
}

@media (max-width: 575px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .hero-card-inner, .contact-card, .info-panel {
    padding: 1.5rem;
  }
}

.company-strip-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--jvv-soft);
  margin-bottom: 1.2rem;
}

.signature-line {
  margin-top: 1.5rem;
  color: var(--jvv-navy) !important;
  font-weight: 800;
  font-size: 1.15rem !important;
}

@keyframes companySlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes companySlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.company-strip {
  padding: 2rem 0 2.25rem;
  background: #fff;
  border-bottom: 1px solid rgba(17,29,46,0.08);
  overflow: hidden;
}

.company-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.company-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: companySlide 40s linear infinite;
}

.company-group {
  display: flex;
  gap: 2rem;
  padding-right: 2rem;
  flex: 0 0 auto;
}

.company-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 205px;
  height: 116px;
  padding: 0.9rem 1.05rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17,29,46,0.08);
  box-shadow: 0 10px 26px rgba(17,29,46,0.055);
  text-align: center;
  gap: 0.4rem;
  flex: 0 0 205px;
  overflow: hidden;
}

.company-logo img {
  display: block;
  width: 140px;
  height: 56px;
  max-width: 140px;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transform: scale(2.76);
  transform-origin: center;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.company-logo strong {
  display: block;
  font-size: 0.78rem;
  line-height: 1.18;
  font-weight: 750;
  color: var(--jvv-navy);
  white-space: normal;
  max-width: 170px;
}

.company-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(2.9);
}

.company-slider:hover .company-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .company-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
  }
}

.portrait-placeholder {
  height: 540px;
  border-radius: 24px;
  background: linear-gradient(145deg, #213049, #31425c);
  box-shadow: 0 30px 72px rgba(17,29,46,0.2);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}

.portrait-placeholder img {
  height: 112%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: center top;
  display: block;
  margin-top: -18px;
}

.portrait-placeholder span {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--jvv-gold);
}

.portrait-placeholder p {
  color: rgba(255,255,255,0.72) !important;
  max-width: 280px;
  margin-bottom: 0;
}

.legal-footer {
  background: #0f1b2d;
  color: rgba(255,255,255,0.74);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.86rem;
}

.legal-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.legal-footer a {
  color: #f4dfad;
  text-decoration: none;
  font-weight: 650;
}

.legal-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.legal-page {
  background: #f7f4ef;
  min-height: 100vh;
  padding: 5rem 1rem;
  color: var(--jvv-text);
}

.legal-shell {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(17,29,46,0.08);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  box-shadow: 0 22px 60px rgba(17,29,46,0.08);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--jvv-blue);
  font-weight: 700;
  text-decoration: none;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--jvv-navy);
  margin-bottom: 0.75rem;
}

.legal-subtitle {
  font-size: 1.05rem;
  color: var(--jvv-soft);
  margin-bottom: 2rem;
}

.legal-list {
  padding-left: 1.3rem;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.legal-list li {
  line-height: 1.7;
  padding-left: 0.35rem;
}

.legal-document-frame {
  overflow: auto;
  border: 1px solid rgba(17,29,46,0.12);
  border-radius: 6px;
  background: #fff;
  max-height: 78vh;
}

.legal-document-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.legal-footer-credit {
  color: rgba(255,255,255,0.58);
  font-size: 0.84rem;
}

.legal-footer-credit a {
  color: #f4dfad;
  text-decoration: none;
  font-weight: 700;
}

.legal-copy {
  display: grid;
  gap: 1rem;
}

.legal-copy h2 {
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--jvv-navy);
  margin: 1.4rem 0 0.2rem;
}

.legal-copy p {
  line-height: 1.7;
  margin: 0;
}

#about .eyebrow {
  color: var(--jvv-gold);
}

#about h2 {
  color: var(--jvv-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.22;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  margin-bottom: 3.25rem;
}

#about p {
  color: rgb(104, 118, 147);
  line-height: 1.75;
  font-size: 1.05rem;
}

#about p strong {
  color: rgb(104, 118, 147);
  font-weight: 800;
}

#about .portrait-placeholder {
  height: 620px;
  min-height: 620px;
  border-radius: 22px;
  background: linear-gradient(145deg, #1c2a41, #304159);
  box-shadow: 0 34px 84px rgba(17,29,46,0.24);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}

#about .portrait-placeholder img {
  height: 128%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: center top;
  display: block;
  margin-top: -28px;
  filter: contrast(1.04) saturate(1.02);
}

#about .row {
  align-items: center;
  --bs-gutter-x: 3.5rem;
}

@media (max-width: 991px) {
  #about .portrait-placeholder {
    height: 520px;
    min-height: 520px;
  }
}

@media (max-width: 991px) {
  #about .portrait-placeholder img {
    height: 123%;
    margin-top: -22px;
  }
}

@media (max-width: 575px) {
  #about .portrait-placeholder {
    height: 460px;
    min-height: 460px;
    border-radius: 20px;
  }
}

@media (max-width: 575px) {
  #about .portrait-placeholder img {
    height: 120%;
    margin-top: -18px;
  }
}

#about .container {
  max-width: 1560px;
  width: calc(100% - 5rem);
}

@media (max-width: 991px) {
  #about .container {
    width: calc(100% - 3rem);
  }
}

@media (max-width: 575px) {
  #about .container {
    width: calc(100% - 2rem);
  }
}

.navbar-brand .brand-logo-img {
  display: block;
  height: 76px;
  width: auto;
  max-width: 520px;
  object-fit: contain;
}

.site-navbar .container {
  min-height: 86px;
}

@media (max-width: 575px) {
  .navbar-brand .brand-logo-img {
    height: 52px;
    max-width: 285px;
  }
}

@media (max-width: 991px) {
  .navbar-brand .brand-logo-img {
    height: 62px;
    max-width: 390px;
  }
}

