:root {
    --bg-dark: #07131C;
    --bg-darker: #04090E;
    --bg-card: #112335;
    --primary-blue: #1A4668;
    --primary-hover: #215A86;
    --text-main: #FFFFFF;
    --text-muted: #A3B5C3;
    --btn-bg: #7490A3;
    --font-family: Outfit, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --text-body: 0.95rem;
    --text-h1: clamp(2.25rem, 4vw, 3.5rem);
    --text-h2: clamp(1.75rem, 2.4vw, 2.2rem);
    --text-h2-display: clamp(1.85rem, 3vw, 2.5rem);
    --text-h3: 1.3rem;
    --space-section: 100px;
    --space-section-sm: 70px;
    --space-gutter: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body,
button,
input,
select,
textarea {
    font-family: var(--font-family);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-size: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.wp-site-blocks {
    font-family: var(--font-family);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-family);
    font-weight: 500;
    color: var(--text-main);
    overflow-wrap: break-word;
}

h1 {
    font-size: var(--text-h1);
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: var(--text-h2);
    line-height: 1.2;
}

h3 {
    font-size: var(--text-h3);
    line-height: 1.25;
    margin-bottom: 10px;
}

p {
    font-size: var(--text-body);
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 20px;
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 30px;
}

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

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 20px;
}

