/* ════════════════════════════════════════════════════════════
   BARZILLAI COMMODITIES — Premium Institutional Stylesheet
   ════════════════════════════════════════════════════════════ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --navy-deep:    #060d18;
  --navy:         #0a1628;
  --navy-mid:     #0f1d30;
  --graphite:     #111d2e;
  --steel:        #1a2a3f;
  --steel-light:  #243448;
  --gold:         #c9a84c;
  --gold-light:   #d4b565;
  --gold-dim:     rgba(201, 168, 76, 0.15);
  --gold-faint:   rgba(201, 168, 76, 0.07);
  --text-primary: #e8e4dc;
  --text-body:    #b0a99e;
  --text-muted:   #6b7a8d;
  --text-dim:     #3d4f63;
  --white:        #f5f2ec;
  --border:       rgba(201, 168, 76, 0.12);
  --border-faint: rgba(201, 168, 76, 0.06);

  --font-serif:   'Cormorant Garamond', 'Georgia', serif;
  --font-sans:    'Inter', -apple-system, 'Segoe UI', sans-serif;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);

  --container:    1280px;
  --section-pad:  clamp(80px, 12vw, 160px);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--navy-deep);
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

a:hover {
  color: var(--gold-light);
}

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
}

/* ── Section defaults ─────────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.section__subtitle {
  font-size: 17px;
  color: var(--text-body);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ── Reveal Animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(24px, 4vw, 64px);
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out),
              backdrop-filter 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(6, 13, 24, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border-faint);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.4s var(--ease-out);
}

.nav.scrolled .nav__inner {
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo:hover {
  opacity: 0.9;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  transition: height 0.4s var(--ease-out);
}

.nav.scrolled .nav__logo-img {
  height: 42px;
}

@media (max-width: 480px) {
  .nav__logo-img {
    height: 42px;
  }

  .nav.scrolled .nav__logo-img {
    height: 36px;
  }
}

.nav__links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 960px) {
  .nav__links {
    display: flex;
  }
}

.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  transition: color 0.3s var(--ease-out);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 8px 20px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  font-size: 12px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out) !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
}

/* Mobile toggle */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 960px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile menu */
@media (max-width: 959px) {
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 13, 24, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }

  .nav__links.open a {
    font-size: 18px;
    color: var(--text-primary);
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.25;
  filter: saturate(0.3) brightness(0.5);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(6, 13, 24, 0.4) 0%, var(--navy-deep) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 13, 24, 0.5) 0%, rgba(6, 13, 24, 0.2) 30%, rgba(6, 13, 24, 0.2) 70%, rgba(6, 13, 24, 0.95) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero__map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  height: auto;
  opacity: 0.5;
}

/* Route line animation */
.route-line {
  stroke: var(--gold);
  stroke-width: 0.8;
  stroke-dasharray: 6 4;
  opacity: 0.2;
  animation: dashMove 25s linear infinite;
}

.route-1 { animation-delay: 0s; }
.route-2 { animation-delay: -4s; }
.route-3 { animation-delay: -8s; }
.route-4 { animation-delay: -12s; }
.route-5 { animation-delay: -16s; }
.route-6 { animation-delay: -20s; }

@keyframes dashMove {
  to { stroke-dashoffset: -200; }
}

/* Node pulse */
.node {
  fill: var(--gold);
  opacity: 0.6;
}

.node-pulse {
  animation: pulse 3s ease-in-out infinite;
}

.node-pulse:nth-child(2) { animation-delay: 0.5s; }
.node-pulse:nth-child(3) { animation-delay: 1s; }
.node-pulse:nth-child(4) { animation-delay: 1.5s; }
.node-pulse:nth-child(5) { animation-delay: 2s; }
.node-pulse:nth-child(6) { animation-delay: 2.5s; }

