/* TR Global Export — brand styles aligned to company profile (forest green + brass gold) */
:root {
  --ink: #0a3d32;
  --ink-2: #0f4d40;
  --ink-3: #156354;
  --gold: #c5a059;
  --gold-2: #b08d45;
  --blue: #4a9bc7;
  --muted: #8a8578;
  --paper: #f7f4ea;
  --line: rgba(255,255,255,.12);
  --ink-rgb: 10, 61, 50;
  --gold-rgb: 197, 160, 89;
  --font-d: "Cormorant Garamond", "Times New Roman", serif;
  --font-b: "Outfit", system-ui, sans-serif;
  --header-h: 5.95rem;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: #1a1a1a;
  background: var(--paper);
  line-height: 1.65;
  padding-top: var(--header-h);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
h1,h2,h3,h4,.display-font { font-family: var(--font-d); font-weight: 700; letter-spacing: -.01em; line-height: 1.15; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1040;
  background: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}
.navbar { padding-top: .55rem; padding-bottom: .55rem; }
.navbar-brand { margin-right: 1rem; }
.navbar-brand img {
  height: 78px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .35));
}
.nav-link {
  color: rgba(255,255,255,.82) !important;
  font-weight: 500;
  font-size: .92rem;
  padding: .4rem .75rem !important;
}
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.dropdown-menu {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .4rem;
}
.dropdown-item {
  color: rgba(255,255,255,.85);
  border-radius: calc(var(--radius) - 4px);
  font-size: .9rem;
}
.dropdown-item:hover { background: rgba(var(--gold-rgb),.12); color: var(--gold); }
.btn-gold {
  background: var(--gold);
  color: #111;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  padding: .7rem 1.25rem;
}
.btn-gold:hover { background: var(--gold-2); color: #000; }
.btn-outline-light-soft {
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  border-radius: var(--radius);
  padding: .7rem 1.25rem;
  font-weight: 600;
}
.btn-outline-light-soft:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.btn-dark-brand {
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: .7rem 1.25rem;
  font-weight: 600;
}
.btn-dark-brand:hover { background: #222; color: var(--gold); }
.btn-outline-brand {
  border: 1px solid rgba(var(--ink-rgb), .35);
  color: var(--ink);
  border-radius: var(--radius);
  padding: .7rem 1.25rem;
  font-weight: 600;
  background: transparent;
}
.btn-outline-brand:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.about-home__media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.about-home__media img {
  width: 100%;
  height: clamp(360px, 52vw, 480px);
  object-fit: cover;
}
.about-home__media--poster {
  background: #f3efe2;
  border: 1px solid rgba(var(--gold-rgb), .35);
}
.about-home__media--poster img {
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: top center;
}
.about-home__media--poster::after { display: none; }
.about-home__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(var(--ink-rgb), .35));
  pointer-events: none;
}
.about-home .section-sub { margin-bottom: 1rem; }
.about-home__copy {
  color: #555;
  margin-bottom: .9rem;
  max-width: 38rem;
}
.about-home__points {
  list-style: none;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  border-top: 1px solid rgba(var(--ink-rgb), .12);
}
.about-home__points li {
  display: grid;
  grid-template-columns: minmax(7.5rem, 9.5rem) 1fr;
  gap: .75rem 1.25rem;
  padding: .95rem 0;
  border-bottom: 1px solid rgba(var(--ink-rgb), .12);
  align-items: baseline;
}
.about-home__points strong {
  font-family: var(--font-d);
  font-size: .95rem;
  color: var(--ink);
  font-weight: 700;
}
.about-home__points span {
  color: #5c5c5c;
  font-size: .94rem;
  line-height: 1.5;
}
.about-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

@media (max-width: 575.98px) {
  .about-home__points li {
    grid-template-columns: 1fr;
    gap: .25rem;
  }
}

