/* ============================================================
   VolynTrading — Frontend CSS
   Design: dark forest green #083d28 + warm gold #c9a840
============================================================ */

/* --- Variables --- */
:root {
  --bg:          #01180e;
  --bg-dark:     #010f09;
  --bg-mid:      #062415;
  --bg-light:    #0d3b28;
  --gold:        #c9a840;
  --gold-light:  #dfc06a;
  --gold-dim:    rgba(201,168,64,.28);
  --white:       #ffffff;
  --text-muted:  rgba(255,255,255,.65);
  --border:      rgba(255,255,255,.12);
  --border-gold: rgba(201,168,64,.28);
  --card-bg:     rgba(255,255,255,.05);
  --radius:      4px;
  --transition:  .25s ease;
  --max-w:       1200px;
  --header-h:    96px;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  /* iOS momentum scroll */
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Prevent scroll when mobile nav is open */
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utilities --- */
.text-center  { text-align: center; }
.mt-40        { margin-top: 40px; }
.section-pad  { padding: 80px 0; }
.section-pad.dark { background: #011b10; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(1, 24, 14, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(1, 24, 14, 1);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--header-h);
  padding-left: 0;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img  { height: 56px; width: auto; }
.logo-text-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-sub  {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.3;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.2;
}

/* Nav */
.site-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.82);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-item.active .nav-link { color: var(--white); }
.nav-item.active .nav-link { position: relative; }
.nav-item.active .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* Dropdown nav */
.nav-item--dropdown { position: relative; }
.nav-link--arrow { display: flex; align-items: center; gap: 5px; }
.nav-arrow { flex-shrink: 0; transition: transform .2s; }
.nav-item--dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background: #0a1f12;
  border: 1px solid rgba(201,168,64,.18);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 6px 6px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}
.nav-item--dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-link {
  display: block;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-dropdown-link:hover,
.nav-dropdown-item.active .nav-dropdown-link {
  color: var(--gold);
  background: rgba(201,168,64,.07);
}

/* Header right */
.header-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

/* Lang switcher */
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text-muted);
  padding: 4px 7px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.lang-btn:hover   { color: var(--white); }
.lang-btn.active  { color: var(--gold); border: 1px solid var(--gold); border-radius: 3px; }

/* Phone in header */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  white-space: nowrap;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--gold); }
.header-phone-icon { color: var(--gold); flex-shrink: 0; }
.header-phone-text { display: flex; flex-direction: column; }
.header-phone-num {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.1;
  color: var(--white);
}
.header-phone-sub {
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.3;
}
/* CTA button in header — kept for mobile nav drawer */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold);
  border: 1.5px solid var(--gold-dim);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-cta:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}
.btn-cta .arrow { transition: transform var(--transition); }
.btn-cta:hover  .arrow { transform: translateX(4px); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Nav overlay (mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: opacity .3s;
}
.nav-overlay.visible { display: block; }

/* Mobile-only nav footer — hidden on desktop */
.mobile-nav-footer { display: none; }

/* ============================================================
   HERO SLIDER
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center 40%;
  padding-top: var(--header-h);
  opacity: 0;
  transition: opacity 1.4s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  min-height: 100vh;
}

/* DOM overlay — guaranteed dark base over photo */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(3, 13, 8, .50);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 200px;
  align-items: center;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 80px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.80);
  margin-bottom: 24px;
  text-shadow: 0 1px 6px rgba(0,0,0,.9);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 1px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Hero title */
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,.7), 0 1px 4px rgba(0,0,0,.5);
}
.hero-line  { display: block; }
.ht-normal  { color: var(--white); }
.ht-gold    { color: var(--gold); }

.hero-desc {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,.90);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,.8);
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* Slider arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(6,15,8,.55);
  border: 1px solid rgba(201,168,64,.3);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.hero-arrow:hover { background: rgba(201,168,64,.25); border-color: var(--gold); }
.hero-prev { left: 28px; }
.hero-next { right: 28px; }

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

/* Wheat decoration */
.hero-decor { display: none; }
.wheat-svg { display: none; }

/* Stats strip */
.stats-strip {
  position: relative;
  z-index: 3;
  background: #011b10;
  border-top: 1px solid rgba(201,162,39,.2);
  border-bottom: 1px solid rgba(201,162,39,.2);
  padding: 36px 0;
}
.stats-strip--img {
  padding: 0;
  background: #011b10;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: none;
  line-height: 0;
}
.stats-strip-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-inner--6 { grid-template-columns: repeat(6, 1fr); }
.stat-item {
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-unit {
  font-size: .55em;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .05em;
  margin-left: 4px;
  vertical-align: .2em;
}
.stat-icon { width: 28px; height: 28px; color: var(--gold); margin-bottom: 10px; }
.stat-icon svg { width: 100%; height: 100%; }
.stat-icon-circle {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.stat-icon-circle svg { width: 28px; height: 28px; }
.stat-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-dim);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ============================================================
   SECTION TITLE
============================================================ */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--bg-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}
.section-title.light { color: var(--white); }
.section-title.text-center { text-align: center; }

/* ============================================================
   ABOUT TEASER
============================================================ */
.about-teaser { background: var(--white); }
.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-teaser-text .section-title { color: var(--bg-dark); }
.about-teaser-text .btn-gold-outline { color: var(--bg); border-color: var(--border-gold); }
.about-teaser-text .btn-gold-outline:hover { background: var(--gold); color: var(--bg-dark); }

.prose { color: #2a2a2a; line-height: 1.8; }
.prose h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin: 24px 0 12px; color: var(--bg); }
.prose p  { margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 20px; margin-bottom: 16px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; }
.prose strong { font-weight: 700; }
.prose a { color: var(--bg); text-decoration: underline; }

.prose-light { color: rgba(255,255,255,.85); }
.prose-light h2 { color: var(--white); }
.prose-light a { color: var(--gold); }
.prose-light strong { color: var(--white); }

.about-teaser-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 8px;
}
.atn-item {
  background: var(--bg);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
}
.atn-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.atn-unit {
  color: var(--gold);
  font-weight: 600;
  margin-left: 4px;
}
.atn-lbl {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ============================================================
   DIRECTIONS TEASER / GRID
============================================================ */
.dir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.dir-card {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  transition: all var(--transition);
}
.dir-card:hover {
  background: rgba(255,255,255,.09);
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.dir-card-icon { font-size: 2.2rem; margin-bottom: 16px; }
.dir-card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.dir-card-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Directions page full cards */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 32px;
}
.dir-full-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  transition: border-color var(--transition);
}
.dir-full-card:hover { border-color: var(--border-gold); }
.dfc-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.dfc-icon svg { width: 28px; height: 28px; }
.dfc-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.dfc-text { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.dfc-link { color: var(--gold); font-weight: 600; font-size: 14px; }
.dfc-link:hover { text-decoration: underline; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner { background: var(--bg); border-top: 1px solid rgba(201,162,39,.2); border-bottom: 1px solid rgba(201,162,39,.2); }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text p { color: var(--text-muted); max-width: 560px; }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  position: relative;
  background: #01180e;
  padding: calc(var(--header-h) + 60px) 0 72px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero-inner { max-width: 780px; position: relative; z-index: 1; }

/* Photo variant for inner pages */
.page-hero--photo {
  background-size: cover;
  background-position: center 40%;
}
.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3,14,9,.96) 0%,
    rgba(3,14,9,.88) 45%,
    rgba(3,14,9,.65) 75%,
    rgba(3,14,9,.45) 100%
  );
  pointer-events: none;
}
.page-hero--photo .page-hero-title {
  text-shadow: 0 2px 20px rgba(0,0,0,.7);
}
.page-hero--photo .page-hero-sub {
  color: rgba(255,255,255,.88);
  text-shadow: 0 1px 8px rgba(0,0,0,.8);
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.75;
}

/* ============================================================
   DIRECTIONS PAGE HERO
============================================================ */
.dir-hero {
  position: relative;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.dir-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(2,10,4,.60) 0%,
    rgba(2,10,4,.45) 38%,
    rgba(2,10,4,.20) 65%,
    rgba(2,10,4,.02) 100%);
}
.dir-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 36px);
  padding-bottom: 52px;
  max-width: 560px;
}
.dir-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
}
.dir-hero-breadcrumb a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color var(--transition);
}
.dir-hero-breadcrumb a:hover { color: var(--gold); }
.dir-hero-breadcrumb span[aria-hidden] { font-size: 14px; }
.dir-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.0;
  margin-bottom: 12px;
}
.dir-hero-sub {
  font-family: var(--font-head);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.3;
}
.dir-hero-sub em { font-style: italic; }
.dir-hero-desc {
  font-size: clamp(13px, 1.2vw, 15px);
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  max-width: 440px;
}
.dir-hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.dir-hero-btn--fill {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 14px 26px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s, transform .18s;
}
.dir-hero-btn--fill:hover { background: #d4aa2a; transform: translateY(-1px); }
.dir-hero-btn--outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.55);
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 13px 26px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color .18s, color .18s;
}
.dir-hero-btn--outline:hover { border-color: var(--gold); color: var(--gold); }

