:root {
  --navy-deep: #0A1530;
  --navy: #0D1B3D;
  --navy-mid: #142250;
  --navy-soft: #1E3060;
  --navy-line: #2A4080;
  --gold: #D4AF37;
  --gold-soft: #E9CC6E;
  --cream: #F8F6F0;
  --ink: #0D1B3D;
  --gray: #4A5568;
  --gray-light: #7C879C;
  --hairline: #E8EBF5;
  --teal: #0E7C7B;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Fraunces', serif;
  margin: 0;
  letter-spacing: -0.01em;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 500;
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 21, 48, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 15px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brandmark svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

/* ---- NEW BRANDMARK TEXT GROUP ---- */
.brand-text-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand-indonesia {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 3px 0 2px;
}

.brand-line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  max-width: 22px;
}

.brand-indonesia-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.5px;
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 7px;
  color: rgba(212, 175, 55, 0.65);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}


.nav-links {
  display: none;
}

/* Hiding standard nav links for the new desktop hamburger */

/* ---------- HAMBURGER MENU ---------- */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 100;
  padding: 10px;
  margin-right: -10px;
}

.hamburger span {
  width: 32px;
  height: 2px;
  background: var(--gold-soft);
  display: block;
  transition: all 0.3s;
}

.hamburger:hover span {
  background: #fff;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 21, 48, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  z-index: 998;
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.nav-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 360px;
  max-width: 100%;
  background: var(--navy-deep);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 50px 40px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

body.nav-open .nav-sidebar {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.close-nav {
  background: none;
  border: none;
  color: var(--gold-soft);
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.close-nav:hover {
  color: #fff;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.sidebar-links a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.sidebar-links a:hover {
  color: var(--gold);
}

.sidebar-links .nav-cta {
  margin-top: 20px;
  font-size: 15px;
  text-transform: none;
  font-family: 'Inter', sans-serif;
  justify-content: center;
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 12px 24px;
  border-radius: 2px;
  font-weight: 600;
  text-align: center;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10, 21, 48, 0.45) 0%, rgba(212, 140, 70, 0.35) 50%, rgba(14, 124, 123, 0.65) 100%), url(../images/hero_ship_new.png) center center / cover no-repeat;
  color: #fff;
}

.hero-inner {
  width: 100%;
  padding: 140px 32px 100px;
  max-width: 1180px;
  margin: 0 auto;
}

.hero .eyebrow {
  color: var(--gold-soft);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero .eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-soft);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  max-width: 820px;
  color: #fff;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
}

.hero p.lede {
  font-size: 17px;
  line-height: 1.65;
  color: #D6DCEC;
  max-width: 520px;
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 15px 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .2s, background .2s;
}

.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.coldchain-strip {
  border-top: 3px solid var(--gold);
  background: #05101f;
  padding: 28px 0;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.coldchain-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #B9C2DB;
  font-size: 11.5px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  cursor: default;
  flex-direction: column;
  text-align: center;
  gap: 8px;
}

.cc-item:hover {
  color: #fff;
}

.cc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.10);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.cc-icon svg {
  width: 20px;
  height: 20px;
}

.cc-item:hover .cc-icon {
  transform: translateY(-3px);
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.2);
}

.cc-item b {
  color: #fff;
  font-weight: 700;
  display: block;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.cc-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.10);
}

/* ---------- SECTION GENERIC ---------- */
section {
  padding: 100px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head .eyebrow {
  color: var(--teal);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-head .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--teal);
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  color: var(--navy);
}

.section-head p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px;
}

.section-head.on-dark h2 {
  color: #fff;
}

.section-head.on-dark p {
  color: #B9C2DB;
}

.section-head.on-dark .eyebrow {
  color: var(--gold-soft);
}

.section-head.on-dark .eyebrow::before {
  background: var(--gold-soft);
}

/* ---------- ABOUT ---------- */
.about {
  background: #fff;
  padding-bottom: 120px;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 70px;
}

.about-intro .section-head {
  margin-bottom: 0;
}

.about-copy p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 18px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.stat-wrap {
  margin-bottom: 70px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.stat {
  background: #fff;
  padding: 36px 32px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.stat .num {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.stat .label {
  font-size: 13.5px;
  color: var(--gray);
  margin-top: 14px;
  line-height: 1.5;
}

.vm-card {
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
  padding: 60px 70px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(212, 175, 55, 0.18);
  filter: brightness(1.15);
}

.vm-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
}

.vm-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow-vm {
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  margin-bottom: 16px;
}

.vm-vision h3 {
  font-size: 28px;
  line-height: 1.4;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  margin: 0;
}

.mission-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mission-list li {
  display: flex;
  gap: 16px;
  font-size: 16px;
  color: #D6DCEC;
  line-height: 1.5;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mission-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.mission-list span.num {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  padding-top: 2px;
}

/* ---------- WHY ---------- */
.why {
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.why-card {
  background: #fff;
  padding: 38px 32px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.why-card:hover {
  background: #FDFBF3;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.why-card .ic {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
}

.why-card h4 {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.65;
}

/* ---------- MARKETS / MAP ---------- */
.markets {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.markets::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 20%, rgba(212, 175, 55, 0.10), transparent 55%);
  pointer-events: none;
}

.markets-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.market-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.market-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.market-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.market-row .mk-name {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
}

.flag-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-soft);
}

.market-row .mk-note {
  font-size: 12.5px;
  color: #9AA5C2;
  max-width: 260px;
  text-align: right;
  line-height: 1.5;
}

.map-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  padding: 20px;
}

.map-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #9AA5C2;
  letter-spacing: 0.04em;
}

