@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400..900&display=swap');

:root {
    --display: "Fraunces", Georgia, "Times New Roman", serif;
    --ink: #0a2440;
    --muted: #5d6b7e;
    --deep: #0e3b66;
    --green: #1f6fb2;
    --mint: #e3eef8;
    --coral: #2c7be5;
    --gold: #8fc4ef;
    --paper: #ffffff;
    --cream: #eef3f8;
    --line: rgba(10, 36, 64, 0.12);
    --shadow: 0 22px 60px rgba(10, 36, 64, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: linear-gradient(180deg, #f1f6fb 0%, #f4f8fc 45%, var(--cream) 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 82px;
    padding: 14px clamp(16px, 3vw, 40px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

/* Desktop: brand left, nav truly centered, language right (symmetric 3-col grid).
   On desktop the hamburger toggle/button are display:none, so the header has
   exactly 3 visible children — one per column. Mobile keeps the flex layout above. */
@media (min-width: 821px) {
    .site-header {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
    }
    .brand-group { justify-self: start; }
    .site-nav { justify-self: center; }
    .lang-select { justify-self: end; }
}

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

.brand img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    object-fit: cover;
}

.brand strong {
    display: block;
    color: var(--deep);
    font-family: var(--display);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

.brand small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    font-size: 15px;
    font-weight: 800;
}

.site-nav a {
    position: relative;
    padding: 8px 0;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--coral);
    border-radius: 999px;
    transform: translateX(-50%);
    transition: width 0.18s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--coral);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
}

.nav-button {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    gap: 5px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
}

.nav-button span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
}

.lang-select {
    width: auto;
    min-width: 112px;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 800;
    color: var(--deep);
    cursor: pointer;
}

.hero {
    position: relative;
    display: grid;
    min-height: calc(100vh - 82px);
    padding: clamp(64px, 9vw, 120px) clamp(22px, 6vw, 96px);
    overflow: hidden;
    isolation: isolate;
    background: url("img/shopheaderpic.png") center / cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(6, 28, 50, 0.9) 0%, rgba(6, 28, 50, 0.78) 42%, rgba(6, 28, 50, 0.32) 100%),
        linear-gradient(180deg, rgba(6, 28, 50, 0.06) 70%, #f5f9fd 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 180px;
    background: linear-gradient(180deg, transparent, #f5f9fd);
}

.hero-content {
    align-self: center;
    max-width: 770px;
}

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

.hero .eyebrow {
    color: #9fd0f5;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 780px;
    margin-bottom: 22px;
    color: #ffffff;
    font-family: var(--display);
    font-size: clamp(44px, 7vw, 92px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.02em;
}

h2 {
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.015em;
}

h3 {
    color: var(--ink);
    font-size: 22px;
    line-height: 1.15;
}

.hero-copy {
    max-width: 640px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 1.7vw, 22px);
    line-height: 1.65;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 900;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

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

.btn.primary {
    color: #ffffff;
    background: var(--coral);
    box-shadow: 0 18px 36px rgba(44, 123, 229, 0.26);
}

.btn.secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.btn.neutral {
    color: var(--deep);
    border: 1px solid var(--line);
    background: #ffffff;
}

.hero-panel {
    align-self: end;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 920px;
    margin-top: 72px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
}

.hero-panel div {
    padding: 22px;
    background: rgba(8, 30, 54, 0.3);
}

.hero-panel strong {
    display: block;
    color: #ffffff;
    font-size: 19px;
}

.hero-panel span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: -44px clamp(18px, 6vw, 96px) 0;
    overflow: hidden;
    position: relative;
    z-index: 3;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--line);
    box-shadow: var(--shadow);
}

.stats div {
    padding: 28px;
    background: rgba(255, 255, 255, 0.94);
}

.stats strong {
    display: block;
    color: var(--deep);
    font-size: clamp(24px, 3vw, 42px);
    letter-spacing: -0.04em;
}

.stats span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.45;
}

.section {
    padding: clamp(76px, 10vw, 130px) clamp(20px, 6vw, 96px);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading p:not(.eyebrow),
.export-content p,
.cta p,
.product-card p,
.process-card p,
.process-grid p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.compact {
    margin-bottom: 30px;
}

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

.product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: 0 18px 44px rgba(10, 36, 64, 0.08);
}

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

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

.product-card span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card h3 {
    margin-bottom: 12px;
}

.product-card p {
    margin-bottom: 0;
}

.export {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    background: #eaf2fb;
}

.export-image {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.export-image img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

.export-content {
    max-width: 620px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.check-list span {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
    font-weight: 800;
}

.check-list span::before {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--coral);
}

.markets {
    background:
        radial-gradient(circle at 80% 10%, rgba(31, 111, 178, 0.12), transparent 24rem),
        #ffffff;
}

.market-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.market-list span {
    padding: 13px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--deep);
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(10, 36, 64, 0.07);
}

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

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

/* Fleet section has only 3 cards — use 3 columns on desktop so they stay
   centered instead of leaving an empty 4th column. Mobile rules still stack. */
@media (min-width: 1101px) {
    .fleet-section .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.process-grid article {
    min-height: 250px;
    padding: 26px;
    border: 1px solid rgba(10, 36, 64, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.process-grid span {
    color: var(--coral);
    font-size: 13px;
    font-weight: 900;
}

.process-grid h3 {
    margin: 42px 0 12px;
}

.process-grid p {
    margin-bottom: 0;
}

.cta {
    justify-content: space-between;
    gap: 24px;
    margin: 0 clamp(20px, 6vw, 96px) clamp(72px, 8vw, 110px);
    padding: clamp(34px, 5vw, 58px);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(14, 59, 102, 0.96), rgba(31, 111, 178, 0.9)),
        url("img/backgroundfish.png") center / cover;
    box-shadow: var(--shadow);
}

.cta div {
    max-width: 760px;
}

.cta h2,
.cta p {
    color: #ffffff;
}

.cta p {
    margin-bottom: 0;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    padding: 34px clamp(20px, 6vw, 96px);
    background: #0a2440;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer strong {
    color: #ffffff;
    font-size: 20px;
}

.site-footer p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer div:last-child {
    display: grid;
    gap: 6px;
    text-align: right;
}

.page-hero {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 430px;
    padding: clamp(78px, 10vw, 128px) clamp(20px, 6vw, 96px) clamp(54px, 7vw, 86px);
    overflow: hidden;
    isolation: isolate;
    background: url("img/backgroundfish.png") center / cover;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(6, 28, 50, 0.9), rgba(6, 28, 50, 0.46)),
        linear-gradient(180deg, transparent 68%, #f5f9fd 100%);
}

.page-hero h1 {
    max-width: 880px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 78px);
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(17px, 1.8vw, 22px);
    line-height: 1.65;
}

/* ===== Sub-pages: same premium dark-header treatment as the homepage ===== */
/* body gets class "home-page subpage" (sProduct adds "solid-head") */

.home-page.subpage .page-hero {
    align-content: center;
    min-height: 42vh;
    padding-top: clamp(44px, 6vw, 78px);
}

/* ===== Sub-page banner (Deep Seafood style): full-bleed image + title + breadcrumb ===== */
.page-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 300px;
    padding: 56px clamp(20px, 6vw, 96px);
    text-align: center;
    color: #ffffff;
    background:
        linear-gradient(rgba(5, 23, 43, 0.7), rgba(5, 23, 43, 0.7)),
        url("img/bay-panorama.jpg") center / cover;
}

