:root {
    --ink: #0f2433;
    --muted: #5f6e7a;
    --highlight: #bdefff;
    --light: #f7f7f5;
    --line: #d9dee3;
    --footer: #101820;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.55;
}

.container {
    width: min(1240px, 92%);
    margin: 0 auto;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(16, 24, 32, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-home {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 0;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
}

.brand img {
    height: 44px;
    width: auto;
    display: block;
}

.nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav a {
    color: #fff;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav > li {
    position: relative;
}

.nav-item-has-dropdown > .nav-parent::after {
    content: " ▾";
    font-size: 0.65em;
    opacity: 0.85;
}

.nav-dropdown {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: rgba(22, 32, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
    z-index: 30;
}

.nav-item-has-dropdown:hover .nav-dropdown,
.nav-item-has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.45rem 0.85rem;
    font-size: 0.68rem;
    text-transform: none;
    letter-spacing: 0.02em;
    line-height: 1.35;
    white-space: nowrap;
}

.nav-dropdown a:hover {
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
}

.site-header-home .nav-dropdown {
    background: rgba(16, 24, 32, 0.96);
}

.hero-home {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 45, 28, 0.38);
}

.hero-home-inner {
    position: relative;
    z-index: 2;
    margin-top: 2.5rem;
}

.hero-home h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 7vw, 5.2rem);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.hero-home p {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.home-main section { padding: 3rem 0; }

.section-heading {
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    margin: 0 0 1.7rem;
    color: var(--ink);
}

.section-heading-center { font-size: 2rem; margin-bottom: 1.3rem; }

.services-section {
    background: #fff;
    padding-top: 3.8rem;
}

.service-grid {
    background: var(--highlight);
    padding: 1.2rem;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
    background: #fff;
    border: 1px solid #d6edf4;
}

.service-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding: 0.85rem 0.9rem 1rem;
    text-align: center;
}

.service-card h3 {
    margin: 0 0 0.55rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
    line-height: 1.05;
}

.service-card p {
    margin: 0 0 0.5rem;
    font-size: 0.83rem;
    color: #384754;
}

.service-card a {
    color: #40b9dd;
    font-weight: 600;
    font-size: 0.82rem;
}

.value-added-section { padding-top: 2.2rem; }

.value-added-grid {
    background: #909090;
    padding: 1.2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.value-added-tile {
    min-height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: end;
    padding: 1rem;
}

.value-added-tile::before,
.industry-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 26, 0.34);
}

.value-added-tile span,
.industry-tile span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.about-highlight {
    background: #fff;
    padding-top: 4.4rem;
}

.about-highlight-inner {
    width: min(930px, 100%);
    background: #fff;
    padding: 2.1rem 2rem 2rem;
    border: 1px solid #f0f0ef;
    margin: 0 auto;
}

.about-highlight h2 {
    margin: 0 0 1rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 5vw, 3.1rem);
    line-height: 1;
}

.about-highlight h2 span {
    background: linear-gradient(transparent 70%, var(--highlight) 70%);
    padding: 0 0.25rem 0 0;
}

.about-highlight p {
    margin: 0 0 0.9rem;
    color: #2f3d49;
    font-size: 0.9rem;
}

.industries-grid {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.industry-tile {
    min-height: 160px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    padding: 0.8rem 0.9rem;
}

.contact-home-section { padding-top: 3.5rem; }

.contact-home-inner {
    width: min(930px, 100%);
    background: #fff;
    border: 1px solid #f0f0ef;
    padding: 2.1rem 2rem;
    margin: 0 auto;
}

.contact-home-inner h2 {
    margin: 0 0 0.7rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
}

.contact-home-inner h2 span {
    background: linear-gradient(transparent 65%, var(--highlight) 65%);
}

.contact-home-inner p {
    margin-top: 0;
    color: #2f3d49;
    font-size: 0.9rem;
}

form {
    margin-top: 1rem;
    max-width: 100%;
}

label {
    display: block;
    margin: 0.6rem 0 0.25rem;
    font-size: 0.8rem;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    padding: 0.55rem;
    font: inherit;
}

button {
    margin-top: 0.9rem;
    border: 1px solid #b4bec7;
    background: #f1f2f4;
    color: #2f3b45;
    padding: 0.55rem 0.95rem;
    cursor: pointer;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.hero {
    background: #123149;
    color: #fff;
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.1rem, 5vw, 3.3rem);
    margin: 0;
}

.hero p { margin-top: 0.35rem; }

.hero-safety {
    min-height: 420px;
    background-image: url("/assets/images/home/cropped-cropped-Brochure-Cover-scaled-1.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-safety .hero-overlay {
    background: rgba(15, 32, 53, 0.55);
}

.hero-safety-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-safety h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
}

.safety-content {
    max-width: 980px;
}

.safety-product {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.4rem;
    align-items: start;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e4eaef;
}

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

.safety-image-wrap {
    border: 1px solid #d7e0e8;
    padding: 0.5rem;
    background: #fff;
}

.safety-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.safety-product h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    margin: 0 0 0.5rem;
}