/* Directions nav grid */
.dir-nav-section {
  background: #011b10;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 28px 0;
}
.dir-nav-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.dir-nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 16px 18px;
  text-decoration: none;
  color: rgba(255,255,255,.65);
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .18s, color .18s;
  position: relative;
}
.dir-nav-card:last-child { border-right: none; }
.dir-nav-card:hover,
.dir-nav-card--active {
  background: rgba(201,168,64,.06);
  color: var(--white);
}
.dir-nav-card--active { color: var(--gold); }
.dir-nav-card--active .dir-nav-label { color: var(--gold); }
.dir-nav-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  opacity: .75;
  transition: opacity .18s;
}
.dir-nav-card:hover .dir-nav-icon,
.dir-nav-card--active .dir-nav-icon { opacity: 1; }
.dir-nav-icon svg { width: 40px; height: 40px; }
.dir-nav-label {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}
.dir-nav-arrow {
  font-size: .75rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity .18s;
}
.dir-nav-card:hover .dir-nav-arrow { opacity: 1; }
@media (max-width: 900px) {
  .dir-nav-grid { grid-template-columns: repeat(3, 1fr); }
  .dir-nav-card:nth-child(3) { border-right: none; }
  .dir-nav-card:nth-child(4),
  .dir-nav-card:nth-child(5),
  .dir-nav-card:nth-child(6) { border-top: 1px solid rgba(255,255,255,.07); }
}
@media (max-width: 480px) {
  .dir-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .dir-nav-card:nth-child(2n) { border-right: none; }
  .dir-nav-card:nth-child(3) { border-right: 1px solid rgba(255,255,255,.07); }
  .dir-nav-card:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.07); }
}

/* Directions features strip */
.dir-features-strip {
  background: var(--bg);
  border-bottom: 1px solid rgba(201,168,64,.10);
  padding: 40px 0;
}
.dir-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.dir-feat-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dir-feat-item:last-child { border-right: none; }
.dir-feat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.dir-feat-icon svg { width: 26px; height: 26px; }
.dir-feat-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.4;
  min-height: 2.8em;
}
.dir-feat-text {
  font-size: 13px;
  color: rgba(255,255,255,.60);
  line-height: 1.65;
}

/* ── Export geography + crops section ── */
.exp-geo-section {
  background: var(--bg);
  padding: 60px 0 64px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.exp-geo-wrap {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}
.exp-geo-left {
  flex: 0 0 38%;
  min-width: 0;
}
.exp-crops-right {
  flex: 1 1 0;
  min-width: 0;
}
.exp-geo-title,
.exp-crops-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.exp-geo-map {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.exp-geo-map img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(.9);
}
.exp-geo-regions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.exp-geo-regions li {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  padding-left: 18px;
  position: relative;
}
.exp-geo-regions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.exp-crops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.exp-crop-card {
  display: flex;
  flex-direction: column;
}
.exp-crop-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 12px;
}
.exp-crop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.85) saturate(.9);
  transition: filter .3s;
}
.exp-crop-card:hover .exp-crop-img img {
  filter: brightness(1) saturate(1.1);
}
.exp-crop-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 6px;
}
.exp-crop-text {
  font-size: .78rem;
  color: rgba(255,255,255,.60);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 1024px) {
  .exp-geo-wrap { flex-direction: column; gap: 36px; }
  .exp-geo-left { flex: none; width: 100%; }
  .exp-crops-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .exp-crops-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .exp-geo-regions { grid-template-columns: 1fr; }
}

