/* =========================================================
   SUNDARART
   Premium Indian Craftsmanship Website
   Complete Main Stylesheet
   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    --cream: #f8f5ef;
    --cream-dark: #eee7dd;
    --white: #fffdf9;

    --brown-dark: #30251f;
    --brown: #49392e;
    --brown-light: #75685d;

    --red: #a52619;
    --red-dark: #882117;

    --gold: #b1843d;
    --gold-light: #c59b51;

    --border: #e4dbd0;
    --border-dark: #d4c8bb;

    --footer: #211812;
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--brown-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    line-height: 1.6;

    overflow-x: hidden;
}

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

button,
input {
    font: inherit;
}

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

button {
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
    background: var(--cream);

    border-bottom: 1px solid var(--border);

    position: sticky;
    top: 0;

    z-index: 1000;
}

.nav {
    min-height: 88px;
    height: 88px;

    display: flex;
    align-items: center;

    gap: 28px;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo-wrap {
    display: flex;
    align-items: center;

    flex-shrink: 0; 
}

.logo-image {
    width: 120px;
    height: 85px;px;
    object-fit: contain;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;

    flex: 1;
    margin-left: 0;
    margin-right: 0;
}

.nav-links a {
    position: relative;

    color: var(--brown-dark);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;
    font-weight: 500;

    line-height: 1;

    padding: 9px 0;

    white-space: nowrap;

    transition: color 0.2s ease;
}


/* Navigation underline */

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: var(--red);

    transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}


/* =========================================================
   HEADER RIGHT
   ========================================================= */

.header-right {
    display: flex;
    align-items: center;

    gap: 16px;

    flex-shrink: 0;
}


/* =========================================================
   SEARCH
   ========================================================= */

.header-search {
    width: 225px;
    height: 42px;

    display: flex;
    align-items: center;

    padding: 0 16px;

    background: #ffffff;

    border: 1px solid #dfd6cb;

    border-radius: 24px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.header-search:focus-within {
    border-color: #c8b9aa;

    box-shadow:
        0 0 0 3px rgba(165, 38, 25, 0.05);
}

.search-icon {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #66584d;

    font-family: Arial, sans-serif;

    font-size: 22px;

    line-height: 1;

    margin-right: 8px;

    flex-shrink: 0;
}

.header-search input {
    width: 100%;
    height: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--brown-dark);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;
}

.header-search input::placeholder {
    color: #989ba2;

    opacity: 1;
}


/* =========================================================
   HEADER WHATSAPP
   Brown button + white WhatsApp logo
   ========================================================= */

