:root {
  --ink: #142a38;
  --muted: #526876;
  --navy: #0b3045;
  --blue: #1f83aa;
  --teal: #13736d;
  --ice: #f6fafb;
  --soft: #edf5f7;
  --line: #cfdde2;
  --white: #ffffff;
  --radius: 3px;
  --max: 1180px;
  --shadow: none;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

html[lang="ko"] body {
  font-family: Arial, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

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

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

p {
  margin: 0;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(207, 221, 226, 0.95);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  animation: headerDrop 420ms ease both;
}

.topbar {
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
  font-size: 0.82rem;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-inner div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-inner div a + a {
  position: relative;
  padding-left: 18px;
}

.topbar-inner div a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}

.topbar a {
  color: rgba(255, 255, 255, 0.88);
}

.topbar a:hover,
.topbar a:focus-visible {
  color: var(--white);
  outline: none;
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  transition: transform 220ms ease, border-color 220ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  border-color: rgba(39, 141, 184, 0.42);
  transform: scale(1.04);
}

.brand span {
  display: block;
  line-height: 1.15;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu a {
  position: relative;
  padding: 21px 11px;
  border-radius: 0;
  color: #2c4b5c;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 14px;
  height: 2px;
  background: transparent;
  transition: background-color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  color: var(--navy);
  outline: none;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a[aria-current="page"]::after {
  background: var(--blue);
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-switcher summary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.language-switcher[open] summary,
.language-switcher summary:hover,
.language-switcher summary:focus-visible {
  border-color: #a9c9d2;
  background: #f7fbfc;
  outline: none;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  min-width: 156px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(11, 48, 69, 0.12);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 9px;
  border-radius: 2px;
  color: #2c4b5c;
  font-size: 0.86rem;
  font-weight: 700;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a[aria-current="true"] {
  color: var(--navy);
  background: var(--soft);
  outline: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #18526f;
  transform: translateY(-1px);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
}

.hero {
  border-bottom: 1px solid var(--line);
  background: var(--ice);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.08fr;
  gap: 42px;
  align-items: center;
  padding: 48px 0 50px;
}

.hero .eyebrow,
.hero h1,
.hero-lede,
.hero-meta,
.hero-actions,
.hero-product-board,
.page-intro {
  animation: contentIn 680ms ease both;
}

.hero h1 {
  animation-delay: 80ms;
}

.hero-lede {
  animation-delay: 150ms;
}

.hero-actions {
  animation-delay: 220ms;
}

.hero-product-board {
  animation-delay: 180ms;
}

.eyebrow,
.section-label,
.crumb {
  display: inline-flex;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.13;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: 2.42rem;
  font-weight: 760;
}

.hero-lede {
  max-width: 720px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 18px;
  color: #29495b;
  font-size: 0.9rem;
}

.hero-meta span {
  padding-left: 10px;
  border-left: 2px solid var(--blue);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.page-actions {
  margin-top: 20px;
}

.catalog-table + .section-actions {
  margin-top: 18px;
}

.btn {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  will-change: transform;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #174d69;
  outline: none;
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--soft);
  outline: none;
}

.hero-product-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(142px, 1fr);
  gap: 10px;
}

.hero-tile {
  position: relative;
  display: block;
  min-height: 142px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 200ms ease, transform 220ms ease;
}

.hero-tile-large {
  grid-column: span 2;
  grid-row: span 2;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.hero-tile:hover img {
  transform: scale(1.025);
}

.hero-tile:hover,
.hero-tile:focus-visible {
  border-color: #a9c9d2;
  transform: translateY(-2px);
}

.hero-tile:focus-visible,
.product-card:focus-visible,
.footer-col a:focus-visible,
.topbar a:focus-visible {
  outline: 2px solid rgba(31, 131, 170, 0.52);
  outline-offset: 3px;
}

.hero-tile span {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  margin: 0 0 10px 10px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  color: var(--white);
  background: rgba(11, 48, 69, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease;
}

.hero-tile:hover span,
.hero-tile:focus-visible span {
  background: rgba(11, 48, 69, 0.94);
  transform: translateY(-2px);
}

.section {
  padding: 58px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-alt {
  background: var(--ice);
}

.section-head {
  max-width: 820px;
  margin-bottom: 26px;
}

.section-label {
  margin-bottom: 10px;
}

.section-head h2,
.page-intro h1 {
  font-size: 2.1rem;
  font-weight: 760;
}

.section-head p,
.page-intro p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.98rem;
}

.catalog-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.catalog-row {
  display: grid;
  grid-template-columns: 0.7fr 1.25fr 0.72fr;
  gap: 20px;
  align-items: start;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease, transform 180ms ease;
}

.catalog-row:last-child {
  border-bottom: 0;
}

.catalog-row:hover {
  background: #f9fcfd;
  transform: translateX(2px);
}

.catalog-row strong {
  color: var(--navy);
}

.catalog-row span {
  color: var(--muted);
  font-size: 0.95rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: #315468;
  background: #f7fbfc;
  font-size: 0.76rem;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.catalog-row:hover .tag,
.product-entry:hover .tag,
.product-card:hover .tag {
  background: #d8edf2;
  color: var(--navy);
  transform: translateY(-1px);
}

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

.home-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-products .product-card {
  min-height: 373px;
}

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.product-card:hover {
  border-color: #b8d5de;
  transform: translateY(-2px);
}

.product-card:hover::after,
.product-card:focus-visible::after {
  transform: scaleX(1);
}

.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--soft);
  transition: transform 360ms ease, filter 360ms ease;
}

.product-card:hover img,
.product-card:focus-visible img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.home-products .product-card img {
  height: 158px;
}

.product-card div {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 15px 15px;
}

.product-card h3 {
  font-size: 1.02rem;
}

.product-card p {
  min-height: 4.25em;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.91rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card .tag-list {
  margin-top: auto;
  padding-top: 14px;
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.supply-item {
  min-height: 168px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.supply-item:hover {
  border-color: #b8d5de;
  background: #fbfdfe;
  transform: translateY(-2px);
}

.supply-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1rem;
}

.supply-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 44px;
  border-bottom: 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 31, 45, 0.9) 0%, rgba(7, 31, 45, 0.76) 52%, rgba(7, 31, 45, 0.62) 100%),
    url("../img/sea-export-bg.webp") center 56% / cover no-repeat;
}

.page-hero .crumb {
  color: #9bd6d3;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero .page-intro p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero .btn-primary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.page-hero .btn-primary:hover,
.page-hero .btn-primary:focus-visible {
  color: var(--navy);
  background: #eef7f9;
}

.page-hero .btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
}

.page-hero .btn-secondary:hover,
.page-hero .btn-secondary:focus-visible {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.crumb {
  margin-bottom: 12px;
}

.page-intro {
  max-width: 880px;
}

.product-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.page-hero .product-jump {
  border-top-color: rgba(255, 255, 255, 0.24);
}

.product-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: #29495b;
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.page-hero .product-jump a {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(3px);
}

.product-jump a:hover,
.product-jump a:focus-visible {
  color: var(--navy);
  border-color: #a9c9d2;
  background: #fbfdfe;
  transform: translateY(-1px);
  outline: none;
}

.page-hero .product-jump a:hover,
.page-hero .product-jump a:focus-visible {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.product-list-section {
  padding-bottom: 42px;
}

.product-list-note {
  margin: -8px 0 18px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fbfdfe;
  font-size: 0.91rem;
}

.product-list-table table {
  min-width: 1120px;
}

.product-list-table th,
.product-list-table td {
  padding: 10px 12px;
  font-size: 0.86rem;
}

.product-list-table td:first-child,
.product-list-table td:nth-child(2) {
  color: var(--navy);
  font-weight: 700;
}

.product-catalog {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-entry {
  scroll-margin-top: 118px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease;
}

.product-entry:last-child {
  border-bottom: 0;
}

.product-entry:target {
  background: #f7fbfc;
  box-shadow: inset 3px 0 0 var(--blue);
}

.product-entry:hover {
  background: #fbfdfe;
}

.product-entry img {
  width: 160px;
  height: 112px;
  object-fit: cover;
  background: var(--soft);
  transition: transform 260ms ease;
}

.product-entry:hover img {
  transform: scale(1.025);
}

.product-entry-main {
  min-width: 0;
}

.product-entry h2 {
  font-size: 1.25rem;
}

.product-entry p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin-top: 12px;
}

.product-specs div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 8px;
}

.product-specs strong {
  color: var(--navy);
  font-size: 0.88rem;
}

.product-specs span {
  color: var(--muted);
  font-size: 0.9rem;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

th {
  color: var(--navy);
  background: #eef7f9;
  font-size: 0.88rem;
}

td {
  color: var(--muted);
  font-size: 0.94rem;
}

tr:last-child td {
  border-bottom: 0;
}

tbody tr {
  transition: background-color 160ms ease;
}

tbody tr:hover {
  background: #fbfdfe;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  align-items: start;
}

.plain-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  transition: border-color 180ms ease, transform 180ms ease;
}

.plain-list li:hover {
  border-color: #b8d5de;
  transform: translateX(3px);
}

.plain-list li:last-child {
  border-bottom: 0;
}

.plain-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.plain-list span {
  color: var(--muted);
}

.about-mark {
  display: grid;
  justify-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
}

.about-mark img {
  width: min(100%, 310px);
  border-radius: 50%;
  transition: transform 260ms ease;
}

.about-mark:hover img {
  transform: scale(1.025);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 36px;
  align-items: start;
}

.contact-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-panel:hover,
.form-panel:hover {
  border-color: #b8d5de;
  transform: translateY(-2px);
}

.contact-panel,
.form-panel {
  padding: 24px;
}

.contact-panel h2,
.form-panel h2 {
  font-size: 1.45rem;
}

.contact-line {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-line strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
}

.contact-line a,
.contact-line span,
.note {
  color: var(--muted);
}

.note {
  margin-top: 12px;
  font-size: 0.94rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 22px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  transition: border-color 160ms ease, outline-color 160ms ease, background-color 160ms ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(39, 141, 184, 0.18);
  background: #fbfdfe;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 38, 55, 0.92) 0%, rgba(9, 38, 55, 0.72) 48%, rgba(9, 38, 55, 0.48) 100%),
    url("../img/sea-export-bg.webp") center 58% / cover no-repeat;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 24, 36, 0.05), rgba(5, 24, 36, 0.25));
}

.cta-inner {
  position: relative;
  z-index: 1;
  min-height: 168px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  color: var(--white);
  font-size: 1.9rem;
}

.cta-inner p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-band .btn-primary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.cta-band .btn-primary:hover,
.cta-band .btn-primary:focus-visible {
  color: var(--navy);
  background: #eef7f9;
}

.site-footer {
  padding: 48px 0 26px;
  color: rgba(255, 255, 255, 0.74);
  background: #0d2a3b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.72fr);
  gap: 28px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
}

.footer-brand strong {
  display: block;
  color: var(--white);
  line-height: 1.2;
}

.footer-brand span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.footer-col h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 0.96rem;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible.product-card:hover,
.reveal.is-visible.product-card:focus-visible,
.reveal.is-visible.supply-item:hover,
.reveal.is-visible.contact-panel:hover,
.reveal.is-visible.form-panel:hover {
  transform: translateY(-2px);
}

.plain-list li.reveal.is-visible:hover {
  transform: translateX(3px);
}

html[dir="rtl"] {
  direction: ltr;
}

html[dir="rtl"] body {
  direction: rtl;
  font-family: Arial, Tahoma, sans-serif;
}

html[dir="rtl"] .skip-link {
  right: 16px;
  left: auto;
}

html[dir="rtl"] .topbar-inner div a + a {
  padding-right: 18px;
  padding-left: 0;
}

html[dir="rtl"] .topbar-inner div a + a::before {
  right: 0;
  left: auto;
}

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
  text-align: right;
}

html[dir="rtl"] .language-menu a {
  justify-content: flex-start;
}

html[dir="rtl"] .hero-meta span {
  padding-right: 10px;
  padding-left: 0;
  border-right: 2px solid var(--blue);
  border-left: 0;
}

html[dir="rtl"] .hero-tile span {
  right: 0;
  left: auto;
  margin: 0 10px 10px 0;
}

html[dir="rtl"] .product-card::after {
  transform-origin: right;
}

html[dir="rtl"] .catalog-row:hover {
  transform: translateX(-2px);
}

html[dir="rtl"] .product-entry:target {
  box-shadow: inset -3px 0 0 var(--blue);
}

html[dir="rtl"] th,
html[dir="rtl"] td {
  text-align: right;
}

html[dir="rtl"] td,
html[dir="rtl"] .product-specs span,
html[dir="rtl"] .tag,
html[dir="rtl"] .contact-line span,
html[dir="rtl"] .plain-list span {
  unicode-bidi: plaintext;
}

html[dir="rtl"] .plain-list li:hover,
html[dir="rtl"] .plain-list li.reveal.is-visible:hover {
  transform: translateX(-3px);
}

html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea {
  text-align: right;
}

@keyframes contentIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  h1 {
    font-size: 2.22rem;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-product-board {
    grid-auto-rows: minmax(128px, 1fr);
  }

  .product-grid,
  .supply-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-products .product-card img {
    height: 188px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-list-table {
    overflow-x: hidden;
  }

  .product-list-table table,
  .product-list-table tbody,
  .product-list-table tr,
  .product-list-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .product-list-table thead {
    display: none;
  }

  .product-list-table tr {
    padding: 12px 13px;
    border-bottom: 1px solid var(--line);
  }

  .product-list-table tr:last-child {
    border-bottom: 0;
  }

  .product-list-table td {
    padding: 5px 0;
    border-bottom: 0;
    font-size: 0.9rem;
  }

  .product-list-table td::before {
    display: block;
    margin-bottom: 1px;
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 700;
  }

  .product-list-table td:nth-child(1)::before {
    content: "Category";
  }

  .product-list-table td:nth-child(2)::before {
    content: "Product / form";
  }

  .product-list-table td:nth-child(3)::before {
    content: "Size / count";
  }

  .product-list-table td:nth-child(4)::before {
    content: "Freezing";
  }

  .product-list-table td:nth-child(5)::before {
    content: "Packing";
  }

  .product-list-table td:nth-child(6)::before {
    content: "Notes";
  }

  html[lang="es"] .product-list-table td:nth-child(1)::before {
    content: "Categoría";
  }

  html[lang="es"] .product-list-table td:nth-child(2)::before {
    content: "Producto / forma";
  }

  html[lang="es"] .product-list-table td:nth-child(3)::before {
    content: "Talla / conteo";
  }

  html[lang="es"] .product-list-table td:nth-child(4)::before {
    content: "Congelación";
  }

  html[lang="es"] .product-list-table td:nth-child(5)::before {
    content: "Empaque";
  }

  html[lang="es"] .product-list-table td:nth-child(6)::before {
    content: "Notas";
  }

  html[lang="ko"] .product-list-table td:nth-child(1)::before {
    content: "분류";
  }

  html[lang="ko"] .product-list-table td:nth-child(2)::before {
    content: "제품 / 형태";
  }

  html[lang="ko"] .product-list-table td:nth-child(3)::before {
    content: "사이즈 / 카운트";
  }

  html[lang="ko"] .product-list-table td:nth-child(4)::before {
    content: "냉동";
  }

  html[lang="ko"] .product-list-table td:nth-child(5)::before {
    content: "포장";
  }

  html[lang="ko"] .product-list-table td:nth-child(6)::before {
    content: "비고";
  }

  html[lang="ru"] .product-list-table td:nth-child(1)::before {
    content: "Категория";
  }

  html[lang="ru"] .product-list-table td:nth-child(2)::before {
    content: "Продукт / форма";
  }

  html[lang="ru"] .product-list-table td:nth-child(3)::before {
    content: "Размер / калибр";
  }

  html[lang="ru"] .product-list-table td:nth-child(4)::before {
    content: "Заморозка";
  }

  html[lang="ru"] .product-list-table td:nth-child(5)::before {
    content: "Упаковка";
  }

  html[lang="ru"] .product-list-table td:nth-child(6)::before {
    content: "Примечание";
  }

  html[dir="rtl"] .product-list-table td:nth-child(1)::before {
    content: "الفئة";
  }

  html[dir="rtl"] .product-list-table td:nth-child(2)::before {
    content: "المنتج / الشكل";
  }

  html[dir="rtl"] .product-list-table td:nth-child(3)::before {
    content: "المقاس / العدد";
  }

  html[dir="rtl"] .product-list-table td:nth-child(4)::before {
    content: "التجميد";
  }

  html[dir="rtl"] .product-list-table td:nth-child(5)::before {
    content: "التغليف";
  }

  html[dir="rtl"] .product-list-table td:nth-child(6)::before {
    content: "ملاحظات";
  }
}

@media (max-width: 820px) {
  .nav {
    gap: 12px;
  }

  html[dir="rtl"] .nav {
    overflow: hidden;
  }

  html[dir="rtl"] .brand {
    width: 46px;
    min-width: 46px;
    max-width: 46px;
    flex: 0 0 46px;
    overflow: hidden;
  }

  html[dir="rtl"] .brand > span {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 98px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu a {
    padding: 10px 12px;
  }

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

  body.menu-open .nav-menu {
    display: flex;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-inner > span {
    display: none;
  }

  .topbar-inner div {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.78rem;
  }

  .topbar-inner div a + a {
    padding-left: 11px;
  }

  html[dir="rtl"] .topbar-inner div a + a {
    padding-right: 11px;
    padding-left: 0;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  html[dir="rtl"] .brand {
    flex: 0 0 auto;
    min-width: 42px;
  }

  html[dir="rtl"] .brand span {
    display: none;
  }

  h1 {
    font-size: 1.9rem;
  }

  .hero-grid {
    gap: 24px;
    padding: 32px 0 34px;
  }

  .hero-lede {
    font-size: 0.98rem;
  }

  .hero-actions,
  .section-actions {
    margin-top: 20px;
  }

  .hero-meta {
    gap: 8px;
  }

  .hero-meta span {
    flex: 1 1 100%;
  }

  .hero-product-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 128px;
    gap: 8px;
  }

  .hero-tile-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .hero-tile span {
    margin: 0 0 8px 8px;
    padding: 5px 8px;
  }

  html[dir="rtl"] .hero-tile span {
    margin: 0 8px 8px 0;
  }

  .section,
  .section-tight {
    padding: 48px 0;
  }

  .section-head h2,
  .page-intro h1 {
    font-size: 1.85rem;
  }

  html[dir="rtl"] .page-hero {
    padding: 42px 0 36px;
  }

  html[dir="rtl"] .page-intro {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: right;
  }

  html[dir="rtl"] .page-intro h1 {
    max-width: 100%;
    font-size: 1.55rem;
    line-height: 1.25;
  }

  html[dir="rtl"] .page-intro p {
    max-width: 100%;
    font-size: 0.9rem;
  }

  html[dir="rtl"] .page-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  html[dir="rtl"] .page-actions .btn {
    min-width: 0;
    padding-inline: 9px;
    white-space: normal;
    text-align: center;
  }

  .catalog-row,
  .product-grid,
  .home-products,
  .supply-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .home-products .product-card img,
  .product-card img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .home-products .product-card {
    min-height: 0;
  }

  .catalog-row {
    gap: 9px;
  }

  .product-entry {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .product-entry img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8;
  }

  .product-jump a {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .table-wrap {
    overflow-x: hidden;
  }

  table {
    min-width: 0;
  }

  .product-list-table table,
  .product-list-table tbody,
  .product-list-table tr,
  .product-list-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .product-list-table thead {
    display: none;
  }

  .product-list-table tr {
    padding: 12px 13px;
    border-bottom: 1px solid var(--line);
  }

  .product-list-table tr:last-child {
    border-bottom: 0;
  }

  .product-list-table td {
    padding: 5px 0;
    border-bottom: 0;
    font-size: 0.9rem;
  }

  .product-list-table td::before {
    display: block;
    margin-bottom: 1px;
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 700;
  }

  .product-list-table td:nth-child(1)::before {
    content: "Category";
  }

  .product-list-table td:nth-child(2)::before {
    content: "Product / form";
  }

  .product-list-table td:nth-child(3)::before {
    content: "Size / count";
  }

  .product-list-table td:nth-child(4)::before {
    content: "Freezing";
  }

  .product-list-table td:nth-child(5)::before {
    content: "Packing";
  }

  .product-list-table td:nth-child(6)::before {
    content: "Notes";
  }

  html[lang="es"] .product-list-table td:nth-child(1)::before {
    content: "Categoría";
  }

  html[lang="es"] .product-list-table td:nth-child(2)::before {
    content: "Producto / forma";
  }

  html[lang="es"] .product-list-table td:nth-child(3)::before {
    content: "Talla / conteo";
  }

  html[lang="es"] .product-list-table td:nth-child(4)::before {
    content: "Congelación";
  }

  html[lang="es"] .product-list-table td:nth-child(5)::before {
    content: "Empaque";
  }

  html[lang="es"] .product-list-table td:nth-child(6)::before {
    content: "Notas";
  }

  html[lang="ko"] .product-list-table td:nth-child(1)::before {
    content: "분류";
  }

  html[lang="ko"] .product-list-table td:nth-child(2)::before {
    content: "제품 / 형태";
  }

  html[lang="ko"] .product-list-table td:nth-child(3)::before {
    content: "사이즈 / 카운트";
  }

  html[lang="ko"] .product-list-table td:nth-child(4)::before {
    content: "냉동";
  }

  html[lang="ko"] .product-list-table td:nth-child(5)::before {
    content: "포장";
  }

  html[lang="ko"] .product-list-table td:nth-child(6)::before {
    content: "비고";
  }

  html[lang="ru"] .product-list-table td:nth-child(1)::before {
    content: "Категория";
  }

  html[lang="ru"] .product-list-table td:nth-child(2)::before {
    content: "Продукт / форма";
  }

  html[lang="ru"] .product-list-table td:nth-child(3)::before {
    content: "Размер / калибр";
  }

  html[lang="ru"] .product-list-table td:nth-child(4)::before {
    content: "Заморозка";
  }

  html[lang="ru"] .product-list-table td:nth-child(5)::before {
    content: "Упаковка";
  }

  html[lang="ru"] .product-list-table td:nth-child(6)::before {
    content: "Примечание";
  }

  html[dir="rtl"] .product-list-table td:nth-child(1)::before {
    content: "الفئة";
  }

  html[dir="rtl"] .product-list-table td:nth-child(2)::before {
    content: "المنتج / الشكل";
  }

  html[dir="rtl"] .product-list-table td:nth-child(3)::before {
    content: "المقاس / العدد";
  }

  html[dir="rtl"] .product-list-table td:nth-child(4)::before {
    content: "التجميد";
  }

  html[dir="rtl"] .product-list-table td:nth-child(5)::before {
    content: "التغليف";
  }

  html[dir="rtl"] .product-list-table td:nth-child(6)::before {
    content: "ملاحظات";
  }

  .product-specs {
    grid-template-columns: 1fr;
  }

  .product-specs div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 360px) {
  .topbar {
    font-size: 0.73rem;
  }

  .topbar-inner div {
    gap: 8px;
  }

  .topbar-inner div a + a {
    padding-left: 9px;
  }

  html[dir="rtl"] .topbar-inner div a + a {
    padding-right: 9px;
    padding-left: 0;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