/* Directions services section */
.dir-services-section {
  background: var(--bg);
  padding: 56px 0 64px;
}
.dir-services-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 36px;
}
.dir-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.dir-svc-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.dir-svc-card:hover {
  border-color: rgba(201,168,64,.35);
  transform: translateY(-3px);
}
.dir-svc-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 0;
}
.dir-svc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.dir-svc-card:hover .dir-svc-img-wrap img { transform: scale(1.04); }
.dir-svc-img-placeholder {
  width: 100%; height: 100%;
  background: rgba(255,255,255,.06);
}
.dir-svc-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.dir-svc-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dir-svc-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(201,168,64,.1);
  border: 1px solid rgba(201,168,64,.28);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a840;
  flex-shrink: 0;
}
.dir-svc-icon svg {
  width: 17px !important;
  height: 17px !important;
  max-width: 17px;
  max-height: 17px;
  display: block;
  flex-shrink: 0;
  stroke: #c9a840;
}
.dir-svc-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.3;
}
.dir-svc-text {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* ── Quality Capabilities Section ── */
.q-caps-section {
  background: #011b10;
  padding: 52px 0 60px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.q-caps-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .13em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 36px;
}
.q-caps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.q-cap-card {
  border: 1px solid rgba(255,255,255,.1);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #032b18;
  transition: border-color .2s;
}
.q-cap-card:hover { border-color: rgba(201,168,64,.4); }
.q-cap-icon {
  color: var(--gold);
  width: 60px;
  height: 60px;
  border: 1.5px solid rgba(201,162,39,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.q-cap-icon svg { width: 28px; height: 28px; }
.q-cap-name {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.35;
}
.q-cap-text {
  font-size: .77rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 1100px) {
  .q-caps-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .q-caps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Directions capacities section */
.dir-caps-section {
  background: var(--bg);
  padding: 48px 0 52px;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.dir-caps-title {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 32px;
}
.dir-caps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.dir-cap-card {
  padding: 28px 24px 32px;
  border: 1px solid rgba(255,255,255,.08);
  border-right: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dir-cap-card:last-child { border-right: 1px solid rgba(255,255,255,.08); }
.dir-cap-icon {
  color: var(--gold);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 8px;
}
.dir-cap-icon svg { width: 28px; height: 28px; }
.dir-cap-value {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.dir-cap-value--text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--white);
}
.dir-cap-divider {
  border: none;
  border-top: 1px solid var(--gold);
  width: 40px;
  margin: 2px 0;
}
.dir-cap-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}
.dir-cap-label--solo {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

/* ── Export 8-step how-we-work timeline ── */
.exp-steps-section {
  background: var(--bg);
  padding: 52px 0 60px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.exp-steps-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 36px;
}
.exp-steps-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  align-items: start;
}
.exp-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 4px;
}
.exp-step-circle {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 14px;
}
.exp-step-num {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: .6rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.exp-step-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}
.exp-step-icon svg {
  width: 100%;
  height: 100%;
}
.exp-step-arrow {
  position: absolute;
  top: 30px;
  right: -16px;
  width: 32px;
  height: 8px;
  color: var(--gold);
  opacity: .6;
  z-index: 1;
}
.exp-step-arrow svg {
  width: 100%;
  height: 100%;
}
.exp-step-title {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 6px;
  line-height: 1.35;
}
.exp-step-text {
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 1100px) {
  .exp-steps-row { grid-template-columns: repeat(4, 1fr); gap: 24px 0; }
  .exp-step-arrow { display: none; }
}
@media (max-width: 600px) {
  .exp-steps-row { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
}

/* ── Export quality+safety & documents section ── */
.exp-qlt-section {
  background: var(--bg);
  padding: 56px 0 64px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.exp-qlt-wrap {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.exp-qlt-left {
  flex: 0 0 36%;
  min-width: 0;
}
.exp-docs-right {
  flex: 1 1 0;
  min-width: 0;
}
.exp-qlt-title,
.exp-docs-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.exp-qlt-img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.exp-qlt-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(.85);
}
.exp-qlt-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.exp-qlt-list li {
  font-size: .82rem;
  color: rgba(255,255,255,.80);
  line-height: 1.5;
  padding-left: 26px;
  position: relative;
}
.exp-qlt-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
}
.exp-qlt-list li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 7px;
  width: 6px;
  height: 4px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.exp-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 24px;
}
.exp-doc-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.exp-doc-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
}
.exp-doc-icon svg {
  width: 100%;
  height: 100%;
}
.exp-doc-label {
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 1024px) {
  .exp-qlt-wrap { flex-direction: column; gap: 36px; }
  .exp-qlt-left { flex: none; width: 100%; }
  .exp-docs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .exp-docs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Directions processing stages timeline */
.dir-steps-section {
  background: var(--bg);
  padding: 52px 0 60px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.dir-steps-title {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 40px;
}
.dir-steps-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.dir-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  min-width: 0;
}
.dir-step-arrow {
  flex-shrink: 0;
  width: 48px;
  margin-top: 44px;
  color: var(--gold);
  opacity: .6;
}
.dir-step-arrow svg { width: 100%; height: 16px; display: block; }
.dir-step-circle {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.dir-step-num {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-dark);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.dir-step-icon svg { width: 32px; height: 32px; }
.dir-step-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.3;
}
.dir-step-text {
  font-size: 12px;
  color: rgba(255,255,255,.50);
  line-height: 1.6;
  max-width: 140px;
}

/* ── Procurement Why Section ── */
.pwhy-section {
  border-top: 1px solid rgba(255,255,255,.05);
}
.pwhy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.pwhy-left {
  background: #011b10;
  padding: 52px 48px 52px 0;
  padding-left: calc((100vw - 1200px) / 2);
}
.pwhy-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 32px;
}
.pwhy-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pwhy-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pwhy-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-top: 2px;
}
.pwhy-icon svg { width: 36px; height: 36px; }
.pwhy-name {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 4px;
  letter-spacing: .04em;
}
.pwhy-text {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin: 0;
}
.pwhy-photo {
  background-size: cover;
  background-position: center;
  background-color: #032b18;
  min-height: 380px;
}
@media (max-width: 1200px) {
  .pwhy-left { padding-left: 32px; }
}
@media (max-width: 860px) {
  .pwhy-grid { grid-template-columns: 1fr; }
  .pwhy-left { padding: 40px 24px; }
  .pwhy-photo { min-height: 260px; }
}

/* ── Procurement Crops Section ── */
.pcrop-section {
  background: var(--bg);
  padding: 56px 0 48px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.pcrop-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .13em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 28px;
}
.pcrop-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.pcrop-card {
  display: flex;
  flex-direction: column;
  background: #011b10;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  transition: border-color .2s;
}
.pcrop-card:hover { border-color: rgba(201,168,64,.35); }
.pcrop-photo {
  height: 190px;
  background-size: cover;
  background-position: center;
  background-color: #032b18;
}
.pcrop-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pcrop-name {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .08em;
  margin: 0;
}
.pcrop-pts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pcrop-pts li {
  font-size: .74rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}
.pcrop-pts li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.pcrop-more {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  text-decoration: none;
  margin-top: auto;
  padding-top: 6px;
  transition: opacity .18s;
}
.pcrop-more:hover { opacity: .7; }
.pcrop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #011b10;
  border: 1px solid rgba(255,255,255,.08);
  padding: 14px 20px;
}
.pcrop-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  margin: 0;
}
.pcrop-note svg { color: rgba(255,255,255,.4); }
.pcrop-allbtn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 10px 22px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color .18s, color .18s;
}
.pcrop-allbtn:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 1100px) {
  .pcrop-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .pcrop-grid { grid-template-columns: repeat(2, 1fr); }
  .pcrop-footer { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 400px) {
  .pcrop-grid { grid-template-columns: 1fr; }
}

/* ── Logistics Benefits Strip ── */
.log-benefits-strip {
  background: #011b10;
  padding: 52px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.log-benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.log-ben-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 0 28px;
  border-left: 1px solid rgba(255,255,255,.08);
}
.log-ben-item:first-child { border-left: none; padding-left: 0; }
.log-ben-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.log-ben-icon svg { width: 26px; height: 26px; }
.log-ben-title {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
  min-height: 2.6em;
}
.log-ben-text {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 1200px) {
  .log-benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 0; }
  .log-ben-item:nth-child(3n+1) { border-left: none; }
}
@media (max-width: 600px) {
  .log-benefits-grid { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .log-ben-item { padding: 0 16px; }
  .log-ben-item:nth-child(odd) { border-left: none; }
  .log-ben-item:nth-child(3n+1) { border-left: 1px solid rgba(255,255,255,.08); }
  .log-ben-item:nth-child(odd) { border-left: none; }
}
@media (max-width: 400px) {
  .log-benefits-grid { grid-template-columns: 1fr; }
  .log-ben-item { border-left: none !important; padding: 0; border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; }
  .log-ben-item:first-child { border-top: none; padding-top: 0; }
}

/* ── Logistics Services Section ── */
.log-services-section {
  background: #011b10;
  padding: 64px 0 72px;
}
.log-svc-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--white);
  margin: 0 0 32px;
  text-transform: uppercase;
}
.log-svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.log-svc-card {
  background: #032b18;
  border: 1px solid rgba(201,162,39,.12);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.log-svc-card:hover {
  border-color: rgba(201,162,39,.35);
  transform: translateY(-3px);
}
.log-svc-photo {
  height: 140px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.log-svc-body {
  padding: 16px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.log-svc-icon {
  color: var(--gold);
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.log-svc-icon svg { width: 28px; height: 28px; }
.log-svc-title {
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .10em;
  color: var(--gold);
  margin: 0;
  text-transform: uppercase;
  line-height: 1.35;
}
.log-svc-text {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 1100px) {
  .log-svc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .log-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .log-svc-photo { height: 110px; }
}
@media (max-width: 400px) {
  .log-svc-grid { grid-template-columns: 1fr; }
}

/* ── Logistics Transport Section ── */
.log-transport-section {
  background: #011b10;
}
.log-trans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 420px;
  width: 100%;
}
.log-trans-col {
  position: relative;
  display: flex;
  flex-direction: column;
}
.log-trans-col--photo {
  background-size: cover;
  background-position: center;
}
.log-trans-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}
.log-trans-col--caps {
  background: #032b18;
  border-left: 1px solid rgba(255,255,255,.07);
}
.log-trans-inner {
  position: relative;
  z-index: 1;
  padding: 40px 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-sizing: border-box;
  height: 100%;
}
.log-trans-heading {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
}
.log-trans-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.log-trans-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.log-trans-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.log-trans-unit {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
.log-trans-desc {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin: 0;
}
.log-trans-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.log-trans-list li {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.log-trans-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .75rem;
}
.log-cap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.log-cap-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.log-cap-list li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
@media (max-width: 900px) {
  .log-trans-grid { grid-template-columns: 1fr 1fr; }
  .log-trans-col--caps { grid-column: 1 / -1; border-left: none; border-top: 1px solid rgba(255,255,255,.07); }
}
@media (max-width: 560px) {
  .log-trans-grid { grid-template-columns: 1fr; }
  .log-trans-col--caps { grid-column: auto; }
  .log-trans-inner { padding: 28px 20px 32px; }
  .log-trans-num { font-size: 2.2rem; }
}

/* ── Logistics How We Work ── */
.log-how-section {
  background: #011b10;
  padding: 60px 0 68px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.log-how-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .13em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 48px;
}
.log-how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.log-how-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}
.log-how-circle {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--gold);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.log-how-circle svg { width: 28px; height: 28px; }
.log-how-num {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.log-how-arrow {
  position: absolute;
  top: 31px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  display: flex;
  align-items: center;
  color: var(--gold);
  opacity: .7;
  pointer-events: none;
  width: calc(100% - 72px);
  justify-content: center;
}
.log-how-arrow svg { width: 100%; height: 10px; }
.log-how-step-title {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--white);
  margin: 0 0 8px;
  text-transform: uppercase;
  padding: 0 8px;
}
.log-how-step-text {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin: 0;
  padding: 0 10px;
  max-width: 140px;
}
@media (max-width: 900px) {
  .log-how-steps { flex-wrap: wrap; justify-content: center; gap: 32px 16px; }
  .log-how-item { flex: 0 0 calc(33% - 16px); }
  .log-how-arrow { display: none; }
}
@media (max-width: 480px) {
  .log-how-item { flex: 0 0 calc(50% - 16px); }
}

/* ── Logistics CTA Banner ── */
.log-cta-banner {
  background: #011b10;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 0;
}
.log-cta-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.log-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.log-cta-icon-wrap {
  display: none;
}
.log-cta-titles {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.log-cta-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  white-space: nowrap;
}
.log-cta-sub {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
  white-space: nowrap;
}
.log-cta-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.log-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .18s, transform .18s;
}
.log-cta-btn:hover { background: #d4aa2a; transform: translateY(-1px); }
@media (max-width: 900px) {
  .log-cta-inner { flex-wrap: wrap; gap: 20px; }
  .log-cta-title, .log-cta-sub { white-space: normal; }
}
@media (max-width: 560px) {
  .log-cta-left { flex-direction: column; align-items: flex-start; gap: 12px; }
  .log-cta-btn { width: 100%; justify-content: center; }
}

/* ── Procurement Crops Section ── */
.pcrop-section {
  background: #01180e;
  padding: 52px 0 60px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.pcrop-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.pcrop-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.pcrop-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,162,39,.15);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.pcrop-card:hover {
  border-color: rgba(201,162,39,.45);
  transform: translateY(-3px);
}
.pcrop-photo {
  height: 150px;
  background-size: cover;
  background-position: center;
  background-color: #0a2a14;
  flex-shrink: 0;
}
.pcrop-body {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pcrop-name {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pcrop-pts {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.pcrop-pts li {
  font-size: 12px;
  color: rgba(255,255,255,.58);
  line-height: 1.4;
  padding-left: 12px;
  position: relative;
}
.pcrop-pts li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.pcrop-more {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}
.pcrop-more:hover { text-decoration: underline; }
.pcrop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,162,39,.12);
  flex-wrap: wrap;
}
.pcrop-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.42);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.pcrop-allbtn {
  display: inline-flex;
  padding: 10px 22px;
  border: 1px solid rgba(201,162,39,.4);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: background .18s, color .18s;
}
.pcrop-allbtn:hover { background: var(--gold); color: #040a05; }
@media (max-width: 1100px) {
  .pcrop-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .pcrop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .pcrop-grid { grid-template-columns: 1fr; }
}

/* ── Procurement Why Section ── */
.pwhy-section {
  background: #01180e;
  border-top: 1px solid rgba(201,162,39,.1);
}
.pwhy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.pwhy-left {
  padding: 52px 52px 52px calc((100vw - var(--max-w)) / 2 + 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pwhy-title {
  font-family: var(--font-head);
  font-size: clamp(.9rem, 1.6vw, 1.2rem);
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.pwhy-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pwhy-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pwhy-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(201,162,39,.08);
  border: 1px solid rgba(201,162,39,.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.pwhy-icon svg { width: 22px; height: 22px; }
.pwhy-body { display: flex; flex-direction: column; gap: 4px; }
.pwhy-name {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0;
}
.pwhy-text {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin: 0;
}
.pwhy-photo {
  background-size: cover;
  background-position: center;
}
@media (max-width: 900px) {
  .pwhy-grid { grid-template-columns: 1fr; }
  .pwhy-photo { min-height: 260px; }
  .pwhy-left { padding: 40px 24px; }
}

/* Directions CTA strip */
.dir-cta-strip {
  background: var(--bg);
  border-top: 1px solid rgba(201,168,64,.15);
  border-bottom: 1px solid rgba(201,168,64,.10);
  padding: 28px 0;
}
.dir-cta-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.dir-cta-icon {
  display: none !important;
}
.dir-cta-text {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 320px;
}
.dir-cta-title {
  font-family: var(--font-head);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}
.dir-cta-sub {
  font-family: var(--font-head);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
}
.dir-cta-sub em { font-style: italic; }
.dir-cta-desc {
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  max-width: 280px;
}
.dir-cta-btn {
  flex-shrink: 0;
  margin-left: auto;
  background: var(--gold);
  color: var(--bg-dark);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 14px 28px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition);
}
.dir-cta-btn:hover { background: var(--gold-light); }

/* ============================================================
   ABOUT PAGE HERO
============================================================ */
.about-page-hero {
  margin-top: var(--header-h);
}
.aph-img-wrap {
  position: relative;
  height: 240px;
}
.aph-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.aph-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(1,14,7,.65) 0%,
    rgba(1,14,7,.45) 35%,
    rgba(1,14,7,.20) 60%,
    transparent 85%
  );
  pointer-events: none;
}
.aph-text-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}
.about-page-hero-inner {
  max-width: 520px;
  text-align: left;
}
.about-page-hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
.aph-line1 {
  display: block;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  color: var(--white);
  text-transform: uppercase;
}
.aph-line2 {
  display: block;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  color: var(--gold);
  text-transform: uppercase;
}
.aph-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.aph-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(201,162,39,.45);
  max-width: 80px;
}
.aph-divider-icon { flex-shrink: 0; }
.aph-sub {
  font-size: clamp(13px, 1.2vw, 16px);
  color: rgba(255,255,255,.82);
  line-height: 1.55;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
  font-weight: 400;
}

/* Page content */
.page-content .prose-light { max-width: 800px; }

/* ============================================================
   ABOUT — WHO WE ARE
============================================================ */
.about-who { background: #01180e; border-top: 1px solid rgba(201,168,64,.15); }
.about-who-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
}
.about-who-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.about-who-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.about-who-text {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
}
.about-who-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.awc-card {
  border: 1px solid rgba(201,168,64,.30);
  border-radius: 4px;
  padding: 26px 22px;
  background: rgba(255,255,255,.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: border-color .25s, background .25s;
}
.awc-card:hover {
  border-color: rgba(201,168,64,.65);
  background: rgba(201,168,64,.05);
}
.awc-icon { display: flex; justify-content: center; }
.awc-icon svg { width: 120px; height: 120px; display: block; }
.awc-icon-img { width: 120px; height: 120px; object-fit: contain; display: block; }
.awc-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
}
.awc-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   ABOUT — HISTORY TIMELINE
============================================================ */
.about-history { position: relative; overflow: hidden; }
.ah-wrap { position: relative; min-height: 260px; display: flex; align-items: center; }
.ah-bg-img {
  position: absolute;
  inset: 0; right: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.ah-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(1,24,14,.80) 45%, rgba(1,24,14,.60) 65%, rgba(1,24,14,.10) 100%);
  z-index: 1;
}
.ah-inner {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
  max-width: var(--max-w);
}
.ah-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
/* Timeline */
.ah-timeline { position: relative; max-width: 62%; }
.ah-tl-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}
/* Horizontal connecting line */
.ah-tl-track::before {
  content: '';
  position: absolute;
  top: calc(1em + 12px); /* aligns with dot center */
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: var(--gold);
  z-index: 0;
}
.ah-tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.ah-tl-year {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}
.ah-tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--gold);
  margin-bottom: 10px;
  flex-shrink: 0;
}
.ah-tl-text {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  max-width: 110px;
}

