:root {
    --navy: #0A192F;
    --navy-2: #102544;
    --emerald: #0F766E;
    --emerald-2: #0B5F59;
    --gold: #C6A43F;
    --cream: #F9F6F0;
    --white: #FFFFFF;
    --charcoal: #4B5563;
    --ink: #111827;
    --line: #E5E7EB;
    --shadow: 0 20px 50px rgba(10, 25, 47, 0.12);
    --radius: 20px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Poppins, Arial, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    letter-spacing: 0;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(10, 25, 47, 0.08);
    backdrop-filter: blur(14px);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--navy), var(--emerald));
    color: var(--white);
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.1;
}

.brand strong {
    color: var(--navy);
    font-size: 1rem;
}

.brand small {
    color: var(--charcoal);
    font-size: 0.78rem;
}

.site-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.site-nav a,
.nav-more__button {
    color: var(--charcoal);
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 650;
}

.site-nav a:hover,
.site-nav a.active,
.nav-more.active .nav-more__button,
.nav-more.open .nav-more__button,
.nav-more__button:hover {
    color: var(--navy);
    background: rgba(15, 118, 110, 0.1);
}

.nav-more {
    position: relative;
}

.nav-more__button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}

.nav-more__button::after {
    content: "+";
    font-weight: 900;
}

.nav-more.open .nav-more__button::after,
.nav-more:focus-within .nav-more__button::after {
    content: "-";
}

.nav-more__menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 70;
    min-width: 230px;
    padding: 10px;
    border: 1px solid rgba(10, 25, 47, 0.08);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.nav-more:hover .nav-more__menu,
.nav-more:focus-within .nav-more__menu,
.nav-more.open .nav-more__menu {
    display: grid;
    gap: 4px;
}

.nav-more__menu a {
    border-radius: 12px;
    white-space: nowrap;
}

.header-whatsapp {
    padding: 11px 16px;
    border-radius: 999px;
    color: var(--white);
    background: var(--emerald);
    font-weight: 700;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--navy);
}