.hero {
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  position: relative;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
/* Soft bottom fade only — keeps the illustration bright */
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(var(--ink-rgb), .28) 100%);
}
.hero-inner { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--gold); font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.hero .eyebrow {
  margin-bottom: 1rem;
  color: var(--gold);
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  max-width: 14ch;
  margin-bottom: 1rem;
}
.hero .lead {
  color: rgba(255, 255, 255, .9);
  max-width: 34rem;
  font-size: 1.1rem;
}
/* Compact panel behind copy only — image stays full-bleed and clear */
.hero-copy {
  max-width: 36rem;
  padding: 1.5rem 1.5rem 1.65rem;
  background: rgba(var(--ink-rgb), .82);
  border: 1px solid rgba(var(--gold-rgb), .4);
  backdrop-filter: blur(2px);
}

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-muted { background: #efece0; }
.section-light { background: #fff; color: #1a1a1a; }
.section-title { margin-bottom: .85rem; }
.section-sub { color: #666; max-width: 36rem; }
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,.65); }
.section-dark .eyebrow { color: var(--gold); }

/* Why Choose feature grid */
.why-choose { background: #fff; }
.why-choose__intro { max-width: 40rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.why-choose__intro .section-sub { max-width: 34rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(var(--ink-rgb), .1);
  border-left: 1px solid rgba(var(--ink-rgb), .1);
}
.why-item {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(var(--ink-rgb), .1);
  border-bottom: 1px solid rgba(var(--ink-rgb), .1);
  transition: background .35s ease;
}
.why-item:hover { background: rgba(var(--ink-rgb), .03); }
.why-icon {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  color: var(--ink);
  background: rgba(var(--gold-rgb), .18);
  border-radius: 50%;
}
.why-icon svg { width: 1.25rem; height: 1.25rem; }
.why-item h3 {
  font-size: 1.15rem;
  margin-bottom: .45rem;
}
.why-item p {
  margin: 0;
  color: #5c5c5c;
  font-size: .94rem;
  max-width: 28ch;
  line-height: 1.55;
}
.why-item[data-reveal]:nth-child(2) { transition-delay: .06s; }
.why-item[data-reveal]:nth-child(3) { transition-delay: .12s; }
.why-item[data-reveal]:nth-child(4) { transition-delay: .18s; }
.why-item[data-reveal]:nth-child(5) { transition-delay: .24s; }
.why-item[data-reveal]:nth-child(6) { transition-delay: .3s; }

/* Journey — Export Grade badge + steps */
.journey-section {
  background:
    radial-gradient(ellipse 60% 50% at 0% 40%, rgba(var(--gold-rgb), .1), transparent 55%),
    linear-gradient(180deg, #f4f4f2 0%, #ebebe8 100%);
}
.export-badge {
  position: relative;
  width: min(100%, 22rem);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
.export-badge__ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(var(--ink-rgb), .28);
  animation: badge-spin 22s linear infinite;
}
.export-badge__ring--delay {
  inset: 0;
  border-style: solid;
  border-color: rgba(var(--gold-rgb), .45);
  animation: badge-pulse 3.2s ease-in-out infinite;
}
.export-badge__core {
  position: relative;
  z-index: 1;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 30% 25%, #1a6b58 0%, var(--ink) 62%, #052820 100%);
  color: #fff;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, .55),
    0 18px 40px rgba(var(--ink-rgb), .28);
  animation: badge-breathe 4s ease-in-out infinite;
}
.export-badge__eyebrow {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .55rem;
}
.export-badge__title {
  font-family: var(--font-d);
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: .4rem;
}
.export-badge__sub {
  font-size: .88rem;
  color: rgba(255, 255, 255, .78);
  font-weight: 500;
}
@keyframes badge-spin {
  to { transform: rotate(360deg); }
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.03); opacity: 1; }
}
@keyframes badge-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

@media (prefers-reduced-motion: reduce) {
  .export-badge__ring,
  .export-badge__ring--delay,
  .export-badge__core {
    animation: none;
  }
}

.journey-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}
.journey-steps__item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.journey-steps__num {
  flex: none;
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-2);
  line-height: 1.2;
  min-width: 1.75rem;
}
.journey-steps__item h3 {
  font-size: 1.05rem;
  margin-bottom: .3rem;
}
.journey-steps__item p {
  margin: 0;
  color: #5c5c5c;
  font-size: .9rem;
  line-height: 1.5;
}
.journey-steps__item[data-reveal]:nth-child(2) { transition-delay: .06s; }
.journey-steps__item[data-reveal]:nth-child(3) { transition-delay: .12s; }
.journey-steps__item[data-reveal]:nth-child(4) { transition-delay: .18s; }
.journey-steps__item[data-reveal]:nth-child(5) { transition-delay: .24s; }
.journey-steps__item[data-reveal]:nth-child(6) { transition-delay: .3s; }