/* ============================================================
   ABOUT — STATS ROW
============================================================ */
.about-stats { background: #01180e; border-top: 1px solid rgba(201,168,64,.15); border-bottom: 1px solid rgba(201,168,64,.15); }
.about-stats-inner {
  display: flex;
  align-items: center;
  padding: 36px 0;
  gap: 0;
}
.ast-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
}
.ast-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ast-icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(68%) sepia(55%) saturate(500%) hue-rotate(4deg) brightness(97%) contrast(90%);
}
.ast-icon svg {
  width: 62px;
  height: 62px;
  display: block;
}
.ast-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ast-num {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.ast-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}
.ast-divider {
  width: 1px;
  height: 60px;
  background: rgba(201,168,64,.25);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT — INFRASTRUCTURE GRID
============================================================ */
.about-infra { background: #01180e; padding-top: 40px; }
.about-infra-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 24px 40px;
}
.infra-card {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: default;
  border-radius: 8px;
}
.infra-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.3) 55%, rgba(0,0,0,0) 100%);
  transition: background .3s;
}
.infra-card:hover::after {
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.5) 60%, rgba(0,0,0,.1) 100%);
}
.infra-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px 24px;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
}
.infra-card-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--white);
  text-transform: uppercase;
}
.infra-card-text {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

/* ============================================================
   ABOUT — GEOGRAPHY + TEAM (3 columns)
============================================================ */
.about-geo-team {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  height: 300px;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,64,.12);
  border-bottom: 1px solid rgba(201,168,64,.12);
}
/* Shared column base */
.agt-col {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
/* Col 1 – geo text */
.agt-col-geo {
  background: #032623;
  border-right: 1px solid rgba(201,168,64,.12);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
/* Col 2 – map image */
.agt-col-map {
  overflow: hidden;
  border-right: 1px solid rgba(201,168,64,.12);
}
.agt-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Col 3 – team */
.agt-col-team {
  position: relative;
  padding: 0;
  overflow: hidden;
}
/* Shared typography */
.agt-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.agt-text {
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 22px;
}
.btn-outline-gold-sm {
  display: inline-block;
  padding: 9px 22px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  text-decoration: none;
  transition: background .2s, color .2s;
  align-self: flex-start;
}
.btn-outline-gold-sm:hover { background: var(--gold); color: #060f08; }
/* Team col */
.agt-team-top { margin-bottom: 16px; }
.agt-team-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
}
.agt-team-text {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}
.agt-team-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.agt-team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.agt-team-top {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 50px 28px 0;
  transform: translateY(10%);
  background: linear-gradient(to top, rgba(6,15,8,1) 0%, rgba(6,15,8,.8) 50%, rgba(6,15,8,0) 100%);
}

/* ============================================================
   ABOUT — CERTIFICATES
============================================================ */
.about-certs {
  background: #01180e;
  padding: 32px 0 36px;
  border-top: 1px solid rgba(201,168,64,.12);
}
.about-certs-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.cert-item {
  display: grid;
  grid-template-rows: 128px auto;
  gap: 12px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
  align-content: start;
}
.cert-item:last-child { border-right: none; }
.cert-item--big { padding-top: 24px; }
.cert-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.cert-item:first-child .cert-logo {
  width: 85px;
  height: 85px;
}
.cert-logo--big {
  width: auto;
  height: 128px;
  max-width: 260px;
  object-fit: contain;
}
.cert-logo--xl {
  width: auto;
  height: 200px;
  max-width: 320px;
  object-fit: contain;
}
.cert-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.cert-text {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

/* ============================================================
   PARTNERS — HERO BANNER
============================================================ */
.partners-banner {
  position: relative;
  background-size: cover;
  background-position: center 35%;
  overflow: hidden;
}
.partners-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(4,12,6,.60) 0%,
    rgba(4,12,6,.42) 40%,
    rgba(4,12,6,.18) 70%,
    rgba(4,12,6,.04) 100%);
}
.partners-banner-inner {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 52px);
  padding-bottom: 64px;
  max-width: 520px;
  text-align: left;
}
.partners-banner-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
}
.pb-line-white { display: block; color: var(--white); }
.pb-line-gold  { display: block; color: var(--gold); }
.partners-banner-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0,0,0,.7);
  max-width: 420px;
}