.header-whatsapp {
    width: 42px;
    height: 42px;
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    background: var(--brown-dark);
    color: #ffffff;

    border: 1px solid var(--brown-dark);
    border-radius: 50%;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0;
    line-height: 1;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.header-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
    flex-shrink: 0;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    border: 0;

    background: transparent;

    color: var(--brown-dark);

    font-size: 27px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu {
    display: none;

    background: var(--cream);

    border-top: 1px solid var(--border);
}

.mobile-menu.open {
    display: flex;

    flex-direction: column;
}

.mobile-menu a {
    padding: 16px 24px;

    border-bottom: 1px solid var(--border);

    color: var(--brown);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.mobile-menu a:hover {
    background: #f0e9df;

    color: var(--red);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    background: var(--cream);

    min-height: 680px;

    padding: 92px 0 92px;

    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(460px, 0.88fr);

    align-items: center;

    gap: 64px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    max-width: 760px;
}

.hero-eyebrow {
    color: var(--gold);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 24px;
}

.hero h1 {
    color: #2c2119;
    font-size: 58px;
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -2px;
    margin-bottom: 27px;
    max-width: 760px;
    white-space: normal;
}
        
.hero h1 em {
    color: var(--red);

    font-style: italic;

    font-weight: 500;
}

.hero-content > p {
    max-width: 650px;

    color: #67594d;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 31px;
}

.hero-content > p strong {
    color: #4d3b30;

    font-weight: 600;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}

.btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 25px;

    border-radius: 28px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;
    font-weight: 600;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

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

.btn-primary {
    background: var(--red);

    color: #ffffff;
}

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

.btn-outline-dark {
    background: transparent;

    color: #45352a;

    border: 1px solid var(--gold-light);
}

.btn-outline-dark:hover {
    background: var(--gold-light);

    color: #ffffff;
}


/* =========================================================
   HERO STATS
   ========================================================= */

.hero-stats {
    display: flex;
    align-items: stretch;

    margin-top: 46px;
}

.hero-stat {
    min-width: 110px;

    padding-right: 25px;
    margin-right: 25px;

    border-right: 1px solid #d9cec1;
}

.hero-stat:last-child {
    border-right: 0;

    padding-right: 0;
    margin-right: 0;
}

.hero-stat strong {
    display: block;

    color: var(--brown-dark);

    font-size: 22px;
    font-weight: 600;

    line-height: 1;

    margin-bottom: 7px;
}

.hero-stat span {
    display: block;

    color: #77695c;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;

    width: 100%;
    max-width: 555px;

    margin-left: auto;
}

.hero-image {
    width: 100%;

    height: 600px;

    object-fit: cover;

    border-radius: 4px;
}


/* =========================================================
   FEATURED PIECE CARD
   ========================================================= */

.hero-feature-card {
    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 18px;

    background:
        rgba(255, 253, 249, 0.97);

    padding: 19px 21px;

    border-radius: 4px;

    box-shadow:
        0 8px 30px rgba(42, 28, 18, 0.12);
}

.hero-feature-label {
    color: var(--gold);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 6px;
}

.hero-feature-card h3 {
    color: #2c2119;

    font-size: 21px;

    font-weight: 500;

    line-height: 1.3;

    margin-bottom: 4px;
}

.hero-feature-card p {
    color: #76685c;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;
}


/* =========================================================
   COMMON SECTION
   ========================================================= */

.section {
    padding: 90px 0;
}

.featured {
    background: var(--white);
}

.section-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 38px;
}

.section-kicker {
    color: #a47432;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 9px;
}

.section-title {
    color: var(--brown-dark);

    font-size:
        clamp(31px, 4vw, 44px);

    font-weight: 500;

    line-height: 1.15;
}

.section-description {
    max-width: 600px;

    color: #75685d;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    line-height: 1.8;

    margin-top: 12px;
}

.text-link {
    color: #9a3a2d;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;
}

.text-link:hover {
    text-decoration: underline;
}


/* =========================================================
   FEATURED PRODUCTS
   ========================================================= */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.product-card {
    background: #ffffff;

    border: 1px solid #e6ddd2;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(54, 38, 25, 0.09);
}

.product-image {
    aspect-ratio: 1 / 1.08;

    overflow: hidden;

    background: #ece4d9;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-info {
    padding: 19px;
}

.product-category {
    color: #a47432;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-bottom: 7px;
}

.product-title {
    color: #2e2119;

    font-size: 19px;

    font-weight: 500;

    line-height: 1.3;

    margin-bottom: 7px;
}

.product-price {
    color: #66594e;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    margin-bottom: 16px;
}

.product-actions {
    display: flex;

    gap: 8px;
}

.product-actions .btn {
    flex: 1;

    min-height: 40px;

    padding: 0 9px;

    font-size: 11px;
}

.product-actions .btn-outline-dark {
    border-color: #d2c6b9;
}


/* =========================================================
   CATEGORY SECTION
   ========================================================= */

.categories {
    background: var(--cream-dark);
}

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.category-card {
    position: relative;

    min-height: 260px;

    overflow: hidden;

    background: #38291f;
}

.category-card img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.category-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03),
            rgba(0, 0, 0, 0.72)
        );
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-content {
    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 20px;

    z-index: 2;

    color: white;
}

.category-content h3 {
    font-size: 24px;

    font-weight: 500;

    line-height: 1.2;

    margin-bottom: 4px;
}