.cta-band {
  background:
    linear-gradient(135deg, #f3ead2 0%, #e8d7a8 45%, #dfc98a 100%);
  color: #1a1a1a;
  border-top: 1px solid rgba(var(--ink-rgb), .08);
  border-bottom: 1px solid rgba(var(--ink-rgb), .08);
}
.cta-band .section-sub { color: #5a5340; }

.product-card {
  position: relative; display: block; overflow: hidden;
  background: #fff; color: #fff; min-height: 340px;
  border-radius: 2px;
  border: 1px solid rgba(var(--ink-rgb), .08);
}
.product-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  padding: 1.1rem 1.1rem 4.5rem;
  transition: transform .7s ease;
  background: #fff;
}
.product-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(var(--ink-rgb), .88) 100%);
  pointer-events: none;
}
.product-card:hover img { transform: scale(1.04); }
.product-card .body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 1.25rem 1.2rem;
}
.product-card .tag { color: var(--gold); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .35rem; }
.product-card h3 { font-size: 1.25rem; margin: 0; }

.process-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 1.75rem;
  position: relative;
  counter-reset: none;
}
.process-rail::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--ink-rgb), .22) 8%, rgba(var(--ink-rgb), .22) 92%, transparent);
  pointer-events: none;
}
.process-rail__item {
  position: relative;
  padding-top: .35rem;
}
.process-rail__num {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(var(--ink-rgb), .16);
  color: var(--ink);
  font-family: var(--font-d);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.02em;
  box-shadow: 0 0 0 6px #f3f2ec;
  position: relative;
  z-index: 1;
  transition: border-color .35s, background .35s, color .35s, transform .35s;
}
.process-rail__item h3 {
  font-size: 1.35rem;
  margin-bottom: .55rem;
}
.process-rail__item p {
  margin: 0;
  color: #5c5c5c;
  font-size: .95rem;
  max-width: 22ch;
  line-height: 1.55;
}
.process-rail__item:hover .process-rail__num {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold);
  transform: translateY(-2px);
}
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
.process-rail__item[data-reveal]:nth-child(2) { transition-delay: .08s; }
.process-rail__item[data-reveal]:nth-child(3) { transition-delay: .16s; }
.process-rail__item[data-reveal]:nth-child(4) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 991.98px) {
  .process-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-rail::before { display: none; }
  .process-rail__num { box-shadow: none; }
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .export-badge {
    width: min(100%, 18rem);
    margin-bottom: .5rem;
  }
}

@media (max-width: 575.98px) {
  .process-rail {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 1.15rem;
    border-left: 1px solid rgba(var(--ink-rgb), .18);
  }
  .process-rail__item {
    padding: 0 0 1.75rem 1.15rem;
  }
  .process-rail__item:last-child { padding-bottom: 0; }
  .process-rail__num {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 2.2rem;
    height: 2.2rem;
    font-size: .82rem;
    margin: 0;
    background: #f3f2ec;
  }
  .process-rail__item h3 { margin-top: .15rem; }
  .process-rail__item p { max-width: none; }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-item p {
    max-width: none;
  }
  .journey-steps {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  position: relative;
  color: #fff;
  min-height: clamp(20rem, 48vh, 30rem);
  display: flex;
  align-items: flex-end;
  padding: 3.25rem 0 3.5rem;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
/* Same soft overlay as home hero */
.page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(var(--ink-rgb), .28) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-copy {
  max-width: 40rem;
  padding: 1.5rem 1.5rem 1.65rem;
  background: rgba(var(--ink-rgb), .82);
  border: 1px solid rgba(var(--gold-rgb), .4);
  border-radius: var(--radius);
  backdrop-filter: blur(2px);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); max-width: 18ch; margin: 0; }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero__lead {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, .9);
  font-size: 1.05rem;
  line-height: 1.65;
}

.gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.gallery-thumb img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s; }
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-thumb--pack {
  background: #fff;
  border: 1px solid rgba(var(--ink-rgb), .08);
}
.gallery-thumb--pack img {
  object-fit: contain;
  padding: .85rem;
  background: #fff;
}
.gallery-thumb:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-lightbox .modal-content {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.gallery-lightbox__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.gallery-lightbox .carousel-item img {
  max-height: min(80vh, 720px);
  width: 100%;
  object-fit: contain;
  background: #0a0a0a;
}
.gallery-lightbox .carousel-item img.gallery-lightbox__pack {
  background: #fff;
  padding: 1.5rem;
}
.gallery-lightbox .carousel-control-prev,
.gallery-lightbox .carousel-control-next {
  width: 12%;
}

.contact-panel {
  background: #fff;
  border: 1px solid #ddd;
  padding: clamp(1.25rem, 3vw, 2rem);
}
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-control, .form-select {
  border-radius: 3px;
  border-color: #d5d5d5;
  padding: .75rem .9rem;
  background: #fafafa;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(var(--gold-rgb),.2);
}
.form-label { font-weight: 600; font-size: .85rem; }

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 1.5rem;
}
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: var(--gold); }
.site-footer h6 {
  color: var(--gold); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.footer-logo { height: 64px; width: auto; margin-bottom: .85rem; }
.footer-products-cols {
  columns: 2;
  column-gap: 1.5rem;
}
.footer-products-cols li {
  break-inside: avoid;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 2rem; padding-top: 1.25rem;
  font-size: .85rem;
}

.float-wa {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 1050;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.float-wa:hover { color: #fff; transform: scale(1.06); }
.float-wa svg { width: 26px; height: 26px; fill: currentColor; }

/* Mission / vision / motive cards */
.mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 768px) {
  .mvv-grid { grid-template-columns: repeat(3, 1fr); }
}
.mvv-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(var(--ink-rgb), .1);
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem 1.6rem;
  height: 100%;
  box-shadow: 0 10px 28px rgba(var(--ink-rgb), .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mvv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--gold-rgb), .55);
  box-shadow: 0 16px 34px rgba(var(--ink-rgb), .12);
}
.mvv-card__icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .95);
  outline: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--gold);
}
.mvv-card__icon svg {
  width: 2rem;
  height: 2rem;
}
.mvv-card__label {
  margin: 0 0 .55rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mvv-card h3 {
  font-size: 1.3rem;
  margin: 0 0 .7rem;
  color: var(--ink);
  line-height: 1.25;
}
.mvv-card p {
  margin: 0;
  color: #444;
  font-size: .95rem;
  line-height: 1.6;
}

.about-offer {
  padding-top: 1.15rem;
  border-top: 2px solid rgba(var(--gold-rgb), .45);
  height: 100%;
}
.about-offer h3 {
  font-size: 1.25rem;
  margin-bottom: .55rem;
  color: var(--ink);
}
.about-offer p {
  margin: 0;
  color: #555;
  font-size: .95rem;
  line-height: 1.6;
  max-width: 34ch;
}
.about-offer--on-dark h3 { color: #fff; }
.about-offer--on-dark p { color: rgba(255, 255, 255, .65); }

.product-detail-img {
  width: 100%;
  height: auto;
  min-height: 360px;
  max-height: 480px;
  object-fit: contain;
  object-position: center;
  border-radius: 2px;
  background: #fff;
  border: 1px solid rgba(var(--ink-rgb), .08);
  padding: 1.25rem;
}
.product-overview {
  padding-top: 1.25rem;
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.product-overview__media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.product-crumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  margin: 0 0 .85rem;
  padding: .35rem .7rem;
  font-size: .8rem;
  letter-spacing: .02em;
  color: #6a6a6a;
  background: rgba(var(--ink-rgb), .06);
  border-radius: 2px;
}
.product-crumb a { color: var(--ink); font-weight: 600; }
.product-crumb a:hover { color: var(--gold-2); }
.product-overview__head {
  margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
  max-width: 44rem;
}
.product-overview__title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin: 0 0 .5rem;
  color: var(--ink);
}
.product-overview__tagline {
  margin: 0;
  color: #555;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 40rem;
}
.product-overview__copy {
  color: #555;
  margin-bottom: .9rem;
  max-width: 40rem;
  line-height: 1.65;
}
.product-specs {
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(var(--ink-rgb), .12);
}
.product-specs__row {
  display: grid;
  grid-template-columns: minmax(7rem, 9rem) 1fr;
  gap: .5rem 1.25rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(var(--ink-rgb), .12);
  margin: 0;
}
.product-specs dt {
  font-family: var(--font-d);
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.product-specs dd {
  margin: 0;
  color: #555;
  font-size: .94rem;
}
.product-enquiry-notes {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
}
.product-enquiry-notes li {
  position: relative;
  padding: .45rem 0 .45rem 1.15rem;
  color: #555;
  font-size: .94rem;
  line-height: 1.5;
}
.product-enquiry-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .9rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 575.98px) {
  .product-specs__row {
    grid-template-columns: 1fr;
    gap: .2rem;
  }
  .product-detail-img {
    min-height: 260px;
    max-height: 340px;
    padding: .85rem;
  }
}

@media (max-width: 991.98px) {
  :root { --header-h: 5.1rem; }
  .navbar-collapse {
    background: var(--ink);
    margin-top: .75rem;
    padding: 1rem;
    border: 1px solid var(--line);
  }
  .navbar-brand img { height: 64px; }
}

/* PDF-aligned sections — values, industry stats, certifications */
.values-strip {
  background:
    radial-gradient(ellipse 55% 40% at 50% 0%, rgba(var(--gold-rgb), .12), transparent 60%),
    #fff;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .values-grid { grid-template-columns: repeat(6, 1fr); gap: 1.1rem; }
}
.value-pill {
  text-align: center;
  padding: 1.55rem 1rem 1.4rem;
  border: 1px solid rgba(var(--ink-rgb), .1);
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  height: 100%;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.value-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--gold-rgb), .55);
  box-shadow: 0 14px 28px rgba(var(--ink-rgb), .1);
}
.value-pill__icon {
  width: 3.6rem;
  height: 3.6rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--gold-rgb), .55);
  background: rgba(var(--ink-rgb), .06);
  color: var(--ink);
}
.value-pill__icon svg {
  width: 1.85rem;
  height: 1.85rem;
}
.value-pill:hover .value-pill__icon {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--gold);
}
.value-pill h3 {
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 .45rem;
}
.value-pill p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.4;
  color: #5c574c;
}