.map-caption b {
  color: var(--gold-soft);
}

/* ---------- CATEGORY BLOCKS ---------- */
.cat-banner {
  position: relative;
  height: 260px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.cat-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.cat-banner-inner {
  position: relative;
  padding: 0 32px 30px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  color: #fff;
}

.cat-banner .eyebrow {
  color: var(--gold-soft);
  margin-bottom: 10px;
}

.cat-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
}

.cat-banner .local {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #B9C2DB;
  margin-top: 6px;
}

.cat-body {
  background: #fff;
  padding: 56px 0 90px;
}

.species-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.sp-card {
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sp-card:hover {
  box-shadow: 0 20px 45px -15px rgba(13, 27, 61, 0.15);
  transform: translateY(-5px);
  filter: brightness(1.03);
}

.sp-photo {
  height: 170px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #EEF1F8;
}

.sp-photo .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 21, 48, 0.82);
  color: var(--gold-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  border-radius: 2px;
  text-transform: uppercase;
}

.sp-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.sp-photo.placeholder svg {
  width: 46px;
  height: 46px;
  opacity: 0.35;
}

.sp-info {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sp-info h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.sp-info .sci {
  font-style: italic;
  color: var(--gray-light);
  font-size: 13px;
  margin-top: 3px;
}

.sp-forms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.chip {
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--navy-soft);
  background: #EEF1F8;
  padding: 4px 9px;
  border-radius: 2px;
  letter-spacing: 0.02em;
}

.sp-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--gray-light);
  font-family: 'IBM Plex Mono', monospace;
}

/* ---------- SPEC TABLE PAGE ---------- */
.specs {
  background: var(--navy-deep);
  color: #fff;
}

.specs .section-head p {
  color: #9AA5C2;
}

.spec-tablewrap {
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 6px;
  overflow: hidden;
}

table.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

table.spec-table thead th {
  text-align: left;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding: 16px 18px;
  background: rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  white-space: nowrap;
}

table.spec-table tbody td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #D6DCEC;
  vertical-align: top;
}

table.spec-table tbody tr:last-child td {
  border-bottom: none;
}

table.spec-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

table.spec-table td.pname {
  font-weight: 600;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 15px;
}

table.spec-table td.sci {
  font-style: italic;
  color: #8B96B5;
  font-size: 12.5px;
}

table.spec-table td .mono-cell {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
}

.cat-pill {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
}

.cat-pill.fw {
  background: rgba(14, 124, 123, 0.18);
  color: #5FCFCE;
}

.cat-pill.pl {
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-soft);
}

.cat-pill.dm {
  background: rgba(198, 120, 90, 0.2);
  color: #E5A487;
}

.qc-pass {
  color: #7FD99B;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
}

.spec-note {
  margin-top: 24px;
  font-size: 12.5px;
  color: #8B96B5;
  line-height: 1.7;
  font-family: 'IBM Plex Mono', monospace;
}

/* ---------- LOGISTICS ---------- */
.logistics {
  background: var(--cream);
}

.log-header {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}

.log-header .eyebrow {
  justify-content: center;
}

.log-header .eyebrow::before {
  display: none;
}

.log-header p.sub-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 20px;
}

.log-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.log-grid .log-card:nth-child(even) {
  margin-top: 80px;
}

.log-card {
  background: #fff;
  padding: 44px 38px;
  border-radius: 2px;
  border: 1px solid var(--hairline);
  position: relative;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.log-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px -10px rgba(0, 0, 0, 0.1);
}

.log-card .step {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-weight: 600;
}

.log-card h4 {
  font-size: 20.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.log-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
}

/* ---------- FLOATING WA ---------- */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-wa:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.floating-wa svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

