:root {
  --navy: #001841;
  --navy-soft: #07285b;
  --green: #7dbc26;
  --green-dark: #5f9819;
  --orange: #e86f32;
  --gold: #ffc857;
  --ink: #1c2637;
  --muted: #667085;
  --paper: #ffffff;
  --cream: #f7f9f0;
  --line: #e6ebdf;
  --shadow: 0 18px 44px rgba(0, 24, 65, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(1170px, calc(100% - 32px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(0, 24, 65, 0.08);
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar__social {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__social a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.topbar__social a:hover,
.topbar__social a:focus-visible {
  background: rgba(125, 188, 38, 0.28);
  transform: translateY(-1px);
}

.topbar__social svg {
  width: 15px;
  height: 15px;
}

.topbar svg,
.navbar svg,
.service-card svg,
.value-list svg,
.contact-list svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  min-width: max-content;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 10px 22px rgba(125, 188, 38, 0.22);
}

.brand strong {
  display: block;
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 3px;
  background: var(--green);
  transition: right 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  right: 0;
}

.nav-cta,
.whatsapp-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
}

.nav-cta {
  padding: 0 18px;
  color: var(--paper);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(232, 111, 50, 0.24);
}

.whatsapp-cta {
  gap: 8px;
  padding: 0 16px;
  color: #062a18;
  background: #25d366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: min(640px, 64svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 24, 65, 0.68), rgba(0, 24, 65, 0.28) 48%, rgba(0, 24, 65, 0.04)),
    linear-gradient(180deg, rgba(0, 24, 65, 0.04), rgba(0, 24, 65, 0.08));
  pointer-events: none;
}

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

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: transform 5200ms ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 14px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--orange));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 72px 0 66px;
  text-shadow: 0 3px 16px rgba(0, 24, 65, 0.72);
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 4;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  transform: translateX(-50%);
}

.hero__dots button {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition:
    background 160ms ease,
    transform 160ms ease,
    width 160ms ease;
}

.hero__dots button.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateY(-1px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 14px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: "Montserrat Alternates", Arial, sans-serif;
  margin: 0;
  color: inherit;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  font-size: clamp(43px, 6vw, 76px);
  font-weight: 800;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
}

h3 {
  font-size: 21px;
  font-weight: 800;
}

.hero__copy {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero__actions,
.section-heading--split {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__actions {
  margin-top: 30px;
}

.button {
  padding: 0 22px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.whatsapp-cta:hover,
.whatsapp-cta:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--paper);
  background: var(--green);
  box-shadow: 0 14px 32px rgba(125, 188, 38, 0.26);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--green-dark);
}

.button--ghost {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button--compact {
  min-height: 42px;
  color: var(--navy);
  background: var(--gold);
}

.metrics {
  background: var(--navy);
  color: var(--paper);
}

.metrics__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metrics__inner > div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.metrics__inner > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.metrics strong {
  color: var(--gold);
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.metrics span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.section {
  padding: 88px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 64px;
}

.media-stack {
  position: relative;
}

.media-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-stack__badge {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: min(240px, 72%);
  padding: 20px;
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius);
  border-top: 4px solid var(--green);
  box-shadow: var(--shadow);
}

.media-stack__badge span,
.product-card span {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.media-stack__badge strong {
  display: block;
  margin-top: 4px;
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.15;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  color: var(--muted);
}

.section-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
}

.value-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.about-read-more {
  margin-top: 28px;
}

.value-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 900;
}

.value-list svg {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--green);
  border-radius: 50%;
  background: rgba(125, 188, 38, 0.12);
}

.services,
.process {
  background: var(--cream);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 38px;
}

.section-heading--split {
  max-width: none;
  justify-content: space-between;
}

.section-heading--split > div {
  max-width: 720px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.product-card,
.catalog-card,
.product-tile,
.logistics-card,
.testimonial-card,
.process-track > div,
.contact-form {
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(0, 24, 65, 0.08);
}

.service-card {
  min-height: 292px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 188, 38, 0.45);
}

.service-card svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--paper);
  border-radius: var(--radius);
  background: var(--green);
}