@keyframes pulse {
  0%, 100% { r: 3; opacity: 0.6; }
  50% { r: 5; opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero__label::before,
.hero__label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 32px;
}

.hero__title-line {
  display: block;
  font-size: clamp(48px, 9vw, 96px);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero__title-line--accent {
  color: var(--gold);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero__tagline {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-body);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 48px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn--primary:hover {
  background: var(--gold-light);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.hero__scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════════ */
.about {
  background: var(--navy);
  border-top: 1px solid var(--border-faint);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 72px;
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about__image {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid var(--border-faint);
}

.about__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(0.4) brightness(0.7);
  transition: filter 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.about__image:hover img {
  filter: saturate(0.6) brightness(0.8);
  transform: scale(1.03);
}

.about__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--navy) 100%);
  pointer-events: none;
}

.about__lead {
  font-size: 19px;
  color: var(--text-primary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.about__body p {
  margin-bottom: 20px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-faint);
  border: 1px solid var(--border-faint);
}

@media (min-width: 768px) {
  .about__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  background: var(--navy);
  padding: 40px 32px;
  text-align: center;
}

.stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.stat__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════════ */
.services {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-faint);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-faint);
  border: 1px solid var(--border-faint);
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--navy);
  padding: clamp(32px, 4vw, 48px);
  border-top: 2px solid transparent;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.service-card:hover {
  background: var(--navy-mid);
  border-top-color: var(--gold-dim);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.7;
  transition: opacity 0.4s var(--ease-out);
}

.service-card:hover .service-card__icon {
  opacity: 1;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.service-card__text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-body);
}

/* ══════════════════════════════════════════════════════════════
   MARKETS
   ══════════════════════════════════════════════════════════════ */
.markets {
  background: var(--navy);
  border-top: 1px solid var(--border-faint);
}

.markets__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .markets__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.market-card {
  background: var(--navy-deep);
  border: 1px solid var(--border-faint);
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.market-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}

.market-card__visual {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.market-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.35) brightness(0.55);
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.market-card:hover .market-card__img {
  transform: scale(1.08);
  filter: saturate(0.5) brightness(0.65);
}

.market-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 13, 24, 0.1) 0%, rgba(6, 13, 24, 0.85) 100%);
}

.market-card__content {
  padding: 32px;
}

.market-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.market-card__text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 20px;
}

.market-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-card__tags span {
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  background: var(--gold-faint);
}

/* ══════════════════════════════════════════════════════════════
   CINEMATIC DIVIDER
   ══════════════════════════════════════════════════════════════ */
.divider-image {
  position: relative;
  height: clamp(240px, 35vw, 400px);
  overflow: hidden;
}

.divider-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.25) brightness(0.4);
}

.divider-image__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--navy-deep) 0%, transparent 20%, transparent 80%, var(--navy) 100%),
    linear-gradient(to right, rgba(6, 13, 24, 0.5), transparent 30%, transparent 70%, rgba(6, 13, 24, 0.5));
}

.divider-image__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.divider-image__text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3.5vw, 36px);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  text-align: center;
  padding: 0 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL REACH
   ══════════════════════════════════════════════════════════════ */
.reach {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-faint);
  padding-bottom: var(--section-pad);
}

.reach__map-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 64px;
  padding: 0 clamp(16px, 3vw, 48px);
}

.reach__map {
  width: 100%;
  height: auto;
}

/* Trade route animation */
.trade-route {
  animation: dashMove 20s linear infinite;
}

.trade-route:nth-child(2) { animation-delay: -3s; }
.trade-route:nth-child(3) { animation-delay: -6s; }
.trade-route:nth-child(4) { animation-delay: -9s; }
.trade-route:nth-child(5) { animation-delay: -12s; }
.trade-route:nth-child(6) { animation-delay: -15s; }

/* Region node pulse */
.region-glow {
  animation: glowPulse 3s ease-in-out infinite;
}

.region-glow:nth-child(3) { animation-delay: 0.75s; }
.region-glow:nth-child(5) { animation-delay: 1.5s; }
.region-glow:nth-child(7) { animation-delay: 2.25s; }