/* ============================================================
   PARTNERS — FOR WHOM GRID
============================================================ */
.for-whom {
  background: #01180e;
  padding-top: 48px;
  padding-bottom: 0;
}
.for-whom-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fwc {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.fwc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
  z-index: 0;
}
.fwc:hover .fwc-bg {
  transform: scale(1.07);
}
.fwc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(4,10,6,.95) 0%,
    rgba(4,10,6,.65) 50%,
    rgba(4,10,6,.25) 100%);
  z-index: 1;
}
.fwc-body {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
}
.fwc-icon {
  display: none;
}
.fwc-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 10px;
}
.fwc-text {
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}

/* ============================================================
   PARTNERS — WHY PARTNER
============================================================ */
.why-partner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.why-partner-content {
  background: #01180e;
  padding: 56px 64px 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-partner-content { padding-left: calc((100vw - var(--max-w)) / 2 + 24px); }
.why-partner-heading {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 36px;
  letter-spacing: .04em;
}
.why-partner-list { display: flex; flex-direction: column; gap: 28px; }
.wpi { display: flex; align-items: flex-start; gap: 18px; }
.wpi-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.wpi-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.wpi-text {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}
.why-partner-photo {
  background-size: cover;
  background-position: center;
}

/* ============================================================
   PARTNERS — BENEFITS STRIP
============================================================ */
.partner-benefits {
  background: #01180e;
  border-top: 1px solid rgba(201,162,39,.15);
  border-bottom: 1px solid rgba(201,162,39,.15);
  padding: 52px 0;
}
.partner-benefits-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 36px;
}
.pb-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  align-items: start;
}
.pb-item {
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(255,255,255,.08);
}
.pb-item:last-child { border-right: none; padding-right: 0; }
.pb-item + .pb-item { padding-left: 28px; }
.pb-item-icon {
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb-png-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  object-position: top center;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(68%) sepia(25%) saturate(900%) hue-rotate(5deg) brightness(88%);
}
.pb-item-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.pb-item-text {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}

/* ============================================================
   PARTNERS — GEO + PRINCIPLES
============================================================ */
.geo-principles {
  display: flex;
  background: #01180e;
  border-top: 1px solid rgba(201,162,39,.12);
}
.geo-col {
  flex: 1 1 50%;
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.geo-heading {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  padding: 36px 40px 0 calc((100vw - var(--max-w)) / 2 + 24px);
}
.geo-map {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .55;
}
.geo-regions {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  gap: 0;
  background: linear-gradient(to top, rgba(6,13,7,.92) 0%, rgba(6,13,7,.6) 60%, transparent 100%);
  padding: 28px calc(40px) 28px calc((100vw - var(--max-w)) / 2 + 24px);
  z-index: 2;
}
.geo-region {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  padding-right: 16px;
}
.geo-region-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.geo-region-name {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 4px;
}
.geo-region-text { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.5; }

.geo-divider {
  width: 1px;
  background: rgba(201,162,39,.2);
  margin: 40px 0;
}

.pr-col {
  flex: 1 1 50%;
  padding: 52px calc((100vw - var(--max-w)) / 2 + 24px) 52px 56px;
  display: flex;
  flex-direction: column;
}
.pr-col .geo-heading { padding: 0; margin-bottom: 24px; }
.pr-list { display: flex; flex-direction: column; gap: 24px; }
.pr-item { display: flex; align-items: flex-start; gap: 16px; }
.pr-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.pr-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.pr-text { font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.6; }

/* ============================================================
   PARTNERS — CTA BANNER
============================================================ */
.partner-cta-banner {
  position: relative;
  background-size: cover;
  background-position: center 60%;
  min-height: 100px;
}
.partner-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,10,5,.58) 0%, rgba(4,10,5,.42) 50%, rgba(4,10,5,.30) 100%);
}
.partner-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 28px;
  padding-bottom: 28px;
}
.partner-cta-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.partner-cta-icon {
  display: none;
}
.partner-cta-title {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}
.partner-cta-accent {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .02em;
}
.partner-cta-sub {
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}
.partner-cta-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 13px 28px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.partner-cta-btn:hover { background: var(--gold); color: #040a05; }

/* ============================================================
   CONTACT — BANNER
============================================================ */
.contact-banner {
  position: relative;
  background-size: cover;
  background-position: 30% center;
  min-height: 444px;
  display: flex;
  align-items: flex-end;
}
.contact-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,8,4,.52) 0%, rgba(3,8,4,.32) 55%, rgba(3,8,4,.08) 100%);
}
.contact-banner-inner {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 52px;
}
.contact-banner-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: .03em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.contact-banner-sub {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.9;
  max-width: 340px;
}

/* ============================================================
   NEWS — HERO + GRID
============================================================ */
.news-hero {
  position: relative;
  background-size: cover;
  background-position: center center;
  min-height: 420px;
  overflow: hidden;
}
.news-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(2,10,4,.55) 0%,
    rgba(2,10,4,.38) 40%,
    rgba(2,10,4,.15) 70%,
    rgba(2,10,4,.04) 100%);
}
.news-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 40px;
  max-width: 560px;
}
.news-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.news-hero-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  color: rgba(255,255,255,.80);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 420px;
}
.news-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.50);
}
.news-breadcrumb a {
  color: rgba(255,255,255,.50);
  text-decoration: none;
  transition: color var(--transition);
}
.news-breadcrumb a:hover { color: var(--gold); }
.news-breadcrumb span[aria-hidden] { font-size: 14px; }
/* Filter bar */
.news-filter-bar {
  background: #01180e;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0;
}
.news-filter-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  width: 100%;
}
.news-filter-inner::-webkit-scrollbar { display: none; }
.news-filter-btn {
  flex: 1;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  border-left: none;
  color: rgba(255,255,255,.7);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 22px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.news-filter-btn:first-child { border-left: 1px solid rgba(255,255,255,.15); }
.news-filter-btn:hover {
  background: rgba(255,255,255,.05);
  color: var(--white);
}
.news-filter-btn.active {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}
.news-filter-btn.active + .news-filter-btn {
  border-left-color: var(--gold);
}

.news-list-section { background: #01180e; padding: 48px 0 80px; }

/* Two-column layout: main + sidebar */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
.news-main { min-width: 0; }

/* News grid — 3 cols inside main */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Cards */
.news-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}
.news-card:hover { border-color: rgba(201,162,39,.35); transform: translateY(-2px); }
.news-card-img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  text-decoration: none;
}
.news-card-img-wrap img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.news-card:hover .news-card-img-wrap img { transform: scale(1.04); }
.news-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--bg-dark);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  line-height: 1.4;
}
.news-card-body { padding: 18px 20px 22px; display:flex; flex-direction:column; gap:8px; flex:1; }
.news-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}
.news-card-date svg { flex-shrink: 0; opacity: .6; }
.news-card-title { font-family:var(--font-head); font-size:15px; font-weight:700; line-height:1.4; }
.news-card-title a { color:var(--white); text-decoration:none; }
.news-card-title a:hover { color:var(--gold); }
.news-card-excerpt { font-size:13px; color:rgba(255,255,255,.55); line-height:1.6; }
.news-card-more {
  margin-top: auto;
  padding-top: 4px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .08em;
}
.news-card-more:hover { text-decoration: underline; }
.news-empty { color:var(--text-muted); text-align:center; padding:80px 0; }