.category-content p {
    color: #eeeeee;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;
}

.category-arrow {
    position: absolute;

    right: 20px;
    bottom: 20px;

    z-index: 3;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.5);

    color: white;

    font-family: Arial, sans-serif;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.category-card:hover .category-arrow {
    background: rgba(255, 255, 255, 0.15);

    border-color: #ffffff;
}


/* =========================================================
   WHY SUNDARART
   ========================================================= */

.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid #ddd4c9;
    border-bottom: 1px solid #ddd4c9;
}

.why-item {
    padding: 35px 27px;

    border-right: 1px solid #ddd4c9;
}

.why-item:last-child {
    border-right: 0;
}

.why-number {
    color: #a47432;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px;
    font-weight: 700;

    margin-bottom: 18px;
}

.why-item h3 {
    color: var(--brown-dark);

    font-size: 21px;

    font-weight: 500;

    margin-bottom: 9px;
}

.why-item p {
    color: #75685d;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   VISIT / CONTACT
   ========================================================= */

.visit-section {
    background: #302219;

    color: white;
}

.visit-wrapper {
    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    align-items: center;

    gap: 70px;
}

.visit-section .section-kicker {
    color: #d0a367;
}

.visit-section .section-title {
    color: white;
}

.visit-section .section-description {
    color: #d4c8bb;
}

.visit-details {
    border-left:
        1px solid rgba(255, 255, 255, 0.18);

    padding-left: 38px;
}

.visit-detail {
    margin-bottom: 23px;
}

.visit-detail:last-child {
    margin-bottom: 0;
}

.visit-detail span {
    display: block;

    color: #c29a68;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-bottom: 5px;
}

.visit-detail strong {
    color: white;

    font-size: 16px;

    font-weight: 400;
}

.visit-actions {
    display: flex;

    gap: 12px;

    margin-top: 28px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: var(--footer);

    color: #d9cec1;

    padding-top: 60px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 50px;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 15px;
}

.footer-logo-image {
    width: 150px;
    height: 70px;
    object-fit: contain;
}

.footer p {
    max-width: 350px;

    color: #a99d91;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    line-height: 1.8;
}

.footer h4 {
    color: white;

    font-size: 15px;

    font-weight: 500;

    margin-bottom: 15px;
}

.footer-grid > div > a:not(.footer-logo) {
    display: block;

    color: #a99d91;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    margin-bottom: 8px;

    transition:
        color 0.2s ease;
}

.footer-grid > div > a:not(.footer-logo):hover {
    color: white;
}

.copyright {
    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    padding: 17px 20px;

    text-align: center;

    color: #766b61;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px;
}


/* =========================================================
   FLOATING WHATSAPP
   Brown circle + white WhatsApp logo
   ========================================================= */

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 2000;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--brown-dark);
    color: #ffffff;

    border-radius: 50%;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.floating-whatsapp svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.floating-whatsapp:hover {
    background: #1f1712;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(48, 37, 31, 0.25);
}


/* =========================================================
   PRODUCT DETAIL - FUTURE
   ========================================================= */

.page-heading {
    background: #f1e9df;

    padding: 70px 0;
}

.page-heading h1 {
    font-size:
        clamp(34px, 5vw, 52px);

    font-weight: 500;
}

.product-detail {
    padding: 80px 0;

    background: var(--white);
}

.product-detail-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: start;
}

.product-detail-image {
    background: #eee7dc;
}

.product-detail-info h1 {
    font-size:
        clamp(32px, 4vw, 50px);

    font-weight: 500;

    line-height: 1.15;

    margin-bottom: 15px;
}

.product-detail-price {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #8f6231;

    font-size: 18px;
    font-weight: 600;

    margin-bottom: 25px;
}

.product-detail-description {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #65584c;

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 30px;
}