.industry-band {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(var(--gold-rgb), .14), transparent 55%),
    #efece0;
}
.industry-band__note {
  font-size: .82rem;
  color: var(--muted);
  margin: 1rem 0 0;
  max-width: 36rem;
}
.stat-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: var(--ink);
  color: #fff;
  padding: 1.5rem 1.25rem 1.45rem;
  border: 1px solid rgba(var(--gold-rgb), .35);
  transition: border-color .25s ease, transform .25s ease;
}
.stat-card:hover {
  border-color: rgba(var(--gold-rgb), .7);
  transform: translateY(-3px);
}
.stat-card__icon {
  display: grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1rem;
  color: var(--gold);
  border: 1.5px solid rgba(var(--gold-rgb), .5);
  border-radius: 50%;
}
.stat-card__icon svg {
  width: 2rem;
  height: 2rem;
}
.stat-card__value {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(1.65rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: .5rem;
}
.stat-card__label {
  display: block;
  font-size: .88rem;
  line-height: 1.35;
  color: rgba(255,255,255,.75);
}
@media (max-width: 479.98px) {
  .stat-pair { grid-template-columns: 1fr; }
}

.cert-strip {
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(var(--gold-rgb), .14), transparent 55%),
    #fff;
}
.cert-strip.section-muted {
  background: #efece0;
}
.cert-logo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 768px) {
  .cert-logo-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
  .cert-logo-strip { grid-template-columns: repeat(5, 1fr); }
}
.cert-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.1rem;
  min-height: 8rem;
  border-right: 1px dashed rgba(var(--ink-rgb), .16);
  border-bottom: 1px dashed rgba(var(--ink-rgb), .16);
}
@media (min-width: 992px) {
  .cert-logo-item { border-bottom: none; }
  .cert-logo-item:last-child { border-right: none; }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .cert-logo-item:nth-child(3) { border-right: none; }
  .cert-logo-item:nth-child(n+4) { border-bottom: none; }
  .cert-logo-item:nth-child(5) { border-right: none; }
}
@media (max-width: 767.98px) {
  .cert-logo-item:nth-child(2n) { border-right: none; }
  .cert-logo-item:nth-last-child(-n+2) { border-bottom: none; }
}
.cert-logo-item img {
  display: block;
  width: 100%;
  height: 6.75rem;
  max-width: 11rem;
  object-fit: contain;
  object-position: center;
}