/* Pagination */
.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 8px;
}
.npg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}
.npg-btn:hover { border-color: var(--gold); color: var(--gold); }
.npg-btn.active { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }
.npg-arrow { font-size: 16px; }
.npg-dots { color: rgba(255,255,255,.3); font-size: 14px; padding: 0 4px; }

/* Sidebar widgets */
.news-sidebar { display: flex; flex-direction: column; gap: 28px; }
.nsw {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 24px 22px;
}
.nsw-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
/* Filter form */
.nsw-filter-form { display: flex; flex-direction: column; gap: 14px; }
.nsw-field { display: flex; flex-direction: column; gap: 6px; }
.nsw-field label { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .06em; }
.nsw-field select {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-size: 13px;
  padding: 9px 12px;
  border-radius: 0;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a840' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
  cursor: pointer;
  width: 100%;
}
.nsw-field select option { background: #0d1f11; }
.nsw-apply {
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 12px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background var(--transition);
  margin-top: 4px;
  width: 100%;
}
.nsw-apply:hover { background: var(--gold-light); }
.nsw-reset {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color var(--transition);
}
.nsw-reset:hover { color: var(--gold); }
/* Popular news */
.nsw-popular-list { display: flex; flex-direction: column; gap: 16px; }
.nsw-popular-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
}
.nsw-popular-item:not(:last-child) { padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
.nsw-popular-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 48px;
  object-fit: cover;
  display: block;
}
.nsw-popular-thumb--empty { background: rgba(255,255,255,.06); }
.nsw-popular-info { flex: 1; min-width: 0; }
.nsw-popular-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  transition: color var(--transition);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.nsw-popular-item:hover .nsw-popular-title { color: var(--gold); }
.nsw-popular-date { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 4px; }

/* Newsletter subscribe strip */
.news-subscribe-strip {
  background: #0b1a0f;
  border-top: 1px solid rgba(201,168,64,.15);
  border-bottom: 1px solid rgba(201,168,64,.10);
  padding: 32px 0;
}
.nss-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nss-icon {
  flex-shrink: 0;
  color: var(--gold);
  line-height: 0;
}
.nss-heading {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 240px;
}
.nss-line1 {
  font-family: var(--font-head);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}
.nss-line2 {
  font-family: var(--font-head);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}
.nss-line2 em { color: var(--gold); font-style: italic; }
.nss-desc {
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  max-width: 300px;
}
.nss-form {
  display: flex;
  flex-shrink: 0;
  gap: 0;
}
.nss-input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-right: none;
  color: var(--white);
  font-size: 14px;
  padding: 12px 16px;
  width: 220px;
  outline: none;
  transition: border-color var(--transition);
}
.nss-input::placeholder { color: rgba(255,255,255,.35); }
.nss-input:focus { border-color: var(--gold); }
.nss-btn {
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 12px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.nss-btn:hover { background: var(--gold-light); }
.nss-btn:disabled { opacity: .6; cursor: default; }
.nss-success { color: var(--gold); font-size: 14px; font-weight: 600; }

/* ============================================================
   CONTACT — INFO STRIP
============================================================ */
.contact-strip {
  background: #01180e;
  border-bottom: 1px solid rgba(201,162,39,.15);
}
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.cs-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 32px 28px 0;
  border-right: 1px solid rgba(255,255,255,.07);
}
.cs-item:first-child { padding-left: 0; }
.cs-item:last-child { border-right: none; }
.cs-item + .cs-item { padding-left: 32px; }
.cs-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}
.cs-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.cs-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  line-height: 1.5;
}
a.cs-value:hover { color: var(--gold); }
.cs-note {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
}

/* ============================================================
   CONTACT — WRITE FORM SECTION
============================================================ */
.contact-write {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.contact-write-form {
  background: #01180e;
  display: flex;
  align-items: center;
}
.cwf-inner {
  padding: 60px 56px 60px calc((100vw - var(--max-w)) / 2 + 24px);
  width: 100%;
}
.cwf-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.cwf-sub {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
  line-height: 1.6;
}
.cwf-form .form-group { margin-bottom: 14px; }
.cwf-form input,
.cwf-form textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 0;
  outline: none;
  transition: border-color var(--transition);
}
.cwf-form input::placeholder,
.cwf-form textarea::placeholder { color: rgba(255,255,255,.35); }
.cwf-form input:focus,
.cwf-form textarea:focus { border-color: var(--gold); }
.cwf-form textarea { resize: vertical; }
.cwf-btn {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: .1em;
  padding: 14px 32px;
}
.contact-write-photo {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #01180e;
}

/* ============================================================
   CONTACT — GEO MAP SECTION
============================================================ */
.contact-cta-banner {
  position: relative;
  background-size: cover;
  background-position: center 60%;
  min-height: 100px;
}
.contact-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 28px;
  padding-bottom: 28px;
}
.cta-sub-text {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-top: 5px;
}
.contact-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--gold);
  color: #050d06;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.contact-cta-btn:hover { background: #e0b82a; color: #040a05; }

.contact-geo {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}
.contact-geo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,10,5,.92) 0%, rgba(4,10,5,.75) 35%, rgba(4,10,5,.35) 65%, rgba(4,10,5,.6) 100%);
}
.contact-geo-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 44px;
  padding-bottom: 36px;
  gap: 32px;
}
.cg-top { max-width: 380px; }
.cg-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cg-sub {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
}
.cg-regions {
  display: flex;
  gap: 40px;
}
.cg-region {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cg-region-icon {
  display: none;
}
.cg-region-name {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 4px;
}
.cg-region-text { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ============================================================
   CONTACT — FIND US SECTION
============================================================ */
.contact-find {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}
.contact-find-photo {
  background-size: cover;
  background-position: center;
}
.contact-find-info {
  background: #01180e;
  padding: 48px 56px 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.cf-title {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  color: var(--white);
}
.cf-list { display: flex; flex-direction: column; gap: 18px; }
.cf-item { display: flex; align-items: flex-start; gap: 14px; }
.cf-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,162,39,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-top: 1px;
}
.cf-text { font-size: 14px; color: var(--white); line-height: 1.5; }
.cf-link { text-decoration: none; transition: color var(--transition); }
.cf-link:hover { color: var(--gold); }
.cf-note { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 3px; }
.cf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
  align-self: flex-start;
}
.cf-btn:hover { background: var(--gold); color: #040a05; }

/* ============================================================
   ABOUT — CTA BANNER
============================================================ */
.about-cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100px;
  display: flex;
  align-items: center;
}
.about-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,15,8,.92) 45%, rgba(6,15,8,.5) 70%, rgba(6,15,8,.15) 100%);
}
.about-cta-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.about-cta-text {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.about-cta-accent { color: var(--gold); }

/* ============================================================
   PARTNERS PAGE
============================================================ */
.partners-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.benefits-col .section-title { color: var(--white); }
.benefits-col .prose-light ul { padding-left: 0; list-style: none; }
.benefits-col .prose-light li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: rgba(255,255,255,.8);
}
.benefits-col .prose-light li:last-child { border-bottom: none; }
.benefits-col .prose-light strong { color: var(--gold); font-weight: 700; }

/* ============================================================
   CONTACT / FORM
============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.ci-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.ci-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.ci-value { font-size: 15px; color: var(--white); line-height: 1.5; }
.ci-value a { color: var(--white); transition: color var(--transition); }
.ci-value a:hover { color: var(--gold); }

/* Form card */
.contact-form-card {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}
.form-card-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--white);
}

/* Forms */
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.3); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; }

.form-footer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-msg { font-size: 14px; }
.form-msg.success { color: #6ee7b7; }
.form-msg.error   { color: #fca5a5; }

/* Map */
.map-container { margin-top: 60px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }

/* ============================================================
   CONTACT INFO (standalone column)
============================================================ */
.contact-info-col .section-title { color: var(--white); margin-bottom: 32px; }

/* ============================================================
   404 PAGE
============================================================ */
.error-hero { min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; }
.error-code {
  font-family: var(--font-head);
  font-size: 10rem;
  font-weight: 900;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 16px;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #011b10;
  border-top: 1px solid rgba(201,162,39,.2);
  padding-top: 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr 1.8fr 1.3fr;
  gap: 32px;
  padding-bottom: 28px;
}

/* Brand col */
.footer-logo { display: block; margin-bottom: 10px; margin-left: -24px; }
.footer-logo-img { height: 50px; width: auto; }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; max-width: 300px; }

/* Vertical dividers between footer columns */
.footer-inner .footer-col + .footer-col {
  border-left: 1px solid rgba(201,162,39,.2);
  padding-left: 48px;
}

/* Column header */
.footer-col-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

/* Nav lists */
.footer-nav-list { list-style: none; }
.footer-nav-list li { margin-bottom: 6px; }
.footer-nav-list a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav-list a:hover { color: var(--gold); }
.footer-nav-list--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}
.footer-dirs-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-dirs-grid li { margin-bottom: 0 !important; }
.footer-dir-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 2px 0;
  white-space: nowrap;
  transition: color var(--transition);
}
.footer-dir-link:hover { color: var(--gold); }
.footer-dir-arrow {
  display: none;
}
.footer-dir-link:hover .footer-dir-arrow { transform: translateX(3px); }