/* ---------- CONTACT ---------- */
.contact {
  position: relative;
  color: #fff;
  background: var(--navy-deep);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-inner {
  padding: 110px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: flex-start;
}

.contact-info .eyebrow {
  color: var(--gold-soft);
  margin-bottom: 20px;
}

.contact-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 48px;
  position: relative;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item .ic {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .ic {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.contact-item:hover .ic svg {
  stroke: var(--navy-deep);
}

.contact-item .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
  margin-top: 2px;
}

.contact-item .val {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-light);
  line-height: 1.5;
}

.contact-item .val a {
  color: var(--gray-light);
  transition: color 0.2s;
}

.contact-item .val a:hover {
  color: #fff;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-soft);
  fill: none;
  transition: all 0.3s ease;
}

.map-wrapper {
  position: relative;
  width: 100%;
  border-radius: 6px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-container {
  width: 100%;
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #111;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(85%) grayscale(40%);
}

footer {
  background: var(--navy-deep);
  padding: 34px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-inner .fl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  color: #7C879C;
  letter-spacing: 0.03em;
}

@media (max-width:900px) {

  .about-intro,
  .vm-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .markets-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .species-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .spec-tablewrap {
    overflow-x: auto;
  }

  table.spec-table {
    min-width: 760px;
  }

  .contact-grid {
    gap: 40px;
  }

  .map-container {
    height: 380px;
  }
}

@media (max-width:560px) {
  .species-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }

  .wrap {
    padding: 0 20px;
  }

  .nav {
    padding: 14px 20px;
  }

  .hero-inner {
    padding: 100px 20px 48px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .cc-divider {
    display: none;
  }

  .cc-item {
    width: 45%;
    margin-bottom: 10px;
  }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    padding: 20px 16px;
  }

  .stat .num {
    font-size: 32px;
  }

  .vm-card {
    padding: 40px 30px;
  }

  .cat-banner {
    height: 200px;
  }

  .map-container {
    height: 300px;
  }

  .contact-quote {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .log-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .log-grid .log-card:nth-child(even) {
    margin-top: 0;
  }

  .log-card {
    padding: 24px 20px;
  }

  .why-card {
    padding: 24px 20px;
  }

  .contact-item {
    padding: 16px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .floating-wa svg {
    width: 26px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

/* ---------- FAT FOOTER ---------- */
.fat-footer {
  padding: 80px 0 40px;
}

.ff-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.ff-brand .name {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.ff-brand .sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--gold-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ff-desc {
  font-size: 14.5px;
  color: var(--gray-light);
  line-height: 1.6;
  max-width: 320px;
}

.ff-col h5 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 24px;
}

.ff-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ff-links a {
  color: var(--gray-light);
  font-size: 14.5px;
  transition: color 0.2s;
}

.ff-links a:hover {
  color: #fff;
}

.ff-badges {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.ff-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  color: var(--gold-soft);
  text-align: center;
  line-height: 1.2;
}

.ff-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .ff-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .ff-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ff-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ---------- TABS ---------- */
.tabs-header {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--navy);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: rgba(212, 175, 55, 0.08);
}

.tab-btn.active {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.species-section {
  display: none;
  animation: fadeIn 0.4s ease;
}

.species-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .tabs-header {
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
  }

  .tab-btn {
    width: 100%;
  }
}

/* ---------- PRODUCT HIGHLIGHT GRID ---------- */
.product-highlight-section {
  background: var(--navy-deep);
  padding: 80px 0 0;
}

.product-highlight-section .section-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 640px;
}

.product-highlight-section .section-head .eyebrow {
  justify-content: center;
}

.product-highlight-section .section-head .eyebrow::before {
  display: none;
}

.ph-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 6px;
  overflow: hidden;
}

.ph-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.ph-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 25, 0.88) 0%, rgba(5, 10, 25, 0.3) 50%, transparent 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.ph-card:hover::before {
  background: linear-gradient(to top, rgba(5, 10, 25, 0.92) 0%, rgba(5, 10, 25, 0.55) 60%, rgba(5, 10, 25, 0.2) 100%);
}

.ph-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ph-card:hover img {
  transform: scale(1.07);
}

.ph-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px;
  z-index: 2;
}

.ph-card-name {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 4px;
}

.ph-card-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ph-card:hover .ph-card-sub {
  opacity: 1;
  transform: translateY(0);
}

.ph-card+.ph-card {
  border-left: 1px solid rgba(212, 175, 55, 0.12);
}

@media (max-width: 900px) {
  .ph-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ph-card+.ph-card {
    border-left: none;
  }

  .ph-card:nth-child(n+4) {
    border-top: 1px solid rgba(212, 175, 55, 0.12);
  }
}

@media (max-width: 560px) {
  .ph-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ph-card:nth-child(n+3) {
    border-top: 1px solid rgba(212, 175, 55, 0.12);
  }
}

/* ---------- COMBINED PRODUCTS + MARKETS ---------- */
.combined-section {
  background: var(--navy-deep);
  padding: 80px 0;
}

.combined-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.combined-col-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.combined-col-title::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold-soft);
}

/* Mini product cards for combined section */
.mini-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-prod-card {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.mini-prod-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mini-prod-card:hover img {
  transform: scale(1.08);
}

.mini-prod-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 25, 0.85) 0%, transparent 55%);
}

.mini-prod-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 10px;
  z-index: 2;
}

.mini-prod-label strong {
  font-family: 'Fraunces', serif;
  font-size: 12.5px;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.mini-prod-label span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.5px;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .combined-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ---------- FOOTER SOCIAL ICONS ---------- */
.ff-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.ff-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: all 0.25s ease;
  text-decoration: none;
}

.ff-social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.ff-social-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Gold separator line above footer */
.fat-footer {
  border-top: 3px solid var(--gold);
}