.hero {
    background: radial-gradient(circle at 20% 20%, rgba(198, 164, 63, 0.18), transparent 34%), linear-gradient(135deg, var(--navy), #123456);
    color: var(--white);
    padding: 78px 0 56px;
}

.hero-grid,
.page-hero-grid,
.product-detail-grid,
.about-grid,
.contact-grid,
.demand-layout,
.split-cta,
.service-band {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.hero h1,
.page-hero h1 {
    margin: 14px 0 18px;
    font-size: 3.3rem;
    line-height: 1.05;
}

.hero p,
.page-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-actions,
.detail-actions,
.cta-actions,
.product-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-actions {
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    background: var(--emerald);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(15, 118, 110, 0.25);
}

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

.btn-light {
    background: var(--white);
    color: var(--navy);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(10, 25, 47, 0.16);
    color: var(--navy);
}

.text-link {
    color: var(--emerald);
    font-weight: 800;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust-row span {
    padding: 8px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hero-visual img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.hero-visual__main {
    grid-row: span 2;
    height: 374px !important;
}

.section {
    padding: 72px 0;
}

.section-muted {
    background: #F1EEE7;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading h2,
.service-band h2,
.custom-cta h2,
.split-cta h2,
.contact-grid h2,
.about-grid h2 {
    margin: 8px 0 0;
    color: var(--navy);
    font-size: 2.2rem;
    line-height: 1.16;
}

.section-dark h2,
.section-dark p {
    color: var(--white);
}

.section-heading--split,
.split-cta,
.custom-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

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

.category-card {
    min-height: 280px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: center;
    padding: 24px;
    border-radius: var(--radius);
    color: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.category-card--green {
    background: linear-gradient(135deg, var(--emerald), var(--navy));
}

.category-card--gold {
    background: linear-gradient(135deg, #7C6420, var(--navy));
}

.category-card img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
}

.category-card span {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.category-card h3 {
    margin: 8px 0 10px;
    font-size: 1.6rem;
    line-height: 1.12;
}

.category-card p {
    color: rgba(255, 255, 255, 0.82);
}

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

.product-card {
    background: var(--white);
    border: 1px solid rgba(10, 25, 47, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(10, 25, 47, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    background: #EEF2F7;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__body {
    padding: 20px;
}

.product-card h3 {
    margin: 8px 0;
    color: var(--navy);
    font-size: 1.22rem;
    line-height: 1.25;
}

.product-card p {
    color: var(--charcoal);
    margin: 0 0 16px;
}

.product-specs,
.detail-specs,
.profile-card dl,
.contact-info dl,
.admin-detail-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.product-specs {
    grid-template-columns: 1fr 1fr;
}

.product-specs div,
.detail-specs div,
.profile-card dl div,
.contact-info dl div,
.admin-detail-list div {
    padding: 10px;
    border-radius: 14px;
    background: #F8FAFC;
}

dt {
    color: var(--charcoal);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

dd {
    margin: 2px 0 0;
    color: var(--navy);
    font-weight: 750;
}

.product-card__actions {
    margin-top: 18px;
}

.product-card__actions .btn {
    flex: 1 1 140px;
    padding-inline: 14px;
    font-size: 0.92rem;
}

.rumal-showcase-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(10, 25, 47, 0.96), rgba(15, 118, 110, 0.9)),
        var(--navy);
    color: var(--white);
}

.rumal-showcase-section .section-heading h2 {
    color: var(--white);
}

.rumal-showcase-section .text-link {
    color: var(--white);
}

.rumal-story-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 22px;
    align-items: center;
    margin-bottom: 24px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.rumal-story-card h3 {
    margin: 8px 0 0;
    max-width: 760px;
    color: var(--white);
    font-size: 1.55rem;
    line-height: 1.2;
}

.rumal-story-card img {
    width: 180px;
    height: 132px;
    object-fit: cover;
    border-radius: 18px;
}

.rumal-home-grid .product-card {
    border-color: rgba(255, 255, 255, 0.16);
}

.rumal-home-grid .product-card__image {
    aspect-ratio: 1 / 1;
}

.why-grid,
.services-grid,
.directors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.why-card,
.service-card,
.directors-grid article,
.profile-card,
.buyer-box,
.demand-aside,
.form-panel,
.empty-state {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(10, 25, 47, 0.08);
    box-shadow: 0 14px 34px rgba(10, 25, 47, 0.07);
    padding: 24px;
}

.why-card span {
    display: block;
    width: 42px;
    height: 6px;
    border-radius: 999px;
    background: var(--gold);
    margin-bottom: 16px;
}

.why-card h3,
.service-card h2,
.directors-grid h3,
.profile-card h3,
.buyer-box h3 {
    margin: 0 0 8px;
    color: var(--navy);
}

.why-card p,
.service-card p,
.directors-grid p,
.profile-card p,
.buyer-box p,
.demand-aside p,
.form-panel p,
.contact-info p {
    color: var(--charcoal);
}

.service-band {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.service-band p {
    max-width: 760px;
}

.custom-cta {
    padding: 34px;
    border-radius: var(--radius);
    color: var(--white);
    background: linear-gradient(135deg, var(--emerald), var(--navy) 72%, #6F5A18);
    box-shadow: var(--shadow);
}

.custom-cta h2,
.custom-cta p {
    color: var(--white);
}

.mini-products {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.mini-products img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(10, 25, 47, 0.12);
}

.form-panel form,
.admin-form {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--navy);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #D6DDE7;
    border-radius: 14px;
    background: var(--white);
    color: var(--ink);
    padding: 12px 14px;
    font: inherit;
    font-weight: 500;
}

textarea {
    resize: vertical;
}

small {
    color: var(--charcoal);
    font-weight: 600;
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-weight: 700;
}

.alert-success {
    background: rgba(15, 118, 110, 0.1);
    color: var(--emerald);
}

.alert-error {
    background: rgba(185, 28, 28, 0.1);
    color: #B91C1C;
}

.page-hero {
    padding: 78px 0;
    background: linear-gradient(135deg, var(--navy), #123456);
    color: var(--white);
}

.page-hero--with-image {
    padding: 62px 0;
}

.page-hero-grid img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-grid,
.contact-grid,
.demand-layout {
    align-items: start;
}

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

.split-cta {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.catalog-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.7fr) auto auto;
    gap: 14px;
    align-items: end;
    padding: 18px;
    margin-bottom: 28px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 14px 34px rgba(10, 25, 47, 0.07);
}

.empty-state {
    text-align: center;
}

.product-detail {
    padding: 72px 0;
}

.product-gallery,
.product-summary {
    min-width: 0;
}

.gallery-main {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.gallery-thumbs button {
    border: 0;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
}

.gallery-thumbs img {
    width: 76px;
    height: 76px;
    object-fit: cover;
}

.product-summary h1 {
    margin: 10px 0 14px;
    color: var(--navy);
    font-size: 2.6rem;
    line-height: 1.1;
}

.product-summary > p {
    color: var(--charcoal);
    font-size: 1.05rem;
}

.detail-specs {
    grid-template-columns: 1fr 1fr;
    margin: 24px 0;
}

.buyer-box {
    margin-top: 22px;
}

.subcat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.subcat-row span,
.check-list li {
    border-radius: 999px;
    padding: 9px 13px;
    background: var(--white);
    color: var(--navy);
    border: 1px solid rgba(10, 25, 47, 0.08);
    font-weight: 800;
}

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

.check-list {
    display: grid;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.contact-info {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.site-footer {
    background: #071425;
    color: rgba(255, 255, 255, 0.78);
    padding: 54px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.4fr;
    gap: 30px;
}

.footer-brand strong,
.footer-brand small {
    color: var(--white);
}

.site-footer h3 {
    color: var(--white);
    margin: 0 0 14px;
}

.site-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.84);
    margin: 8px 0;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 1050px) {
    .site-nav,
    .header-whatsapp {
        display: none;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .site-header.nav-open .site-nav {
        display: grid;
        position: absolute;
        top: 78px;
        left: 16px;
        right: 16px;
        padding: 14px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .site-header.nav-open .site-nav a,
    .site-header.nav-open .nav-more__button {
        width: 100%;
        justify-content: space-between;
        text-align: left;
    }

    .site-header.nav-open .nav-more {
        width: 100%;
    }

    .site-header.nav-open .nav-more__menu {
        position: static;
        min-width: 0;
        margin-top: 6px;
        padding: 8px;
        border-radius: 14px;
        box-shadow: none;
        background: #F8FAFC;
    }

    .hero-grid,
    .page-hero-grid,
    .product-detail-grid,
    .about-grid,
    .contact-grid,
    .demand-layout,
    .service-band {
        grid-template-columns: 1fr;
    }

    .category-grid,
    .product-grid,
    .why-grid,
    .services-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-toolbar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .hero,
    .page-hero {
        padding: 52px 0;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 52px 0;
    }

    .why-grid,
    .services-grid,
    .directors-grid,
    .footer-grid,
    .form-grid-2,
    .detail-specs,
    .product-specs,
    .catalog-toolbar {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .category-grid,
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

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

    .product-card {
        border-radius: 16px;
    }

    .product-card__body {
        padding: 12px;
    }

    .product-card h3 {
        font-size: 0.98rem;
    }

    .product-card p {
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .product-specs {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .product-specs div {
        padding: 7px;
    }

    .product-specs dt {
        font-size: 0.66rem;
    }

    .product-specs dd {
        font-size: 0.76rem;
        line-height: 1.25;
    }

    .product-card__actions {
        gap: 8px;
    }

    .product-card__actions .btn {
        min-height: 38px;
        padding: 8px 10px;
        font-size: 0.76rem;
    }

    .rumal-story-card {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .rumal-story-card h3 {
        font-size: 1.15rem;
    }

    .rumal-story-card img {
        width: 100%;
        height: 160px;
    }

    .hero-visual__main,
    .hero-visual img {
        height: 150px !important;
    }

    .hero-visual__main {
        grid-row: auto;
    }

    .category-card {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 12px;
        padding: 12px;
    }

    .category-card img {
        width: 100%;
        height: 112px;
        border-radius: 14px;
    }

    .category-card span {
        font-size: 0.68rem;
    }

    .category-card h3 {
        font-size: 0.95rem;
    }

    .category-card p {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .why-card {
        padding: 14px;
    }

    .why-card span {
        margin-bottom: 10px;
    }

    .why-card h3 {
        font-size: 0.95rem;
        line-height: 1.25;
    }

    .why-card p {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .section-heading--split,
    .split-cta,
    .custom-cta {
        display: grid;
        align-items: start;
    }

    .product-summary h1,
    .section-heading h2,
    .service-band h2,
    .custom-cta h2,
    .split-cta h2,
    .contact-grid h2,
    .about-grid h2 {
        font-size: 1.75rem;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