/* Contact items */
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.fc-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.fc-value { font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.5; display: block; }
.fc-value:hover { color: var(--gold); }
.fc-sub { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); display: block; }

/* Lang switcher in footer-bottom */
.footer-lang-switcher { display: flex; gap: 6px; }
.footer-lang-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text-muted);
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.footer-lang-btn:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.footer-lang-btn.active { color: var(--gold); border-color: var(--border-gold); }

.footer-bottom {
  border-top: 1px solid rgba(201,162,39,.18);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   DIRECTIONS PHOTO CARDS (directions detail page)
============================================================ */
.directions-page { background: var(--bg); }
.directions-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.dir-photo-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.dir-photo-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.dir-photo-card-img {
  height: 210px;
  background-size: cover;
  background-position: center;
}
.dir-photo-card-body {
  padding: 28px 24px;
}
.dir-photo-card-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
}
.dir-photo-card-icon svg { width: 26px; height: 26px; }
.dir-photo-card-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.dir-photo-card-text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.dir-photo-card-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  transition: text-decoration var(--transition);
}
.dir-photo-card-link:hover { text-decoration: underline; }

/* ============================================================
   PHOTO SERVICE CARDS (home page)
============================================================ */
.services-photo,
.services-photo.section-pad.dark { background: #011b10; }
.services-photo .section-title.light { margin-bottom: 8px; }
.services-intro { color: var(--text-muted); text-align: center; max-width: 640px; margin: 0 auto 48px; font-size: 15px; line-height: 1.7; }

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
  cursor: default;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,.55);
}

.service-card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.service-card:hover .service-card-photo { transform: scale(1.06); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4,18,10,.95) 0%,
    rgba(4,18,10,.60) 40%,
    rgba(4,18,10,.25) 70%,
    transparent 100%
  );
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  padding: 16px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.service-card-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,162,39,.35);
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 12px;
  transition: background .25s;
}
.service-card:hover .service-card-icon { background: var(--gold); color: var(--bg-dark); }
.service-card-icon svg { width: 22px; height: 22px; }

.service-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.service-card-text {
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   COMPANY GALLERY / ABOUT VISUAL (home page)
============================================================ */
.company-visual { background: var(--white); }
.company-visual-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.company-visual-text .section-title { color: var(--bg-dark); }
.company-visual-text .prose { margin-bottom: 28px; }
.company-visual-text .btn-gold-outline {
  color: var(--bg);
  border-color: var(--border-gold);
}
.company-visual-text .btn-gold-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.company-photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 12px;
}
.mosaic-photo {
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.mosaic-photo--large {
  grid-row: 1 / 3;
  grid-column: 1;
}
.mosaic-photo--top-right { grid-column: 2; grid-row: 1; }
.mosaic-photo--bottom-right { grid-column: 2; grid-row: 2; }

/* ============================================================
   CTA BANNER — PHOTO VARIANT
============================================================ */
.cta-banner--photo {
  position: relative;
  background-image: url('/assets/images/hero-slide-2.png');
  background-size: cover;
  background-position: center 60%;
}
.cta-banner--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 10, .45);
  pointer-events: none;
}
.cta-banner--photo .cta-inner { position: relative; z-index: 1; }
.cta-banner--photo .cta-text h2 { text-shadow: 0 2px 12px rgba(0,0,0,.5); }