.btn-outline:hover {
    border-color: white;
    background-color: rgba(255,255,255,0.05);
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px var(--space-gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.nav-left,
.logo,
.nav-center,
.nav-right {
    display: flex;
    align-items: center;
}

.logo-image {
    display: block;
    height: 40px;
    width: auto;
}

.nav-center {
    gap: 28px;
}

.nav-center a {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.nav-center a:hover {
    opacity: 1;
}

.nav-right {
    gap: 20px;
}

.navbar p,
.logo p,
.nav-left p,
.nav-center p,
.nav-right p,
.nav-toggle-wrap,
.hero > p,
.hero-content > p {
    display: contents;
}

.navbar br,
.logo br,
.nav-left br,
.nav-center br,
.nav-right br,
.nav-toggle br {
    display: none;
}

.phone-link {
    background-color: var(--btn-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    height: 90vh;
    background-color: var(--bg-dark);
    background-image: url('../images/hero_video_poster.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 19, 28, 0.38) 0%, rgba(7, 19, 28, 0.52) 55%, rgba(7, 19, 28, 0.68) 100%),
        linear-gradient(90deg, rgba(7, 19, 28, 0.42) 0%, rgba(7, 19, 28, 0.22) 70%);
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    padding-bottom: 80px;
}

.hero h1,
.hero-small h1,
.quality-hero h1,
.about-hero h1,
.recruitment-hero h1,
.contact-hero h1,
.staff-hero h1 {
    font-size: var(--text-h1);
    font-weight: 500;
}

.hero-small h1,
.quality-hero h1,
.about-hero h1,
.recruitment-hero h1,
.contact-hero h1,
.staff-hero h1 {
    position: relative;
    z-index: 2;
    margin: 0;
    padding-top: 60px;
    text-align: center;
}

.quality-intro h2,
.staff-intro h2,
.products-header h2,
.trim-cta h2,
.white-fish-block h2,
.category-intro h2 {
    font-size: var(--text-h2-display);
}

/* Safety Section */
.safety-section {
    padding: var(--space-section) 0;
    background-color: var(--bg-dark);
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.safety-title h2 {
    max-width: 400px;
}

.safety-desc p {
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Full Image Section */
.full-image-section {
    width: 100%;
    height: 500px;
}

.full-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Products Section */
.products-section {
    padding: var(--space-section) 0;
    background-color: var(--bg-dark);
}

.products-badge {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 40px;
}

.products-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.product-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-info {
    padding: 30px;
    flex-grow: 1;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(145deg, var(--primary-blue), var(--bg-darker));
    color: rgba(255,255,255,0.72);
    text-align: center;
}

.product-image-placeholder span {
    max-width: 180px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.products-empty {
    padding: 50px 30px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    text-align: center;
}

.products-empty p {
    margin: 0 auto;
}

.products-admin-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Footer */
.site-footer {
    background-color: var(--bg-darker);
    padding: 80px 0 30px;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1.2fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    max-width: 280px;
    margin-top: 24px;
    line-height: 1.7;
}

.footer-nav,
.footer-office {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    color: var(--text-muted);
}

.footer-nav h3,
.footer-office h3 {
    margin: 0;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-nav ul,
.footer-office ul,
.footer-nav p,
.footer-office p:has(> a) {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.footer-nav li,
.footer-office li {
    margin: 0;
    padding: 0;
}

.footer-nav a,
.footer-office a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-office a:hover {
    color: #fff;
}

.footer-office p {
    margin: 0;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
}

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

/* Single Product Layout */
.single-product-section {
    padding: var(--space-section) 0;
    background-color: var(--bg-dark);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery img,
.product-gallery .product-detail-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    object-fit: cover;
}

.product-gallery .product-detail-image {
    min-height: 420px;
    aspect-ratio: 4 / 3;
}

.product-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info-detail h1 {
    font-size: var(--text-h2-display);
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 300;
}

.product-description {
    margin-bottom: 40px;
    line-height: 1.8;
}

.product-specs {
    background-color: var(--bg-card);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    font-weight: 500;
    color: var(--text-muted);
}

.spec-value {
    font-weight: 500;
}

.product-actions {
    display: flex;
    gap: 20px;
}

/* Quality Page Layout */
.quality-hero {
    height: 50vh;
    background-image: url('../images/quality_hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.quality-hero h1 {
    font-size: var(--text-h1);
}
.quality-section {
    padding: var(--space-section) 0;
}
.quality-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 60px;
}
.quality-intro h2 {
    max-width: 620px;
    font-size: var(--text-h2-display);
}
.quality-intro > p {
    font-size: 1.05rem;
    line-height: 1.8;
}
.quality-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.quality-pillars div {
    padding: 22px 20px;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.quality-pillars div + div {
    border-left: 1px solid rgba(255,255,255,0.1);
}
.quality-pillars span {
    margin-right: 12px;
    color: var(--btn-bg);
    font-size: 0.75rem;
}
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: start;
}
.cert-card {
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.cert-card:hover {
    transform: translateY(-6px);
    border-color: rgba(116,144,163,0.35);
    box-shadow: 0 22px 50px rgba(0,0,0,0.32);
}
.cert-document {
    position: relative;
    padding: 30px 30px 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(116,144,163,0.3), transparent 42%),
        linear-gradient(145deg, #0b1b29, #07131c);
}
.cert-document > .cert-open {
    position: relative;
    display: block;
    width: 100%;
    height: 390px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 0;
    border-radius: 7px 7px 0 0;
    color: inherit;
    font: inherit;
    text-align: inherit;
    cursor: zoom-in;
}
.cert-document-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.cert-card:hover .cert-document-image {
    transform: scale(1.025);
}
.cert-number {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    background: rgba(4,9,14,0.86);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    color: #fff;
    font-size: 0.75rem;
    backdrop-filter: blur(8px);
}
.cert-view {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 10px 14px;
    background: rgba(7,19,28,0.9);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(8px);
}
.cert-document .cert-open:hover .cert-view,
.cert-document .cert-open:focus-visible .cert-view {
    opacity: 1;
    transform: translateY(0);
}
.cert-document-placeholder {
    display: grid;
    place-items: center;
    height: 390px;
    background: linear-gradient(145deg, #173a55, #07131c);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 7px 7px 0 0;
    color: rgba(255,255,255,0.8);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}
.cert-card-body {
    padding: 28px 30px 30px;
}
.cert-card h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.3;
}
.cert-kicker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 27px;
    margin-bottom: 16px;
}
.cert-code {
    padding: 5px 10px;
    background: var(--primary-blue);
    border-radius: 20px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}
.cert-level {
    color: var(--btn-bg);
    font-size: 0.75rem;
    text-align: right;
}
.cert-issuer {
    margin-bottom: 18px;
    color: var(--btn-bg);
    font-size: 0.8rem;
}
.cert-summary {
    line-height: 1.7;
}
.cert-details {
    margin-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.cert-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 0;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    list-style: none;
}
.cert-details summary::-webkit-details-marker {
    display: none;
}
.cert-details summary span {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}
.cert-details[open] summary span {
    transform: rotate(45deg);
}
.cert-details-content {
    padding-top: 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.cert-details-content > * + * {
    margin-top: 12px;
}
.cert-details-content ul {
    padding-left: 20px;
}
.cert-empty {
    padding: 60px 30px;
    background: var(--bg-card);
    border-radius: 12px;
    text-align: center;
}
.cert-empty h3 {
    margin-bottom: 20px;
}
.has-certificate-modal {
    overflow: hidden;
}
.cert-modal {
    position: fixed;
    inset: 0;
    width: min(960px, calc(100vw - 64px));
    max-width: none;
    height: min(880px, calc(100vh - 64px));
    height: min(880px, calc(100dvh - 64px));
    max-height: none;
    margin: auto;
    padding: 0;
    overflow: hidden;
    background: var(--bg-darker);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 30px 90px rgba(0,0,0,0.65);
}
.cert-modal[open] {
    animation: cert-modal-enter 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cert-modal::backdrop {
    background: rgba(2,7,11,0.86);
    backdrop-filter: blur(8px);
}
.cert-modal[open]::backdrop {
    animation: cert-backdrop-enter 0.28s ease-out;
}
.cert-modal-shell {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}
.cert-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 18px 22px;
    background: var(--bg-card);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cert-modal-header h2 {
    margin: 0;
    font-size: 1.15rem;
}
.cert-modal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cert-modal-download {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
}
.cert-modal-download:hover,
.cert-modal-download:focus-visible {
    color: var(--btn-bg);
    border-bottom-color: var(--btn-bg);
}
.cert-modal-close {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: #fff;
    font: inherit;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
}
.cert-modal-close:hover,
.cert-modal-close:focus-visible {
    background: var(--primary-blue);
    border-color: rgba(255,255,255,0.3);
}
.cert-modal-viewer {
    display: grid;
    flex: 1;
    min-height: 0;
    place-items: start center;
    overflow: auto;
    padding: 30px;
    background:
        radial-gradient(circle at 50% 0%, rgba(116,144,163,0.14), transparent 45%),
        var(--bg-dark);
}
.cert-modal-image {
    display: block;
    width: min(100%, 820px);
    height: auto;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
@keyframes cert-modal-enter {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(12px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
@keyframes cert-backdrop-enter {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .cert-modal[open],
    .cert-modal[open]::backdrop {
        animation: none;
    }
}
@media (max-width: 1100px) {
    .cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 700px) {
    .quality-intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .quality-pillars {
        grid-template-columns: 1fr;
    }
    .quality-pillars div + div {
        border-top: 1px solid rgba(255,255,255,0.1);
        border-left: 0;
    }
    .cert-grid {
        grid-template-columns: 1fr;
    }
    .cert-document > .cert-open,
    .cert-document-placeholder {
        height: min(125vw, 520px);
    }
    .cert-modal {
        width: calc(100vw - 20px);
        height: calc(100vh - 20px);
        height: calc(100dvh - 20px);
        border-radius: 10px;
    }
    .cert-modal-header {
        padding: 14px 16px;
    }
    .cert-modal-header h2 {
        font-size: 1rem;
    }
    .cert-modal-viewer {
        padding: 16px;
    }
}

/* About Page Layout */
.about-hero {
    height: 50vh;
    background-image: url('../images/about_hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.about-hero h1 {
    font-size: var(--text-h1);
}
.about-section {
    padding: var(--space-section) 0;
}
.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}
.about-block:last-child {
    margin-bottom: 0;
}
.about-block.reverse .about-text {
    order: 2;
}
.about-block.reverse .about-img {
    order: 1;
}
.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.about-text h2 {
    margin-bottom: 20px;
    color: var(--text-main);
}
.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Forms & Input Layout */
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: var(--text-body);
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: rgba(255, 255, 255, 0.08);
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: var(--space-section) 0;
}
.contact-info-block {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
}
.contact-info-block h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.contact-detail-item .icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
}
.contact-detail-item div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.contact-detail-item div strong {
    color: white;
}
.contact-detail-item div span, .contact-detail-item div a {
    color: var(--text-muted);
    line-height: 1.5;
}

.recruitment-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    padding: var(--space-section) 0;
}
.recruitment-text h2 {
    font-size: var(--text-h2-display);
    margin-bottom: 20px;
}
.recruitment-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}
.recruitment-form-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.recruitment-hero {
    height: 50vh;
    min-height: 420px;
    background-image: url('../images/recruitment_hero.png');
    background-size: cover;
    background-position: center 58%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.contact-hero {
    height: 50vh;
    background-image: url('../images/contact_hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
/* Premium Contact Page Layout */
.contact-pro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    padding: var(--space-section) 0;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.info-card {
    background-color: var(--bg-card);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border-color: rgba(37, 99, 235, 0.3);
}
.info-card .icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}
.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}
.info-card p, .info-card a {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.info-card a:hover {
    color: var(--primary-blue);
}

.contact-form-wrapper {
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* Product Page Layouts */
.category-intro {
    max-width: 800px;
    margin: 80px auto;
    text-align: center;
}
.category-intro h2 {
    font-size: var(--text-h2-display);
    margin-bottom: 25px;
}
.category-intro p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}
.trim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.trim-card {
    background-color: var(--bg-dark);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}
.trim-card h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.trim-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.trim-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.trim-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}
.spec-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}
.spec-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
}
.spec-list li strong {
    color: white;
    margin-right: 10px;
}

@media (max-width: 900px) {
    .hero-content { flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 40px; }
    .safety-grid, .products-header { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-actions { flex-direction: column; }
    .cert-grid { grid-template-columns: 1fr; }
    .about-block { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
    .about-block.reverse .about-text { order: 1; }
    .about-block.reverse .about-img { order: 2; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .recruitment-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-info-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 30px; }
    .trim-grid { grid-template-columns: 1fr; }
    .spec-block { grid-template-columns: 1fr !important; gap: 40px !important; }
    .spec-block.reverse .spec-text { order: 2; }
    .spec-block.reverse .spec-img { order: 1; }
}

/* Real Image Trimming Grid */
.real-trim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; /* match product-grid gap */
    margin-bottom: 80px;
}
.real-trim-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.real-trim-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.real-trim-img-wrapper {
    background-color: #ffffff; /* pure white to blend perfectly with the original JPG background */
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.real-trim-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.real-trim-image-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    padding: 24px;
    background: linear-gradient(145deg, #f4f7f9, #dfe7ec);
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}
.real-trim-content {
    padding: 30px;
    flex-grow: 1;
    text-align: left; /* Align text left like the product cards */
}
.real-trim-content h4 {
    color: white; /* match product h3 */
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.real-trim-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.real-trim-content ul li {
    position: relative;
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.6;
}
.real-trim-content ul li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--btn-bg);
}
.real-trim-details > * + * {
    margin-top: 12px;
}
.trim-empty {
    max-width: 720px;
    margin: 0 auto 60px;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    text-align: center;
}
.trim-empty h3 {
    margin-bottom: 15px;
}
.trim-empty p {
    margin: 0 auto 28px;
}
.category-header {
    font-size: 2.2rem;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    text-align: center;
}
@media (max-width: 1024px) {
    .real-trim-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .real-trim-grid { grid-template-columns: 1fr; }
}

/* WordPress shell + layout extras */
.wp-site-blocks,
.has-global-padding {
    padding: 0 !important;
}
.wp-site-blocks > * + * {
    margin-block-start: 0 !important;
}
.bgp-form-notice {
    padding: 16px 0;
    text-align: center;
    font-size: 0.95rem;
}
.bgp-form-notice.is-sent { background: #1A4668; color: #fff; }
.bgp-form-notice.is-invalid,
.bgp-form-notice.is-error { background: #3b1d1d; color: #fff; }
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}
.navbar-solid {
    position: relative;
    background-color: var(--bg-dark);
}
.admin-bar .navbar:not(.navbar-solid) { top: 32px; }
.nav-toggle {
    display: none;
    position: relative;
    flex: 0 0 40px;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    z-index: 12;
}
.nav-toggle span {
    display: block;
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.navbar.is-open .nav-toggle span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}
.navbar.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}
.navbar.is-open .nav-toggle span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}
body.nav-open {
    overflow: hidden;
}
.product-card a { overflow: hidden; display: block; }
.product-card .product-image { transition: transform 0.3s; cursor: pointer; }
.product-card a:hover .product-image { transform: scale(1.05); }
.hero-small {
    height: 50vh;
    background-image: url('../images/hero_salmon.png');
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-small h1 {
    font-size: var(--text-h1);
}
.products-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0 80px;
}
@media (max-width: 900px) {
    .products-grid-full { grid-template-columns: 1fr; }
}
@media (max-width: 782px) {
    .admin-bar .navbar:not(.navbar-solid) { top: 46px; }
}

.section-action,
.form-submit {
    margin-top: 60px;
    text-align: center;
}
.section-action-tight {
    margin-top: 20px;
    margin-bottom: 80px;
}
.btn-large {
    padding: 12px 35px;
    font-size: 1rem;
}
.btn-block {
    width: 100%;
}
.btn-submit {
    width: 100%;
    max-width: 300px;
    padding: 15px 50px;
    font-size: 1.1rem;
}
.trim-section {
    padding: var(--space-section) 0;
}
.trim-cta-section {
    padding: var(--space-section) 0;
    background-color: var(--bg-card);
}
.trim-cta {
    max-width: 850px;
    text-align: center;
}
.trim-cta h2 {
    margin-bottom: 20px;
    font-size: var(--text-h2-display);
}
.trim-cta p {
    margin: 0 auto 35px;
    font-size: 1.2rem;
    line-height: 1.8;
}
.section-intro {
    max-width: 850px;
    margin: 0 auto 80px;
    text-align: center;
}
.section-intro h2 {
    font-size: var(--text-h2-display);
    margin-bottom: 20px;
}
.section-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
}
.white-fish-block {
    margin-top: 100px;
    margin-bottom: 100px;
}
.white-fish-block h2 {
    font-size: var(--text-h2-display);
}
.contact-page-header {
    padding: 120px 20px 60px;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-dark), #09131c);
}
.contact-page-header h1 {
    margin-bottom: 20px;
    font-weight: 600;
}
.contact-page-header p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.6;
}
.contact-form-wrapper h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}
.legal-id {
    margin-top: 15px;
    font-size: 0.8rem !important;
    color: rgba(255,255,255,0.45) !important;
}
.info-card .info-primary {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}
.einfalt-logo {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: -0.5px;
}
.einfalt-logo span {
    color: #2563eb;
}
.generic-page {
    min-height: 55vh;
    padding: var(--space-section) var(--space-gutter);
}
.generic-page h1 {
    margin-bottom: 40px;
}
.generic-page-content {
    max-width: 820px;
}
.generic-page-content > * + * {
    margin-top: 20px;
}
.generic-page-content p,
.generic-page-content li {
    color: var(--text-muted);
}
.generic-page-content a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.generic-page--tax-strategy-2022 .generic-page-content,
.generic-page--privacy-policy .generic-page-content,
.generic-page--reporting-irregularities .generic-page-content,
.generic-page--information-clauses .generic-page-content {
    max-width: none;
}
.legal-intro {
    max-width: 900px;
    padding: 38px 40px;
    background:
        radial-gradient(circle at 100% 0, rgba(116,144,163,0.16), transparent 45%),
        var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid var(--btn-bg);
    border-radius: 12px;
}
.legal-intro h2 {
    margin-bottom: 16px;
    font-size: 2rem;
}
.legal-intro p:last-child {
    margin-bottom: 0;
}
.legal-kicker {
    margin-bottom: 12px;
    color: var(--btn-bg) !important;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.legal-notice {
    max-width: 900px;
    padding: 18px 22px;
    background: rgba(116,144,163,0.1);
    border: 1px solid rgba(116,144,163,0.22);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.document-feature {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    align-items: center;
    gap: 36px;
    margin-top: 35px !important;
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
}
.document-icon {
    display: grid;
    place-items: center;
    width: 110px;
    height: 140px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 18px 35px rgba(0,0,0,0.3);
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.document-feature h2 {
    margin-bottom: 12px;
    font-size: 1.7rem;
}
.document-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.document-actions .btn {
    text-decoration: none;
}
.pdf-viewer {
    height: 78vh;
    min-height: 640px;
    margin-top: 35px !important;
    overflow: hidden;
    background: #e7eaec;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}
.pdf-viewer iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.document-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 35px !important;
}
.document-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.document-card:hover {
    transform: translateY(-4px);
    border-color: rgba(116,144,163,0.35);
}
.document-index {
    margin-bottom: 35px;
    color: var(--btn-bg);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}
.document-card h2 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}
.document-card p {
    margin-bottom: 24px;
}
.document-card .btn {
    align-self: flex-start;
    margin-top: auto;
    text-decoration: none;
}
.reporting-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 35px !important;
}
.reporting-panel {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
}
.reporting-panel h2 {
    margin-bottom: 18px;
    font-size: 1.45rem;
}
.reporting-panel ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
}
.reporting-panel li + li {
    margin-top: 10px;
}
.reporting-cta {
    margin-top: 35px !important;
    padding: 40px;
    background:
        radial-gradient(circle at 90% 20%, rgba(116,144,163,0.24), transparent 42%),
        var(--primary-blue);
    border-radius: 12px;
}
.reporting-cta h2 {
    margin-bottom: 12px;
}
.reporting-cta p {
    max-width: 760px;
    color: rgba(255,255,255,0.78);
}
.reporting-cta .document-actions .btn-primary {
    background: #fff;
    color: var(--bg-dark);
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 35px !important;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}
.process-step {
    padding: 28px;
    background: var(--bg-card);
}
.process-step span {
    display: block;
    margin-bottom: 25px;
    color: var(--btn-bg);
    font-size: 0.75rem;
}
.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}
.process-step p {
    font-size: 0.88rem;
}
.legal-article {
    max-width: 900px;
    margin-top: 35px !important;
}
.legal-article h2 {
    margin-top: 45px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.55rem;
}
.legal-article ul {
    padding-left: 22px;
    color: var(--text-muted);
}
.legal-article li + li {
    margin-top: 10px;
}
.product-description p + p {
    margin-top: 20px;
}

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

@media (max-width: 700px) {
    .document-feature,
    .document-grid,
    .reporting-grid {
        grid-template-columns: 1fr;
    }
    .document-feature {
        gap: 24px;
    }
    .pdf-viewer {
        height: 65vh;
        min-height: 480px;
    }
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

.staff-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56vh;
    min-height: 460px;
    background-image: url('../images/about_experts.png');
    background-position: center;
    background-size: cover;
}
.staff-hero h1 {
    font-size: var(--text-h1);
}
.staff-section {
    padding: var(--space-section) 0;
}
.staff-intro {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}
.staff-intro h2 {
    margin-bottom: 20px;
    font-size: var(--text-h2-display);
}
.staff-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}
.staff-department-block + .staff-department-block {
    margin-top: 80px;
}
.staff-department-header {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.staff-department-header span {
    color: var(--btn-bg);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
}
.staff-department-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.7rem;
}
.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    justify-items: stretch;
}
.staff-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(26,70,104,0.18), transparent 42%),
        var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.staff-card:hover {
    transform: translateY(-6px);
    border-color: rgba(116,144,163,0.35);
    box-shadow: 0 22px 50px rgba(0,0,0,0.32);
}
.staff-portrait {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--bg-darker);
}
.staff-photo,
.staff-photo-placeholder {
    width: 100%;
    height: 100%;
}
.staff-photo {
    display: block;
    object-fit: cover;
}
.staff-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 22% 18%, rgba(116,144,163,0.35), transparent 40%),
        linear-gradient(160deg, #1A4668 0%, #07131C 72%);
    color: rgba(255,255,255,0.88);
}
.staff-photo-placeholder span {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}
.staff-card br {
    display: none;
}
.staff-card p {
    margin: 0;
}
.staff-card-content {
    padding: 18px 20px 20px;
}
.staff-card-content h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.25;
}
.staff-card-content .staff-role {
    margin: 2px 0 0;
    color: var(--btn-bg);
    font-size: 0.9rem;
    line-height: 1.35;
}
.staff-card-content ul.staff-actions {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}
.staff-card-content ul.staff-actions li {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1.45;
}
.staff-card-content ul.staff-actions li::marker {
    content: none;
    font-size: 0;
}
.staff-actions li + li {
    margin-top: 4px;
}
.staff-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.45;
}
.staff-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1;
}
.staff-action-icon svg {
    display: block;
    width: 14px;
    height: 14px;
}
.staff-action:hover {
    color: var(--btn-bg);
}
.staff-empty {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    text-align: center;
}
.staff-empty h3 {
    margin-bottom: 15px;
}
.staff-empty p {
    max-width: 560px;
    margin: 0 auto 30px;
}
.staff-admin-link {
    display: block;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
}