.empower-banner {
  margin: 0;
  padding: 1.35rem 1.5rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-d);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  border: 1px solid rgba(var(--gold-rgb), .55);
}

/* PDF-style promise band — full-bleed, six icon pillars */
.promise-band {
  width: 100%;
  margin: 0;
  padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1rem, 4vw, 3rem);
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(var(--gold-rgb), .45);
  border-bottom: 1px solid rgba(var(--gold-rgb), .45);
}
.promise-band__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.promise-band__heading {
  text-align: center;
  color: var(--gold);
  font-family: var(--font-d);
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 700;
  margin: 0 0 clamp(1.5rem, 3.5vw, 2.25rem);
  letter-spacing: -.01em;
}
.promise-band__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem .75rem;
}
@media (min-width: 768px) {
  .promise-band__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 0;
  }
}
@media (min-width: 1100px) {
  .promise-band__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.promise-band__grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .85rem;
  padding: 0 .65rem;
  position: relative;
}
@media (min-width: 1100px) {
  .promise-band__grid li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 12%;
    bottom: 18%;
    width: 0;
    border-right: 1px dotted rgba(255, 255, 255, .35);
  }
}
.promise-band__icon {
  width: 4.1rem;
  height: 4.1rem;
  border: 1.5px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.promise-band__icon svg {
  width: 2.15rem;
  height: 2.15rem;
}
.promise-band__label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(255, 255, 255, .92);
  max-width: 11rem;
}
.promise-band__footer {
  margin-top: clamp(1.5rem, 3.5vw, 2.35rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(var(--gold-rgb), .35);
  text-align: center;
}
.promise-band__brand {
  margin: 0;
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.promise-band__tagline {
  margin: .45rem 0 0;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}
.promise-band__tagline::before,
.promise-band__tagline::after {
  content: "❧";
  color: var(--gold);
  margin: 0 .55rem;
  font-size: .85em;
  letter-spacing: 0;
}

/* Sitewide box radius */
.about-home__media,
.about-home__media--poster,
.hero-copy,
.page-hero-copy,
.product-card,
.gallery-thumb,
.gallery-thumb--pack,
.contact-panel,
.about-offer,
.value-pill,
.stat-card,
.cert-logo-strip,
.alert,
.form-control,
.form-select,
.product-detail-img,
.product-crumb,
.framework-card,
.pillar-item,
.different-card,
.mvv-card {
  border-radius: var(--radius) !important;
}

/* Empowerment framework */
.empower-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(var(--gold-rgb), .16), transparent 55%),
    var(--ink);
}
.framework-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 768px) {
  .framework-grid { grid-template-columns: 1fr 1fr; }
}
.framework-card {
  background: linear-gradient(180deg, #fffef9 0%, #f4efe3 100%);
  border: 1px solid rgba(var(--gold-rgb), .55);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.framework-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .24);
}
.framework-card__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, #d4b36a 0%, var(--gold) 50%, #b8953f 100%);
  border-bottom: 1px solid rgba(var(--ink-rgb), .12);
}
.framework-card__num {
  flex: none;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-d);
  font-size: .95rem;
  font-weight: 700;
}
.framework-card h3 {
  margin: 0;
  padding: 0;
  background: transparent;
  color: #0a0a0a;
  font-size: 1.08rem;
  line-height: 1.25;
}
.framework-card ul {
  list-style: none;
  margin: 0;
  padding: 1.15rem 1.2rem 1.35rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
}
@media (min-width: 480px) {
  .framework-card ul { grid-template-columns: 1fr 1fr; column-gap: 1rem; }
}
.framework-card li {
  position: relative;
  padding-left: 1.4rem;
  color: #1a1a1a;
  font-size: .9rem;
  line-height: 1.4;
}
.framework-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .28rem;
  width: .85rem;
  height: .85rem;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 1.5px var(--gold);
}

