@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-soft: #f8f9fb;
    --surface-muted: #f3f4f6;
    --line: #e5e7eb;
    --line-strong: #d1d5db;
    --ink: #111111;
    --muted: #6b7280;
    --muted-soft: #9ca3af;
    --silver: #c7ccd3;
    --silver-dark: #8b949e;
    --accent: #1f2937;
    --white: #ffffff;
    --shadow: 0 14px 34px rgba(17, 17, 17, 0.06);
    --radius: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Lexend Deca', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

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

.topbar {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.84rem;
    letter-spacing: 0.02em;
}

.topbar-inner {
    min-height: 40px;
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

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

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

.brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-copy strong {
    font-size: 0.98rem;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 400;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.main-nav {
    display: flex;
}

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

.nav-item {
    position: relative;
}

.nav-item > a,
.nav-link-group > a {
    display: inline-flex;
    align-items: center;
    min-height: 82px;
    font-size: 0.93rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--ink);
    transition: color 0.2s ease;
}

.nav-item > a:hover,
.nav-link-group > a:hover,
.nav-item > a.is-active,
.nav-item.is-active > .nav-link-group > a {
    color: var(--silver-dark);
}

.nav-link-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.submenu-toggle {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    cursor: pointer;
    color: var(--muted);
    font-weight: 500;
    display: inline-grid;
    place-items: center;
    transition: all 0.2s ease;
}

.submenu-toggle:hover {
    border-color: var(--line-strong);
    color: var(--ink);
}

.mega-dropdown {
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%) translateY(14px);
    width: min(940px, 90vw);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.08);
    padding: 22px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.22s ease;
}

.has-dropdown:hover .mega-dropdown,
.has-dropdown:focus-within .mega-dropdown,
.has-dropdown.is-open .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-intro {
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
}

.dropdown-label {
    display: inline-block;
    color: var(--silver-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    font-size: 0.74rem;
}

.dropdown-intro h3 {
    margin: 10px 0 8px;
    font-size: 1.35rem;
    line-height: 1.15;
    font-weight: 700;
}

.dropdown-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

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

.dropdown-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    background: var(--surface);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dropdown-card:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.05);
}

.dropdown-card strong {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.dropdown-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.hero,
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-home {
    min-height: 78vh;
    display: flex;
    align-items: center;
}

.page-hero {
    min-height: 48vh;
    display: flex;
    align-items: end;
}

.page-hero-small {
    min-height: 42vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-home .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0.78) 100%);
}

.page-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.36) 0%, rgba(17, 17, 17, 0.50) 100%);
}

.hero-grid,
.page-hero-content {
    position: relative;
    z-index: 1;
}

.hero-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    padding: 120px 0 110px;
}

.page-hero-content {
    padding: 100px 0 48px;
    max-width: 760px;
    color: var(--white);
}

.hero-copy {
    max-width: 860px;
}

.hero-copy-centered,
.hero-actions-centered,
.section-head-centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-copy-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-copy h1,
.page-hero-content h1 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.hero-copy h1 {
    color: var(--ink);
}

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

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--silver-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 600;
}

.page-hero .eyebrow {
    color: rgba(255, 255, 255, 0.86);
}

.hero-kicker {
    font-size: 1.18rem;
    margin: 16px 0 10px;
    max-width: 680px;
    color: #374151;
    font-weight: 400;
}

.hero-description,
.page-hero-content p {
    font-size: 1rem;
    max-width: 700px;
    color: var(--muted);
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.86);
}

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