.page-banner h1 {
    margin: 0;
    font-family: var(--display);
    color: #ffffff;
    font-size: clamp(34px, 5vw, 60px);
    letter-spacing: 0.01em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.page-banner .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-banner .breadcrumb a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.page-banner .breadcrumb a:hover {
    color: #8fc4ef;
}

.page-banner .crumb-current {
    color: #8fc4ef;
}

.page-banner .crumb-sep {
    opacity: 0.55;
}

.home-page.subpage .page-hero::before {
    background:
        linear-gradient(90deg, rgba(0, 18, 34, 0.88) 0%, rgba(0, 22, 40, 0.55) 42%, rgba(0, 26, 46, 0.16) 78%),
        linear-gradient(180deg, rgba(3, 14, 28, 0.4) 0%, rgba(3, 14, 28, 0.08) 45%, rgba(3, 14, 28, 0.55) 100%);
}

.home-page.subpage .page-hero .eyebrow {
    color: #9fd0f5;
}

/* Quiet entrance: staggered rise on hero copy (CSS-only) */
.home-page.subpage .page-hero .eyebrow,
.home-page.subpage .page-hero h1,
.home-page.subpage .page-hero p:not(.eyebrow) {
    animation: heroRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-page.subpage .page-hero h1 {
    animation-delay: 0.08s;
}

.home-page.subpage .page-hero p:not(.eyebrow) {
    animation-delay: 0.16s;
}

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page.subpage .page-hero .eyebrow,
    .home-page.subpage .page-hero h1,
    .home-page.subpage .page-hero p:not(.eyebrow) {
        animation: none;
    }
}

/* Pages without a hero (product detail): solid dark sticky header instead of transparent */
.home-page.solid-head .site-header {
    position: sticky;
    background: linear-gradient(180deg, #05172b 0%, #0c2c4e 100%);
}

.products-hero {
    background-image: url("img/export-grading-crates.png");
}

.about-hero {
    background-image: url("img/export-hero-night-farm.png");
}

.contact-hero {
    background-image: url("img/export-logistics-port.png");
}

.export-hero {
    background-image: url("img/shopheaderpic.png");
}

.cart-hero {
    background-image: url("img/mall1.png");
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: -38px clamp(20px, 6vw, 96px) 0;
    padding: 22px;
    position: relative;
    z-index: 3;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.catalog-toolbar strong,
.catalog-toolbar span {
    display: block;
}

.catalog-toolbar strong {
    color: var(--deep);
    font-size: 22px;
}

.catalog-toolbar span {
    margin-top: 4px;
    color: var(--muted);
    font-weight: 700;
}

.catalog {
    padding-top: 64px;
}

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

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
}

.product-meta strong {
    color: var(--deep);
    font-size: 18px;
}

.product-meta a {
    color: var(--coral);
    font-weight: 900;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    padding: clamp(70px, 8vw, 116px) clamp(20px, 6vw, 96px);
}

.detail-gallery {
    display: grid;
    gap: 16px;
}

.detail-main {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 24px;
    background: var(--mint);
    box-shadow: var(--shadow);
}

.detail-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.detail-thumbs img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    background: var(--mint);
}

.detail-content h1 {
    color: var(--ink);
    font-size: clamp(42px, 5vw, 72px);
}

.detail-content p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.detail-price {
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
}

.detail-options {
    display: grid;
    grid-template-columns: 1fr 130px;
    gap: 14px;
    margin: 24px 0;
}

.detail-options label,
.inquiry-form label {
    display: grid;
    gap: 8px;
    color: var(--deep);
    font-weight: 900;
}

select,
input,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
    font: inherit;
}

textarea {
    resize: vertical;
}

.story-layout,
.contact-layout,
.cart-layout,
.account-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.story-image,
.contact-card,
.inquiry-form,
.cart-table,
.cart-summary,
.account-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.story-image {
    overflow: hidden;
}

.story-image img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

.story-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.contact-layout {
    align-items: stretch;
}

.contact-card,
.inquiry-form,
.cart-summary,
.account-card {
    padding: clamp(24px, 4vw, 42px);
}

/* Company name fits on a single line in the contact card. */
.contact-card h2 {
    font-size: clamp(19px, 2vw, 25px);
    white-space: nowrap;
}

@media (max-width: 560px) {
    .contact-card h2 {
        white-space: normal;
        font-size: 21px;
    }
}

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

.contact-list span {
    display: grid;
    gap: 5px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--deep);
    font-weight: 700;
    background: #ffffff;
}

.contact-list strong {
    color: var(--deep);
    font-weight: 800;
}

.inquiry-form {
    display: grid;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    display: none;
    margin: 2px 0 0;
    font-weight: 800;
    line-height: 1.5;
}

.form-status.is-success {
    display: block;
    color: #0f8f64;
}

.form-status.is-error {
    display: block;
    color: #b42318;
}

@media (max-width: 540px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.inquiry-form h2,
.reset-card h2 {
    margin-bottom: 6px;
}

.cart-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
}

.cart-table {
    overflow: hidden;
}

.cart-row {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 100px 100px 100px;
    gap: 16px;
    align-items: center;
    padding: 18px 22px;
    border-top: 1px solid var(--line);
}

.cart-row:first-child {
    border-top: 0;
}

.cart-head {
    color: var(--deep);
    background: var(--mint);
    font-weight: 900;
}

.cart-row span:first-child {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 900;
}

.cart-row img {
    width: 62px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-summary {
    display: grid;
    gap: 16px;
}

.cart-summary h2 {
    margin-bottom: 0;
    color: var(--deep);
}

.account-layout {
    min-height: calc(100vh - 82px);
    padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 96px);
    background:
        linear-gradient(90deg, rgba(6, 28, 50, 0.88), rgba(6, 28, 50, 0.46)),
        url("img/city222.png") center / cover;
}

.account-copy {
    max-width: 720px;
}

.account-copy h1,
.account-copy p {
    color: #ffffff;
}

.account-copy p:not(.eyebrow) {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
    line-height: 1.65;
}

.account-card {
    width: min(390px, 100%);
    justify-self: end;
    overflow: hidden;
}

.form-tabs {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 24px;
}

.form-tabs button {
    min-height: 42px;
    color: var(--deep);
    border: 0;
    background: transparent;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

#Indicator {
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 50%;
    height: 3px;
    margin: 0;
    border: 0;
    background: var(--coral);
    transition: transform 0.3s ease;
}

.form-slider {
    position: relative;
    height: 270px;
    overflow: hidden;
}