.service-card h3 {
  margin-top: 22px;
  color: var(--navy);
  font-size: 20px;
}

.service-card p,
.process-track p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  padding: 20px;
}

.product-card h3 {
  min-height: 72px;
  margin-top: 8px;
  color: var(--navy);
  font-size: 20px;
}

.product-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.product-category-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(125, 188, 38, 0.32);
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--navy);
  background: rgba(125, 188, 38, 0.08);
  font-size: 14px;
  font-weight: 900;
}

.product-catalog {
  display: grid;
  gap: 32px;
}

.product-category {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcf8;
}

.product-category__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.product-category__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--paper);
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: 0 12px 26px rgba(125, 188, 38, 0.22);
}

.product-category__icon svg {
  width: 25px;
  height: 25px;
}

.product-category__heading .eyebrow {
  margin-bottom: 5px;
  font-size: 12px;
}

.product-category__heading h3 {
  color: var(--navy);
  font-size: 28px;
}

.product-category__heading > span {
  margin-left: auto;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--navy);
  background: var(--gold);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.product-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 16px;
}

.product-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-tile:hover,
.product-tile:focus-within {
  transform: translateY(-5px);
  border-color: rgba(125, 188, 38, 0.42);
  box-shadow: 0 16px 34px rgba(0, 24, 65, 0.14);
}

.product-tile__image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(125, 188, 38, 0.14), rgba(255, 200, 87, 0.18)),
    #f6f8f2;
}

.product-tile__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 24, 65, 0.2)),
    linear-gradient(135deg, rgba(125, 188, 38, 0.16), rgba(255, 200, 87, 0.08));
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  transform: translateY(10%);
}

.product-tile:hover .product-tile__image::after,
.product-tile:focus-within .product-tile__image::after {
  opacity: 1;
  transform: translateY(0);
}

.product-tile__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity 180ms ease,
    transform 320ms ease,
    filter 320ms ease;
}

.product-tile:hover .product-tile__image img,
.product-tile:focus-within .product-tile__image img {
  filter: saturate(1.14) contrast(1.06);
  transform: scale(1.08);
}

.product-tile__fallback {
  position: relative;
  z-index: 2;
  display: block;
  padding: 14px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.product-tile.is-image-loaded img {
  opacity: 1;
}

.product-tile.is-image-loaded .product-tile__fallback {
  display: none;
}

.product-tile.is-image-missing img {
  display: none;
}

.product-tile.is-image-missing .product-tile__fallback {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .product-tile,
  .product-tile__image::after,
  .product-tile__image img {
    transition: none;
  }

  .product-tile:hover,
  .product-tile:focus-within,
  .product-tile:hover .product-tile__image img,
  .product-tile:focus-within .product-tile__image img {
    transform: none;
  }
}

.product-tile__body {
  padding: 14px 14px 16px;
}

.product-tile__body span {
  display: block;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-tile__body h3 {
  min-height: 44px;
  margin-top: 6px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.catalog-card {
  padding: 24px;
  border: 1px solid var(--line);
}

.catalog-card__heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.catalog-card__heading svg {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--paper);
  border-radius: var(--radius);
  background: var(--green);
}

.catalog-card__heading span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card__heading h3 {
  margin-top: 4px;
  color: var(--navy);
  font-size: 20px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.product-list li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(125, 188, 38, 0.26);
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--navy);
  background: rgba(125, 188, 38, 0.08);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: process;
}

.process-track > div {
  position: relative;
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.process-track span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  color: var(--paper);
  border-radius: 50%;
  background: var(--navy);
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-weight: 800;
}

.process-track h3 {
  color: var(--navy);
}

.logistics {
  background: var(--paper);
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.logistics-card {
  overflow: hidden;
  border: 1px solid var(--line);
}

.logistics-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.logistics-card div {
  padding: 20px;
}

.logistics-card span,
.testimonial-card > span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.logistics-card h3 {
  margin-top: 8px;
  color: var(--navy);
  font-size: 20px;
}

.testimonials {
  background: var(--cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.testimonial-card {
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--line);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-card p {
  margin: 20px 0 24px;
  color: var(--muted);
  font-size: 15px;
}

.testimonial-card strong {
  display: block;
  color: var(--navy);
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.25;
}

.testimonial-card > span {
  margin-top: 8px;
}

.certification-panel {
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(0, 24, 65, 0.1);
}

.certification-panel img {
  width: 100%;
  height: auto;
}

.social-section {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(0, 24, 65, 0.94), rgba(0, 24, 65, 0.78)),
    url("assets/images/cargo-ship-sunset.jpg") center / cover;
}

.social-section .eyebrow {
  color: var(--gold);
}

.social-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.6fr);
  align-items: center;
  gap: 42px;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.social-links a {
  min-height: 118px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 18px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.social-links svg {
  width: 34px;
  height: 34px;
}

.brand-svg {
  fill: currentColor;
}

.contact {
  background:
    linear-gradient(90deg, rgba(0, 24, 65, 0.94), rgba(0, 24, 65, 0.82)),
    url("https://images.unsplash.com/photo-1567306226416-28f0efdc88ce?auto=format&fit=crop&w=1500&q=80") center / cover;
  color: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  align-items: start;
  gap: 56px;
}

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

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list a,
.contact-list > span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.contact-list svg {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--gold);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.contact-form {
  padding: 28px;
  color: var(--ink);
}

.form-honey,
.contact-submit-frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-200vw);
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcf8;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(125, 188, 38, 0.13);
}

.contact-form .button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.thankyou-modal[hidden] {
  display: none;
}

.thankyou-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 24, 65, 0.74);
  backdrop-filter: blur(8px);
}