@keyframes glowPulse {
  0%, 100% { r: 12; opacity: 0.4; }
  50% { r: 18; opacity: 0.7; }
}

.region-node {
  animation: nodePulse 3s ease-in-out infinite;
}

.region-node:nth-child(4) { animation-delay: 0.75s; }
.region-node:nth-child(6) { animation-delay: 1.5s; }
.region-node:nth-child(8) { animation-delay: 2.25s; }

@keyframes nodePulse {
  0%, 100% { r: 4; }
  50% { r: 5; }
}

.reach__corridors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-faint);
  border: 1px solid var(--border-faint);
}

@media (min-width: 640px) {
  .reach__corridors {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reach__corridors {
    grid-template-columns: repeat(4, 1fr);
  }
}

.corridor {
  background: var(--navy);
  padding: 32px;
}

.corridor h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
}

.corridor p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
}

/* ══════════════════════════════════════════════════════════════
   APPROACH
   ══════════════════════════════════════════════════════════════ */
.approach {
  background: var(--navy);
  border-top: 1px solid var(--border-faint);
  position: relative;
  overflow: hidden;
}

.approach__bg-image {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.approach__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.06;
  filter: saturate(0) brightness(0.5);
}

.approach .container {
  position: relative;
  z-index: 1;
}

.approach__timeline {
  max-width: 720px;
  position: relative;
  padding-left: 0;
}

@media (min-width: 768px) {
  .approach__timeline {
    padding-left: 80px;
  }

  .approach__timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold-dim), transparent);
  }
}

.approach__step {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}

.approach__step:last-child {
  margin-bottom: 0;
}

.approach__step-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  width: 48px;
  opacity: 0.5;
}

@media (min-width: 768px) {
  .approach__step-num {
    position: absolute;
    left: -80px;
    top: 2px;
  }

  .approach__step::before {
    content: '';
    position: absolute;
    left: -52px;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
  }
}

.approach__step-content h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.approach__step-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}

/* ══════════════════════════════════════════════════════════════
   WHY US
   ══════════════════════════════════════════════════════════════ */
.why-us {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-faint);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-faint);
  border: 1px solid var(--border-faint);
}

@media (min-width: 640px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-us__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: var(--navy);
  padding: clamp(32px, 4vw, 48px);
  border-left: 2px solid transparent;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.why-card:hover {
  background: var(--navy-mid);
  border-left-color: var(--gold-dim);
}

.why-card__number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 20px;
  line-height: 1;
}

.why-card__title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.why-card__text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-body);
}

/* ══════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════ */
.contact {
  background: var(--navy);
  border-top: 1px solid var(--border-faint);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.contact__text {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 40px;
  color: var(--text-body);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact__detail a {
  font-size: 16px;
  color: var(--text-primary);
}

.contact__detail a:hover {
  color: var(--gold);
}

/* Form */
.contact__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 500px) {
  .contact__form {
    grid-template-columns: 1fr 1fr;
  }

  .form-group--full {
    grid-column: 1 / -1;
  }

  .contact__form .btn {
    grid-column: 1 / -1;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-deep);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-faint);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a8d' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-faint);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__logo-img {
  height: 60px;
  width: auto;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: color 0.3s var(--ease-out);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__legal p {
  font-size: 12px;
  color: var(--text-dim);
}

/* ══════════════════════════════════════════════════════════════
   UTILITY / DECORATIVE
   ══════════════════════════════════════════════════════════════ */

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}


/* Smooth scrollbar (webkit) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--steel);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--steel-light);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE FINE-TUNING
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__title-line {
    font-size: 42px;
  }

  .hero__title-line--accent {
    font-size: 28px;
  }

  .stat {
    padding: 28px 20px;
  }

  .stat__number {
    font-size: 24px;
  }
}

/* Print styles */
@media print {
  .nav, .hero__bg, .hero__scroll {
    display: none;
  }

  body {
    background: white;
    color: #333;
  }

  .section {
    page-break-inside: avoid;
  }
}