.form-slider form {
    position: absolute;
    top: 0;
    width: 300px;
    display: grid;
    gap: 12px;
    transition: transform 0.3s ease;
}

#LoginForm {
    left: -300px;
}

#RegForm {
    left: 0;
}

.form-slider a,
.reset-card a {
    color: var(--coral);
    font-weight: 900;
}

.errorMsg {
    display: none;
    color: #b42318;
    font-weight: 800;
}

.reset-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.reset-card {
    display: grid;
    gap: 14px;
    justify-self: end;
}

@media (max-width: 1100px) {
    .product-grid,
    .catalog-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .export,
    .product-detail,
    .story-layout,
    .contact-layout,
    .cart-layout,
    .account-layout,
    .reset-layout {
        grid-template-columns: 1fr;
    }

    .account-card,
    .reset-card {
        justify-self: start;
    }

    .export-image img {
        min-height: 360px;
    }
}

@media (max-width: 820px) {
    .site-header {
        min-height: 74px;
    }

    .brand {
        min-width: 0;
    }

    .brand span {
        display: none;
    }

    .nav-button {
        display: grid;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .site-nav a {
        padding: 14px;
    }

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

    .nav-toggle:checked ~ .site-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hero {
        min-height: auto;
        padding-top: 86px;
    }

    .hero-panel,
    .stats {
        grid-template-columns: 1fr;
    }

    .stats {
        margin-top: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .product-grid,
    .catalog-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .catalog-toolbar {
        display: grid;
    }

    .cart-row {
        grid-template-columns: 1fr;
    }

    .cta,
    .site-footer {
        display: grid;
    }

    .site-footer div:last-child {
        text-align: left;
    }
}

@media (max-width: 540px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .hero {
        padding-left: 18px;
        padding-right: 18px;
    }

    .page-hero {
        min-height: 360px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-actions {
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}

/* Homepage redesign: premium full-bleed hero + white/cream exporter profile. */
.hero.hero-export {
    min-height: calc(100vh - 82px);
    align-content: end;
    gap: clamp(48px, 8vw, 110px);
    padding: clamp(88px, 10vw, 138px) clamp(20px, 6vw, 96px) clamp(30px, 5vw, 58px);
    background:
        linear-gradient(90deg, rgba(6, 28, 50, 0.94) 0%, rgba(10, 40, 70, 0.78) 46%, rgba(10, 40, 70, 0.26) 100%),
        linear-gradient(180deg, rgba(6, 28, 50, 0.1) 58%, rgba(6, 28, 50, 0.88) 100%),
        url("img/export-hero-night-farm.png") center 28% / cover;
}

.hero.hero-export::before,
.hero.hero-export::after {
    display: none;
}

.hero.hero-export h1 {
    max-width: 920px;
    margin-bottom: 24px;
    font-size: clamp(48px, 7vw, 104px);
}

.hero.hero-export .hero-copy {
    max-width: 720px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.hero-proof div {
    padding: clamp(15px, 2vw, 22px);
    background: rgba(6, 24, 44, 0.34);
}

.hero-proof strong {
    display: block;
    color: #ffffff;
    font-family: var(--display);
    font-size: clamp(25px, 3vw, 42px);
    font-weight: 650;
    line-height: 1;
}

.hero-proof span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-story {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(32px, 5vw, 82px);
    align-items: center;
    background: #f4f8fc;
}

.home-story .story-copy {
    max-width: 700px;
}

.home-story .story-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.cred-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.cred-list span {
    padding: 11px 14px;
    border: 1px solid rgba(10, 36, 64, 0.12);
    border-radius: 999px;
    background: #ffffff;
    color: var(--deep);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(10, 36, 64, 0.07);
}

.capacity-section {
    background:
        radial-gradient(circle at 88% 12%, rgba(143, 196, 239, 0.2), transparent 26rem),
        #ffffff;
}

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

.capacity-grid article {
    min-height: 300px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
    box-shadow: 0 18px 44px rgba(10, 36, 64, 0.08);
}

.capacity-grid span {
    display: inline-flex;
    margin-bottom: 46px;
    color: var(--coral);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.capacity-grid h3 {
    margin-bottom: 12px;
}

.capacity-grid p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.species-section {
    background: #eef3f8;
}

.species-section .product-card {
    border-radius: 22px;
}

.process-premium {
    background: #ffffff;
}

.process-premium .process-grid article {
    background: #f4f8fc;
}

.markets-premium {
    background:
        linear-gradient(135deg, rgba(14, 59, 102, 0.96), rgba(10, 36, 64, 0.92)),
        url("img/backgroundfish.png") center / cover;
}

.markets-premium .eyebrow {
    color: #9fd0f5;
}

.markets-premium h2 {
    color: #ffffff;
}

.markets-premium .market-list span {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.cta.cta-soft {
    background:
        linear-gradient(135deg, rgba(6, 28, 50, 0.95), rgba(31, 111, 178, 0.82)),
        url("img/sceneshot.png") center / cover;
}

@media (max-width: 1100px) {
    .home-story,
    .capacity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-story .story-copy {
        max-width: none;
    }
}

@media (max-width: 820px) {
    .hero.hero-export {
        min-height: auto;
        padding-top: 88px;
    }

    .hero-proof,
    .home-story,
    .capacity-grid {
        grid-template-columns: 1fr;
    }

    .hero-proof {
        border-radius: 16px;
    }
}

@media (max-width: 540px) {
    .site-header {
        gap: 12px;
        justify-content: flex-start;
        padding-left: 18px;
        padding-right: 18px;
    }

    .brand {
        flex: 0 0 auto;
        min-width: 0;
        width: 58px;
    }

    .lang-select {
        flex: 0 0 112px;
        min-width: 112px;
    }

    .hero.hero-export {
        padding: 78px 18px 28px;
    }

    .hero.hero-export h1 {
        max-width: min(100%, 12.5ch);
        font-size: 36px;
        line-height: 1.02;
        overflow-wrap: break-word;
    }

    .hero.hero-export .hero-copy {
        max-width: min(100%, 31ch);
    }

    .hero-proof span {
        font-size: 12px;
    }

    .hero-proof div {
        padding: 16px;
    }

    .capacity-grid article {
        min-height: auto;
    }
}

/* Homepage v2: match the approved premium export dashboard mockup. */
.home-page {
    background: #ffffff;
}

.home-page .site-header {
    position: sticky;
    top: 0;
    min-height: 0;
    padding: 6px clamp(20px, 3vw, 40px) 6px 16px;
    color: #ffffff;
    background: #0b2542;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* tighten nav click padding so it doesn't force the bar taller (text size unchanged) */
.home-page .site-nav a {
    padding-top: 3px;
    padding-bottom: 3px;
}

.home-page .brand {
    min-width: 240px;
}

.home-page .brand img {
    width: 46px;
    height: 46px;
    border: 2px solid rgba(106, 168, 222, 0.8);
    border-radius: 50%;
}

.home-page .brand strong {
    color: #ffffff;
    font-size: 20px;
    white-space: nowrap;
}

.home-page .brand small {
    color: #6aa8de;
    font-size: 9px;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.home-page .site-nav {
    gap: clamp(12px, 1.5vw, 22px);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    text-transform: uppercase;
}

.home-page .site-nav a:hover,
.home-page .site-nav a.active {
    color: #8fc4ef;
}

.home-page .site-nav a::after {
    background: #8fc4ef;
}

.home-page .lang-select {
    appearance: none;
    -webkit-appearance: none;
    min-width: 0;
    width: 96px;
    min-height: 40px;
    padding: 8px 24px 8px 32px;
    color: #ffffff;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.34);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23ffffff' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c2.6 2.7 2.6 15.3 0 18M12 3c-2.6 2.7-2.6 15.3 0 18'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ffffff' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: left 11px center, right 12px center;
    background-size: 15px 15px, 11px 11px;
    cursor: pointer;
}

.home-page .hero.hero-export {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 58px);
    min-height: calc(100svh - 58px);
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: 16px;
    padding: 64px clamp(28px, 4.5vw, 64px) 88px;
    background: #05172b;
}

/* Scroll-reveal: blocks rise + fade in as they enter the viewport.
   Gated on html.reveal-on (added by JS) so content stays visible if JS fails. */
html.reveal-on [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

html.reveal-on [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
}

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

/* Motion layer: full-bleed crossfading slideshow (video-ready) sits behind the
   gradient + content. Replace .hero-slideshow with a <video> when real footage exists. */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1);
    will-change: opacity, transform;
    animation: heroKenBurns 18s infinite;
}

.hero-slide:nth-child(1) {
    background-image: url("img/farm-cages-wide.jpg");
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    background-image: url("img/farm-vessel.jpg");
    animation-delay: 9s;
}

@keyframes heroKenBurns {
    0%   { opacity: 0; transform: scale(1); }
    4%   { opacity: 1; }
    50%  { opacity: 1; transform: scale(1.1); }
    56%  { opacity: 0; transform: scale(1.12); }
    100% { opacity: 0; transform: scale(1.12); }
}

/* No photo overlay — clean image. Text legibility comes from text-shadow only. */
.home-page .hero.hero-export::after {
    display: none;
}

/* Scroll cue: bright label + bouncing chevron, smooth-scrolls to next section */
.hero-scroll {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    line-height: 1.2;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-scroll:hover {
    color: #8fc4ef;
}

.hero-scroll-arrow {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
    animation: heroChevron 1.5s ease-in-out infinite;
}

@keyframes heroChevron {
    0%, 100% { transform: translateY(0);   opacity: 0.65; }
    50%      { transform: translateY(6px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        animation: none;
        opacity: 0;
    }
    .hero-slide:nth-child(1) {
        opacity: 1;
    }
    .hero-scroll-arrow {
        animation: none;
    }
}

.home-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

/* Lift the white hero text off the busy photo */
.home-page .hero.hero-export h1,
.home-page .hero-subline,
.home-page .hero.hero-export .hero-copy {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65), 0 3px 24px rgba(0, 0, 0, 0.6);
}

.home-page .hero.hero-export h1 {
    max-width: 760px;
    margin: 0 auto 10px;
    font-size: clamp(44px, 5vw, 66px);
    line-height: 0.98;
}

.home-page .hero-subline {
    margin: 0 0 14px;
    color: #8fc4ef;
    font-family: var(--display);
    font-size: clamp(20px, 1.9vw, 27px);
    font-weight: 700;
}

.home-page .hero-subline::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    margin: 12px auto 0;
    background: #8fc4ef;
}

.home-page .hero.hero-export .hero-copy {
    max-width: 600px;
    margin: 0 auto 22px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.65;
}

.home-page .hero-actions {
    justify-content: center;
}

.home-page .btn.primary {
    min-height: 40px;
    padding: 10px 22px;
    border-radius: 4px;
    background: #2c7be5;
}

.home-page .hero-proof {
    position: relative;
    z-index: 2;
    width: min(1040px, 100%);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-self: center;
    gap: 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.home-page .hero-proof div {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
    align-items: center;
    min-height: 62px;
    padding: 10px 16px;
    border: 1px solid rgba(143, 196, 239, 0.38);
    border-radius: 6px;
    background: rgba(6, 22, 42, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-page .proof-icon {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(143, 196, 239, 0.74);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(143, 196, 239, 0.8) 0 4px, transparent 5px),
        rgba(143, 196, 239, 0.08);
}

.home-page .hero-proof strong {
    color: #ffffff;
    font-size: 23px;
}

.home-page .hero-proof small {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    line-height: 1.3;
}

.export-dashboard {
    padding: clamp(26px, 3vw, 44px) clamp(28px, 4.5vw, 64px) clamp(34px, 4vw, 56px);
    background: #ffffff;
}

.capacity-ribbon,
.dashboard-grid,
.inquiry-strip {
    margin: 0 0 16px;
}

.capacity-ribbon {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr) 1.7fr;
    gap: 14px;
    align-items: stretch;
}

.dash-intro,
.mini-stat,
.species-tile,
.quality-panel,
.inquiry-strip {
    border: 1px solid rgba(10, 36, 64, 0.1);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(10, 36, 64, 0.07);
}

.dash-intro {
    display: grid;
    align-content: center;
    padding: 20px;
}

.dash-intro .eyebrow,
.quality-panel .eyebrow,
.inquiry-strip .eyebrow {
    margin-bottom: 8px;
    color: #455567;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.dash-intro h2,
.quality-panel h2,
.inquiry-strip h2 {
    margin-bottom: 8px;
    color: #1d3a5c;
    font-size: 15px;
    line-height: 1.2;
}

.dash-intro p:not(.eyebrow),
.quality-panel p,
.inquiry-strip p {
    margin-bottom: 0;
    color: #5d6b7e;
    font-size: 12px;
    line-height: 1.55;
}

.mini-stat {
    display: grid;
    align-content: center;
    min-height: 98px;
    padding: 16px;
    overflow: hidden;
}

.mini-stat strong {
    color: #134a7a;
    font-family: var(--display);
    font-size: 24px;
    line-height: 1;
}

.mini-stat span {
    margin-top: 5px;
    color: #1d3a5c;
    font-size: 11px;
    font-weight: 900;
}

.mini-stat small {
    margin-top: 4px;
    color: #66758a;
    font-size: 10px;
    line-height: 1.3;
}

.ribbon-media {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    overflow: hidden;
    border-radius: 6px;
}

.ribbon-media img {
    width: 100%;
    height: 100%;
    min-height: 86px;
    object-fit: cover;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr) 1.7fr;
    gap: 14px;
    align-items: stretch;
}

.species-intro a,
.species-tile a {
    display: inline-block;
    margin-top: 10px;
    color: #3f78b0;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.species-tile {
    overflow: hidden;
    text-align: center;
    display: grid;
    grid-template-rows: 1fr auto auto;
}

.tile-media {
    display: block;
    margin: 0;
    overflow: hidden;
}

.tile-media img {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .tile-media img,
.species-tile:hover .tile-media img {
    transform: scale(1.04);
}

.species-tile .tile-media {
    height: 100%;
    min-height: 150px;
}

/* ===== Species spec sheet (sProduct.html) ===== */
.spec-block {
    margin: 28px 0;
    padding: clamp(18px, 3vw, 28px);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f4f8fc;
}

.spec-block .eyebrow {
    margin-bottom: 6px;
}

.spec-block h2 {
    margin-bottom: 18px;
    font-size: clamp(22px, 2.4vw, 30px);
}

.spec-table-wrap {
    overflow-x: auto;
}

.spec-table {
    width: 100%;
    min-width: 460px;
    border-collapse: collapse;
}

.spec-table th,
.spec-table td {
    padding: 11px 14px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.spec-table th {
    color: var(--deep);
    background: var(--mint);
    font-weight: 900;
    white-space: nowrap;
}

.spec-table td:first-child {
    font-weight: 800;
    color: var(--ink);
}

.spec-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.spec-facts li {
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
}

.spec-facts strong {
    color: var(--deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.spec-facts span {
    color: var(--muted);
    font-weight: 700;
}

.spec-note {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.spec-pdf-soon {
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

@media (max-width: 640px) {
    .spec-facts {
        grid-template-columns: 1fr;
    }
}

/* ===== Certifications scaffold (export.html) ===== */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

/* 3 cert cards now (HACCP removed) — use 3 columns on desktop so they stay centered. */
@media (min-width: 1001px) {
    .cert-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.cert-card {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(10, 36, 64, 0.06);
}

.cert-logo {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--mint);
    color: var(--deep);
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.cert-card strong {
    color: var(--ink);
    font-size: 16px;
}

.cert-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.cert-number {
    color: var(--deep);
    font-weight: 800;
    font-size: 13px;
}

.cert-number em {
    display: block;
    color: var(--muted);
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cert-doc-pending {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    font-style: italic;
}

@media (max-width: 1000px) {
    .cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Contact identity block ===== */
.contact-list a {
    color: var(--green);
    font-weight: 800;
}

.contact-channels {
    display: grid;
    gap: 16px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.btn.whatsapp,
.btn.line,
.btn.wechat {
    color: #ffffff;
    background: #25d366;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
}

/* WeChat: click the green button to reveal the QR + ID */
.wechat-details { width: 100%; }
.wechat-details summary.btn {
    width: 100%;
    list-style: none;
    cursor: pointer;
}
.wechat-details summary.btn::-webkit-details-marker { display: none; }
.wechat-details summary.btn::after {
    content: "\25BE";
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.2s ease;
}
.wechat-details[open] summary.btn::after { transform: rotate(180deg); }
.wechat-details[open] summary.btn {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.wechat-details:not([open]) .wechat-reveal { display: none; }
.wechat-reveal {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-top: none;
    border-radius: 0 0 10px 10px;
    background: #f4f8fc;
}

.wechat-qr {
    display: grid;
    place-items: center;
    width: 148px;
    height: 148px;
    flex: 0 0 148px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    padding: 6px;
    overflow: hidden;
}

.wechat-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wechat-reveal strong {
    display: block;
    color: var(--deep);
}

.wechat-reveal span {
    color: var(--muted);
    font-size: 13px;
}

.contact-map {
    margin-top: 22px;
}

.contact-map .eyebrow {
    margin-bottom: 10px;
}

.map-slot {
    display: grid;
    place-items: center;
    min-height: 160px;
    padding: 20px;
    border: 1px dashed var(--line);
    border-radius: 14px;
    background: #f4f8fc;
    color: var(--muted);
    font-weight: 700;
    text-align: center;
}

/* When a real map iframe is present, drop the dashed placeholder frame. */
.map-slot:has(iframe) {
    padding: 0;
    border: 0;
    background: transparent;
}

.map-slot iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 14px;
}

/* ===== Factory-tour video slot ===== */
.video-slot {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(260px, 42vw, 520px);
    border-radius: 22px;
    background-color: #05172b;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-slot::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 20, 38, 0.3), rgba(5, 20, 38, 0.62));
    pointer-events: none;
}

/* Real factory-tour video fills the slot and sits above the gradient overlay. */
.video-slot .video-player {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: clamp(260px, 42vw, 520px);
    object-fit: cover;
    border-radius: 22px;
    display: block;
    background: #05172b;
}

.video-play {
    position: relative;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--deep);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.video-play:hover {
    transform: scale(1.06);
    background: #ffffff;
}

.video-play-icon {
    margin-left: 5px;
    font-size: 30px;
    line-height: 1;
}

.video-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(5, 20, 38, 0.62);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

/* ===== About: family timeline ===== */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: tl;
}

.timeline li {
    position: relative;
    padding: 26px 22px 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(10, 36, 64, 0.06);
}

.timeline li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    width: 38px;
    height: 4px;
    border-radius: 999px;
    background: var(--coral);
}

.tl-year {
    display: block;
    margin-bottom: 8px;
    color: var(--green);
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
}

.timeline h3 {
    margin-bottom: 8px;
    font-size: 17px;
}

.timeline p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 1000px) {
    .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .timeline {
        grid-template-columns: 1fr;
    }
}

/* ===== Floating contact widget (widgets.js, all pages) ===== */
.fab-stack {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: grid;
    gap: 10px;
}

.fab {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(5, 20, 38, 0.3);
    transition: transform 0.18s ease;
}

.fab:hover {
    transform: translateY(-3px) scale(1.05);
}

.fab.wa {
    background: #25d366;
}

.fab.wx {
    background: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.fab.top {
    background: var(--deep);
    font-size: 20px;
}

@media (max-width: 560px) {
    .fab {
        width: 46px;
        height: 46px;
    }
}

.species-tile img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    background: #e3eef8;
}

.species-tile h3 {
    margin: 14px 10px 0;
    color: #1d3a5c;
    font-size: 14px;
}

.species-tile a {
    margin-bottom: 14px;
}

.quality-panel {
    padding: 16px;
}

.quality-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.quality-badges span {
    display: grid;
    place-items: center;
    min-height: 46px;
    padding: 8px;
    border: 1px solid rgba(10, 36, 64, 0.14);
    border-radius: 50px;
    color: #1d3a5c;
    background: #eef3f8;
    font-size: 10px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.inquiry-strip {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 190px 260px;
    gap: 12px;
    align-items: center;
    padding: 12px;
}

.inquiry-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.inquiry-preview span {
    min-height: 38px;
    padding: 11px 12px;
    border: 1px solid rgba(10, 36, 64, 0.12);
    border-radius: 4px;
    color: #7a899c;
    background: #ffffff;
    font-size: 11px;
}

.inquiry-strip img {
    width: 100%;
    height: 112px;
    border-radius: 4px;
    object-fit: cover;
}

.home-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 0;
    padding: 18px clamp(26px, 4vw, 56px);
    background: #0e3b66;
}

.home-footer div {
    padding: 0 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.home-footer div:first-child {
    border-left: 0;
}

.home-footer strong {
    font-size: 13px;
}

.home-footer p {
    margin-top: 4px;
    font-size: 11px;
}

@media (max-width: 1050px) {
    .capacity-ribbon,
    .dashboard-grid,
    .inquiry-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ribbon-media,
    .quality-panel,
    .inquiry-strip img {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .home-page .site-header {
        position: sticky;
        color: var(--ink);
        background: rgba(255, 255, 255, 0.94);
    }

    .home-page .brand {
        min-width: 0;
    }

    .home-page .brand strong {
        color: var(--deep);
    }

    .home-page .site-nav {
        color: var(--ink);
        font-size: 14px;
        text-transform: none;
    }

    .home-page .nav-button span {
        background: var(--ink);
    }

    .home-page .lang-select {
        color: var(--deep);
        background: #ffffff;
    }

    .home-page .hero.hero-export {
        min-height: auto;
        padding-top: 68px;
    }

    .home-page .hero-proof,
    .capacity-ribbon,
    .dashboard-grid,
    .inquiry-strip,
    .home-footer {
        grid-template-columns: 1fr;
    }

    .inquiry-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .home-page .hero.hero-export h1 {
        max-width: 11ch;
        font-size: 39px;
    }

    .home-page .hero-subline {
        font-size: 22px;
    }

    .home-page .hero.hero-export .hero-copy {
        max-width: 31ch;
    }

    .export-dashboard {
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* =====================================================================
   Homepage rebuild (hx-) — story, stat band, filterable products,
   why-us pillars, certifications. Reuses the site's existing tokens.
   ===================================================================== */
.hx-section-head {
    max-width: 760px;
}

.hx-section-head h2 {
    margin: 6px 0 14px;
    font-family: var(--display);
    color: var(--ink);
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.06;
}

.hx-section-head p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

/* ---- STORY ---- */
.hx-story {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
    padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 96px);
    background: var(--paper);
}

.hx-story-copy h2 {
    margin: 8px 0 18px;
    font-family: var(--display);
    color: var(--ink);
    font-size: clamp(30px, 3.6vw, 50px);
    line-height: 1.04;
}

.hx-story-copy p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.hx-cred {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.hx-cred li {
    position: relative;
    padding-left: 32px;
    color: var(--ink);
    font-weight: 650;
    font-size: 15px;
}

.hx-cred li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: -1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--deep);
    font-size: 12px;
    font-weight: 900;
}

.hx-story-media img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

/* ---- STAT BAND ---- */
.hx-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 4vw, 56px);
    padding: clamp(48px, 6vw, 84px) clamp(20px, 6vw, 96px);
    background: var(--deep);
    text-align: center;
}

.hx-stat strong {
    display: block;
    font-family: var(--display);
    color: #ffffff;
    font-size: clamp(34px, 4.4vw, 58px);
    font-weight: 650;
    line-height: 1;
}

.hx-num-text {
    color: var(--gold) !important;
    font-size: clamp(28px, 3.6vw, 46px) !important;
}

.hx-stat span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ---- PRODUCTS ---- */
.hx-products {
    padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 96px);
    background: var(--cream);
}

.hx-products .hx-section-head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hx-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 26px auto 36px;
}

.hx-tab {
    padding: 10px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--ink);
    font-family: inherit;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.hx-tab:hover {
    border-color: var(--deep);
}

.hx-tab.is-active {
    background: var(--deep);
    border-color: var(--deep);
    color: #ffffff;
}

.hx-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(18px, 2vw, 28px);
    max-width: 1060px;
    margin: 0 auto;
}

.hx-card {
    display: flex;
    flex-direction: column;
    flex: 0 1 322px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(10, 36, 64, 0.08);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}

.hx-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 56px rgba(10, 36, 64, 0.16);
}

.hx-card.is-hidden {
    display: none;
}

.hx-card-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.hx-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hx-card:hover .hx-card-media img {
    transform: scale(1.08);
}

.hx-tag {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(14, 59, 102, 0.86);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
    backdrop-filter: blur(4px);
}

.hx-card-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 16px;
}

.hx-card-text {
    display: grid;
    gap: 3px;
}

.hx-card-body h3 {
    margin: 0;
    font-family: var(--display);
    color: var(--ink);
    font-size: 18px;
    line-height: 1.15;
}

.hx-card-sub {
    margin: 0;
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* compact arrow (Deep Seafood style); keeps the accessible label for screen readers */
.hx-card-link {
    flex: 0 0 auto;
    font-size: 0;
    line-height: 1;
    color: var(--green);
    text-decoration: none;
    transition: transform 0.2s;
}

.hx-card-link::after {
    content: "\2192";
    font-size: 20px;
    font-weight: 700;
}

.hx-card:hover .hx-card-link {
    transform: translateX(3px);
}

.hx-products-foot {
    margin-top: 38px;
    text-align: center;
}

/* ---- WHY US ---- */
.hx-why {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(22px, 3vw, 44px);
    padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 96px);
    background: var(--paper);
}

.hx-why-head {
    grid-column: 1 / -1;
}

.hx-pillar-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--deep);
    font-size: 20px;
    font-weight: 900;
}

.hx-pillar h3 {
    margin: 0 0 8px;
    font-family: var(--display);
    color: var(--ink);
    font-size: 20px;
}

.hx-pillar p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

/* ---- CERTIFICATIONS ---- */
.hx-cert {
    padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 96px);
    background: var(--mint);
    text-align: center;
}

.hx-cert .hx-section-head {
    margin: 0 auto;
}

.hx-cert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.hx-cert-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border: 1px solid rgba(14, 59, 102, 0.16);
    border-radius: 12px;
    background: #ffffff;
    color: var(--deep);
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(10, 36, 64, 0.06);
}

.hx-cert-chip::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

/* ---- responsive ---- */
@media (max-width: 980px) {
    .hx-story {
        grid-template-columns: 1fr;
    }
    .hx-story-media {
        order: -1;
    }
    .hx-grid,
    .hx-why {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .hx-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }
    .hx-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .hx-why {
        grid-template-columns: 1fr;
    }
}

/* ---- CLOSING CTA band ---- */
.hx-cta {
    position: relative;
    padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 96px);
    text-align: center;
    color: #ffffff;
    background:
        linear-gradient(rgba(6, 28, 50, 0.82), rgba(6, 28, 50, 0.9)),
        url("img/export-logistics-port.png") center / cover;
}

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

.hx-cta h2 {
    max-width: 840px;
    margin: 8px auto 16px;
    font-family: var(--display);
    color: #ffffff;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.12;
}

.hx-cta p {
    max-width: 620px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.7;
}

/* ---- single floating contact (email) button ---- */
.email-fab {
    position: fixed;
    z-index: 60;
    right: clamp(16px, 3vw, 28px);
    bottom: clamp(16px, 3vw, 28px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--deep);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(14, 59, 102, 0.34);
    transition: transform 0.25s, background 0.25s;
}

.email-fab:hover {
    transform: translateY(-3px);
    background: var(--green);
}

/* ---- floating contact widget ---- */
.cw-root {
    position: fixed;
    z-index: 70;
    right: clamp(16px, 3vw, 28px);
    bottom: clamp(16px, 3vw, 28px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.cw-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: var(--deep);
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(14, 59, 102, 0.34);
    transition: transform 0.25s, background 0.25s;
}

.cw-toggle:hover {
    transform: translateY(-3px);
    background: var(--green);
}

.cw-toggle .cw-ic-close {
    display: none;
}

.cw-root.cw-open .cw-toggle .cw-ic-chat {
    display: none;
}

.cw-root.cw-open .cw-toggle .cw-ic-close {
    display: inline-flex;
}

.cw-panel {
    width: min(340px, calc(100vw - 32px));
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(10, 36, 64, 0.28);
    animation: cwPop 0.22s ease;
}

@keyframes cwPop {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to   { opacity: 1; transform: none; }
}

.cw-head {
    position: relative;
    padding: 20px 22px;
    background: var(--deep);
    color: #ffffff;
}

.cw-head strong {
    display: block;
    font-family: var(--display);
    font-size: 19px;
}

.cw-head p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.cw-x {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
}

.cw-x:hover {
    background: rgba(255, 255, 255, 0.28);
}

.cw-body {
    display: grid;
    gap: 10px;
    padding: 14px;
}

.cw-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.cw-row:hover {
    border-color: var(--deep);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(10, 36, 64, 0.08);
}

.cw-row > span:not(.cw-ico) {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.cw-ico {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--mint);
    color: var(--deep);
}

.cw-arrow {
    margin-left: auto;
    color: var(--green);
}

.cw-primary {
    justify-content: center;
    background: var(--deep);
    color: #ffffff;
    border-color: var(--deep);
}

.cw-primary:hover {
    background: var(--green);
    border-color: var(--green);
}

.cw-primary .cw-arrow {
    color: #ffffff;
    margin-left: 8px;
}

.cw-wechat-id {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
}

.cw-copied .cw-wechat-id::after {
    content: " \2713";
    color: var(--green);
}

/* ---- "30 Years of Excellence" emblem — header lockup beside the logo ---- */
.brand-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.year-emblem {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-left: 16px;
    border-left: 1px solid currentColor;
    color: inherit;
}

.year-emblem .ye-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.year-emblem .ye-ring b {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.year-emblem .ye-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.18;
}

.year-emblem .ye-txt span {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .year-emblem {
        display: none;
    }
}

/* ===== About page — Part 2: intro (photo + text, Deep Seafood style) ===== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 96px);
}

.about-intro-media img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.about-intro-copy h2 {
    margin: 8px 0 16px;
    font-family: var(--display);
    color: var(--ink);
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.08;
}

.about-intro-copy p:not(.eyebrow) {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .about-intro {
        grid-template-columns: 1fr;
    }
    .about-intro-media {
        order: -1;
    }
}

/* ===== About page — centered section headings for timeline + pillars ===== */
.timeline-section .section-heading,
.process .section-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ===== Full sitewide footer ===== */
.site-footer {
    display: block;
    padding: clamp(48px, 6vw, 80px) clamp(20px, 6vw, 96px) 28px;
    background: #0a2440;
    color: rgba(255, 255, 255, 0.72);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: clamp(28px, 4vw, 64px);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(143, 196, 239, 0.7);
}

.footer-logo strong {
    display: block;
    color: #ffffff;
    font-family: var(--display);
    font-size: 18px;
    line-height: 1;
}

.footer-logo small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-tag {
    margin: 16px 0 14px;
    color: #8fc4ef;
    font-family: var(--display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

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

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.82);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
    background: var(--green);
    border-color: var(--green);
    color: #ffffff;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    margin: 0 0 6px;
    color: #ffffff;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 600;
}

.footer-col a,
.footer-col span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
}

.footer-col a:hover {
    color: #8fc4ef;
}

.footer-bottom {
    max-width: 1200px;
    margin: clamp(32px, 4vw, 52px) auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 860px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 520px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* ===== About — Vision / Mission / Values ===== */
.about-vmv {
    background: var(--cream);
}

.about-vmv .section-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2.4vw, 30px);
    max-width: 1080px;
    margin: 0 auto;
}

.vmv-card {
    padding: clamp(28px, 3vw, 40px) clamp(22px, 2.4vw, 32px);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(10, 36, 64, 0.06);
    text-align: center;
}

.vmv-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--deep);
}

.vmv-card h3 {
    margin: 0 0 10px;
    font-family: var(--display);
    color: var(--ink);
    font-size: 21px;
}

.vmv-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 820px) {
    .vmv-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
    }
}