.hero-actions-centered {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

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

.btn-primary:hover {
    background: #000000;
}

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

.btn-secondary:hover {
    border-color: var(--silver-dark);
    color: var(--ink);
}

.signature-strip {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.signature-grid {
    min-height: 82px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: center;
    text-align: center;
}

.signature-grid div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.signature-grid strong {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--ink);
}

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

.section {
    padding: 76px 0;
    background: var(--bg);
}

.section-soft {
    background: var(--surface-soft);
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head h2,
.editorial-copy h2,
.cta-box h2,
.contact-panel h2 {
    margin: 0 0 12px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.section-head p,
.editorial-copy p,
.cta-box p,
.contact-card p,
.feature-card p,
.quick-link-card span,
.benefit-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.category-grid,
.product-grid,
.feature-grid,
.benefit-grid,
.quick-links-grid,
.contact-card-grid {
    display: grid;
    gap: 18px;
}

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

.category-card,
.product-card,
.feature-card,
.quick-link-card,
.contact-card,
.benefit-card,
.cta-box,
.contact-panel,
.highlight-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.category-card {
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.product-card:hover,
.quick-link-card:hover {
    transform: translateY(-3px);
}

.category-card img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.category-card-body {
    padding: 20px;
}

.card-label,
.product-material {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--silver-dark);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.72rem;
    font-weight: 600;
}

.category-card h3,
.product-body h3,
.feature-card h3,
.benefit-card h3,
.quick-link-card strong,
.contact-card h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    line-height: 1.25;
    font-weight: 600;
}

.category-card p {
    color: var(--muted);
}

.editorial-row,
.editorial-highlight,
.contact-layout,
.about-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.editorial-row + .editorial-row {
    margin-top: 24px;
}

.editorial-row.reverse .editorial-copy {
    order: 2;
}

.editorial-row.reverse .editorial-media {
    order: 1;
}

.editorial-media img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.product-card {
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-media {
    position: relative;
}

.product-media img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.88);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-body {
    padding: 18px;
}

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

.text-link {
    color: var(--silver-dark);
    font-weight: 600;
}

.text-link:hover {
    color: var(--ink);
}

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

.feature-card,
.quick-link-card,
.contact-card,
.contact-panel,
.highlight-panel,
.benefit-card {
    padding: 22px;
}

.quick-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.benefit-card {
    background: var(--surface);
}

.pill-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 0.84rem;
    font-weight: 500;
}

.cta-box {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

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

.contact-card-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
}

.highlight-panel {
    background: var(--surface-soft);
}

.service-list {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.service-list li + li {
    margin-top: 10px;
}

.about-contact-grid {
    align-items: stretch;
}

.map-embed {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 100%;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
}

.site-footer {
    background: var(--surface);
    color: var(--muted);
    padding-top: 48px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
}

.site-footer h3,
.site-footer h4 {
    color: var(--ink);
    margin: 0 0 14px;
    font-weight: 600;
}

.site-footer p {
    margin: 0 0 8px;
}

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

.footer-links li + li {
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 30px;
    padding: 18px 0 26px;
}

@media (max-width: 1080px) {
    .category-grid,
    .product-grid,
    .feature-grid,
    .benefit-grid,
    .quick-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .editorial-row,
    .editorial-highlight,
    .contact-layout,
    .about-contact-grid,
    .cta-box {
        grid-template-columns: 1fr;
    }

    .editorial-media img {
        height: 420px;
    }
}

@media (max-width: 920px) {
    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--line);
        padding: 0 4%;
        display: none;
    }

    .main-nav.is-open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 0 22px;
    }

    .nav-item > a,
    .nav-link-group > a {
        min-height: auto;
        padding: 15px 0;
    }

    .nav-link-group {
        justify-content: space-between;
    }

    .mega-dropdown {
        position: static;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        grid-template-columns: 1fr;
        margin: 0 0 10px;
        padding: 16px;
        box-shadow: none;
    }

    .has-dropdown.is-open .mega-dropdown {
        display: grid;
    }

    .dropdown-links,
    .signature-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding: 100px 0 90px;
    }

    .page-hero-content {
        padding: 90px 0 42px;
    }
}

@media (max-width: 640px) {
    .topbar-inner {
        gap: 10px;
        padding: 8px 0;
    }

    .hero-home {
        min-height: 68vh;
    }

    .hero-copy h1,
    .page-hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-kicker {
        font-size: 1.03rem;
    }

    .hero-description,
    .page-hero-content p {
        font-size: 0.95rem;
    }

    .category-grid,
    .product-grid,
    .feature-grid,
    .benefit-grid,
    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .category-card img,
    .product-media img,
    .editorial-media img {
        height: 260px;
    }

    .cta-box {
        padding: 24px;
    }

    .section {
        padding: 64px 0;
    }

    .signature-grid {
        padding: 16px 0;
    }
}