        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');
        :root {
            --primary-color: #075b5e;
            --secondary-color: #e59b42;
            --dark-color: #17363a;
            --light-color: #f5faf8;
            --gray-color: #64777a;
            --success-color: #28a745;
            --info-color: #17a2b8;
            --card-bg: #ffffff;
            --card-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
            --card-border: rgba(15, 23, 42, 0.08);
            --maxw: 1240px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            background:
                linear-gradient(180deg, #f7fbf9 0%, #eef5f2 100%);
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
            font-weight: 700;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            display: block;
        }
        .page-shell {
            width: min(var(--maxw), calc(100% - 32px));
            margin: 0 auto;
        }
        .site-header {
            background-color: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid rgba(15, 23, 42, 0.06);
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-row {
            display: grid;
            grid-template-columns: auto 1fr;
            align-items: center;
            gap: 18px;
            padding: 14px 0 14px;
        }
        .brand-mark {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }
        .brand-copy {
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
            min-width: 0;
        }
        .brand-badge,
        .brand-logo {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            flex: 0 0 auto;
        }
        .brand-badge {
            background: linear-gradient(135deg, #064c50, #138286);
            color: #ffffff;
            display: grid;
            place-items: center;
            font-weight: 800;
            font-size: 1rem;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
        }
        .brand-logo {
            object-fit: contain;
            background: #ffffff;
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
        }
        .brand-copy strong {
            display: inline-flex;
            align-items: center;
            gap: 0;
            font-size: 1.35rem;
            color: var(--primary-color);
            letter-spacing: 0.02em;
            font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
            white-space: nowrap;
        }
        .brand-copy strong span {
            display: inline;
            font-size: inherit;
            line-height: inherit;
        }
        .brand-sage {
            margin-top: 4px;
            color: var(--gray-color);
            font-size: 0.76rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .header-main {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
            flex-wrap: nowrap;
            min-width: 0;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
            white-space: nowrap;
        }
        .main-nav a {
            font-weight: 600;
            color: var(--dark-color);
            padding: 0.46rem 0.62rem;
            border-radius: 999px;
            transition: color 0.25s, background 0.25s;
            font-size: 0.92rem;
        }
        .main-nav a:hover {
            color: var(--primary-color);
            background: rgba(7, 91, 94, 0.07);
        }
        .product-dropdown {
            position: relative;
            padding-bottom: 14px;
            margin-bottom: -14px;
        }
        .dropdown-button {
            background-color: #ffffff;
            border: 1px solid rgba(15, 23, 42, 0.1);
            color: var(--dark-color);
            font-weight: 600;
            padding: 0.52rem 0.82rem;
            border-radius: 999px;
            transition: all 0.25s;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.92rem;
            white-space: nowrap;
        }
        .dropdown-button:hover {
            background-color: #f4faf8;
            border-color: rgba(7, 91, 94, 0.28);
        }
        .mega-menu {
            position: absolute;
            top: calc(100% - 2px);
            right: 0;
            min-width: min(860px, calc(100vw - 32px));
            max-width: min(960px, calc(100vw - 32px));
            background: #ffffff;
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: var(--card-shadow);
            border-radius: 14px;
            padding: 16px;
            display: none;
            z-index: 50;
        }
        .product-dropdown:hover .mega-menu,
        .product-dropdown.is-open .mega-menu,
        .product-dropdown:focus-within .mega-menu {
            display: block;
        }
        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
        }
        .compact-category-menu {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .compact-category-menu .mega-group {
            min-height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        .compact-category-menu .mega-group-link {
            color: inherit;
            text-decoration: none;
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s, transform 0.2s;
        }
        .compact-category-menu .mega-group-link:hover,
        .compact-category-menu .mega-group-link:focus-visible {
            border-color: rgba(7, 91, 94, 0.28);
            background: #eef8f4;
            transform: translateY(-1px);
        }
        .mega-count {
            color: var(--gray-color);
            font-size: 0.78rem;
            white-space: nowrap;
        }
        .mega-group {
            border: 1px solid #edf0f5;
            border-radius: 12px;
            padding: 12px;
            background: #f8fcfa;
        }
        .mega-title {
            display: block;
            font-size: 0.95rem;
            color: var(--primary-color);
            margin-bottom: 8px;
            font-weight: 800;
        }
        .mega-links {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 7px;
        }
        .mega-links a {
            padding: 0.4rem 0.55rem;
            border-radius: 8px;
            background: #f8f9fa;
            border: 1px solid rgba(15, 23, 42, 0.06);
            font-size: 0.82rem;
            line-height: 1.25;
        }
        .mega-links a:hover {
            color: var(--secondary-color);
            background: #fff8ed;
        }
        .search-container {
            position: relative;
            min-width: 210px;
            width: 210px;
            flex: 0 0 210px;
        }
        .search-input {
            width: 100%;
            border-radius: 25px;
            border: 1px solid rgba(15, 23, 42, 0.1);
            padding: 0.62rem 1rem 0.62rem 3rem;
            transition: all 0.25s;
            font-size: 0.9rem;
            background: #ffffff;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.22rem rgba(7,91,94,0.08);
        }
        .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            pointer-events: none;
            font-size: 0;
        }
        .search-icon::before {
            content: "";
            display: block;
            width: 18px;
            height: 18px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: 18px 18px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M14.583 14.583 18 18' stroke='%236c757d' stroke-width='1.8' stroke-linecap='round'/%3E%3Ccircle cx='8.75' cy='8.75' r='5.75' stroke='%236c757d' stroke-width='1.8'/%3E%3C/svg%3E");
        }
        .cart-link {
            position: relative;
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0.62rem 0.9rem;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--secondary-color), #e46521);
            box-shadow: 0 10px 20px rgba(244, 119, 52, 0.2);
            white-space: nowrap;
        }
        .cart-count {
            background-color: rgba(255,255,255,0.2);
            color: white;
            border-radius: 999px;
            min-width: 22px;
            height: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0 6px;
        }
        .mobile-search {
            display: none;
            padding-bottom: 14px;
        }
        .mobile-search .search-container {
            min-width: 100%;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 24px;
            padding: 30px 0 12px;
            align-items: stretch;
        }
        .hero-panel {
            background: linear-gradient(rgba(58, 58, 140, 0.92), rgba(58, 58, 140, 0.84)), url('/logo/banner.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 34px 38px;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
        }
        .info-panel,
        .section-panel,
            .product-tile,
            .meta-block,
            .price-box,
            .contact-block,
            .search-card,
            .cart-card,
            .timeline-card {
            background: var(--card-bg);
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            border: 1px solid var(--card-border);
        }
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0.4rem 0.85rem;
            border-radius: 999px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.18);
            color: white;
            font-size: 0.76rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        h1 {
            margin-top: 16px;
            font-size: clamp(1.95rem, 4vw, 3rem);
            line-height: 1.14;
        }
        h2 {
            font-size: clamp(1.35rem, 2.5vw, 2rem);
            color: var(--primary-color);
        }
        h3 {
            font-size: clamp(1.02rem, 1.8vw, 1.3rem);
        }
        .muted,
        .section-copy,
        .meta-copy,
        .mini-note {
            color: var(--gray-color);
        }
        .hero-panel .muted,
        .hero-panel .section-copy,
        .hero-panel .mini-note {
            color: rgba(255,255,255,0.92);
        }
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            margin-top: 24px;
        }
        .stat {
            padding: 16px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.14);
            border-radius: 10px;
        }
        .stat strong {
            display: block;
            font-size: 1.5rem;
        }
        .stat span {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.85);
        }
        .info-panel {
            padding: 22px;
            display: grid;
            gap: 14px;
        }
        .info-panel .tile {
            padding: 18px;
            border-radius: 10px;
            background: #f9f9ff;
            border: 1px solid #efeff8;
        }
        .tile-label {
            display: block;
            color: var(--primary-color);
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
        }
        .tile strong {
            display: block;
            font-size: 1.2rem;
        }
        section {
            padding: 20px 0 44px;
        }
        .section-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 18px;
            margin-bottom: 22px;
        }
        .section-panel,
        .meta-block,
        .price-box,
        .search-card,
        .cart-card,
        .contact-block,
        .timeline-card,
        .product-tile {
            padding: 20px;
        }
        .product-grid,
        .meta-grid,
        .contact-grid,
        .timeline-grid {
            display: grid;
            gap: 18px;
        }
        .product-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
        .meta-grid,
        .contact-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .product-tile {
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .product-tile:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .product-image {
            aspect-ratio: 1 / 1;
            border-radius: 10px;
            overflow: hidden;
            background: #ffffff;
            border: 1px solid #ececec;
            display: grid;
            place-items: center;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 12px;
        }
        .image-fallback {
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gray-color);
        }
        .tag-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag {
            display: inline-flex;
            align-items: center;
            padding: 0.28rem 0.65rem;
            border-radius: 999px;
            background: #fff1e9;
            color: #df6626;
            font-size: 0.78rem;
            font-weight: 700;
        }
        .meta-key {
            display: block;
            margin-bottom: 8px;
            color: var(--primary-color);
            font-size: 0.75rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 700;
        }
        .price-table {
            width: 100%;
            border-collapse: collapse;
        }
        .price-table th,
        .price-table td {
            padding: 0.85rem;
            text-align: center;
            border: 1px solid #dee2e6;
        }
        .price-table th {
            background-color: #f8f9fa;
            font-weight: 600;
            color: var(--dark-color);
        }
        .price-table tr:hover {
            background-color: #f8f9fa;
        }
        .split-layout {
            display: grid;
            grid-template-columns: 1.05fr .95fr;
            gap: 22px;
        }
        .lookup-input,
        .field-input,
        .field-select,
        textarea {
            width: 100%;
            border: 1px solid #ced4da;
            border-radius: 8px;
            padding: 0.85rem 1rem;
            color: var(--dark-color);
            font: inherit;
            background: white;
        }
        .lookup-input:focus,
        .field-input:focus,
        .field-select:focus,
        textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(58,58,140,0.1);
        }
        .search-container .search-input {
            width: 100%;
            border-radius: 25px;
            border: 1px solid rgba(15, 23, 42, 0.1);
            padding: 0.72rem 1rem 0.72rem 3.15rem;
            transition: all 0.25s;
            font-size: 0.95rem;
            background: #ffffff;
            color: var(--dark-color);
        }
        .search-container .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.22rem rgba(58,58,140,0.08);
        }
        .lookup-row,
        .search-toolbar,
        .cart-toolbar {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 12px;
            align-items: center;
        }
        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }
        .field-block {
            display: grid;
            gap: 8px;
        }
        .field-block.full {
            grid-column: 1 / -1;
        }
        .field-label {
            font-size: 0.78rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary-color);
            font-weight: 700;
        }
        .helper-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .cta-btn,
        .ghost-btn,
        .mini-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
        }
        .cta-btn {
            background: linear-gradient(135deg, var(--secondary-color), #e46521);
            border: 1px solid #df6626;
            color: white;
            padding: 0.72rem 1.32rem;
            border-radius: 999px;
            box-shadow: 0 10px 20px rgba(244, 119, 52, 0.16);
        }
        .cta-btn:hover {
            background: linear-gradient(135deg, #e46521, #cd5517);
            border-color: #cd5517;
        }
        .ghost-btn,
        .mini-btn {
            background: white;
            border: 1px solid rgba(15, 23, 42, 0.12);
            color: var(--dark-color);
            padding: 0.72rem 1rem;
            border-radius: 999px;
        }
        .ghost-btn:hover,
        .mini-btn:hover {
            color: var(--primary-color);
            border-color: rgba(58,58,140,0.24);
            background: #f4faf8;
        }
        .empty-state {
            padding: 26px;
            border-radius: 10px;
            border: 1px dashed rgba(0,0,0,0.14);
            background: white;
            color: var(--gray-color);
        }
        .status-pill {
            display: inline-flex;
            align-items: center;
            padding: 0.3rem 0.7rem;
            border-radius: 4px;
            background-color: rgba(58,58,140,0.1);
            color: var(--primary-color);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
        }
        .footer {
            background: linear-gradient(180deg, #242433 0%, #1f1f2c 100%);
            color: #ddd;
            padding: 3.2rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1fr;
            gap: 24px;
        }
        .footer-heading {
            color: white;
            font-size: 1.02rem;
            margin-bottom: 1.05rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .footer-link {
            color: #aaa;
            display: block;
            margin-bottom: 0.62rem;
            transition: color 0.25s;
        }
        .footer-link:hover {
            color: white;
        }
        .footer-copy {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.08);
            color: #bdbdbd;
            font-size: 0.92rem;
        }
        @media (max-width: 980px) {
            .header-row,
            .hero-grid,
            .split-layout,
            .footer-grid,
            .product-grid,
            .meta-grid,
            .contact-grid,
            .timeline-grid {
                grid-template-columns: 1fr;
            }
            .header-main {
                justify-content: flex-start;
                flex-wrap: wrap;
            }
            .mobile-search {
                display: block;
            }
            .mega-menu {
                right: auto;
                left: 0;
                min-width: min(620px, calc(100vw - 32px));
            }
            .mega-menu-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        @media (max-width: 640px) {
            body.nav-lock {
                overflow: hidden;
            }
            .page-shell {
                width: min(var(--maxw), calc(100% - 20px));
            }
            .hero-stats,
            .lookup-row,
            .search-toolbar,
            .cart-toolbar,
            .form-grid {
                grid-template-columns: 1fr;
            }
            .hero-panel {
                padding: 26px 22px;
            }
            .search-container {
                min-width: 100%;
            }
            .mega-menu {
                position: fixed;
                left: 10px;
                right: 10px;
                top: 112px;
                min-width: 0;
                max-width: none;
                max-height: calc(100vh - 132px);
                margin-top: 0;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                padding: 12px;
                border-radius: 16px;
                z-index: 3000;
            }
            .mega-menu-grid,
            .mega-links {
                grid-template-columns: 1fr;
            }
            .mega-menu-grid {
                gap: 10px;
            }
            .mega-group {
                padding: 12px;
            }
            .mega-links {
                max-height: none;
            }
        }