.thankyou-modal__panel {
  position: relative;
  width: min(440px, 100%);
  padding: 34px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(0, 24, 65, 0.32);
  text-align: center;
}

.thankyou-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--paper);
  cursor: pointer;
}

.thankyou-modal__close svg {
  width: 18px;
  height: 18px;
}

.thankyou-modal__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--paper);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(125, 188, 38, 0.28);
}

.thankyou-modal__icon svg {
  width: 30px;
  height: 30px;
}

.thankyou-modal h2 {
  color: var(--navy);
  font-size: 30px;
}

.thankyou-modal p {
  margin: 12px 0 24px;
  color: var(--muted);
}

.thankyou-modal__email {
  display: inline-block;
  margin: -12px 0 22px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.footer {
  background: #06152d;
  color: rgba(255, 255, 255, 0.76);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 46px 0 34px;
}

.brand--footer,
.brand--footer small {
  color: var(--paper);
}

.footer p {
  max-width: 440px;
  margin: 16px 0 0;
}

.footer-contact {
  display: grid;
  gap: 10px;
  max-width: 480px;
  margin-top: 18px;
}

.footer-contact a,
.footer-contact > span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.footer-contact svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--gold);
}

.footer-contact .footer-whatsapp {
  width: max-content;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius);
  color: #062a18;
  background: #25d366;
}

.footer-contact .footer-whatsapp svg {
  margin-top: 0;
  color: #062a18;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--paper);
  font-weight: 900;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer__credit {
  flex: 0 0 100%;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.login-page main {
  flex: 1;
}

.login-hero {
  min-height: 640px;
  display: grid;
  align-items: center;
  padding: 86px 0;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(0, 24, 65, 0.94), rgba(0, 24, 65, 0.78)),
    url("https://images.unsplash.com/photo-1567306226416-28f0efdc88ce?auto=format&fit=crop&w=1500&q=80") center / cover;
}

.login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: 54px;
}

.login-copy {
  max-width: 690px;
}

.login-copy .eyebrow {
  color: var(--gold);
}

.login-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
}

.login-panel {
  padding: 34px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.login-panel__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--paper);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(125, 188, 38, 0.26);
}

.login-panel__icon svg {
  width: 28px;
  height: 28px;
}

.login-panel h2 {
  margin-top: 24px;
  color: var(--navy);
  font-size: 30px;
}

.login-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.login-button {
  width: 100%;
  margin-top: 26px;
}