.enquiry-button {
    background: var(--brown-dark);

    color: white;

    min-height: 52px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 27px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.enquiry-button:hover {
    background: #1f1712;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .nav {
        gap: 25px;
    }

    .nav-links {
        gap: 27px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .header-search {
        width: 205px;
    }

    .header-whatsapp {
        width: 40px;
        height: 40px;
        min-height: 40px;
        padding: 0;
    }

    .hero-grid {
        grid-template-columns:
            1fr 0.85fr;

        gap: 40px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .hero-image {
        height: 540px;
    }

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

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

    .why-item:nth-child(2) {
        border-right: 0;
    }

    .why-item:nth-child(1),
    .why-item:nth-child(2) {
        border-bottom:
            1px solid #ddd4c9;
    }

    .visit-wrapper {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .visit-details {
        border-left: 0;

        border-top:
            1px solid rgba(255, 255, 255, 0.18);

        padding-left: 0;

        padding-top: 30px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }
}


/* =========================================================
   SMALL DESKTOP / TABLET HEADER
   ========================================================= */

@media (max-width: 900px) {

    .nav {
        min-height: 80px;

        gap: 20px;
    }

    .logo-image {
        width: 110px;
        height: 64px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .header-search {
        width: 175px;

        height: 40px;
    }

    .header-search input {
        font-size: 13px;
    }

    .header-whatsapp {
        width: 40px;
        height: 40px;
        min-height: 40px;
        padding: 0;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .container {
        width: calc(100% - 30px);
    }


    /* -----------------------------------------------------
       HEADER
       ----------------------------------------------------- */

    .nav {
        min-height: 70px;
        height: 70px;

        justify-content: space-between;

        gap: 15px;
    }

    .logo-image {
        width: 105px;
        height: 60px;
    }

    .nav-links,
    .header-right {
        display: none;
    }

    .menu-button {
        display: flex;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .hero {
        min-height: auto;

        padding: 42px 0 55px;
    }

    .hero-grid {
        display: flex;

        flex-direction: column;

        gap: 40px;
    }

    .hero-content {
        max-width: none;
    }

    .hero-eyebrow {
        font-size: 8px;

        letter-spacing: 1.8px;

        margin-bottom: 17px;
    }

    .hero h1 {
        font-size: 42px;

        line-height: 1.06;

        letter-spacing: -0.8px;

        margin-bottom: 20px;
    }

    .hero-content > p {
        font-size: 13px;

        line-height: 1.75;

        margin-bottom: 25px;
    }


    /* -----------------------------------------------------
       HERO BUTTONS
       ----------------------------------------------------- */

    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        max-width: 290px;
    }

    .hero-actions .btn {
        width: 100%;
    }


    /* -----------------------------------------------------
       HERO STATS
       ----------------------------------------------------- */

    .hero-stats {
        margin-top: 35px;
    }

    .hero-stat {
        min-width: 0;

        flex: 1;

        padding-right: 12px;

        margin-right: 12px;
    }

    .hero-stat strong {
        font-size: 18px;
    }

    .hero-stat span {
        font-size: 9px;
    }


    /* -----------------------------------------------------
       HERO IMAGE
       ----------------------------------------------------- */

    .hero-image-wrapper {
        max-width: none;

        width: 100%;
    }

    .hero-image {
        height: 430px;
    }

    .hero-feature-card {
        left: 12px;
        right: 12px;
        bottom: 12px;

        padding: 15px;
    }

    .hero-feature-card h3 {
        font-size: 18px;
    }


    /* -----------------------------------------------------
       SECTIONS
       ----------------------------------------------------- */

    .section {
        padding: 65px 0;
    }

    .section-header {
        display: block;

        margin-bottom: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-header .text-link {
        display: inline-block;

        margin-top: 13px;
    }


    /* -----------------------------------------------------
       PRODUCTS
       ----------------------------------------------------- */

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

        gap: 18px;
    }


    /* -----------------------------------------------------
       CATEGORIES
       ----------------------------------------------------- */

    .category-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .category-card {
        min-height: 225px;
    }


    /* -----------------------------------------------------
       WHY
       ----------------------------------------------------- */

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        border-right: 0;

        border-bottom:
            1px solid #ddd4c9;

        padding: 28px 20px;
    }

    .why-item:last-child {
        border-bottom: 0;
    }


    /* -----------------------------------------------------
       VISIT
       ----------------------------------------------------- */

    .visit-wrapper {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .visit-details {
        border-left: 0;

        border-top:
            1px solid rgba(255, 255, 255, 0.18);

        padding-left: 0;

        padding-top: 28px;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 32px;

        padding-bottom: 40px;
    }


    /* -----------------------------------------------------
       FLOATING WHATSAPP
       ----------------------------------------------------- */

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;

        width: 54px;
        height: 54px;
    }

    .floating-whatsapp svg {
        width: 25px;
        height: 25px;
    }


    /* -----------------------------------------------------
       PRODUCT DETAIL
       ----------------------------------------------------- */

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

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .logo-image {
        width: 100px;
        height: 56px;
    }

    .hero h1 {
        font-size: 37px;
    }

    .hero-image {
        height: 390px;
    }

    .section-title {
        font-size: 29px;
    }

    .hero-stat strong {
        font-size: 16px;
    }

    .hero-stat span {
        font-size: 8px;
    }
}


/* =========================================================
   FEATURED ARTIFACTS — PREMIUM REFERENCE PRODUCT DESIGN
   ONLY FOR THE FEATURED SECTION
   ========================================================= */

.featured-reference-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 44px;
}

.featured-reference-heading .eyebrow {
    margin-bottom: 12px;
    color: #b58b48;
    letter-spacing: .24em;
}

.featured-reference-heading h2 {
    margin: 0;
    color: #24160f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.025em;
}

.featured-reference-view-all {
    padding-bottom: 6px;
    color: #24160f;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}

.featured-reference-view-all:hover {
    color: #9b2d24;
}

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

.featured-reference-card {
    overflow: hidden;
    border: 1px solid #e2dcd3;
    border-radius: 9px;
    background: #fffdf9;
    box-shadow: 0 2px 8px rgba(55, 38, 25, .05);
}

.featured-reference-image {
    position: relative;
    display: block;
    height: 420px;
    overflow: hidden;
    background: #e9e2d8;
}

.featured-reference-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.featured-reference-card:hover .featured-reference-image img {
    transform: scale(1.035);
}

.featured-quote-badge {
    position: absolute;
    z-index: 2;
    top: 17px;
    left: 14px;
    padding: 6px 13px;
    border: 2px solid #d2a52e;
    border-radius: 999px;
    background: rgba(255, 253, 247, .92);
    color: #7d5e16;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
}

.featured-discount-badge {
    position: absolute;
    z-index: 2;
    top: 17px;
    right: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #2b1710;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.featured-reference-content {
    padding: 22px 22px 25px;
}

.featured-reference-category {
    display: block;
    margin-bottom: 9px;
    color: #a17a31;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.featured-reference-content h3 {
    min-height: 52px;
    margin: 0;
    color: #24160f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.18;
}

.featured-reference-content > p {
    min-height: 18px;
    margin: 7px 0 12px;
    color: #766960;
    font-size: 12px;
    line-height: 1.4;
}

.featured-reference-price {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-bottom: 18px;
}

.featured-reference-price strong {
    color: #9d2d21;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
}

.featured-reference-price del {
    color: #756b65;
    font-size: 13px;
}

.featured-request-quote {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #d2a52e;
    border-radius: 999px;
    color: #24160f;
    background: transparent;
    font-size: 14px;
    text-decoration: none;
    transition: .25s ease;
}

.featured-request-quote:hover {
    background: #d2a52e;
    color: #fff;
}

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

    .featured-reference-image {
        height: 440px;
    }
}

@media (max-width: 700px) {
    .featured-reference-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .featured-reference-heading h2 {
        font-size: 38px;
    }

    .featured-reference-grid {
        grid-template-columns: 1fr;
    }

    .featured-reference-image {
        height: 430px;
    }
}