/* ===== About — Markets "export reach" map (self-contained, animated) ===== */
.about-markets {
    background: #0a2440;
    color: #ffffff;
}

.about-markets .section-heading {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.about-markets .section-heading h2 {
    color: #ffffff;
}

.about-markets .eyebrow {
    color: #8fc4ef;
}

.reach-map {
    max-width: 920px;
    margin: 36px auto 0;
}

.reach-map svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.reach-ring {
    fill: none;
    stroke: rgba(143, 196, 239, 0.14);
    stroke-width: 1;
}

/* connection lines draw in when the section scrolls into view */
.reach-line {
    stroke-width: 1.6;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.reach-map.is-revealed .reach-line {
    stroke-dashoffset: 0;
}

.reach-line:nth-child(1) { transition-delay: 0.05s; }
.reach-line:nth-child(2) { transition-delay: 0.15s; }
.reach-line:nth-child(3) { transition-delay: 0.25s; }
.reach-line:nth-child(4) { transition-delay: 0.35s; }
.reach-line:nth-child(5) { transition-delay: 0.45s; }
.reach-line:nth-child(6) { transition-delay: 0.55s; }
.reach-line:nth-child(7) { transition-delay: 0.65s; }
.reach-line:nth-child(8) { transition-delay: 0.75s; }

.reach-dot {
    fill: #cfe7fb;
}

.reach-pulse {
    fill: #8fc4ef;
    transform-box: fill-box;
    transform-origin: center;
    animation: reachPulse 2.6s ease-out infinite;
}

.reach-node:nth-child(2) .reach-pulse { animation-delay: 0.3s; }
.reach-node:nth-child(3) .reach-pulse { animation-delay: 0.6s; }
.reach-node:nth-child(4) .reach-pulse { animation-delay: 0.9s; }
.reach-node:nth-child(5) .reach-pulse { animation-delay: 1.2s; }
.reach-node:nth-child(6) .reach-pulse { animation-delay: 1.5s; }
.reach-node:nth-child(7) .reach-pulse { animation-delay: 1.8s; }
.reach-node:nth-child(8) .reach-pulse { animation-delay: 2.1s; }

@keyframes reachPulse {
    0%   { transform: scale(1);   opacity: 0.55; }
    80%, 100% { transform: scale(3.6); opacity: 0; }
}

.reach-label {
    fill: rgba(255, 255, 255, 0.86);
    font-family: var(--sans, inherit);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.reach-hub-dot {
    fill: #ffffff;
}

.reach-hub-pulse {
    fill: #8fc4ef;
    transform-box: fill-box;
    transform-origin: center;
    animation: reachPulse 2.6s ease-out infinite;
}

.reach-hub-label {
    fill: #8fc4ef;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.reach-hub-sub {
    fill: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
    .reach-line { transition: none; stroke-dashoffset: 0; }
    .reach-pulse, .reach-hub-pulse { animation: none; opacity: 0.4; }
}

/* ===== Markets map — established (Korea) vs expanding ===== */
.about-markets .markets-copy {
    max-width: 620px;
    margin: 14px auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.65;
}

.reach-line-main {
    stroke: #cfe7fb;
    stroke-width: 2.2;
}

.reach-line-soft {
    opacity: 0.3;
}

.reach-node-main .reach-dot {
    fill: #eaf4ff;
}

.reach-node-main .reach-label {
    fill: #ffffff;
    font-weight: 800;
}

.reach-node-soft .reach-dot {
    fill: rgba(143, 196, 239, 0.55);
}

.reach-node-soft .reach-label {
    fill: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.reach-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 26px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

.reach-legend > span {
    display: inline-flex;
    align-items: center;
}

.reach-legend .lg-dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-right: 8px;
    border-radius: 50%;
}

.lg-main {
    background: #eaf4ff;
    box-shadow: 0 0 8px rgba(207, 231, 251, 0.9);
}

.lg-soft {
    background: rgba(143, 196, 239, 0.5);
}

/* ===== About — international-export globe section ===== */
.export-note {
    padding: clamp(56px, 7vw, 92px) clamp(20px, 6vw, 96px);
}

/* ===== About — rotating globe (self-contained, "we ship internationally") ===== */
.export-note {
    background: #0a2440;
    text-align: center;
}

.globe-wrap {
    max-width: 640px;
    margin: 0 auto;
}

.globe {
    position: relative;
    width: clamp(150px, 20vw, 210px);
    aspect-ratio: 1;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 36% 30%, #205a93 0%, #0a2440 72%);
    box-shadow: inset -10px -10px 32px rgba(0, 0, 0, 0.45), 0 14px 50px rgba(31, 111, 178, 0.35);
    overflow: hidden;
}

.g-meridian {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(143, 196, 239, 0.4);
    animation: gSpin 7s linear infinite;
}

.g-meridian:nth-child(1) { animation-delay: 0s; }
.g-meridian:nth-child(2) { animation-delay: -1.4s; }
.g-meridian:nth-child(3) { animation-delay: -2.8s; }
.g-meridian:nth-child(4) { animation-delay: -4.2s; }
.g-meridian:nth-child(5) { animation-delay: -5.6s; }

@keyframes gSpin {
    0%   { transform: scaleX(1); }
    50%  { transform: scaleX(-1); }
    100% { transform: scaleX(1); }
}

.g-lat {
    position: absolute;
    border: 1px solid rgba(143, 196, 239, 0.22);
    border-radius: 50%;
}

.g-lat:nth-child(6) { top: 31%; bottom: 31%; left: 1%; right: 1%; }
.g-lat:nth-child(7) { top: 12%; bottom: 12%; left: 16%; right: 16%; }

.globe-cap {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: var(--display);
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.15;
}

.globe-sub {
    max-width: 540px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
    .g-meridian { animation: none; }
}

/* ===== About globe section — drifting fish background ===== */
.export-note {
    position: relative;
    overflow: hidden;
}

.export-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.globe-wrap {
    position: relative;
    z-index: 1;
}

.fish {
    position: absolute;
    left: 0;
    height: auto;
    fill: #8fc4ef;
    opacity: 0.1;
    will-change: transform;
}

@keyframes fishSwim {
    from { transform: translateX(-16vw); }
    to   { transform: translateX(108vw); }
}

@keyframes fishSwimRev {
    from { transform: translateX(108vw) scaleX(-1); }
    to   { transform: translateX(-16vw) scaleX(-1); }
}

.f1 { top: 12%; width: 72px; opacity: 0.12; animation: fishSwim 27s linear infinite; }
.f2 { top: 30%; width: 46px; opacity: 0.08; animation: fishSwimRev 36s linear infinite; animation-delay: -9s; }
.f3 { top: 55%; width: 96px; opacity: 0.1;  animation: fishSwim 31s linear infinite; animation-delay: -17s; }
.f4 { top: 72%; width: 54px; opacity: 0.09; animation: fishSwimRev 40s linear infinite; animation-delay: -5s; }
.f5 { top: 44%; width: 38px; opacity: 0.07; animation: fishSwim 46s linear infinite; animation-delay: -24s; }
.f6 { top: 85%; width: 64px; opacity: 0.1;  animation: fishSwimRev 29s linear infinite; animation-delay: -13s; }

@media (prefers-reduced-motion: reduce) {
    .fish { animation: none; opacity: 0.06; }
}

/* ===== Sub-page section headings centered (consistent across Products/Export/etc.) ===== */
.home-page.subpage .section > .section-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ===== Footer legal links ===== */
.footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 14px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #8fc4ef;
}

/* ===== FAQ page (native <details> accordion) ===== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(10, 36, 64, 0.05);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    font-family: var(--display);
    font-weight: 600;
    font-size: 17px;
    color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--green);
    font-size: 22px;
    line-height: 1;
}

.faq-item[open] summary::after { content: "\2013"; }

.faq-item p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== Legal pages (Privacy / Terms) ===== */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-content h2 {
    margin: 28px 0 10px;
    font-family: var(--display);
    color: var(--ink);
    font-size: 22px;
}

.legal-content p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.7;
}

.legal-note {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-left: 3px solid var(--green);
    background: var(--cream);
    color: var(--muted);
    font-size: 14px;
}

/* Founder quote band (About page) */
.founder-quote {
    max-width: 880px;
    margin: 0 auto;
    padding: 52px 24px 60px;
    text-align: center;
}
.founder-quote blockquote {
    margin: 0;
}
.founder-quote p {
    font-family: var(--display);
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1.45;
    font-weight: 500;
    color: var(--deep);
    margin: 0 0 18px;
}
.founder-quote p::before { content: "\201C"; color: var(--green); }
.founder-quote p::after  { content: "\201D"; color: var(--green); }
.founder-quote cite {
    display: block;
    font-style: normal;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
}

/* WeChat ID on contact card */
.wechat-id {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: var(--muted);
}

/* Coming-soon product card (e.g. black sea bream) */
.hx-card-soon { opacity: .9; }
.hx-card-soon .hx-card-media { cursor: default; }
.hx-card-soon img { filter: grayscale(0.35); }
.hx-tag-soon { background: var(--deep); color: #fff; }