@media (max-width: 1200px) {
    .nav-toggle {
        display: block;
        margin-left: auto;
    }
    .nav-center,
    .nav-right {
        display: none;
    }
    .navbar.is-open {
        background: var(--bg-dark);
        flex-wrap: wrap;
        align-items: center;
    }
    .navbar.is-open .nav-center,
    .navbar.is-open .nav-right {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        flex-basis: 100%;
        gap: 0;
        padding: 12px 0 8px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .navbar.is-open .nav-center a {
        display: flex;
        align-items: center;
        min-height: 44px;
        font-size: 1rem;
        line-height: 1.2;
        white-space: normal;
        opacity: 1;
    }
    .navbar.is-open .nav-right {
        gap: 12px;
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .navbar.is-open .phone-link,
    .navbar.is-open .nav-right .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
    }
}

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

@media (max-width: 600px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .navbar {
        padding: 18px 20px;
    }
    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 50px;
    }
    .hero {
        min-height: 620px;
        height: 85vh;
    }
    .safety-section,
    .products-section,
    .quality-section,
    .about-section,
    .trim-section,
    .trim-cta-section,
    .staff-section,
    .single-product-section,
    .contact-pro-grid,
    .recruitment-grid {
        padding-top: var(--space-section-sm);
        padding-bottom: var(--space-section-sm);
    }
    .full-image-section {
        height: 320px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .generic-page {
        padding: var(--space-section-sm) 20px;
    }
    .staff-hero {
        min-height: 400px;
        height: 50vh;
    }
    .staff-grid {
        grid-template-columns: 1fr;
    }
    .staff-department-header h3 {
        font-size: 1.4rem;
    }
    .staff-empty {
        padding: 45px 24px;
    }
}