/* CTA heading (new full-width text) */
.cta-heading {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  max-width: 680px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT SECTION (home page — text left, photo right)
============================================================ */
.about-section {
  background: #01180e;
  overflow: hidden;
}
.about-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-section-text { display: flex; flex-direction: column; gap: 0; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.dark-title {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 24px;
  line-height: 1.2;
}
.dark-prose { color: rgba(255,255,255,.75); margin-bottom: 32px; }
.dark-prose p { margin-bottom: 14px; line-height: 1.75; }
.about-section-photo {
  position: relative;
  margin-right: calc(50% - 50vw);
}
.about-section-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #011b10 0%, #011b10 5%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}
.about-section-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* Services section label (centered) */
.section-tag-center {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

/* 6-column service grid */
.service-cards-grid--6 {
  grid-template-columns: repeat(6, 1fr);
}
.stats-inner--6 .stat-number {
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
}
.stats-inner--6 .stat-item { padding: 0 16px; }

/* Service card arrow link */
.service-card-arrow {
  display: none !important;
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
  font-size: 16px;
  margin-top: 10px;
  transition: background var(--transition), border-color var(--transition);
  align-self: flex-end;
}
.service-card:hover .service-card-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* ── 1024px — Tablet landscape ──────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner              { grid-template-columns: 1fr; }
  .hero-decor              { display: none; }
  .about-teaser-inner      { grid-template-columns: 1fr; }
  .footer-inner            { grid-template-columns: 1fr 1fr; gap: 36px; }
  .directions-grid         { grid-template-columns: 1fr; }
  .service-cards-grid      { grid-template-columns: repeat(2, 1fr); }
  .service-cards-grid--6   { grid-template-columns: repeat(3, 1fr); }
  .company-visual-inner    { grid-template-columns: 1fr; }
  .company-photo-mosaic    { grid-template-rows: 220px 180px; }
  .about-section-inner     { grid-template-columns: 1fr; }
  .about-section-photo img { height: 320px; }

  .stats-inner,
  .stats-inner--6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-inner--6 .stat-number { font-size: clamp(1rem, 2.2vw, 1.4rem); }
  /* Fix borders for 3-column stats */
  .stat-item                     { border-right: 1px solid var(--border); }
  .stat-item:nth-child(3n)       { border-right: none; }
  .stat-item:nth-child(n+4)      { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 0; }
}

/* ── 768px — Tablet portrait / large phone ──────────────── */
@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }
  .section-pad         { padding: 52px 0; }
  .container           { padding: 0 20px; }
  .service-cards-grid,
  .service-cards-grid--6 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .service-card        { height: 240px; }
  .about-section-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-section-photo img { height: 240px; }
  .stats-inner--6      { grid-template-columns: repeat(2, 1fr); }
  .cta-inner           { flex-direction: column; text-align: center; }
  .cta-heading         { max-width: 100%; }
  .company-photo-mosaic { grid-template-columns: 1fr; grid-template-rows: 240px 180px 180px; }
  .mosaic-photo--large { grid-row: 1; grid-column: 1; }
  .mosaic-photo--top-right { grid-column: 1; grid-row: 2; }
  .mosaic-photo--bottom-right { grid-column: 1; grid-row: 3; }
  .logo-img            { height: 44px; }

  /* ── Mobile nav drawer ─────────────────────── */
  .site-nav {
    position: fixed;
    top: var(--header-h); right: 0;
    width: min(320px, 88vw);
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h)); /* dynamic viewport */
    background: var(--bg-dark);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    z-index: 195;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .site-nav.open { transform: translateX(0); box-shadow: -8px 0 32px rgba(0,0,0,.4); }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding-top: 8px;
  }
  .nav-link {
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px; /* touch target */
  }
  .nav-link::after {
    content: '→';
    font-size: 14px;
    color: var(--text-muted);
    transition: transform var(--transition), color var(--transition);
  }
  .nav-item.active .nav-link { color: var(--gold); background: rgba(201,162,39,.06); }
  .nav-item.active .nav-link::after { color: var(--gold); transform: translateX(4px); }
  /* Remove the desktop underline active indicator */
  .nav-item.active .nav-link > span.nav-underline { display: none; }

  /* Lang switcher injected into mobile nav footer */
  .mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
  }
  .mobile-nav-cta {
    display: block;
    padding: 13px 20px;
    background: var(--gold);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .03em;
    border-radius: var(--radius);
    text-align: center;
  }
  .mobile-lang-row {
    display: flex;
    gap: 8px;
  }
  .mobile-lang-btn {
    flex: 1;
    padding: 9px 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .2s;
  }
  .mobile-lang-btn.active   { color: var(--gold); border-color: var(--border-gold); }
  .mobile-lang-btn:hover    { color: var(--white); }

  /* ── Header ────────────────────────────────── */
  .burger      { display: flex; }
  .btn-cta      { display: none; }
  .header-phone { display: none; }
  /* Hide desktop lang switcher on mobile — it's in the drawer */
  .header-right .lang-switcher { display: none; }

  /* ── Hero ──────────────────────────────────── */
  .hero {
    min-height: 100svh;
    padding-top: var(--header-h);
  }
  .hero-inner       { padding-top: 40px; padding-bottom: 0; gap: 28px; }
  .hero-badge       { font-size: 10px; margin-bottom: 18px; }
  .hero-title       { font-size: clamp(2.2rem, 8vw, 2.8rem); margin-bottom: 20px; }
  .hero-desc        { font-size: 15px; margin-bottom: 28px; }
  .hero-actions     { gap: 12px; }
  .hero-actions .btn { flex: 1; justify-content: center; min-height: 48px; }

  /* ── Stats strip ───────────────────────────── */
  .stats-strip      { padding: 24px 0; }
  .stats-inner      { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item        { padding: 16px; border-right: 1px solid var(--border) !important; border-top: none !important; }
  .stat-item:nth-child(2n)  { border-right: none !important; }
  .stat-item:nth-child(n+3) { border-top: 1px solid var(--border) !important; }
  .stat-number      { font-size: 1.8rem; }
  .stat-label       { font-size: 10px; }

  /* ── About teaser ──────────────────────────── */
  .about-teaser-numbers { grid-template-columns: 1fr 1fr; gap: 16px; }
  .atn-item             { padding: 18px; }
  .atn-num              { font-size: 1.6rem; }

  /* ── Directions ────────────────────────────── */
  .dir-grid         { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .dir-full-card    { flex-direction: column; gap: 18px; padding: 24px 20px; }

  /* ── CTA banner ────────────────────────────── */
  .cta-inner        { flex-direction: column; text-align: center; gap: 24px; }
  .cta-inner .btn   { width: 100%; justify-content: center; }

  /* ── Partners / Contact ────────────────────── */
  .partners-inner   { grid-template-columns: 1fr; gap: 36px; }
  .contact-inner    { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-card { padding: 24px 18px; }
  .form-card-title  { font-size: 1.25rem; margin-bottom: 20px; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-footer      { flex-direction: column; align-items: stretch; }
  .form-footer .btn { width: 100%; justify-content: center; min-height: 50px; }
  .map-container    { margin-top: 36px; }

  /* ── Page hero ─────────────────────────────── */
  .page-hero        { padding: calc(var(--header-h) + 36px) 0 48px; }
  .page-hero-title  { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .page-hero-sub    { font-size: 15px; }

  /* ── Section title ─────────────────────────── */
  .section-title    { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* ── Footer ────────────────────────────────── */
  .site-footer      { padding-top: 40px; }
  .footer-inner     { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-desc      { max-width: 100%; }
  .footer-nav-list  { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
  .footer-nav-list li { margin-bottom: 0; }
  .footer-nav-list a  { padding: 6px 0; display: block; min-height: 40px; display: flex; align-items: center; }

  /* ── 404 ───────────────────────────────────── */
  .error-code       { font-size: 6rem; }
}

/* ── ABOUT PAGE — 900px ─────────────────────────────────── */
@media (max-width: 900px) {
  /* Who we are */
  .about-who-inner    { grid-template-columns: 1fr; gap: 32px; }
  .about-who-cards    { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .awc-card           { padding: 20px 14px; }
  .awc-icon-img       { width: 72px; height: 72px; }

  /* History timeline */
  .ah-timeline        { max-width: 100%; }
  .ah-overlay         { background: rgba(1,24,14,.88); }
  .ah-tl-track        { grid-template-columns: repeat(3, 1fr); gap: 20px 0; }
  .ah-tl-track::before { display: none; }

  /* Stats strip */
  .about-stats-inner  { flex-wrap: wrap; justify-content: flex-start; }
  .ast-item           { flex: 0 0 50%; box-sizing: border-box; padding: 20px 20px; }
  .ast-divider        { display: none; }

  /* Infrastructure */
  .infra-grid         { grid-template-columns: repeat(2, 1fr); padding: 0 16px 28px; }
  .infra-card         { height: 240px; }

  /* Geo + Team — stack vertically */
  .about-geo-team     { grid-template-columns: 1fr; height: auto; }
  .agt-col            { padding: 28px 20px; }
  .agt-col-geo        { padding: 28px 20px; }
  .agt-col-map        { height: 200px; }
  .agt-col-team       { height: 300px; }

  /* Certs */
  .certs-grid         { grid-template-columns: repeat(3, 1fr); }
  .cert-item          { padding: 16px 12px; }
  .cert-item:nth-child(3n) { border-right: none; }
  .cert-logo          { width: 48px; height: 48px; }
  .cert-item:first-child .cert-logo { width: 64px; height: 64px; }
  .cert-logo--big     { height: 90px; }
  .cert-logo--xl      { height: 140px; }
}

/* ── ABOUT PAGE — 480px ─────────────────────────────────── */
@media (max-width: 480px) {
  /* Who we are */
  .about-who-cards    { grid-template-columns: 1fr 1fr; gap: 8px; }
  .awc-icon-img       { width: 56px; height: 56px; }

  /* History */
  .ah-tl-track        { grid-template-columns: repeat(2, 1fr); }

  /* Stats — full width stack */
  .ast-item           { flex: 0 0 100%; border-bottom: 1px solid rgba(201,168,64,.15); padding: 14px 16px; }
  .ast-item:last-child { border-bottom: none; }

  /* Infrastructure */
  .infra-grid         { grid-template-columns: 1fr; }

  /* Certs */
  .certs-grid         { grid-template-columns: repeat(2, 1fr); }
  .cert-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.07); }
  .cert-item:nth-child(2n) { border-right: none; }
}

/* ── 480px — Small phones ───────────────────────────────── */
@media (max-width: 480px) {
  .container      { padding: 0 16px; }
  .section-pad    { padding: 44px 0; }

  .hero-title     { font-size: clamp(1.9rem, 9vw, 2.4rem); }
  .hero-actions   { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .stats-inner    { grid-template-columns: 1fr 1fr; }
  .stat-item      { padding: 14px 12px; }
  .stat-number    { font-size: 1.5rem; }

  .about-teaser-numbers { grid-template-columns: 1fr 1fr; gap: 10px; }
  .atn-item       { padding: 14px 12px; }
  .atn-num        { font-size: 1.35rem; }

  .dir-card       { padding: 24px 18px; }
  .dir-full-card  { padding: 20px 16px; }

  .contact-form-card { padding: 20px 14px; }

  .cta-text h2    { font-size: 1.3rem; }

  /* Footer nav single column on very small */
  .footer-nav-list { grid-template-columns: 1fr; }
  .footer-nav-list li { margin-bottom: 4px; }

  .error-code     { font-size: 5rem; }
}

/* ── 375px — iPhone SE / very small ────────────────────── */
@media (max-width: 375px) {
  :root { --header-h: 56px; }
  .hero-title     { font-size: 1.75rem; }
  .btn            { padding: 12px 20px; font-size: 13px; }
  .btn-lg         { padding: 13px 24px; }
}

/* ── iOS safe area (notch / home indicator) ─────────────── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .site-footer .footer-bottom {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
  .site-nav {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ── Prefers reduced motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── PNG icon images inside circle containers ─────────────── */
.stat-icon-circle img  { width: 42px; height: 42px; object-fit: contain; }
.dir-feat-icon img     { width: 39px; height: 39px; object-fit: contain; }
.dir-cap-icon img      { width: 42px; height: 42px; object-fit: contain; }
.dir-step-icon img     { width: 48px; height: 48px; object-fit: contain; }
.wpi-icon img          { width: 42px; height: 42px; object-fit: contain; }
.pr-icon img           { width: 36px; height: 36px; object-fit: contain; }
.ast-icon img          { width: 60px; height: 60px; object-fit: contain; }
.dir-nav-icon img      { width: 48px; height: 48px; object-fit: contain; }
.dir-svc-icon img      { width: 36px; height: 36px; object-fit: contain; }
.log-ben-icon img      { width: 39px; height: 39px; object-fit: contain; }
.log-svc-icon img      { width: 42px; height: 42px; object-fit: contain; }
.log-how-circle img    { width: 42px; height: 42px; object-fit: contain; }
.q-cap-icon img        { width: 42px; height: 42px; object-fit: contain; }
.exp-step-icon img     { width: 48px; height: 48px; object-fit: contain; }
.pwhy-icon img         { width: 54px; height: 54px; object-fit: contain; }