.pillars-band {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.75rem, 4vw, 2.5rem) 1rem;
  border: 1px solid rgba(var(--gold-rgb), .4);
  background: rgba(255, 255, 255, .04);
}
.pillars-band__eyebrow {
  margin: 0 0 .4rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.pillars-band__title {
  margin: 0 0 1.75rem;
  color: #fff;
  font-family: var(--font-d);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem .75rem;
  padding: 0;
}
@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1rem; }
}
@media (min-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(9, 1fr); gap: 1rem .4rem; }
}
.pillar-item {
  text-align: center;
  padding: .35rem .2rem;
  background: transparent;
  border: 0;
}
.pillar-item__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto .75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .95);
  outline: none;
  background: transparent;
  color: var(--gold);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.pillar-item:hover .pillar-item__icon {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.pillar-item__icon svg {
  width: 1.85rem;
  height: 1.85rem;
}
.pillar-item h3 {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  font-family: var(--font-b);
  font-weight: 600;
}

/* What makes us different */
.different-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .different-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .different-grid { grid-template-columns: repeat(4, 1fr); }
}
.different-card {
  background: linear-gradient(160deg, #d4b36a 0%, var(--gold) 45%, #b8953f 100%);
  border: 1px solid rgba(var(--ink-rgb), .16);
  padding: 1.55rem 1.25rem 1.45rem;
  height: 100%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.different-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
}
.different-card__icon {
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .9);
  background: var(--ink);
  color: var(--gold);
}
.different-card__icon svg {
  width: 1.8rem;
  height: 1.8rem;
}
.different-card h3 {
  margin: 0 0 .35rem;
  font-size: 1.25rem;
  color: #0a0a0a;
}
.different-card__tag {
  margin: 0 0 .65rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
}
.different-card p:last-child {
  margin: 0;
  color: #1a1a1a;
  font-size: .92rem;
  line-height: 1.5;
}

/* Export desk — equal 3-up photo grid on brand green */
.about-home { background: var(--paper); }
.export-desk {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(var(--gold-rgb), .16), transparent 55%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  color: #fff;
}
.export-desk__intro {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.export-desk__intro .section-title { color: #fff; }
.export-desk__intro .section-sub {
  max-width: 32rem;
  color: rgba(255, 255, 255, .72);
}
.export-desk .eyebrow { color: var(--gold); }
.export-desk__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .export-desk__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.export-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .22);
  color: #fff;
  transition: transform .3s ease, box-shadow .3s ease, opacity .65s ease;
}
.export-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}
.export-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(0, 0, 0, .25);
}
.export-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.export-card:hover .export-card__media img { transform: scale(1.05); }
.export-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 38, 31, .78) 0%, rgba(6, 38, 31, .2) 45%, transparent 70%);
  pointer-events: none;
}
.export-card__label {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: .75rem 1rem;
  text-align: center;
  background: rgba(197, 160, 89, .78);
  color: #111;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 0 0 var(--radius) var(--radius);
  border-top: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 -6px 16px rgba(0, 0, 0, .18);
  backdrop-filter: blur(4px);
  transition: background .25s ease, color .25s ease;
}
.export-card:hover .export-card__label {
  background: rgba(10, 61, 50, .78);
  color: #fff;
}
.export-card[data-reveal]:nth-child(2) { transition-delay: .08s; }
.export-card[data-reveal]:nth-child(3) { transition-delay: .16s; }

/* Our technology — equal 2x2 photo grid, short copy */
.tech-flow { background: #fff; }
.products-home { background: #efece0; }
.tech-flow__intro {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.tech-flow__intro .section-sub { color: #5a5348; max-width: 32rem; }
.tech-flow__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .tech-flow__grid { grid-template-columns: 1fr 1fr; gap: 1.35rem; }
}
.tech-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f3ead2 0%, #e8d7a8 45%, #dfc98a 100%);
  border: 1px solid rgba(var(--ink-rgb), .1);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(10, 61, 50, .06);
  overflow: hidden;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease, opacity .65s ease;
}
.tech-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(10, 61, 50, .1);
}
.tech-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e6e1d0;
}
.tech-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.tech-card:hover .tech-card__media img { transform: scale(1.04); }
.tech-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1.25rem 1.4rem;
  flex: 1;
}
.tech-card__body h3 {
  margin: 0 0 .45rem;
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.tech-card__body p {
  margin: 0 0 1rem;
  color: #5a5348;
  font-size: .92rem;
  line-height: 1.55;
  max-width: 32ch;
  flex: 1;
}
.tech-card[data-reveal]:nth-child(2) { transition-delay: .08s; }
.tech-card[data-reveal]:nth-child(3) { transition-delay: .12s; }
.tech-card[data-reveal]:nth-child(4) { transition-delay: .16s; }