.login-panel__secondary {
  display: block;
  margin-top: 16px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: center;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(0, 24, 65, 0.94), rgba(0, 24, 65, 0.68)),
    url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1500&q=80") center / cover;
}

.products-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 24, 65, 0.94), rgba(0, 24, 65, 0.62)),
    url("assets/images/cargo-ship-aerial.jpg") center / cover;
}

.services-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 24, 65, 0.94), rgba(0, 24, 65, 0.62)),
    url("assets/images/cargo-ship-side.jpg") center / cover;
}

.contact-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 24, 65, 0.94), rgba(0, 24, 65, 0.62)),
    url("assets/images/cargo-ship-deck.jpg") center / cover;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero__content {
  padding: 76px 0;
}

.page-hero__content p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.about-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 42px;
  align-items: start;
}

.about-story {
  display: grid;
  gap: 18px;
}

.about-story p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.about-highlight {
  display: grid;
  gap: 16px;
}

.about-highlight div,
.mission-grid article,
.about-list-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(0, 24, 65, 0.08);
}

.about-highlight div {
  padding: 24px;
}

.about-highlight svg,
.mission-grid svg,
.about-list-grid svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--paper);
  border-radius: var(--radius);
  background: var(--green);
}

.about-highlight span {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-highlight strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-size: 21px;
  line-height: 1.2;
}

.about-values,
.why-us {
  background: var(--cream);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mission-grid article {
  padding: 30px;
}

.mission-grid .eyebrow {
  margin-top: 24px;
}

.mission-grid h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.mission-grid p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.about-list-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.about-list-layout h2 {
  font-size: clamp(28px, 3.5vw, 42px);
}

.about-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-list-grid div {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  color: var(--navy);
  font-weight: 900;
}

.about-list-grid svg {
  flex: 0 0 44px;
}

.about-cta {
  padding: 64px 0;
  color: var(--paper);
  background: var(--navy);
}

.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.about-cta h2 {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 44px);
}

@media (max-width: 980px) {
  .topbar__address,
  .topbar__time,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .whatsapp-cta {
    width: 44px;
    min-width: 44px;
    padding: 0;
  }

  .whatsapp-cta span {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 120px 16px auto;
    display: none;
    margin: 0;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .media-stack__badge {
    right: 14px;
  }

  .two-column,
  .contact-layout,
  .about-detail__grid,
  .about-list-layout,
  .login-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .service-grid,
  .product-grid,
  .catalog-grid,
  .mission-grid,
  .logistics-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-layout {
    grid-template-columns: 1fr;
  }

  .metrics__inner,
  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics__inner > div:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 640px) {
  .footer-contact .footer-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 24px, 1170px);
  }

  .topbar {
    display: none;
  }

  .navbar {
    min-height: 70px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .nav-links {
    inset: 82px 12px auto;
  }

  .hero {
    min-height: min(560px, 62svh);
    background-position: 58% center;
  }

  .hero__content {
    padding: 54px 0 48px;
  }

  .hero__copy {
    font-size: 17px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 280px;
  }

  .button {
    width: 100%;
  }

  .metrics__inner,
  .service-grid,
  .product-grid,
  .catalog-grid,
  .logistics-grid,
  .testimonial-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .metrics__inner > div,
  .metrics__inner > div:last-child,
  .metrics__inner > div:nth-child(2n) {
    min-height: 96px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 62px 0;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero__content {
    padding: 58px 0;
  }

  .login-hero {
    min-height: auto;
    padding: 62px 0;
  }

  .login-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .login-panel {
    padding: 22px;
  }

  .section-heading--split {
    align-items: stretch;
  }

  .product-category {
    padding: 16px;
  }

  .mission-grid,
  .about-list-grid {
    grid-template-columns: 1fr;
  }

  .about-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .product-category__heading {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .product-category__heading > span {
    margin-left: 0;
  }

  .product-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-tile__body {
    padding: 12px;
  }

  .product-tile__body h3 {
    min-height: 40px;
    font-size: 14px;
  }

  .media-stack__badge {
    right: 14px;
    bottom: 14px;
  }

  .product-card h3 {
    min-height: auto;
  }

  .contact-form {
    padding: 20px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }
}