.safety-product p {
    margin: 0;
}

main { padding: 2rem 0 3rem; }
.grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-detail-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-bottom: 2rem;
}

.card {
    background: #fff;
    border: 1px solid #e8edf1;
    padding: 1rem;
}

.card h2 a {
    color: inherit;
    text-decoration: none;
}

.card h2 a:hover {
    text-decoration: underline;
}
.muted { color: var(--muted); }

.service-page {
    max-width: 900px;
}

.service-page h2 {
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 0.4rem;
}

.service-page ul {
    margin-top: 0.2rem;
    margin-bottom: 1.1rem;
}

.service-page li {
    margin-bottom: 0.35rem;
}

.site-footer {
    margin-top: 1.5rem;
    background: var(--footer);
    color: #d2dde7;
    padding: 2rem 0 0.9rem;
}

.site-footer h3 {
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    margin: 0 0 0.45rem;
}

.site-footer p,
.site-footer li {
    font-size: 0.86rem;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li { margin-bottom: 0.35rem; }

.footer-grid {
    display: grid;
    gap: 1.3rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-small {
    margin: 0.25rem 0;
    color: #b9cad9;
}

.footnote {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 1.2rem;
    padding-top: 0.65rem;
    font-size: 0.8rem;
}

@media (max-width: 1120px) {
    .service-grid,
    .industries-grid,
    .value-added-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.faq-page {
    max-width: 820px;
}

.faq-category {
    margin-bottom: 2rem;
}

.faq-category h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.65rem;
    margin: 0 0 0.75rem;
    color: var(--ink);
}

.faq-item {
    border: 1px solid var(--line);
    border-bottom: 0;
    background: #fff;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    cursor: pointer;
    padding: 0.85rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    float: right;
    font-weight: 400;
    color: var(--muted);
}

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

.faq-item .faq-answer {
    padding: 0 1rem 1rem;
    color: #384754;
    font-size: 0.9rem;
}

.faq-item .faq-answer p {
    margin: 0;
}

.team-list {
    max-width: 640px;
    margin: 0 auto;
}

.team-member {
    padding: 1.35rem 1rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.team-member:first-child {
    border-top: 1px solid var(--line);
}

.team-member h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2f3d49;
}

.team-member .team-title {
    margin: 0.35rem 0 0;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.team-member .team-email {
    display: flex;
    justify-content: center;
    margin-top: 0.65rem;
}

.team-member .team-email a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #3d4d5a;
    border-radius: 2px;
    color: #fff;
    text-decoration: none;
}

.team-member .team-email a:hover {
    background: #2a3844;
}

.team-member .team-email svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

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

.field-error {
    display: block;
    min-height: 1.1em;
    font-size: 0.75rem;
    color: #b42318;
    margin-top: 0.2rem;
}

.smi-contact-form-message {
    margin-bottom: 0.75rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
    border: 1px solid var(--line);
    background: #f7f9fb;
}

.smi-contact-form-message.is-success {
    border-color: #86c9a8;
    background: #f0faf3;
    color: #1e4d32;
}

.smi-contact-form-message.is-error {
    border-color: #e8a29e;
    background: #fdf3f2;
    color: #6b1f1a;
}

@media (max-width: 820px) {
    .nav-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav {
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding-left: 0.5rem;
        margin-top: 0.25rem;
        background: transparent;
    }
    .nav-dropdown a {
        white-space: normal;
        padding: 0.3rem 0;
    }
    .hero-home {
        min-height: 72vh;
    }
    .service-card h3,
    .value-added-tile span,
    .industry-tile span {
        font-size: 1.45rem;
    }
}

@media (max-width: 640px) {
    .service-grid,
    .industries-grid,
    .value-added-grid,
    .two-col {
        grid-template-columns: 1fr;
    }
    .safety-product {
        grid-template-columns: 1fr;
    }
    .about-highlight-inner,
    .contact-home-inner {
        padding: 1.4rem 1.1rem;
    }
}
