:root {
    --primary-color: #550006;
    --primary-dark: #5c0c12;

    --gold-main: #d4af37;
    --gold-light: #ffd700;
    --gold-soft: #f5d27a;

    --text-color: #f5d27a;

    --border-gold: rgba(255, 215, 0, 0.25);
}


/* ============================================================
   GLOBAL LAYOUT FIX
============================================================ */

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
svg,
video {
    max-width: 100%;
}
/* ============================================================
   AMRITALAYA FRONTEND NAVIGATION
============================================================ */

.am-site-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background: linear-gradient(
        180deg,
        var(--primary-color) 0%,
        #470005 100%
    );

    transition:
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* ============================================================
   HERITAGE TOP STRIP
============================================================ */

.am-site-header__top {
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    padding: 0 30px;

    border-bottom: 1px solid rgba(255, 215, 0, 0.12);
}

.am-site-header__top p {
    display: flex;
    align-items: center;

    gap: 9px;

    margin: 0;

    color: rgba(245, 210, 122, 0.78);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2.2px;

    text-transform: uppercase;
    white-space: nowrap;
}

.am-site-header__top p span {
    color: var(--gold-main);

    font-size: 8px;
}

.am-site-header__top-line {
    width: 55px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.55)
    );
}

.am-site-header__top-line:last-child {
    transform: scaleX(-1);
}


/* ============================================================
   MAIN NAVBAR
============================================================ */

.am-site-nav {
    position: relative;

    min-height: 88px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        230px
        minmax(0, 1fr);

    align-items: center;

    padding: 0 5vw;
}


/* ============================================================
   LEFT / RIGHT NAVIGATION
============================================================ */

.am-site-nav__side {
    display: flex;
    align-items: center;

    gap: clamp(24px, 2.5vw, 42px);
}

.am-site-nav__side--left {
    justify-content: flex-start;
}

.am-site-nav__side--right {
    justify-content: flex-end;
}


/* ============================================================
   NAVIGATION LINKS
============================================================ */

.am-site-nav__link {
    position: relative;

    display: inline-flex;
    align-items: center;

    min-height: 88px;

    padding: 0;

    color: rgba(245, 210, 122, 0.88);

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.8px;

    text-decoration: none;
    text-transform: uppercase;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


/* GOLD DOT */

.am-site-nav__link::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 19px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--gold-light);

    opacity: 0;

    transform:
        translateX(-50%)
        scale(0);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* GOLD UNDERLINE */

.am-site-nav__link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 12px;

    width: 0;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--gold-main),
        transparent
    );

    transform: translateX(-50%);

    transition: width 0.3s ease;
}


/* HOVER / ACTIVE */

.am-site-nav__link:hover,
.am-site-nav__link.active {
    color: var(--gold-light);
}

.am-site-nav__link:hover::before,
.am-site-nav__link.active::before {
    opacity: 1;

    transform:
        translateX(-50%)
        scale(1);
}

.am-site-nav__link:hover::after,
.am-site-nav__link.active::after {
    width: 100%;
}


/* ============================================================
   CENTER BRAND AREA
============================================================ */

.am-site-nav__brand {
    position: relative;

    height: 88px;

    display: flex;
    align-items: flex-start;
    justify-content: center;
}


/* ============================================================
   DECORATIVE BRAND LINES
============================================================ */

.am-site-nav__brand-lines {
    position: absolute;

    top: 12px;
    left: 50%;

    width: 190px;

    display: flex;
    align-items: center;

    gap: 7px;

    transform: translateX(-50%);

    opacity: 0.42;
}

.am-site-nav__brand-lines span {
    height: 1px;

    flex: 1;

    background: linear-gradient(
        90deg,
        transparent,
        var(--gold-main)
    );
}

.am-site-nav__brand-lines span:last-child {
    transform: scaleX(-1);
}

.am-site-nav__brand-lines i {
    width: 5px;
    height: 5px;

    border: 1px solid var(--gold-main);

    transform: rotate(45deg);
}


/* ============================================================
   CENTER LOGO
============================================================ */

.am-site-nav__logo {
    position: absolute;

    top: 2px;
    left: 50%;

    z-index: 5;

    width: 170px;
    height: 145px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateX(-50%);

    text-decoration: none;
}

.am-site-nav__logo-halo {
    position: absolute;

    inset: 12px 14px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.13) 0%,
        rgba(212, 175, 55, 0.04) 45%,
        transparent 72%
    );

    pointer-events: none;
}

.am-site-nav__logo img {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    filter: drop-shadow(
        0 8px 14px rgba(0, 0, 0, 0.2)
    );

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.am-site-nav__logo:hover img {
    transform:
        translateY(-2px)
        scale(1.025);

    filter: drop-shadow(
        0 11px 18px rgba(0, 0, 0, 0.25)
    );
}


/* ============================================================
   CONTACT BUTTON
============================================================ */

.am-site-nav__contact {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 5px 6px 5px 18px;

    border: 1px solid rgba(212, 175, 55, 0.48);

    border-radius: 30px;

    background: rgba(212, 175, 55, 0.03);

    color: var(--gold-soft);

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.8px;

    text-decoration: none;
    text-transform: uppercase;

    white-space: nowrap;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.am-site-nav__contact i {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 30px;

    border-radius: 50%;

    background: var(--gold-main);

    color: var(--primary-color);

    font-size: 11px;

    transform: rotate(-45deg);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.am-site-nav__contact:hover {
    border-color: var(--gold-light);

    background: rgba(212, 175, 55, 0.08);

    color: var(--gold-light);

    transform: translateY(-1px);
}

.am-site-nav__contact:hover i {
    background: var(--gold-light);

    transform: rotate(0deg);
}


/* ============================================================
   ORNAMENTAL BOTTOM BORDER
============================================================ */

.am-site-header__ornament {
    position: absolute;

    left: 0;
    bottom: -5px;

    z-index: 2;

    width: 100%;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    pointer-events: none;
}

.am-site-header__ornament > span {
    height: 1px;

    background: linear-gradient(
        90deg,
        var(--gold-main),
        rgba(212, 175, 55, 0.25)
    );
}

.am-site-header__ornament > span:last-child {
    transform: scaleX(-1);
}

.am-site-header__ornament-center {
    display: flex;
    align-items: center;

    gap: 6px;

    padding: 0 10px;

    color: var(--gold-main);
}

.am-site-header__ornament-center i {
    width: 20px;
    height: 1px;

    background: var(--gold-main);
}

.am-site-header__ornament-center b {
    font-size: 9px;
    font-weight: 400;
}


/* ============================================================
   SCROLLED HEADER
============================================================ */

.am-site-header.scrolled {
    position: sticky;

    top: 0;

    box-shadow:
        0 10px 35px rgba(45, 0, 3, 0.18);
}


/* ============================================================
   MOBILE ELEMENTS - HIDDEN ON DESKTOP
============================================================ */

.am-site-nav__mobile,
.am-mobile-nav {
    display: none;
}


/* ============================================================
   SMALLER DESKTOP / TABLET
============================================================ */

@media (max-width: 1200px) {

    .am-site-nav {
        grid-template-columns:
            minmax(0, 1fr)
            190px
            minmax(0, 1fr);

        padding: 0 3vw;
    }

    .am-site-nav__side {
        gap: 20px;
    }

    .am-site-nav__link {
        font-size: 12px;

        letter-spacing: 0.6px;
    }

    .am-site-nav__contact {
        font-size: 12px;

        padding-left: 14px;
    }

    .am-site-nav__logo {
        width: 155px;
        height: 138px;
    }

}


/* ============================================================
   MOBILE NAVIGATION
============================================================ */

@media (max-width: 900px) {

    .am-site-header__top {
        display: none;
    }


    /* MAIN MOBILE BAR */

    .am-site-nav {
        min-height: 76px;

        display: block;

        padding: 0 20px;
    }


    /* HIDE DESKTOP NAV */

    .am-site-nav__side,
    .am-site-nav__brand {
        display: none;
    }


    /* MOBILE CONTENT */

    .am-site-nav__mobile {
        height: 76px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* ========================================================
       MOBILE LOGO
    ========================================================= */

    .am-site-nav__mobile-logo {
        width: 120px;
        height: 70px;

        display: flex;
        align-items: center;
        justify-content: flex-start;

        text-decoration: none;
    }

    .am-site-nav__mobile-logo img {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: contain;
        object-position: left center;
    }


    /* ========================================================
       HAMBURGER BUTTON
    ========================================================= */

    .am-site-nav__toggle {
        position: relative;

        width: 46px;
        height: 46px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 6px;

        padding: 0;

        border: 1px solid rgba(212, 175, 55, 0.4);

        border-radius: 50%;

        background: rgba(212, 175, 55, 0.03);

        cursor: pointer;

        transition:
            border-color 0.3s ease,
            background 0.3s ease;
    }

    .am-site-nav__toggle:hover {
        border-color: var(--gold-main);

        background: rgba(212, 175, 55, 0.08);
    }

    .am-site-nav__toggle span {
        width: 18px;
        height: 1px;

        display: block;

        background: var(--gold-soft);

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }


    /* HAMBURGER OPEN STATE */

    .am-menu-open
    .am-site-nav__toggle span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .am-menu-open
    .am-site-nav__toggle span:nth-child(2) {
        opacity: 0;
    }

    .am-menu-open
    .am-site-nav__toggle span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }


    /* ========================================================
       MOBILE MENU PANEL
    ========================================================= */

    .am-mobile-nav {
        position: absolute;

        top: 76px;
        left: 0;

        z-index: 999;

        width: 100%;

        display: block;

        max-height: 0;

        overflow: hidden;

        visibility: hidden;

        opacity: 0;

        background: linear-gradient(
            160deg,
            var(--primary-color) 0%,
            #400004 100%
        );

        box-shadow:
            0 22px 40px rgba(45, 0, 3, 0.22);

        transition:
            max-height 0.5s ease,
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .am-mobile-nav.active {
        max-height: 750px;

        visibility: visible;

        opacity: 1;
    }

    .am-mobile-nav__inner {
        padding: 30px 24px 32px;
    }


    /* ========================================================
       MOBILE MENU INTRO
    ========================================================= */

    .am-mobile-nav__head {
        padding-bottom: 20px;

        border-bottom:
            1px solid rgba(212, 175, 55, 0.16);
    }

    .am-mobile-nav__head span {
        display: block;

        margin-bottom: 5px;

        color: var(--gold-main);

        font-family: "Manrope", sans-serif;
        font-size: 11px;
        font-weight: 700;

        letter-spacing: 2px;

        text-transform: uppercase;
    }

    .am-mobile-nav__head small {
        color: rgba(245, 210, 122, 0.65);

        font-family: "Playfair Display", serif;
        font-size: 15px;
        font-style: italic;
    }


    /* ========================================================
       MOBILE MENU LINKS
    ========================================================= */

    .am-mobile-nav__links {
        padding: 10px 0;
    }

    .am-mobile-nav__links a {
        display: grid;

        grid-template-columns:
            38px
            minmax(0, 1fr)
            30px;

        align-items: center;

        min-height: 66px;

        border-bottom:
            1px solid rgba(212, 175, 55, 0.11);

        color: var(--gold-soft);

        text-decoration: none;

        transition:
            padding-left 0.25s ease,
            background 0.25s ease;
    }

    .am-mobile-nav__links a:hover,
    .am-mobile-nav__links a.active {
        padding-left: 5px;
    }

    .am-mobile-nav__number {
        color: rgba(212, 175, 55, 0.5);

        font-family: "Playfair Display", serif;
        font-size: 12px;
    }

    .am-mobile-nav__links strong {
        display: block;

        color: var(--gold-soft);

        font-family: "Playfair Display", serif;
        font-size: 20px;
        font-weight: 500;

        letter-spacing: 0.2px;

        transition:
            color 0.25s ease,
            transform 0.25s ease;
    }

    .am-mobile-nav__links a > i {
        color: var(--gold-main);

        font-size: 11px;

        transform: rotate(-45deg);

        transition: transform 0.25s ease;
    }

    .am-mobile-nav__links a:hover strong,
    .am-mobile-nav__links a.active strong {
        color: var(--gold-light);

        transform: translateX(3px);
    }

    .am-mobile-nav__links a:hover > i,
    .am-mobile-nav__links a.active > i {
        transform: rotate(0deg);
    }


    /* ========================================================
       MOBILE MENU FOOTER
    ========================================================= */

    .am-mobile-nav__footer {
        display: flex;
        align-items: center;

        gap: 12px;

        padding-top: 17px;
    }

    .am-mobile-nav__footer span {
        color: rgba(245, 210, 122, 0.58);

        font-family: "Manrope", sans-serif;
        font-size: 10px;
        font-weight: 500;

        letter-spacing: 0.8px;

        text-transform: uppercase;

        white-space: nowrap;
    }

    .am-mobile-nav__footer div {
        height: 1px;

        flex: 1;

        background: rgba(212, 175, 55, 0.18);
    }

    .am-mobile-nav__footer i {
        color: rgba(245, 210, 122, 0.55);

        font-family: "Playfair Display", serif;
        font-size: 11px;

        white-space: nowrap;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .am-site-nav {
        padding: 0 16px;
    }

    .am-site-nav__mobile-logo {
        width: 110px;
    }

    .am-site-nav__toggle {
        width: 44px;
        height: 44px;
    }

    .am-mobile-nav__inner {
        padding:
            26px
            19px
            28px;
    }

    .am-mobile-nav__links a {
        min-height: 62px;

        grid-template-columns:
            34px
            minmax(0, 1fr)
            25px;
    }

    .am-mobile-nav__links strong {
        font-size: 19px;
    }

    .am-mobile-nav__footer i {
        display: none;
    }

}




















/* ============================================================
   AMRITALAYA HOME HERO
============================================================ */
.am-hero {
    position: relative;

    width: 100%;
    max-width: 100%;

    min-height: calc(100vh - 122px);

    overflow: hidden;

    background: #fffaf0;

    isolation: isolate;
}


/* BLURRED SWEETS BACKGROUND */

.am-hero::before {
    content: "";

    position: absolute;

    inset: -30px;

    z-index: -2;

    background-image:
        url("../images/hero-bg.png");

    background-size: cover;

    background-position: center;

    filter: blur(4px);

    transform: scale(1.06);

    opacity: .5;
}


/* CREAM / IVORY OVERLAY */

.am-hero::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            90deg,
            rgba(255, 253, 248, 0.97) 0%,
            rgba(255, 250, 240, 0.91) 42%,
            rgba(255, 248, 233, 0.72) 68%,
            rgba(85, 0, 6, 0.08) 100%
        );
}


/* ============================================================
   CONTAINER
============================================================ */

.am-hero__container {
    position: relative;
    z-index: 2;

    width: min(1420px, calc(100% - 80px));

    min-height: calc(100vh - 180px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(500px, 1.1fr);

    align-items: center;

    gap: 60px;

    padding: 85px 0 70px;
}


/* ============================================================
   BACKGROUND ORNAMENTS
============================================================ */

.am-hero__decor {
    position: absolute;

    border: 1px solid rgba(85, 0, 6, 0.07);

    border-radius: 50%;

    pointer-events: none;
}

.am-hero__decor::before,
.am-hero__decor::after {
    content: "";

    position: absolute;

    inset: 16px;

    border: 1px solid rgba(212, 175, 55, 0.12);

    border-radius: inherit;
}

.am-hero__decor::after {
    inset: 34px;
}

.am-hero__decor--left {
    width: 330px;
    height: 330px;

    left: -220px;
    bottom: -100px;
}

.am-hero__decor--right {
    width: 500px;
    height: 500px;

    top: -280px;
    right: -250px;
}


/* ============================================================
   CONTENT
============================================================ */

.am-hero__content {
    position: relative;
    z-index: 4;

    max-width: 650px;
}


/* EYEBROW */

.am-hero__eyebrow {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 23px;
}

.am-hero__eyebrow > span {
    width: 42px;
    height: 1px;

    background: var(--gold-main);
}

.am-hero__eyebrow p {
    margin: 0;

    color: #9b7021;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* ============================================================
   HERO TITLE
============================================================ */

.am-hero__title {
    margin: 0;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;

    font-size: clamp(58px, 5.4vw, 86px);
    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -2.5px;
}

.am-hero__title > span {
    display: block;
}

.am-hero__title em {
    position: relative;

    display: inline-block;

    color: var(--gold-main);

    font-weight: 500;
}

.am-hero__title em::after {
    content: "";

    position: absolute;

    left: 4px;
    right: 0;
    bottom: -5px;

    height: 6px;

    border-bottom: 2px solid rgba(212, 175, 55, 0.55);

    border-radius: 50%;
}


/* ============================================================
   DESCRIPTION
============================================================ */

.am-hero__description {
    max-width: 560px;

    margin: 30px 0 0;

    color: #756568;

    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: 1.85;
}


/* ============================================================
   ACTIONS
============================================================ */

.am-hero__actions {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-top: 35px;
}


/* PRIMARY BUTTON */

.am-hero__primary-btn {
    min-height: 54px;

    display: inline-flex;
    align-items: center;

    gap: 17px;

    padding: 7px 8px 7px 24px;

    border: 1px solid var(--primary-color);
    border-radius: 50px;

    background: var(--primary-color);

    color: #fff6dc;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.3s ease;
}

.am-hero__primary-btn i {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gold-main);

    color: var(--primary-color);

    font-size: 12px;

    transform: rotate(-45deg);

    transition: 0.3s ease;
}

.am-hero__primary-btn:hover {
    background: var(--primary-dark);

    color: var(--gold-light);

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(85, 0, 6, 0.15);
}

.am-hero__primary-btn:hover i {
    background: var(--gold-light);

    transform: rotate(0deg);
}


/* STORY */

.am-hero__story-link {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    color: var(--primary-color);

    text-decoration: none;
}

.am-hero__story-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(85, 0, 6, 0.22);
    border-radius: 50%;

    color: var(--primary-color);

    font-size: 10px;

    transition: 0.3s ease;
}

.am-hero__story-link > span:last-child {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;

    line-height: 1.25;
}

.am-hero__story-link small {
    display: block;

    margin-bottom: 2px;

    color: #a49496;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.am-hero__story-link:hover {
    color: var(--primary-color);
}

.am-hero__story-link:hover .am-hero__story-icon {
    background: var(--primary-color);

    border-color: var(--primary-color);

    color: var(--gold-soft);

    transform: scale(1.05);
}


/* ============================================================
   HERITAGE NOTE
============================================================ */

.am-hero__heritage {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 45px;
}

.am-hero__heritage-mark {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 43px;

    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 50%;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
}

.am-hero__heritage span {
    display: block;

    margin-bottom: 3px;

    color: var(--gold-main);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.6px;
}

.am-hero__heritage p {
    margin: 0;

    color: #817275;

    font-family: "Playfair Display", serif;
    font-size: 14px;
    font-style: italic;
}


/* ============================================================
   RIGHT VISUAL
============================================================ */

.am-hero__visual {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* BACKGROUND WORD */

.am-hero__visual-word {
    position: absolute;

    top: 47%;
    left: 50%;

    color: rgba(85, 0, 6, 0.035);

    font-family: "Playfair Display", serif;
    font-size: 145px;
    font-weight: 700;

    letter-spacing: 8px;

    transform:
        translate(-50%, -50%)
        rotate(-8deg);

    pointer-events: none;
}


/* ============================================================
   MAIN ARCH
============================================================ */

.am-hero__arch {
    position: relative;

    width: min(440px, 72%);
    height: 545px;

    padding: 10px;

    border-radius:
        220px
        220px
        20px
        20px;

    background: #fff9ed;

    box-shadow:
        0 30px 60px rgba(85, 0, 6, 0.12);
}


/* OUTER BORDER */

.am-hero__arch-border {
    position: absolute;

    inset: -10px;

    z-index: -1;

    border: 1px solid rgba(212, 175, 55, 0.55);

    border-radius:
        230px
        230px
        27px
        27px;
}


/* IMAGE */

.am-hero__main-image {
    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius:
        210px
        210px
        13px
        13px;
}

.am-hero__main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.am-hero__arch:hover
.am-hero__main-image img {
    transform: scale(1.04);
}


/* ARCH DETAIL */

.am-hero__arch-detail {
    position: absolute;

    left: 50%;
    bottom: -18px;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 6px 10px;

    background: #fff9ed;

    color: var(--gold-main);

    transform: translateX(-50%);
}

.am-hero__arch-detail span {
    width: 24px;
    height: 1px;

    background: var(--gold-main);
}

.am-hero__arch-detail i {
    font-size: 7px;
    font-style: normal;
}


/* ============================================================
   FLOATING SWEET CARD
============================================================ */

.am-hero__floating-card {
    position: absolute;

    left: -5px;
    bottom: 55px;

    z-index: 5;

    width: 220px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 10px;

    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 14px;

    background: rgba(255, 253, 248, 0.94);

    box-shadow:
        0 15px 35px rgba(85, 0, 6, 0.12);

    backdrop-filter: blur(8px);
}

.am-hero__floating-image {
    width: 72px;
    height: 72px;

    flex: 0 0 72px;

    overflow: hidden;

    border-radius: 10px;
}

.am-hero__floating-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.am-hero__floating-content small,
.am-hero__floating-content strong,
.am-hero__floating-content span {
    display: block;
}

.am-hero__floating-content small {
    margin-bottom: 3px;

    color: var(--gold-main);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.am-hero__floating-content strong {
    margin-bottom: 2px;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 600;
}

.am-hero__floating-content span {
    color: #8b7c7e;

    font-size: 12px;
}


/* ============================================================
   HERITAGE SEAL
============================================================ */

.am-hero__seal {
    position: absolute;

    top: 70px;
    right: 10px;

    width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 50%;

    background: #fffaf0;

    box-shadow:
        0 10px 25px rgba(85, 0, 6, 0.07);

    transform: rotate(7deg);
}

.am-hero__seal::before {
    content: "";

    position: absolute;

    inset: 6px;

    border: 1px dashed rgba(85, 0, 6, 0.25);
    border-radius: 50%;
}

.am-hero__seal-inner {
    position: relative;
    z-index: 2;

    text-align: center;
}

.am-hero__seal-inner span {
    display: block;

    color: #9b7021;

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
}

.am-hero__seal-inner strong {
    display: block;

    margin: -2px 0;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;
    font-size: 32px;
}


/* ============================================================
   BOTTOM HERITAGE STRIP
============================================================ */

.am-hero__bottom {
    position: relative;
    z-index: 3;

    width: min(1420px, calc(100% - 80px));

    min-height: 60px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    border-top: 1px solid rgba(85, 0, 6, 0.09);
}

.am-hero__bottom-line {
    height: 1px;

    flex: 1;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.45)
    );
}

.am-hero__bottom-line:last-child {
    transform: scaleX(-1);
}

.am-hero__bottom-item {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #776769;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 500;

    white-space: nowrap;
}

.am-hero__bottom-item i {
    color: var(--gold-main);

    font-size: 14px;
}

.am-hero__bottom-dot {
    width: 4px;
    height: 4px;

    flex: 0 0 4px;

    border-radius: 50%;

    background: var(--gold-main);
}
/* ============================================================
   HERO LEFT CONTENT POSITION
============================================================ */

.am-hero__content {
    position: relative;
    z-index: 4;

    max-width: 650px;

    padding-left: clamp(25px, 3vw, 55px);
}

/* ============================================================
   RESPONSIVE — TABLET
============================================================ */

@media (max-width: 1100px) {

    .am-hero__container {
        width: min(100% - 50px, 1100px);

        grid-template-columns:
            minmax(0, 0.95fr)
            minmax(400px, 1fr);

        gap: 35px;
    }

    .am-hero__title {
        font-size: clamp(52px, 6vw, 68px);
    }

    .am-hero__visual {
        min-height: 550px;
    }

    .am-hero__arch {
        width: 370px;
        height: 480px;
    }

    .am-hero__floating-card {
        left: -10px;
    }

}


/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */

@media (max-width: 850px) {

    .am-hero {
        min-height: auto;
    }

    .am-hero__container {
        width: calc(100% - 36px);

        min-height: auto;

        grid-template-columns: 1fr;

        gap: 45px;

        padding:
            65px
            0
            55px;
    }

    .am-hero__content {
        max-width: 650px;

        text-align: center;

        margin: 0 auto;
        
        padding: 0px !important;
    }

    .am-hero__eyebrow {
        justify-content: center;
    }

    .am-hero__title {
        font-size: clamp(50px, 12vw, 70px);
    }

    .am-hero__description {
        max-width: 580px;

        margin:
            26px
            auto
            0;

        font-size: 15px;
    }

    .am-hero__actions {
        justify-content: center;
    }

    .am-hero__heritage {
        justify-content: center;

        text-align: left;
    }

    .am-hero__visual {
        width: 100%;

        min-height: 560px;

        margin: 0 auto;
    }

    .am-hero__arch {
        width: min(390px, 78vw);
        height: 500px;
    }

    .am-hero__floating-card {
        left: 5%;
    }

    .am-hero__seal {
        right: 5%;
    }

    .am-hero__bottom {
        width: calc(100% - 36px);

        flex-wrap: wrap;

        gap: 14px 18px;

        padding: 20px 0;
    }

    .am-hero__bottom-line {
        display: none;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 520px) {

    .am-hero__container {
        width: calc(100% - 30px);

        padding-top: 52px;
    }

    .am-hero__eyebrow p {
        font-size: 10px;

        letter-spacing: 1.5px;
    }

    .am-hero__eyebrow > span {
        width: 25px;
    }

    .am-hero__title {
        font-size: clamp(44px, 13vw, 58px);

        line-height: 1.02;

        letter-spacing: -1.5px;
    }

    .am-hero__description {
        font-size: 15px;

        line-height: 1.75;
    }

    .am-hero__actions {
        flex-direction: column;

        gap: 18px;
    }

    .am-hero__primary-btn {
        min-height: 52px;
    }

    .am-hero__heritage {
        margin-top: 35px;
    }

    .am-hero__visual {
        min-height: 470px;
    }

    .am-hero__arch {
        width: 78vw;
        height: 410px;
    }

    .am-hero__floating-card {
        left: 0;
        bottom: 15px;

        width: 190px;
    }

    .am-hero__floating-image {
        width: 60px;
        height: 60px;

        flex-basis: 60px;
    }

    .am-hero__floating-content strong {
        font-size: 16px;
    }

    .am-hero__seal {
        top: 25px;
        right: 0;

        width: 90px;
        height: 90px;
    }

    .am-hero__seal-inner strong {
        font-size: 27px;
    }

    .am-hero__bottom {
        justify-content: flex-start;

        padding-bottom: 28px;
    }

    .am-hero__bottom-dot {
        display: none;
    }

    .am-hero__bottom-item {
        width: calc(50% - 10px);

        white-space: normal;

        font-size: 11px;
    }

}













































/* ============================================================
   AMRITALAYA — OUR HERITAGE
============================================================ */

.am-heritage {
    position: relative;

    width: 100%;
    overflow: hidden;

    padding: 120px 0;

    background: #fffaf2;
}

.am-heritage__container {
    width: calc(100% - 80px);
    max-width: 1320px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);

    align-items: center;

    gap: clamp(70px, 8vw, 130px);
}


/* ============================================================
   VISUAL
============================================================ */

.am-heritage__visual {
    position: relative;

    width: 100%;
    max-width: 520px;

    padding: 18px 0 35px 25px;
}

.am-heritage__image-frame {
    position: relative;

    width: 100%;
    height: 570px;
}

.am-heritage__image {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 220px 220px 12px 12px;
}

.am-heritage__image-border {
    position: absolute;

    top: -17px;
    left: -17px;

    width: 100%;
    height: 100%;

    border: 1px solid rgba(212, 175, 55, 0.6);

    border-radius: 220px 220px 12px 12px;
}


/* ============================================================
   EXPERIENCE CARD
============================================================ */

.am-heritage__experience {
    position: absolute;

    z-index: 5;

    right: -45px;
    bottom: 0;

    min-width: 190px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 19px 22px;

    border: 1px solid rgba(212, 175, 55, 0.3);

    background: var(--primary-color);

    box-shadow: 0 15px 35px rgba(85, 0, 6, 0.16);
}

.am-heritage__experience strong {
    color: var(--gold-light);

    font-family: "Playfair Display", serif;

    font-size: 42px;
    font-weight: 500;

    line-height: 1;
}

.am-heritage__experience span {
    padding-left: 15px;

    border-left: 1px solid rgba(212, 175, 55, 0.3);

    color: var(--gold-soft);

    font-size: 13px;
    font-weight: 500;

    line-height: 1.5;
}


/* ============================================================
   IMAGE LABEL
============================================================ */

.am-heritage__image-label {
    position: absolute;

    left: -80px;
    top: 50%;

    display: flex;
    align-items: center;

    gap: 12px;

    transform: rotate(-90deg);
}

.am-heritage__image-label span {
    width: 40px;
    height: 1px;

    background: var(--gold-main);
}

.am-heritage__image-label p {
    margin: 0;

    color: #9b7021;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* ============================================================
   CONTENT
============================================================ */

.am-heritage__content {
    max-width: 600px;
}

.am-heritage__eyebrow {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 20px;
}

.am-heritage__eyebrow span {
    width: 42px;
    height: 1px;

    background: var(--gold-main);
}

.am-heritage__eyebrow p {
    margin: 0;

    color: #9b7021;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* ============================================================
   TITLE
============================================================ */

.am-heritage__title {
    margin: 0;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 4.3vw, 64px);
    font-weight: 500;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.am-heritage__title span {
    display: block;

    color: var(--gold-main);

    font-style: italic;
}


/* ============================================================
   TEXT
============================================================ */

.am-heritage__lead {
    max-width: 550px;

    margin: 28px 0 0;

    color: #4f3c3f;

    font-family: "Playfair Display", serif;

    font-size: 20px;
    font-weight: 500;

    line-height: 1.6;
}

.am-heritage__text {
    max-width: 570px;

    margin: 17px 0 0;

    color: #79696b;

    font-size: 15px;

    line-height: 1.85;
}


/* ============================================================
   FEATURES
============================================================ */

.am-heritage__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 25px;

    margin-top: 35px;
    padding-top: 30px;

    border-top: 1px solid rgba(85, 0, 6, 0.1);
}

.am-heritage__feature {
    display: flex;
    align-items: center;

    gap: 14px;
}

.am-heritage__feature-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;

    color: var(--gold-main);

    font-size: 17px;
}

.am-heritage__feature strong {
    display: block;

    margin-bottom: 3px;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;

    font-size: 17px;
    font-weight: 600;
}

.am-heritage__feature span {
    display: block;

    color: #8b7b7d;

    font-size: 13px;

    line-height: 1.45;
}


/* ============================================================
   STORY LINK
============================================================ */

.am-heritage__link {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    margin-top: 35px;

    color: var(--primary-color);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}

.am-heritage__link i {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-color);

    color: var(--gold-soft);

    font-size: 11px;

    transform: rotate(-45deg);

    transition: 0.3s ease;
}

.am-heritage__link:hover {
    color: var(--gold-main);
}

.am-heritage__link:hover i {
    background: var(--gold-main);

    color: var(--primary-color);

    transform: rotate(0);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1050px) {

    .am-heritage {
        padding: 90px 0;
    }

    .am-heritage__container {
        width: calc(100% - 50px);

        gap: 60px;
    }

    .am-heritage__image-frame {
        height: 500px;
    }

    .am-heritage__experience {
        right: -25px;
    }

    .am-heritage__image-label {
        display: none;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 800px) {

    .am-heritage {
        padding: 75px 0;
    }

    .am-heritage__container {
        width: calc(100% - 36px);

        grid-template-columns: 1fr;

        gap: 65px;
    }

    .am-heritage__visual {
        max-width: 500px;

        margin: 0 auto;

        padding-left: 10px;
    }

    .am-heritage__image-frame {
        height: 520px;
    }

    .am-heritage__experience {
        right: -5px;
    }

    .am-heritage__content {
        max-width: 650px;

        margin: 0 auto;

        text-align: center;
    }

    .am-heritage__eyebrow {
        justify-content: center;
    }

    .am-heritage__lead,
    .am-heritage__text {
        margin-left: auto;
        margin-right: auto;
    }

    .am-heritage__feature {
        text-align: left;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 520px) {

    .am-heritage {
        padding: 65px 0;
    }

    .am-heritage__container {
        width: calc(100% - 30px);

        gap: 55px;
    }

    .am-heritage__visual {
        padding:
            10px
            0
            45px
            8px;
    }

    .am-heritage__image-frame {
        height: 410px;
    }

    .am-heritage__image,
    .am-heritage__image-border {
        border-radius: 170px 170px 10px 10px;
    }

    .am-heritage__experience {
        right: 0;
        bottom: 0;

        min-width: 175px;

        padding: 15px 17px;
    }

    .am-heritage__experience strong {
        font-size: 34px;
    }

    .am-heritage__experience span {
        font-size: 12px;
    }

    .am-heritage__title {
        font-size: clamp(40px, 11vw, 52px);
    }

    .am-heritage__lead {
        font-size: 18px;
    }

    .am-heritage__text {
        font-size: 15px;
    }

    .am-heritage__features {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .am-heritage__feature {
        max-width: 280px;

        margin: 0 auto;

        width: 100%;
    }

}












/* =========================================================================================================================================================== */






/* ============================================================
   AMRITALAYA — FEATURED SWEETS
   Editorial Collection
============================================================ */

.am-featured {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 125px 0 135px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(212, 175, 55, 0.08),
            transparent 24%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(85, 0, 6, 0.035),
            transparent 25%
        ),
        #fffaf2;
}

.am-featured__container {
    position: relative;
    z-index: 2;

    width: calc(100% - 80px);
    max-width: 1380px;

    margin: 0 auto;
}


/* ============================================================
   DECORATIVE BACKGROUND
============================================================ */

.am-featured::before {
    content: "AMRITALAYA";

    position: absolute;
    top: 42%;
    left: 50%;

    color: rgba(85, 0, 6, 0.018);

    font-family: "Playfair Display", serif;
    font-size: clamp(100px, 14vw, 220px);
    font-weight: 700;

    letter-spacing: 15px;

    white-space: nowrap;

    transform: translate(-50%, -50%);

    pointer-events: none;
}

.am-featured__ornament {
    position: absolute;

    width: 260px;
    height: 260px;

    border: 1px solid rgba(212, 175, 55, 0.10);
    border-radius: 50%;

    pointer-events: none;
}

.am-featured__ornament::before,
.am-featured__ornament::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(85, 0, 6, 0.045);
    border-radius: 50%;
}

.am-featured__ornament::before {
    inset: 17px;
}

.am-featured__ornament::after {
    inset: 38px;
}

.am-featured__ornament--left {
    top: 70px;
    left: -190px;
}

.am-featured__ornament--right {
    right: -180px;
    bottom: 20px;
}


/* ============================================================
   SECTION HEADER
============================================================ */

.am-featured__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);

    align-items: end;

    gap: 90px;

    margin-bottom: 72px;
}


/* ============================================================
   EYEBROW
============================================================ */

.am-featured__eyebrow {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 18px;
}

.am-featured__eyebrow span {
    position: relative;

    width: 45px;
    height: 1px;

    background: var(--gold-main);
}

.am-featured__eyebrow span::after {
    content: "";

    position: absolute;
    top: -2px;
    right: 0;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--gold-main);
}

.am-featured__eyebrow p {
    margin: 0;

    color: #9b7021;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.2px;
}


/* ============================================================
   MAIN TITLE
============================================================ */

.am-featured__heading h2 {
    max-width: 690px;

    margin: 0;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;

    font-size: clamp(52px, 5vw, 72px);
    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -2px;
}

.am-featured__heading h2 em {
    position: relative;

    color: var(--gold-main);

    font-weight: 500;
}

.am-featured__heading h2 em::after {
    content: "";

    position: absolute;

    left: 5px;
    right: 0;
    bottom: -7px;

    height: 8px;

    border-bottom: 1px solid rgba(212, 175, 55, 0.6);

    border-radius: 50%;
}


/* ============================================================
   HEADER DESCRIPTION
============================================================ */

.am-featured__intro {
    position: relative;

    padding-left: 25px;

    border-left: 1px solid rgba(212, 175, 55, 0.35);
}

.am-featured__intro p {
    max-width: 440px;

    margin: 0 0 21px;

    color: #766669;

    font-family: "Manrope", sans-serif;
    font-size: 15px;

    line-height: 1.85;
}

.am-featured__intro > a {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: var(--primary-color);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.am-featured__intro > a i {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(85, 0, 6, 0.25);
    border-radius: 50%;

    font-size: 10px;

    transform: rotate(-45deg);

    transition: 0.3s ease;
}

.am-featured__intro > a:hover i {
    border-color: var(--gold-main);

    background: var(--gold-main);

    transform: rotate(0deg);
}


/* ============================================================
   PRODUCT GRID
============================================================ */

.am-featured__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    align-items: start;

    gap: clamp(20px, 2.2vw, 34px);
}


/*
   Creates subtle editorial stagger.
   Not every image starts on exactly the same line.
*/

.am-featured__card:nth-child(even) {
    margin-top: 55px;
}


/* ============================================================
   PRODUCT CARD
============================================================ */

.am-featured__card {
    position: relative;

    min-width: 0;
}


/* ============================================================
   IMAGE AREA
============================================================ */

.am-featured__image-wrap {
    position: relative;

    display: block;

    width: 100%;
    height: 410px;

    padding: 7px;

    overflow: visible;

    border: 1px solid rgba(212, 175, 55, 0.24);

    border-radius:
        155px
        155px
        10px
        10px;

    background: rgba(255, 255, 255, 0.55);

    text-decoration: none;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease;
}

.am-featured__image {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius:
        148px
        148px
        6px
        6px;

    background: #f1e7d8;
}

.am-featured__image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(42, 0, 3, 0.15) 100%
    );

    pointer-events: none;

    transition: opacity 0.4s ease;
}

.am-featured__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}

.am-featured__card:hover
.am-featured__image-wrap {
    transform: translateY(-5px);

    border-color: rgba(212, 175, 55, 0.65);
}

.am-featured__card:hover
.am-featured__image img {
    transform: scale(1.065);
}


/* ============================================================
   LARGE PRODUCT NUMBER
============================================================ */

.am-featured__number {
    position: absolute;

    top: -29px;
    left: 17px;

    z-index: 5;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;
    font-size: 52px;
    font-weight: 400;
    font-style: italic;

    line-height: 1;

    opacity: 0.18;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.am-featured__card:hover
.am-featured__number {
    opacity: 0.42;

    transform: translateY(-3px);
}


/* ============================================================
   VIEW BUTTON
============================================================ */

.am-featured__view {
    position: absolute;

    right: 18px;
    bottom: 18px;

    z-index: 5;

    min-height: 44px;

    display: inline-flex;
    align-items: center;

    gap: 11px;

    padding: 6px 6px 6px 17px;

    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 30px;

    background: rgba(85, 0, 6, 0.93);

    color: var(--gold-soft);

    font-size: 12px;
    font-weight: 600;

    backdrop-filter: blur(8px);

    opacity: 0;

    transform: translateY(12px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.am-featured__view i {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gold-main);

    color: var(--primary-color);

    font-size: 10px;

    transform: rotate(-45deg);

    transition: transform 0.3s ease;
}

.am-featured__card:hover
.am-featured__view {
    opacity: 1;

    transform: translateY(0);
}

.am-featured__card:hover
.am-featured__view i {
    transform: rotate(0deg);
}


/* ============================================================
   PRODUCT INFORMATION
============================================================ */

.am-featured__content {
    position: relative;

    padding: 23px 5px 0;
}


/* ============================================================
   META
============================================================ */

.am-featured__meta {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 10px;
}

.am-featured__meta > span {
    color: #a17627;

    font-family: "Manrope", sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.am-featured__meta > div {
    width: 22px;
    height: 1px;

    background: rgba(85, 0, 6, 0.18);
}

.am-featured__meta small {
    color: #887779;

    font-size: 11px;
}

.am-featured__meta small.out-stock {
    color: var(--primary-color);
}


/* ============================================================
   PRODUCT NAME + PRICE
============================================================ */

.am-featured__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;
}

.am-featured__title-row h3 {
    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(22px, 1.7vw, 27px);
    font-weight: 600;

    line-height: 1.2;
}

.am-featured__title-row h3 a {
    color: var(--primary-color);

    text-decoration: none;

    transition: color 0.25s ease;
}

.am-featured__title-row h3 a:hover {
    color: var(--gold-main);
}

.am-featured__title-row strong {
    flex-shrink: 0;

    padding-top: 2px;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;

    font-size: 19px;
    font-weight: 600;
}


/* ============================================================
   DESCRIPTION
============================================================ */

.am-featured__content > p {
    max-width: 280px;

    margin: 11px 0 0;

    color: #817174;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    line-height: 1.7;
}


/* ============================================================
   SMALL GOLD DETAIL UNDER CARD
============================================================ */

.am-featured__content::after {
    content: "";

    display: block;

    width: 0;
    height: 1px;

    margin-top: 18px;

    background: var(--gold-main);

    transition: width 0.4s ease;
}

.am-featured__card:hover
.am-featured__content::after {
    width: 45px;
}


/* ============================================================
   EMPTY STATE
============================================================ */

.am-featured__empty {
    grid-column: 1 / -1;

    padding: 70px 20px;

    border-top: 1px solid rgba(212, 175, 55, 0.25);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);

    text-align: center;
}

.am-featured__empty p {
    margin: 0;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;
    font-size: 21px;
}


/* ============================================================
   MOBILE ACTION
============================================================ */

.am-featured__mobile-action {
    display: none;
}


/* ============================================================
   1150PX
============================================================ */

@media (max-width: 1150px) {

    .am-featured {
        padding: 100px 0 110px;
    }

    .am-featured__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 65px 30px;
    }

    .am-featured__card:nth-child(even) {
        margin-top: 45px;
    }

    .am-featured__image-wrap {
        height: 510px;

        border-radius:
            210px
            210px
            10px
            10px;
    }

    .am-featured__image {
        border-radius:
            203px
            203px
            6px
            6px;
    }

}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 850px) {

    .am-featured {
        padding: 85px 0 95px;
    }

    .am-featured__container {
        width: calc(100% - 40px);
    }

    .am-featured__header {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 55px;

        text-align: center;
    }

    .am-featured__eyebrow {
        justify-content: center;
    }

    .am-featured__heading h2 {
        margin: 0 auto;
    }

    .am-featured__intro {
        max-width: 580px;

        margin: 0 auto;

        padding:
            20px
            0
            0;

        border-left: 0;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
    }

    .am-featured__intro p {
        margin:
            0
            auto
            20px;
    }

}


/* ============================================================
   MOBILE — EDITORIAL SWIPE
============================================================ */

@media (max-width: 600px) {

    .am-featured {
        padding: 72px 0 80px;
    }

    .am-featured::before {
        display: none;
    }

    .am-featured__container {
        width: 100%;
    }

    .am-featured__header {
        padding: 0 20px;

        margin-bottom: 45px;
    }

    .am-featured__eyebrow p {
        font-size: 11px;

        letter-spacing: 1.5px;
    }

    .am-featured__heading h2 {
        font-size: clamp(43px, 12vw, 55px);

        line-height: 1.04;
    }

    .am-featured__intro p {
        font-size: 15px;

        line-height: 1.75;
    }

    .am-featured__intro > a {
        display: none;
    }


    /* HORIZONTAL PRODUCT EXPERIENCE */

    .am-featured__grid {
        display: flex;

        gap: 18px;

        padding:
            25px
            20px
            22px;

        overflow-x: auto;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .am-featured__grid::-webkit-scrollbar {
        display: none;
    }


    /* RESET STAGGER */

    .am-featured__card:nth-child(even) {
        margin-top: 0;
    }


    .am-featured__card {
        width: 82vw;
        max-width: 350px;

        flex: 0 0 82vw;

        scroll-snap-align: center;
    }

    .am-featured__image-wrap {
        height: 430px;

        border-radius:
            170px
            170px
            9px
            9px;
    }

    .am-featured__image {
        border-radius:
            163px
            163px
            6px
            6px;
    }

    .am-featured__number {
        top: -25px;

        font-size: 45px;
    }


    /* TOUCH DEVICES */

    .am-featured__view {
        opacity: 1;

        transform: none;
    }


    /* MOBILE VIEW ALL */

    .am-featured__mobile-action {
        display: flex;
        justify-content: center;

        padding:
            15px
            20px
            0;
    }

    .am-featured__mobile-action a {
        min-height: 52px;

        display: inline-flex;
        align-items: center;

        gap: 15px;

        padding:
            6px
            7px
            6px
            23px;

        border: 1px solid rgba(85, 0, 6, 0.65);
        border-radius: 30px;

        color: var(--primary-color);

        font-size: 14px;
        font-weight: 700;

        text-decoration: none;
    }

    .am-featured__mobile-action i {
        width: 37px;
        height: 37px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background: var(--primary-color);

        color: var(--gold-soft);

        font-size: 11px;

        transform: rotate(-45deg);
    }

}


/* ============================================================
   VERY SMALL MOBILE
============================================================ */

@media (max-width: 420px) {

    .am-featured__card {
        width: 86vw;

        flex-basis: 86vw;
    }

    .am-featured__image-wrap {
        height: 400px;
    }

    .am-featured__title-row h3 {
        font-size: 23px;
    }

}




































/* ============================================================
   AMRITALAYA — WHY AMRITALAYA
============================================================ */

.am-why {
    position: relative;

    width: 100%;
    max-width: 100%;

    padding: 125px 0 55px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #520006 0%,
            var(--primary-color) 45%,
            #3d0004 100%
        );

    color: #fff;
}


/* ============================================================
   SUBTLE BACKGROUND TEXTURE
============================================================ */

.am-why::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.045;

    background-image:
        radial-gradient(
            circle,
            #f1c96a 1px,
            transparent 1px
        );

    background-size: 26px 26px;

    pointer-events: none;
}


/* ============================================================
   BACKGROUND GLOWS
============================================================ */

.am-why__glow {
    position: absolute;

    border-radius: 50%;

    background: rgba(212, 175, 55, 0.09);

    filter: blur(1px);

    pointer-events: none;
}

.am-why__glow--one {
    width: 500px;
    height: 500px;

    top: -320px;
    left: -170px;
}

.am-why__glow--two {
    width: 450px;
    height: 450px;

    right: -250px;
    bottom: -250px;
}


/* ============================================================
   LARGE WATERMARK
============================================================ */

.am-why__watermark {
    position: absolute;

    left: 4%;
    bottom: -145px;

    color: transparent;

    font-family: "Playfair Display", serif;

    font-size: 500px;
    font-weight: 700;

    line-height: 1;

    -webkit-text-stroke:
        1px rgba(212, 175, 55, 0.07);

    pointer-events: none;
}


/* ============================================================
   CONTAINER
============================================================ */

.am-why__container {
    position: relative;
    z-index: 2;

    width: calc(100% - 80px);
    max-width: 1360px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: clamp(80px, 9vw, 145px);

    align-items: center;
}


/* ============================================================
   LEFT INTRO
============================================================ */

.am-why__intro {
    max-width: 510px;
}


/* EYEBROW */

.am-why__eyebrow {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 21px;
}

.am-why__eyebrow > span {
    position: relative;

    width: 44px;
    height: 1px;

    background: var(--gold-main);
}

.am-why__eyebrow > span::after {
    content: "";

    position: absolute;

    right: 0;
    top: -2px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--gold-main);
}

.am-why__eyebrow p {
    margin: 0;

    color: var(--gold-light);

    font-family: "Manrope", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.2px;
}


/* ============================================================
   TITLE
============================================================ */

.am-why__title {
    margin: 0;

    color: #fff8e8;

    font-family: "Playfair Display", serif;

    font-size: clamp(50px, 4.8vw, 70px);
    font-weight: 500;

    line-height: 1.04;

    letter-spacing: -1.8px;
}

.am-why__title span {
    display: block;

    color: var(--gold-light);

    font-style: italic;
}


/* ============================================================
   DESCRIPTION
============================================================ */

.am-why__description {
    max-width: 490px;

    margin: 28px 0 0;

    color: rgba(255, 244, 220, 0.68);

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    line-height: 1.9;
}


/* ============================================================
   SIGNATURE / PROMISE
============================================================ */

.am-why__signature {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 40px;
    padding-top: 28px;

    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.am-why__signature-mark {
    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;

    color: var(--gold-light);

    font-family: "Playfair Display", serif;

    font-size: 24px;
    font-weight: 600;
}

.am-why__signature small {
    display: block;

    margin-bottom: 4px;

    color: rgba(245, 210, 122, 0.58);

    font-family: "Manrope", sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.am-why__signature strong {
    display: block;

    color: #fff3d5;

    font-family: "Playfair Display", serif;

    font-size: 17px;
    font-weight: 500;

    font-style: italic;
}


/* ============================================================
   REASONS GRID
============================================================ */

.am-why__reasons {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-left: 1px solid rgba(212, 175, 55, 0.18);
}


/* ============================================================
   REASON ITEM
============================================================ */

.am-why__item {
    position: relative;

    min-height: 280px;

    padding: 35px 34px;

    border-right: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);

    overflow: hidden;

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.am-why__item::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(212, 175, 55, 0.11),
            transparent 55%
        );

    opacity: 0;

    transition: opacity 0.35s ease;
}

.am-why__item:hover {
    background: rgba(255, 255, 255, 0.025);
}

.am-why__item:hover::before {
    opacity: 1;
}


/* ============================================================
   NUMBER
============================================================ */

.am-why__number {
    position: absolute;

    top: 20px;
    right: 23px;

    color: rgba(245, 210, 122, 0.18);

    font-family: "Playfair Display", serif;

    font-size: 35px;
    font-weight: 400;
    font-style: italic;

    line-height: 1;
}


/* ============================================================
   ICON
============================================================ */

.am-why__icon {
    position: relative;
    z-index: 2;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 27px;

    border: 1px solid rgba(212, 175, 55, 0.38);
    border-radius: 50%;

    color: var(--gold-light);

    font-size: 18px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.am-why__item:hover
.am-why__icon {
    background: var(--gold-main);

    color: var(--primary-color);

    transform: translateY(-3px);
}


/* ============================================================
   ITEM CONTENT
============================================================ */

.am-why__item-content {
    position: relative;
    z-index: 2;
}

.am-why__item-content h3 {
    margin: 0 0 11px;

    color: #fff4da;

    font-family: "Playfair Display", serif;

    font-size: 23px;
    font-weight: 500;
}

.am-why__item-content p {
    max-width: 275px;

    margin: 0;

    color: rgba(255, 244, 220, 0.58);

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    line-height: 1.75;
}


/* ============================================================
   HOVER GOLD LINE
============================================================ */

.am-why__line {
    position: absolute;

    left: 34px;
    bottom: 25px;

    width: 0;
    height: 1px;

    background: var(--gold-main);

    transition: width 0.4s ease;
}

.am-why__item:hover
.am-why__line {
    width: 42px;
}


/* ============================================================
   BOTTOM STATEMENT
============================================================ */

.am-why__bottom {
    position: relative;
    z-index: 2;

    width: calc(100% - 80px);
    max-width: 1360px;

    margin: 85px auto 0;

    display: flex;
    align-items: center;

    gap: 22px;
}

.am-why__bottom > span {
    height: 1px;

    flex: 1;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.38)
    );
}

.am-why__bottom > span:last-child {
    transform: scaleX(-1);
}

.am-why__bottom p {
    display: flex;
    align-items: center;

    gap: 16px;

    margin: 0;

    color: rgba(245, 210, 122, 0.65);

    font-family: "Manrope", sans-serif;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    white-space: nowrap;
}

.am-why__bottom p i {
    color: var(--gold-main);

    font-size: 5px;
    font-style: normal;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1050px) {

    .am-why {
        padding-top: 100px;
    }

    .am-why__container {
        width: calc(100% - 50px);

        grid-template-columns:
            minmax(0, 0.75fr)
            minmax(0, 1.25fr);

        gap: 55px;
    }

    .am-why__item {
        min-height: 270px;

        padding: 30px 25px;
    }

    .am-why__line {
        left: 25px;
    }

    .am-why__bottom {
        width: calc(100% - 50px);
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 800px) {

    .am-why {
        padding: 80px 0 45px;
    }

    .am-why__container {
        width: calc(100% - 36px);

        grid-template-columns: 1fr;

        gap: 60px;
    }

    .am-why__intro {
        max-width: 620px;

        margin: 0 auto;

        text-align: center;
    }

    .am-why__eyebrow {
        justify-content: center;
    }

    .am-why__description {
        margin-left: auto;
        margin-right: auto;
    }

    .am-why__signature {
        max-width: 350px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

    .am-why__bottom {
        width: calc(100% - 36px);

        margin-top: 60px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 560px) {

    .am-why {
        padding-top: 70px;
    }

    .am-why__container {
        width: calc(100% - 30px);

        gap: 50px;
    }

    .am-why__title {
        font-size: clamp(43px, 12vw, 55px);
    }

    .am-why__description {
        font-size: 15px;

        line-height: 1.8;
    }


    /* STACK REASONS */

    .am-why__reasons {
        grid-template-columns: 1fr;
    }

    .am-why__item {
        min-height: auto;

        padding: 30px 27px 40px;
    }

    .am-why__item-content h3 {
        font-size: 22px;
    }

    .am-why__item-content p {
        max-width: 100%;

        font-size: 13px;
    }

    .am-why__line {
        left: 27px;
        bottom: 22px;
    }


    /* BOTTOM */

    .am-why__bottom {
        margin-top: 50px;
    }

    .am-why__bottom > span {
        display: none;
    }

    .am-why__bottom p {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 8px 12px;

        text-align: center;

        white-space: normal;

        line-height: 1.7;
    }

}





/* ============================================================
   AMRITALAYA — SWEET MOMENTS
============================================================ */

.am-occasions {
    position: relative;

    width: 100%;
    max-width: 100%;

    padding: 120px 0 130px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(212, 175, 55, 0.07),
            transparent 25%
        ),
        #fffaf2;
}


/* SUBTLE LARGE BACKGROUND TEXT */

.am-occasions::before {
    content: "CELEBRATE";

    position: absolute;

    left: 50%;
    top: 38%;

    color: rgba(85, 0, 6, 0.018);

    font-family: "Playfair Display", serif;

    font-size: clamp(110px, 15vw, 230px);
    font-weight: 700;

    letter-spacing: 15px;

    white-space: nowrap;

    transform: translate(-50%, -50%);

    pointer-events: none;
}


/* ============================================================
   CONTAINER
============================================================ */

.am-occasions__container {
    position: relative;
    z-index: 2;

    width: calc(100% - 80px);
    max-width: 1360px;

    margin: 0 auto;
}


/* ============================================================
   HEADER
============================================================ */

.am-occasions__header {
    max-width: 800px;

    margin: 0 auto 70px;

    text-align: center;
}


/* EYEBROW */

.am-occasions__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-bottom: 18px;
}

.am-occasions__eyebrow span {
    width: 38px;
    height: 1px;

    background: var(--gold-main);
}

.am-occasions__eyebrow p {
    margin: 0;

    color: #9b7021;

    font-family: "Manrope", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* TITLE */

.am-occasions__header h2 {
    margin: 0;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;

    font-size: clamp(50px, 5vw, 70px);
    font-weight: 500;

    line-height: 1.04;

    letter-spacing: -1.8px;
}

.am-occasions__header h2 em {
    display: block;

    color: var(--gold-main);

    font-weight: 500;
}


/* DESCRIPTION */

.am-occasions__header > p {
    max-width: 610px;

    margin: 24px auto 0;

    color: #79696b;

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    line-height: 1.8;
}


/* ============================================================
   MAIN LAYOUT
============================================================ */

.am-occasions__layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1fr);

    align-items: center;

    gap: clamp(70px, 8vw, 125px);
}


/* ============================================================
   LEFT VISUAL
============================================================ */

.am-occasions__visual {
    position: relative;

    min-width: 0;

    padding:
        0
        35px
        50px
        0;
}


/* ============================================================
   MAIN IMAGE
============================================================ */

.am-occasions__main-image {
    position: relative;

    width: 100%;
    height: 620px;

    overflow: hidden;

    border-radius:
        250px
        250px
        15px
        15px;

    box-shadow:
        0 25px 60px rgba(85, 0, 6, 0.11);
}

.am-occasions__main-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.am-occasions__visual:hover
.am-occasions__main-image img {
    transform: scale(1.035);
}


/* IMAGE OVERLAY */

.am-occasions__image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 42%,
            rgba(48, 0, 4, 0.78) 100%
        );
}


/* ============================================================
   IMAGE TEXT
============================================================ */

.am-occasions__image-content {
    position: absolute;

    left: 45px;
    right: 45px;
    bottom: 45px;

    z-index: 3;
}

.am-occasions__image-content > span {
    display: block;

    margin-bottom: 9px;

    color: var(--gold-light);

    font-family: "Manrope", sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.am-occasions__image-content h3 {
    max-width: 390px;

    margin: 0;

    color: #fff8e9;

    font-family: "Playfair Display", serif;

    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;

    line-height: 1.12;
}


/* ============================================================
   FLOATING IMAGE
============================================================ */

.am-occasions__floating {
    position: absolute;

    right: -15px;
    bottom: 0;

    z-index: 5;

    width: 175px;
    height: 175px;

    padding: 7px;

    border: 1px solid rgba(212, 175, 55, 0.55);

    border-radius: 50%;

    background: #fffaf2;

    box-shadow:
        0 15px 35px rgba(85, 0, 6, 0.12);
}

.am-occasions__floating img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


/* ============================================================
   IMAGE ORNAMENT
============================================================ */

.am-occasions__visual-line {
    position: absolute;

    left: 35px;
    bottom: 15px;

    display: flex;
    align-items: center;

    gap: 7px;
}

.am-occasions__visual-line span {
    width: 35px;
    height: 1px;

    background: var(--gold-main);
}

.am-occasions__visual-line i {
    color: var(--gold-main);

    font-size: 6px;
    font-style: normal;
}


/* ============================================================
   OCCASION LIST
============================================================ */

.am-occasions__list {
    min-width: 0;
}


/* ============================================================
   OCCASION ITEM
============================================================ */

.am-occasions__item {
    position: relative;

    display: grid;

    grid-template-columns:
        58px
        minmax(0, 1fr)
        48px;

    align-items: center;

    gap: 22px;

    min-height: 160px;

    padding: 27px 10px;

    border-top: 1px solid rgba(85, 0, 6, 0.12);

    color: inherit;

    text-decoration: none;

    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}

.am-occasions__item:nth-child(3) {
    border-bottom: 1px solid rgba(85, 0, 6, 0.12);
}

.am-occasions__item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 0;

    background:
        linear-gradient(
            90deg,
            rgba(212, 175, 55, 0.09),
            transparent
        );

    transition: width 0.4s ease;
}

.am-occasions__item:hover::before {
    width: 100%;
}


/* ============================================================
   NUMBER
============================================================ */

.am-occasions__number {
    position: relative;
    z-index: 2;

    color: rgba(85, 0, 6, 0.25);

    font-family: "Playfair Display", serif;

    font-size: 29px;
    font-style: italic;
}


/* ============================================================
   ITEM CONTENT
============================================================ */

.am-occasions__item-content {
    position: relative;
    z-index: 2;
}

.am-occasions__item-content small {
    display: block;

    margin-bottom: 7px;

    color: #a17627;

    font-family: "Manrope", sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.am-occasions__item-content h3 {
    margin: 0 0 8px;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;

    font-size: clamp(24px, 2vw, 29px);
    font-weight: 600;

    line-height: 1.2;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.am-occasions__item-content p {
    max-width: 470px;

    margin: 0;

    color: #817174;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    line-height: 1.7;
}


/* ============================================================
   ARROW
============================================================ */

.am-occasions__arrow {
    position: relative;
    z-index: 2;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(85, 0, 6, 0.18);
    border-radius: 50%;

    color: var(--primary-color);

    font-size: 11px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.am-occasions__arrow i {
    transform: rotate(-45deg);

    transition: transform 0.3s ease;
}


/* HOVER */

.am-occasions__item:hover
.am-occasions__item-content h3 {
    color: var(--gold-main);

    transform: translateX(4px);
}

.am-occasions__item:hover
.am-occasions__arrow {
    border-color: var(--primary-color);

    background: var(--primary-color);

    color: var(--gold-soft);
}

.am-occasions__item:hover
.am-occasions__arrow i {
    transform: rotate(0deg);
}


/* ============================================================
   LIST FOOTER
============================================================ */

.am-occasions__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 28px;

    padding: 0 10px;
}

.am-occasions__footer p {
    margin: 0;

    color: #88787a;

    font-family: "Playfair Display", serif;

    font-size: 14px;
    font-style: italic;
}

.am-occasions__footer a {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--primary-color);

    font-family: "Manrope", sans-serif;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.am-occasions__footer a i {
    font-size: 10px;

    transform: rotate(-45deg);

    transition: transform 0.25s ease;
}

.am-occasions__footer a:hover {
    color: var(--gold-main);
}

.am-occasions__footer a:hover i {
    transform: rotate(0);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1050px) {

    .am-occasions {
        padding: 95px 0 105px;
    }

    .am-occasions__container {
        width: calc(100% - 50px);
    }

    .am-occasions__layout {
        gap: 55px;
    }

    .am-occasions__main-image {
        height: 550px;
    }

    .am-occasions__floating {
        width: 145px;
        height: 145px;
    }

    .am-occasions__item {
        grid-template-columns:
            45px
            minmax(0, 1fr)
            42px;

        gap: 15px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 800px) {

    .am-occasions {
        padding: 80px 0 90px;
    }

    .am-occasions__container {
        width: calc(100% - 36px);
    }

    .am-occasions__header {
        margin-bottom: 55px;
    }

    .am-occasions__layout {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .am-occasions__visual {
        max-width: 550px;

        margin: 0 auto;

        padding-right: 25px;
    }

    .am-occasions__main-image {
        height: 570px;
    }

    .am-occasions__list {
        max-width: 650px;

        margin: 0 auto;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 520px) {

    .am-occasions {
        padding: 70px 0 75px;
    }

    .am-occasions__container {
        width: calc(100% - 30px);
    }

    .am-occasions__header h2 {
        font-size: clamp(43px, 12vw, 55px);
    }

    .am-occasions__header > p {
        font-size: 15px;
    }


    /* IMAGE */

    .am-occasions__visual {
        padding:
            0
            15px
            40px
            0;
    }

    .am-occasions__main-image {
        height: 470px;

        border-radius:
            190px
            190px
            12px
            12px;
    }

    .am-occasions__image-content {
        left: 28px;
        right: 28px;
        bottom: 32px;
    }

    .am-occasions__image-content h3 {
        font-size: 30px;
    }

    .am-occasions__floating {
        right: -2px;

        width: 120px;
        height: 120px;
    }


    /* ITEMS */

    .am-occasions__item {
        grid-template-columns:
            36px
            minmax(0, 1fr)
            38px;

        gap: 11px;

        min-height: 150px;

        padding: 24px 3px;
    }

    .am-occasions__number {
        font-size: 22px;
    }

    .am-occasions__item-content h3 {
        font-size: 23px;
    }

    .am-occasions__item-content p {
        font-size: 12px;
    }

    .am-occasions__arrow {
        width: 38px;
        height: 38px;
    }


    /* FOOTER */

    .am-occasions__footer {
        align-items: flex-start;
        flex-direction: column;

        padding: 0 3px;
    }

}



/* ============================================================
   AMRITALAYA — MORE PRODUCTS
============================================================ */

.am-more-products {
    position: relative;

    width: 100%;
    max-width: 100%;

    padding: 105px 0 115px;

    overflow: hidden;

    background: #fffdf8;
}

.am-more-products__container {
    width: calc(100% - 80px);
    max-width: 1400px;

    margin: 0 auto;
}


/* ============================================================
   HEADER
============================================================ */

.am-more-products__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}


/* EYEBROW */

.am-more-products__eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 13px;
}

.am-more-products__eyebrow span {
    width: 38px;
    height: 1px;

    background: var(--gold-main);
}

.am-more-products__eyebrow p {
    margin: 0;

    color: #9b7021;

    font-family: "Manrope", sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* TITLE */

.am-more-products__header h2 {
    margin: 0;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;

    font-size: clamp(44px, 4vw, 60px);
    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -1.5px;
}

.am-more-products__header h2 em {
    color: var(--gold-main);

    font-weight: 500;
}


/* ============================================================
   VIEW ALL
============================================================ */

.am-more-products__all {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    padding-bottom: 4px;

    color: var(--primary-color);

    font-family: "Manrope", sans-serif;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.am-more-products__all > span {
    width: 37px;
    height: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(85, 0, 6, 0.22);
    border-radius: 50%;

    transition: 0.3s ease;
}

.am-more-products__all i {
    font-size: 10px;

    transform: rotate(-45deg);

    transition: 0.3s ease;
}

.am-more-products__all:hover {
    color: var(--gold-main);
}

.am-more-products__all:hover > span {
    border-color: var(--primary-color);

    background: var(--primary-color);

    color: var(--gold-light);
}

.am-more-products__all:hover i {
    transform: rotate(0deg);
}


/* ============================================================
   PRODUCT GRID
============================================================ */

.am-more-products__grid {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 18px;
}


/* ============================================================
   CARD
============================================================ */

.am-more-products__card {
    min-width: 0;
}


/* ============================================================
   IMAGE
============================================================ */

.am-more-products__image {
    position: relative;

    display: block;

    width: 100%;
    height: 285px;

    overflow: hidden;

    border-radius: 8px;

    background: #f4ebdf;

    text-decoration: none;
}

.am-more-products__image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(50, 0, 4, 0.12)
        );

    opacity: 0;

    transition: opacity 0.35s ease;
}

.am-more-products__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.am-more-products__card:hover
.am-more-products__image img {
    transform: scale(1.055);
}

.am-more-products__card:hover
.am-more-products__image::after {
    opacity: 1;
}


/* ============================================================
   FRESH BADGE
============================================================ */

.am-more-products__fresh {
    position: absolute;

    z-index: 3;

    top: 13px;
    left: 13px;

    padding: 6px 11px;

    border-radius: 20px;

    background: rgba(255, 253, 248, 0.92);

    color: var(--primary-color);

    font-family: "Manrope", sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    backdrop-filter: blur(5px);
}


/* ============================================================
   HOVER ARROW
============================================================ */

.am-more-products__quick {
    position: absolute;

    z-index: 4;

    right: 13px;
    bottom: 13px;

    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-color);

    color: var(--gold-light);

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.am-more-products__quick i {
    font-size: 10px;

    transform: rotate(-45deg);
}

.am-more-products__card:hover
.am-more-products__quick {
    opacity: 1;

    transform: translateY(0);
}


/* ============================================================
   PRODUCT INFO
============================================================ */

.am-more-products__info {
    padding: 16px 2px 0;
}

.am-more-products__category {
    display: block;

    margin-bottom: 7px;

    color: #a17627;

    font-family: "Manrope", sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


/* ============================================================
   NAME + PRICE
============================================================ */

.am-more-products__name-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 10px;
}

.am-more-products__name-row h3 {
    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: 21px;
    font-weight: 600;

    line-height: 1.25;
}

.am-more-products__name-row h3 a {
    color: var(--primary-color);

    text-decoration: none;

    transition: color 0.25s ease;
}

.am-more-products__name-row h3 a:hover {
    color: var(--gold-main);
}

.am-more-products__name-row strong {
    flex-shrink: 0;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;

    font-size: 16px;
    font-weight: 600;
}


/* DESCRIPTION */

.am-more-products__info > p {
    margin: 8px 0 0;

    color: #88787a;

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    line-height: 1.6;
}


/* ============================================================
   EMPTY
============================================================ */

.am-more-products__empty {
    grid-column: 1 / -1;

    padding: 50px;

    border: 1px dashed rgba(212, 175, 55, 0.35);

    color: #79696b;

    text-align: center;
}


/* ============================================================
   MOBILE BUTTON
============================================================ */

.am-more-products__mobile-all {
    display: none;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

    .am-more-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 35px 20px;
    }

    .am-more-products__image {
        height: 330px;
    }

}


/* ============================================================
   SMALL TABLET
============================================================ */

@media (max-width: 800px) {

    .am-more-products {
        padding: 80px 0 90px;
    }

    .am-more-products__container {
        width: calc(100% - 36px);
    }

    .am-more-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 560px) {

    .am-more-products {
        padding: 70px 0 75px;
    }

    .am-more-products__container {
        width: 100%;
    }

    .am-more-products__header {
        align-items: center;

        margin-bottom: 35px;

        padding: 0 18px;

        text-align: center;
    }

    .am-more-products__header > div {
        width: 100%;
    }

    .am-more-products__eyebrow {
        justify-content: center;
    }

    .am-more-products__header h2 {
        font-size: clamp(40px, 11vw, 50px);
    }

    .am-more-products__all {
        display: none;
    }


    /* HORIZONTAL SWIPE */

    .am-more-products__grid {
        display: flex;

        gap: 14px;

        padding:
            0
            18px
            18px;

        overflow-x: auto;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .am-more-products__grid::-webkit-scrollbar {
        display: none;
    }

    .am-more-products__card {
        width: 67vw;
        max-width: 280px;

        flex: 0 0 67vw;

        scroll-snap-align: start;
    }

    .am-more-products__image {
        height: 300px;
    }

    .am-more-products__quick {
        opacity: 1;

        transform: none;
    }


    /* VIEW ALL */

    .am-more-products__mobile-all {
        display: flex;
        justify-content: center;

        padding-top: 18px;
    }

    .am-more-products__mobile-all a {
        display: inline-flex;
        align-items: center;

        gap: 12px;

        padding: 13px 21px;

        border: 1px solid rgba(85, 0, 6, 0.35);
        border-radius: 30px;

        color: var(--primary-color);

        font-size: 13px;
        font-weight: 700;

        text-decoration: none;
    }

    .am-more-products__mobile-all i {
        font-size: 10px;

        transform: rotate(-45deg);
    }

}


/* ============================================================
   AMRITALAYA — GALLERY
============================================================ */

.am-gallery {
    position: relative;

    width: 100%;
    max-width: 100%;

    padding: 115px 0 120px;

    overflow: hidden;

    background: #fffaf2;
}

.am-gallery__container {
    width: calc(100% - 80px);
    max-width: 1380px;

    margin: 0 auto;
}


/* ============================================================
   HEADER
============================================================ */

.am-gallery__header {
    max-width: 720px;

    margin: 0 auto 60px;

    text-align: center;
}

.am-gallery__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-bottom: 16px;
}

.am-gallery__eyebrow span {
    width: 38px;
    height: 1px;

    background: var(--gold-main);
}

.am-gallery__eyebrow p {
    margin: 0;

    color: #9b7021;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.am-gallery__header h2 {
    margin: 0;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;

    font-size: clamp(50px, 5vw, 70px);
    font-weight: 500;

    line-height: 1.04;

    letter-spacing: -1.8px;
}

.am-gallery__header h2 em {
    color: var(--gold-main);

    font-weight: 500;
}

.am-gallery__header > p {
    max-width: 570px;

    margin: 22px auto 0;

    color: #7e6e70;

    font-size: 15px;

    line-height: 1.8;
}


/* ============================================================
   GALLERY GRID
============================================================ */

.am-gallery__grid {
    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr
        1fr;

    grid-template-rows:
        280px
        280px;

    gap: 15px;
}


/* ============================================================
   ITEM
============================================================ */

.am-gallery__item {
    position: relative;

    display: block;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    background: #eee3d6;

    text-decoration: none;
}


/* LARGE LEFT */

.am-gallery__item--1 {
    grid-row: 1 / 3;

    border-radius: 180px 8px 8px 8px;
}


/* TOP MIDDLE */

.am-gallery__item--2 {
    border-radius: 8px;
}


/* TOP RIGHT */

.am-gallery__item--3 {
    border-radius: 8px 140px 8px 8px;
}


/* BOTTOM MIDDLE */

.am-gallery__item--4 {
    border-radius: 8px;
}


/* BOTTOM RIGHT */

.am-gallery__item--5 {
    border-radius: 8px;
}


/*
  If six images are returned, make #6 a floating-style
  detail image rather than breaking the layout.
*/

.am-gallery__item--6 {
    display: none;
}


/* ============================================================
   IMAGE
============================================================ */

.am-gallery__item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1),
        filter 0.5s ease;
}

.am-gallery__item:hover img {
    transform: scale(1.065);
}


/* ============================================================
   OVERLAY
============================================================ */

.am-gallery__overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(48, 0, 4, 0.68) 100%
        );

    opacity: 0.45;

    transition: opacity 0.35s ease;
}

.am-gallery__item:hover
.am-gallery__overlay {
    opacity: 0.8;
}


/* ============================================================
   CONTENT
============================================================ */

.am-gallery__content {
    position: absolute;

    z-index: 3;

    left: 25px;
    bottom: 22px;

    color: #fff;
}

.am-gallery__content > span {
    display: block;

    margin-bottom: 4px;

    color: var(--gold-light);

    font-family: "Playfair Display", serif;

    font-size: 12px;

    font-style: italic;
}

.am-gallery__content h3 {
    margin: 0;

    color: #fff8e9;

    font-family: "Playfair Display", serif;

    font-size: 21px;
    font-weight: 500;

    line-height: 1.2;

    transform: translateY(5px);

    transition: transform 0.35s ease;
}

.am-gallery__item:hover
.am-gallery__content h3 {
    transform: translateY(0);
}


/* ============================================================
   VIEW ICON
============================================================ */

.am-gallery__view {
    position: absolute;

    z-index: 4;

    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 50%;

    background: rgba(85, 0, 6, 0.25);

    color: #fff;

    font-size: 11px;

    backdrop-filter: blur(6px);

    opacity: 0;

    transform: scale(0.8);

    transition: 0.3s ease;
}

.am-gallery__item:hover
.am-gallery__view {
    opacity: 1;

    transform: scale(1);
}


/* ============================================================
   FOOTER LINK
============================================================ */

.am-gallery__footer {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-top: 45px;
}

.am-gallery__footer > span {
    width: 65px;
    height: 1px;

    background: rgba(212,175,55,0.4);
}

.am-gallery__footer a {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    color: var(--primary-color);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.am-gallery__footer a i {
    font-size: 10px;

    transform: rotate(-45deg);

    transition: 0.3s ease;
}

.am-gallery__footer a:hover {
    color: var(--gold-main);
}

.am-gallery__footer a:hover i {
    transform: rotate(0);
}


/* ============================================================
   EMPTY
============================================================ */

.am-gallery__empty {
    grid-column: 1 / -1;

    padding: 70px;

    text-align: center;

    border: 1px dashed rgba(212,175,55,0.35);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 950px) {

    .am-gallery {
        padding: 90px 0 100px;
    }

    .am-gallery__container {
        width: calc(100% - 40px);
    }

    .am-gallery__grid {
        grid-template-columns: repeat(2, 1fr);

        grid-template-rows:
            420px
            280px
            280px;
    }

    .am-gallery__item--1 {
        grid-column: 1 / 3;
        grid-row: auto;

        border-radius: 180px 180px 8px 8px;
    }

    .am-gallery__item--2,
    .am-gallery__item--3,
    .am-gallery__item--4,
    .am-gallery__item--5 {
        grid-row: auto;

        border-radius: 8px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .am-gallery {
        padding: 70px 0 75px;
    }

    .am-gallery__container {
        width: calc(100% - 30px);
    }

    .am-gallery__header {
        margin-bottom: 40px;
    }

    .am-gallery__header h2 {
        font-size: clamp(43px, 12vw, 55px);
    }


    /* MOBILE COLLAGE */

    .am-gallery__grid {
        grid-template-columns:
            1.15fr
            0.85fr;

        grid-template-rows:
            310px
            200px
            220px;

        gap: 8px;
    }

    .am-gallery__item--1 {
        grid-column: 1 / 3;

        border-radius:
            130px
            130px
            6px
            6px;
    }

    .am-gallery__item--2,
    .am-gallery__item--3,
    .am-gallery__item--4,
    .am-gallery__item--5 {
        border-radius: 6px;
    }

    .am-gallery__content {
        left: 16px;
        bottom: 15px;
    }

    .am-gallery__content h3 {
        font-size: 17px;
    }

    .am-gallery__view {
        display: none;
    }

    .am-gallery__footer {
        margin-top: 35px;
    }

    .am-gallery__footer > span {
        width: 25px;
    }

}




/* ================================================================
   AMRITALAYA — TESTIMONIALS
   Traditional Editorial Treatment
================================================================ */

.am-testimonials {
    position: relative;

    width: 100%;

    padding: 105px 0 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 25%,
            rgba(212, 175, 55, 0.055),
            transparent 25%
        ),
        #fffaf1;
}


/* ================================================================
   LARGE BACKGROUND QUOTE
================================================================ */

.am-testimonials__watermark {
    position: absolute;

    right: -15px;
    top: -115px;

    color: rgba(85, 0, 6, 0.022);

    font-family: "Playfair Display", Georgia, serif;

    font-size: 500px;
    font-weight: 400;

    line-height: 1;

    pointer-events: none;
}


/* ================================================================
   CONTAINER
================================================================ */

.am-testimonials__container {
    position: relative;
    z-index: 2;

    width: calc(100% - 80px);
    max-width: 1320px;

    margin: 0 auto;
}


/* ================================================================
   HEADER
================================================================ */

.am-testimonials__header {
    margin-bottom: 78px;
}


/* Eyebrow */

.am-testimonials__eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 17px;
}


.am-testimonials__eyebrow span {
    display: block;

    width: 40px;
    height: 1px;

    background: var(--gold-main);
}


.am-testimonials__eyebrow p {
    margin: 0;

    color: #9b6b16;

    font-family: "Manrope", sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2.3px;

    text-transform: uppercase;
}


/* ================================================================
   HEADER ROW
================================================================ */

.am-testimonials__heading-row {
    display: grid;

    grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.55fr);

    align-items: end;

    gap: 90px;
}


/* Heading */

.am-testimonials__heading-row h2 {
    max-width: 720px;

    margin: 0;

    color: var(--primary-color);

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(48px, 5vw, 70px);
    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -2px;
}


.am-testimonials__heading-row h2 em {
    display: block;

    color: var(--gold-main);

    font-weight: 500;
    font-style: italic;
}


/* Intro */

.am-testimonials__intro {
    padding: 5px 0 5px 27px;

    border-left: 1px solid rgba(212, 175, 55, 0.45);
}


.am-testimonials__intro > p {
    max-width: 390px;

    margin: 0;

    color: #796d69;

    font-family: "Manrope", sans-serif;

    font-size: 12.5px;

    line-height: 1.8;
}


.am-testimonials__intro > span {
    display: block;

    margin-top: 14px;

    color: var(--primary-color);

    font-family: "Playfair Display", Georgia, serif;

    font-size: 11px;
    font-style: italic;
}


/* ================================================================
   OWL CAROUSEL
================================================================ */

.am-testimonials__carousel {
    position: relative;
}


.am-testimonials__carousel .owl-stage {
    display: flex;

    align-items: stretch;
}


.am-testimonials__carousel .owl-item {
    display: flex;
}


.am-testimonials__carousel .owl-item > .am-testimonials__item {
    width: 100%;
}


/* ================================================================
   TESTIMONIAL ITEM
================================================================ */

.am-testimonials__item {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 330px;

    padding: 35px 35px 30px;

    background: transparent;

    border-top: 1px solid rgba(212, 175, 55, 0.42);
    border-bottom: 1px solid rgba(85, 0, 6, 0.09);
}


/*
|--------------------------------------------------------------------------
| Vertical divider between stories
|--------------------------------------------------------------------------
*/

.am-testimonials__item::after {
    content: "";

    position: absolute;

    top: 35px;
    right: -1px;
    bottom: 35px;

    width: 1px;

    background: rgba(212, 175, 55, 0.18);
}


/* ================================================================
   NUMBER
================================================================ */

.am-testimonials__number {
    position: absolute;

    top: -31px;
    left: 6px;

    color: rgba(85, 0, 6, 0.13);

    font-family: "Playfair Display", Georgia, serif;

    font-size: 35px;
    font-weight: 400;
    font-style: italic;

    line-height: 1;
}


/* ================================================================
   QUOTE
================================================================ */

.am-testimonials__quote {
    position: absolute;

    top: 16px;
    right: 27px;

    color: rgba(212, 175, 55, 0.16);

    font-family: Georgia, serif;

    font-size: 95px;
    font-weight: 400;

    line-height: 1;

    pointer-events: none;
}


/* ================================================================
   RATING
================================================================ */

.am-testimonials__rating {
    position: relative;
    z-index: 2;

    display: flex;

    gap: 4px;

    margin-bottom: 27px;
}


.am-testimonials__rating i {
    color: var(--gold-main);

    font-size: 9px;
}


.am-testimonials__rating i.inactive {
    color: rgba(212, 175, 55, 0.2);
}


/* ================================================================
   MESSAGE
================================================================ */

.am-testimonials__item blockquote {
    position: relative;
    z-index: 2;

    flex: 1;

    margin: 0;
    padding: 0;

    color: #514345;

    border: 0;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 18px;
    font-weight: 400;
    font-style: normal;

    line-height: 1.7;
}


/* ================================================================
   CUSTOMER
================================================================ */

.am-testimonials__customer {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 30px;
    padding-top: 20px;

    border-top: 1px solid rgba(85, 0, 6, 0.075);
}


/* ================================================================
   AVATAR
================================================================ */

.am-testimonials__avatar {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    padding: 3px;

    background: #fffaf1;

    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 50%;
}


.am-testimonials__avatar img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


.am-testimonials__avatar-placeholder {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    background: var(--primary-color);

    color: var(--gold-soft);

    border-radius: 50%;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 16px;
    font-weight: 500;
}


/* ================================================================
   CUSTOMER INFO
================================================================ */

.am-testimonials__customer-info h3 {
    margin: 0 0 3px;

    color: var(--primary-color);

    font-family: "Playfair Display", Georgia, serif;

    font-size: 15px;
    font-weight: 600;
}


.am-testimonials__customer-info span {
    display: block;

    color: #958783;

    font-family: "Manrope", sans-serif;

    font-size: 9px;

    letter-spacing: 0.2px;
}


/* ================================================================
   OWL DOTS
================================================================ */

.am-testimonials__carousel .owl-dots {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 42px !important;
}


.am-testimonials__carousel .owl-dot span {
    display: block;

    width: 5px !important;
    height: 5px !important;

    margin: 0 !important;

    background: rgba(85, 0, 6, 0.2) !important;

    border-radius: 50% !important;

    transition:
        width 0.3s ease,
        background 0.3s ease !important;
}


.am-testimonials__carousel .owl-dot.active span {
    width: 27px !important;

    background: var(--gold-main) !important;

    border-radius: 10px !important;
}


/* ================================================================
   EMPTY STATE
================================================================ */

.am-testimonials__empty {
    max-width: 480px;

    margin: 0 auto;

    padding: 45px 20px;

    border-top: 1px solid rgba(212, 175, 55, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);

    text-align: center;
}


.am-testimonials__empty > span {
    display: block;

    margin-bottom: 9px;

    color: #9b6b16;

    font-family: "Manrope", sans-serif;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.am-testimonials__empty p {
    margin: 0;

    color: var(--primary-color);

    font-family: "Playfair Display", Georgia, serif;

    font-size: 20px;
    font-style: italic;
}


/* ================================================================
   FOOTER
================================================================ */

.am-testimonials__footer {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 40px;
}


.am-testimonials__footer > span {
    display: block;

    width: 42px;
    height: 1px;

    background: rgba(212, 175, 55, 0.4);
}


.am-testimonials__footer p {
    margin: 0;

    color: #958682;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 11px;
    font-style: italic;
}


/* ================================================================
   TABLET
================================================================ */

@media (max-width: 991.98px) {

    .am-testimonials {
        padding: 85px 0 75px;
    }


    .am-testimonials__container {
        width: calc(100% - 40px);
    }


    .am-testimonials__heading-row {
        grid-template-columns: 1fr 0.65fr;

        gap: 50px;
    }


    .am-testimonials__heading-row h2 {
        font-size: 54px;
    }


    .am-testimonials__header {
        margin-bottom: 65px;
    }

}


/* ================================================================
   MOBILE
================================================================ */

@media (max-width: 767.98px) {

    .am-testimonials {
        padding: 65px 0 60px;
    }


    .am-testimonials__watermark {
        display: none;
    }


    .am-testimonials__container {
        width: calc(100% - 30px);
    }


    /* Header */

    .am-testimonials__header {
        margin-bottom: 52px;
    }


    .am-testimonials__eyebrow {
        gap: 10px;

        margin-bottom: 13px;
    }


    .am-testimonials__eyebrow span {
        width: 28px;
    }


    .am-testimonials__eyebrow p {
        font-size: 8px;

        letter-spacing: 1.8px;
    }


    .am-testimonials__heading-row {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .am-testimonials__heading-row h2 {
        max-width: 500px;

        font-size: 42px;

        letter-spacing: -1.2px;
    }


    .am-testimonials__intro {
        max-width: 450px;

        padding-left: 18px;
    }


    .am-testimonials__intro > p {
        font-size: 11.5px;

        line-height: 1.7;
    }


    /* Item */

    .am-testimonials__item {
        min-height: 315px;

        padding: 30px 24px 25px;
    }


    .am-testimonials__item::after {
        display: none;
    }


    .am-testimonials__number {
        top: -25px;

        font-size: 27px;
    }


    .am-testimonials__quote {
        top: 12px;
        right: 17px;

        font-size: 73px;
    }


    .am-testimonials__rating {
        margin-bottom: 21px;
    }


    .am-testimonials__item blockquote {
        font-size: 16px;

        line-height: 1.7;
    }


    .am-testimonials__customer {
        margin-top: 24px;
        padding-top: 17px;
    }


    .am-testimonials__avatar {
        width: 42px;
        height: 42px;

        flex-basis: 42px;
    }


    .am-testimonials__customer-info h3 {
        font-size: 14px;
    }


    .am-testimonials__footer {
        margin-top: 32px;
    }

}


/* ================================================================
   SMALL MOBILE
================================================================ */

@media (max-width: 480px) {

    .am-testimonials__heading-row h2 {
        font-size: 38px;
    }


    .am-testimonials__item {
        min-height: 300px;

        padding: 28px 21px 23px;
    }


    .am-testimonials__item blockquote {
        font-size: 15px;
    }


    .am-testimonials__footer > span {
        width: 22px;
    }


    .am-testimonials__footer p {
        font-size: 10px;
    }

}

/* ============================================================
   AMRITALAYA — CONTACT
============================================================ */

.am-contact {
    position: relative;
    width: 100%;
    padding: 120px 0 125px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(212, 175, 55, 0.08),
            transparent 24%
        ),
        #fffaf2;
}

.am-contact__container {
    width: calc(100% - 80px);
    max-width: 1360px;
    margin: 0 auto;
}


/* ============================================================
   HEADER
============================================================ */

.am-contact__header {
    max-width: 760px;
    margin-bottom: 65px;
}

.am-contact__eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 17px;
}

.am-contact__eyebrow > span {
    width: 42px;
    height: 1px;
    background: var(--gold-main);
}

.am-contact__eyebrow p {
    margin: 0;

    color: #9b7021;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.am-contact__header h2 {
    margin: 0;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;
    font-size: clamp(50px, 5vw, 70px);
    font-weight: 500;

    line-height: 1.04;
    letter-spacing: -1.8px;
}

.am-contact__header h2 em {
    display: block;

    color: var(--gold-main);

    font-weight: 500;
}

.am-contact__header > p {
    max-width: 570px;

    margin: 23px 0 0;

    color: #7d6d70;

    font-family: "Manrope", sans-serif;
    font-size: 15px;

    line-height: 1.8;
}


/* ============================================================
   MAIN GRID
============================================================ */

.am-contact__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    border: 1px solid rgba(212, 175, 55, 0.25);

    background: #fffdf9;
}


/* ============================================================
   FORM AREA
============================================================ */

.am-contact__form-wrap {
    position: relative;

    padding: 55px 60px 60px;

    border-right: 1px solid rgba(212, 175, 55, 0.22);
}

.am-contact__form-number,
.am-contact__details-number {
    position: absolute;

    top: 28px;
    right: 32px;

    color: rgba(85, 0, 6, 0.09);

    font-family: "Playfair Display", serif;
    font-size: 50px;
    font-style: italic;
}

.am-contact__form-heading,
.am-contact__details-heading {
    margin-bottom: 38px;
}

.am-contact__form-heading small,
.am-contact__details-heading small {
    display: block;

    margin-bottom: 8px;

    color: #a17627;

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.7px;
}

.am-contact__form-heading h3,
.am-contact__details-heading h3 {
    max-width: 430px;

    margin: 0;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;
    font-size: 34px;
    font-weight: 500;

    line-height: 1.15;
}


/* ============================================================
   FORM
============================================================ */

.am-contact__form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 27px 25px;
}

.am-contact__field {
    position: relative;
}

.am-contact__field--full {
    grid-column: 1 / -1;
}

.am-contact__field label {
    display: block;

    margin-bottom: 9px;

    color: var(--primary-color);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.4px;
}

.am-contact__field input,
.am-contact__field textarea {
    width: 100%;

    padding: 13px 0;

    border: 0;
    border-bottom: 1px solid rgba(85, 0, 6, 0.18);

    outline: none;

    background: transparent;

    color: #4f4042;

    font-family: "Manrope", sans-serif;
    font-size: 14px;

    transition: border-color 0.25s ease;
}

.am-contact__field textarea {
    min-height: 100px;

    resize: vertical;
}

.am-contact__field input::placeholder,
.am-contact__field textarea::placeholder {
    color: #b1a5a6;
}

.am-contact__field input:focus,
.am-contact__field textarea:focus {
    border-color: var(--gold-main);
}


/* ERROR */

.am-contact__error {
    display: block;

    margin-top: 6px;

    color: #a3232d;

    font-size: 11px;
}


/* ============================================================
   SUCCESS
============================================================ */

.am-contact__success {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 28px;
    padding: 13px 16px;

    border: 1px solid rgba(212, 175, 55, 0.3);

    background: #fff9e9;

    color: var(--primary-color);

    font-size: 13px;
}


/* ============================================================
   SUBMIT
============================================================ */

.am-contact__submit {
    grid-column: 1 / -1;

    width: fit-content;
    min-height: 52px;

    display: inline-flex;
    align-items: center;

    gap: 20px;

    margin-top: 5px;
    padding: 6px 7px 6px 24px;

    border: 0;
    border-radius: 30px;

    background: var(--primary-color);

    color: var(--gold-soft);

    cursor: pointer;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;

    transition: transform 0.3s ease;
}

.am-contact__submit i {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gold-main);

    color: var(--primary-color);

    font-size: 10px;

    transform: rotate(-45deg);

    transition: transform 0.3s ease;
}

.am-contact__submit:hover {
    transform: translateY(-2px);
}

.am-contact__submit:hover i {
    transform: rotate(0deg);
}


/* ============================================================
   DETAILS
============================================================ */

.am-contact__details {
    position: relative;

    padding: 55px 50px;

    background:
        linear-gradient(
            145deg,
            #570007,
            #430005
        );
}

.am-contact__details-number {
    color: rgba(245, 210, 122, 0.12);
}

.am-contact__details-heading small {
    color: var(--gold-main);
}

.am-contact__details-heading h3 {
    color: #fff4dc;
}


/* ============================================================
   DETAIL ROW
============================================================ */

.am-contact__detail {
    display: grid;
    grid-template-columns: 48px 1fr;

    gap: 18px;

    padding: 23px 0;

    border-top: 1px solid rgba(245, 210, 122, 0.14);
}

.am-contact__detail-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50%;

    color: var(--gold-light);

    font-size: 14px;
}

.am-contact__detail span {
    display: block;

    margin-bottom: 5px;

    color: rgba(245, 210, 122, 0.55);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.4px;
}

.am-contact__detail h4 {
    margin: 0 0 5px;

    color: #fff2d4;

    font-family: "Playfair Display", serif;
    font-size: 19px;
    font-weight: 500;
}

.am-contact__detail h4 a {
    color: inherit;
    text-decoration: none;
}

.am-contact__detail p {
    margin: 0;

    color: rgba(255, 244, 220, 0.6);

    font-size: 12px;

    line-height: 1.65;
}


/* HOURS */

.am-contact__hours p {
    display: flex;
    justify-content: space-between;

    gap: 20px;
}

.am-contact__hours strong,
.am-contact__hours small {
    font-size: 12px;
    font-weight: 400;
}


/* ============================================================
   DIRECTION BUTTON
============================================================ */

.am-contact__direction {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    margin-top: 25px;

    color: var(--gold-soft);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.am-contact__direction > span {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gold-main);

    color: var(--primary-color);
}


/* ============================================================
   MAP
============================================================ */

.am-contact__map {
    position: relative;

    width: 100%;
    height: 430px;

    margin-top: 28px;

    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.25);

    background: #eee7dd;
}

.am-contact__map iframe {
    display: block;

    width: 100%;
    height: 100%;
}


/* MAP LABEL */

.am-contact__map-label {
    position: absolute;

    z-index: 5;

    top: 25px;
    left: 25px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 12px 18px 12px 10px;

    border: 1px solid rgba(212, 175, 55, 0.25);

    background: rgba(255, 253, 248, 0.94);

    box-shadow: 0 10px 30px rgba(85, 0, 6, 0.08);

    backdrop-filter: blur(8px);
}

.am-contact__map-label > span {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-color);

    color: var(--gold-light);
}

.am-contact__map-label small,
.am-contact__map-label strong {
    display: block;
}

.am-contact__map-label small {
    margin-bottom: 2px;

    color: #a17627;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.am-contact__map-label strong {
    color: var(--primary-color);

    font-family: "Playfair Display", serif;
    font-size: 15px;
    font-weight: 600;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .am-contact {
        padding: 90px 0;
    }

    .am-contact__container {
        width: calc(100% - 40px);
    }

    .am-contact__grid {
        grid-template-columns: 1fr;
    }

    .am-contact__form-wrap {
        border-right: 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .am-contact {
        padding: 70px 0;
    }

    .am-contact__container {
        width: calc(100% - 30px);
    }

    .am-contact__header {
        margin-bottom: 42px;

        text-align: center;
    }

    .am-contact__eyebrow {
        justify-content: center;
    }

    .am-contact__header h2 {
        font-size: clamp(42px, 11vw, 52px);
    }

    .am-contact__header > p {
        margin-left: auto;
        margin-right: auto;
    }


    /* FORM */

    .am-contact__form-wrap,
    .am-contact__details {
        padding: 42px 25px;
    }

    .am-contact__form {
        grid-template-columns: 1fr;
    }

    .am-contact__field--full,
    .am-contact__submit {
        grid-column: auto;
    }

    .am-contact__form-heading h3,
    .am-contact__details-heading h3 {
        font-size: 29px;
    }

    .am-contact__form-number,
    .am-contact__details-number {
        top: 20px;
        right: 20px;

        font-size: 38px;
    }


    /* MAP */

    .am-contact__map {
        height: 360px;

        margin-top: 18px;
    }

    .am-contact__map-label {
        top: 15px;
        left: 15px;
    }

}



/* ============================================================
   LOCATION / MAP AREA
============================================================ */

.am-contact__location {
    margin-top: 35px;
}


/* LOCATION HEADER */

.am-contact__location-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    padding: 35px 5px 30px;
}

.am-contact__location-label {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 10px;
}

.am-contact__location-label > span {
    width: 35px;
    height: 1px;

    background: var(--gold-main);
}

.am-contact__location-label small {
    color: #9b7021;

    font-family: "Manrope", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.am-contact__location-head h3 {
    margin: 0;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;

    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 500;

    line-height: 1.08;
}

.am-contact__location-head h3 em {
    color: var(--gold-main);

    font-weight: 500;
}


/* GOOGLE MAP BUTTON */

.am-contact__location-head > a {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    color: var(--primary-color);

    font-family: "Manrope", sans-serif;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.am-contact__location-head > a > span {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(85, 0, 6, 0.25);
    border-radius: 50%;

    transition: 0.3s ease;
}

.am-contact__location-head > a i {
    font-size: 12px;
}

.am-contact__location-head > a:hover > span {
    border-color: var(--primary-color);

    background: var(--primary-color);

    color: var(--gold-light);
}


/* ============================================================
   MAP
============================================================ */

.am-contact__map {
    position: relative;

    width: 100%;
    height: 480px;

    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.28);

    background: #eee7dd;
}

.am-contact__map iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;

    filter: saturate(0.85) contrast(0.95);
}


/* ============================================================
   MAP FLOATING STORE CARD
============================================================ */

.am-contact__map-card {
    position: absolute;

    z-index: 5;

    left: 25px;
    bottom: 25px;

    width: min(390px, calc(100% - 50px));

    display: grid;
    grid-template-columns: 52px 1fr;

    align-items: center;

    gap: 16px;

    padding: 18px 20px;

    border: 1px solid rgba(212, 175, 55, 0.28);

    background: rgba(255, 253, 248, 0.95);

    box-shadow:
        0 18px 50px rgba(85, 0, 6, 0.12);

    backdrop-filter: blur(10px);
}

.am-contact__map-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-color);

    color: var(--gold-light);

    font-size: 17px;
}

.am-contact__map-card small {
    display: block;

    margin-bottom: 3px;

    color: #9b7021;

    font-family: "Manrope", sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.am-contact__map-card strong {
    display: block;

    color: var(--primary-color);

    font-family: "Playfair Display", serif;

    font-size: 20px;
    font-weight: 600;
}

.am-contact__map-card p {
    margin: 4px 0 0;

    color: #756568;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    line-height: 1.5;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .am-contact__location-head {
        align-items: center;
    }

    .am-contact__map {
        height: 420px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .am-contact__location {
        margin-top: 20px;
    }

    .am-contact__location-head {
        display: block;

        padding: 30px 0 25px;
    }

    .am-contact__location-head h3 {
        font-size: 38px;
    }

    .am-contact__location-head > a {
        margin-top: 22px;

        font-size: 14px;
    }

    .am-contact__map {
        height: 430px;
    }

    .am-contact__map-card {
        left: 12px;
        bottom: 12px;

        width: calc(100% - 24px);

        grid-template-columns: 45px 1fr;

        gap: 12px;

        padding: 14px;
    }

    .am-contact__map-icon {
        width: 45px;
        height: 45px;

        font-size: 14px;
    }

    .am-contact__map-card strong {
        font-size: 18px;
    }

    .am-contact__map-card p {
        font-size: 13px;
    }

}







































































/* ============================================================
   AMRITALAYA — FOOTER
============================================================ */

.am-footer {
    position: relative;

    width: 100%;
    max-width: 100%;

    overflow: hidden;

    background: var(--primary-color);
    color: #fff3d7;
}


/* ============================================================
   INTRO
============================================================ */

.am-footer__intro {
    position: relative;

    padding: 100px 30px 85px;

    border-bottom: 1px solid rgba(212, 175, 55, 0.18);

    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(212, 175, 55, 0.16),
            transparent 45%
        );
}

.am-footer__intro-inner {
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}


/* EYEBROW */

.am-footer__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-bottom: 22px;
}

.am-footer__eyebrow > span {
    width: 45px;
    height: 1px;

    background: var(--gold-main);
}

.am-footer__eyebrow p {
    margin: 0;

    color: var(--gold-main);

    font-family: "Manrope", sans-serif;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2.5px;
}


/* TITLE */

.am-footer__intro h2 {
    max-width: 850px;

    margin: 0 auto;

    color: #fff4d9;

    font-family: "Playfair Display", serif;

    font-size: clamp(52px, 5.4vw, 78px);
    font-weight: 500;

    line-height: 1.04;

    letter-spacing: -2px;
}

.am-footer__intro h2 em {
    display: block;

    color: var(--gold-main);

    font-weight: 500;
}

.am-footer__intro-text {
    max-width: 620px;

    margin: 27px auto 0;

    color: rgba(255, 243, 215, 0.72);

    font-family: "Manrope", sans-serif;

    font-size: 16px;

    line-height: 1.8;
}


/* ============================================================
   MAIN
============================================================ */

.am-footer__main {
    padding: 80px 0 75px;
}

.am-footer__container {
    width: calc(100% - 90px);
    max-width: 1380px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.45fr
        0.7fr
        0.85fr
        1.15fr;

    gap: 65px;
}


/* ============================================================
   BRAND
============================================================ */

.am-footer__brand {
    padding-right: 30px;
}

.am-footer__logo {
    display: inline-block;

    margin-bottom: 25px;
}

.am-footer__logo img {
    display: block;

    width: auto;
    height: 125px;

    object-fit: contain;
}

.am-footer__brand > p {
    max-width: 345px;

    margin: 0;

    color: rgba(255, 243, 215, 0.68);

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    line-height: 1.8;
}


/* ============================================================
   SOCIALS
============================================================ */

.am-footer__socials {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-top: 30px;
}

.am-footer__socials a {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50%;

    color: var(--gold-light);

    font-size: 16px;

    text-decoration: none;

    transition: 0.3s ease;
}

.am-footer__socials a:hover {
    border-color: var(--gold-main);

    background: var(--gold-main);

    color: var(--primary-color);

    transform: translateY(-3px);
}


/* ============================================================
   COLUMNS
============================================================ */

.am-footer__column-label {
    display: block;

    margin-bottom: 11px;

    color: var(--gold-main);

    font-family: "Manrope", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.am-footer__column h3 {
    margin: 0 0 28px;

    color: #fff4d9;

    font-family: "Playfair Display", serif;

    font-size: 27px;
    font-weight: 500;

    line-height: 1.2;
}


/* ============================================================
   LINKS
============================================================ */

.am-footer__column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.am-footer__column li {
    margin-bottom: 15px;
}

.am-footer__column li:last-child {
    margin-bottom: 0;
}

.am-footer__column li a {
    position: relative;

    display: inline-block;

    color: rgba(255, 243, 215, 0.70);

    font-family: "Manrope", sans-serif;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.am-footer__column li a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -4px;

    width: 0;
    height: 1px;

    background: var(--gold-main);

    transition: width 0.3s ease;
}

.am-footer__column li a:hover {
    color: var(--gold-light);

    transform: translateX(3px);
}

.am-footer__column li a:hover::after {
    width: 100%;
}


/* ============================================================
   CONTACT
============================================================ */

.am-footer__contact {
    display: grid;

    grid-template-columns: 38px 1fr;

    gap: 13px;

    margin-bottom: 23px;
}

.am-footer__contact > i {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(212, 175, 55, 0.30);
    border-radius: 50%;

    color: var(--gold-main);

    font-size: 13px;
}

.am-footer__contact div > span {
    display: block;

    margin-bottom: 5px;

    color: rgba(212, 175, 55, 0.70);

    font-family: "Manrope", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}

.am-footer__contact p,
.am-footer__contact a {
    margin: 0;

    color: rgba(255, 243, 215, 0.76);

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    line-height: 1.65;

    text-decoration: none;
}

.am-footer__contact a:hover {
    color: var(--gold-light);
}


/* ============================================================
   LARGE BRAND LINE
============================================================ */

.am-footer__brand-line {
    width: calc(100% - 90px);
    max-width: 1380px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 28px;

    padding: 38px 0;

    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.am-footer__brand-line > span {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 175, 55, 0.35),
            transparent
        );
}

.am-footer__brand-line h2 {
    margin: 0;

    color: rgba(255, 241, 207, 0.13);

    font-family: "Playfair Display", serif;

    font-size: clamp(50px, 6vw, 86px);
    font-weight: 500;

    letter-spacing: 8px;

    line-height: 1;
}


/* ============================================================
   BOTTOM
============================================================ */

.am-footer__bottom {
    padding: 27px 0 30px;

    border-top: 1px solid rgba(212, 175, 55, 0.13);
}

.am-footer__bottom-inner {
    width: calc(100% - 90px);
    max-width: 1380px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 30px;
}

.am-footer__bottom p,
.am-footer__legal a {
    margin: 0;

    color: rgba(255, 243, 215, 0.52);

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    line-height: 1.5;
}

.am-footer__signature {
    color: rgba(212, 175, 55, 0.70) !important;

    font-family: "Playfair Display", serif !important;

    font-size: 14px !important;
    font-style: italic;
}

.am-footer__legal {
    display: flex;
    justify-content: flex-end;

    gap: 24px;
}

.am-footer__legal a {
    text-decoration: none;

    transition: color 0.25s ease;
}

.am-footer__legal a:hover {
    color: var(--gold-light);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1050px) {

    .am-footer__container {
        grid-template-columns: repeat(3, 1fr);

        gap: 50px 35px;
    }

    .am-footer__brand {
        grid-column: 1 / -1;

        padding-right: 0;
        padding-bottom: 40px;

        border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    }

    .am-footer__brand > p {
        max-width: 500px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 650px) {

    .am-footer__intro {
        padding: 75px 20px 70px;
    }

    .am-footer__eyebrow p {
        font-size: 12px;
    }

    .am-footer__intro h2 {
        font-size: clamp(44px, 12vw, 57px);

        letter-spacing: -1.2px;
    }

    .am-footer__intro-text {
        max-width: 440px;

        font-size: 15px;

        line-height: 1.75;
    }


    /* MAIN */

    .am-footer__main {
        padding: 60px 0 50px;
    }

    .am-footer__container {
        width: calc(100% - 36px);

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 48px 25px;
    }

    .am-footer__brand {
        grid-column: 1 / -1;
    }

    .am-footer__logo img {
        height: 110px;
    }

    .am-footer__brand > p {
        font-size: 15px;
    }

    .am-footer__column h3 {
        font-size: 25px;
    }

    .am-footer__column li a {
        font-size: 15px;
    }


    /* VISIT */

    .am-footer__visit {
        grid-column: 1 / -1;

        padding-top: 35px;

        border-top: 1px solid rgba(212, 175, 55, 0.14);
    }

    .am-footer__contact p,
    .am-footer__contact a {
        font-size: 15px;
    }


    /* BRAND LINE */

    .am-footer__brand-line {
        width: calc(100% - 36px);

        gap: 14px;

        padding: 32px 0;
    }

    .am-footer__brand-line h2 {
        font-size: clamp(32px, 10vw, 50px);

        letter-spacing: 4px;
    }


    /* BOTTOM */

    .am-footer__bottom-inner {
        width: calc(100% - 36px);

        display: flex;
        flex-direction: column;

        gap: 15px;

        text-align: center;
    }

    .am-footer__bottom p,
    .am-footer__legal a {
        font-size: 13px;
    }

    .am-footer__legal {
        justify-content: center;
    }

}


/* ============================================================
   VERY SMALL MOBILE
============================================================ */

@media (max-width: 390px) {

    .am-footer__container {
        grid-template-columns: 1fr;
    }

    .am-footer__brand,
    .am-footer__visit {
        grid-column: auto;
    }

    .am-footer__column {
        padding-bottom: 30px;

        border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    }

    .am-footer__column h3 {
        font-size: 26px;
    }

    .am-footer__column li a {
        font-size: 16px;
    }

}










/* =========================================================
   AMRITALAYA SCROLL DOODLE
========================================================= */

.am-scroll-doodle {
    position: fixed;

    left: 0;
    bottom: 7px;

    z-index: 50;

    width: 105px;

    pointer-events: none;

    user-select: none;

    will-change: transform;
}

.am-scroll-doodle img {
    display: block;

    width: 100%;
    height: auto;

    -webkit-user-drag: none;

    filter:
        drop-shadow(
            0 5px 7px rgba(85, 0, 6, 0.12)
        );
}


/* TABLET */

@media (max-width: 991px) {

    .am-scroll-doodle {
        width: 90px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .am-scroll-doodle {
        width: 72px;
        bottom: 4px;
    }

}



































/* ================================================================
   AMRITALAYA ABOUT PAGE
   Existing :root variables only
================================================================ */

.about-page {
    position: relative;
    overflow: hidden;
    background: #fffaf1;
    color: #6f625e;
}


/* ================================================================
   SHARED TYPOGRAPHY
================================================================ */

.about-page .about-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: #a4741d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-page .about-eyebrow > span {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--gold-main);
}

.about-page .about-eyebrow--center {
    justify-content: center;
}

.about-page .about-title {
    margin: 0;
    color: var(--primary-color);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -2.5px;
}

.about-page .about-title em {
    display: block;
    color: var(--gold-main);
    font-weight: 400;
    line-height: 1.02;
}

.about-page .about-copy {
    margin: 0;
    color: #80736e;
    font-size: 15px;
    line-height: 2;
}


/* ================================================================
   BUTTON
================================================================ */

.about-page .about-primary-btn {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    gap: 25px;
    padding: 5px 6px 5px 28px;
    border-radius: 50px;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: .35s ease;
}

.about-page .about-primary-btn i {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border-radius: 50%;
    background: var(--gold-main);
}

.about-page .about-primary-btn svg {
    width: 17px;
    fill: none;
    stroke: var(--primary-color);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.about-page .about-primary-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}


/* ================================================================
   HERO
================================================================ */

.about-page .about-hero {
    position: relative;
    min-height: 830px;
    padding: 105px 0 45px;
    background:
        radial-gradient(circle at 82% 28%, rgba(212,175,55,.10), transparent 25%),
        #fffaf1;
}

.about-page .about-hero__bg-word {
    position: absolute;
    right: -60px;
    bottom: 50px;
    color: rgba(85,0,6,.025);
    font-family: Georgia, serif;
    font-size: 180px;
    line-height: 1;
    pointer-events: none;
}

.about-page .about-hero__content {
    position: relative;
    z-index: 4;
    max-width: 650px;
}

.about-page .about-hero__title {
    margin: 0;
    color: var(--primary-color);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(64px, 6.5vw, 96px);
    font-weight: 400;
    line-height: .96;
    letter-spacing: -4px;
}

.about-page .about-hero__title em {
    display: block;
    position: relative;
    width: max-content;
    max-width: 100%;
    margin-top: 7px;
    color: var(--gold-main);
    font-weight: 400;
}

.about-page .about-hero__title em::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 5px;
    height: 1px;
    background: rgba(212,175,55,.55);
    content: "";
}

.about-page .about-hero__lead {
    max-width: 610px;
    margin: 45px 0 0;
    color: #817570;
    font-size: 16px;
    line-height: 2;
}

.about-page .about-hero__actions {
    display: flex;
    align-items: center;
    gap: 38px;
    margin-top: 38px;
}

.about-page .about-hero__est {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-page .about-hero__est span {
    color: #a89791;
    font-size: 9px;
    letter-spacing: 2px;
}

.about-page .about-hero__est strong {
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 400;
}


/* HERO IMAGE */

.about-page .about-hero__visual {
    position: relative;
    width: min(100%, 530px);
    height: 630px;
    margin-left: auto;
}

.about-page .about-hero__image {
    position: absolute;
    z-index: 2;
    inset: 10px;
    overflow: hidden;
    border: 9px solid #fffaf1;
    border-radius: 270px 270px 28px 28px;
    box-shadow: 0 25px 60px rgba(73,45,31,.12);
}

.about-page .about-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page .about-hero__outline {
    position: absolute;
    z-index: 1;
    inset: -5px 0 0 -5px;
    border: 1px solid rgba(212,175,55,.7);
    border-radius: 280px 280px 30px 30px;
}

.about-page .about-hero__badge {
    position: absolute;
    z-index: 5;
    top: 55px;
    right: -70px;
    display: flex;
    width: 125px;
    height: 125px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(212,175,55,.55);
    border-radius: 50%;
    background: #fffaf1;
    box-shadow: 0 15px 35px rgba(85,0,6,.08);
}

.about-page .about-hero__badge::before {
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(212,175,55,.45);
    border-radius: 50%;
    content: "";
}

.about-page .about-hero__badge small {
    color: #9b711e;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-page .about-hero__badge strong {
    z-index: 2;
    margin: 3px 0;
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
}

.about-page .about-hero__badge span {
    z-index: 2;
    color: #a4741d;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-page .about-hero__detail {
    position: absolute;
    z-index: 6;
    bottom: 42px;
    left: -170px;
    display: flex;
    width: 275px;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border: 1px solid #eee0ca;
    border-radius: 15px;
    background: #fffaf1;
    box-shadow: 0 15px 35px rgba(85,0,6,.08);
}

.about-page .about-hero__detail-image {
    width: 75px;
    height: 75px;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 11px;
}

.about-page .about-hero__detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page .about-hero__detail > div:last-child {
    display: flex;
    flex-direction: column;
}

.about-page .about-hero__detail span {
    color: #b27d1f;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-page .about-hero__detail strong {
    margin: 5px 0;
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 400;
}

.about-page .about-hero__detail small {
    color: #8e817c;
    font-size: 11px;
}


/* HERO FOOTER */

.about-page .about-hero__footer {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 55px;
}

.about-page .about-hero__footer-line {
    height: 1px;
    flex: 1;
    background: rgba(212,175,55,.35);
}

.about-page .about-hero__footer-items {
    display: flex;
    align-items: center;
    gap: 25px;
    white-space: nowrap;
}

.about-page .about-hero__footer-items span {
    color: #82736e;
    font-size: 11px;
}

.about-page .about-hero__footer-items span::first-letter {
    color: var(--gold-main);
}

.about-page .about-hero__footer-items i {
    width: 4px;
    height: 4px;
    transform: rotate(45deg);
    background: var(--gold-main);
}


/* ================================================================
   STORY
================================================================ */

.about-page .about-story {
    position: relative;
    padding: 150px 0;
    background: #fffdf8;
}

.about-page .about-story__letter {
    position: absolute;
    right: 7%;
    bottom: -50px;
    color: rgba(85,0,6,.025);
    font-family: Georgia, serif;
    font-size: 330px;
    line-height: 1;
}


/* STORY IMAGE */

.about-page .about-story__visual {
    position: relative;
    width: min(100%, 570px);
    min-height: 690px;
}

.about-page .about-story__image {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    overflow: hidden;
    border-radius: 270px 270px 22px 22px;
}

.about-page .about-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page .about-story__outline {
    position: absolute;
    inset: 0 40px 35px 0;
    border: 1px solid rgba(212,175,55,.7);
    border-radius: 280px 280px 24px 24px;
}

.about-page .about-story__vertical {
    position: absolute;
    z-index: 4;
    top: 260px;
    left: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: left center;
    color: #a4741d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-page .about-story__vertical span {
    width: 35px;
    height: 1px;
    background: var(--gold-main);
}

.about-page .about-story__mascot {
    position: absolute;
    z-index: 6;
    right: 125px;
    bottom: -18px;
    width: 90px;
    height: auto;
}

.about-page .about-story__year {
    position: absolute;
    z-index: 5;
    right: -20px;
    bottom: -15px;
    display: flex;
    min-width: 270px;
    align-items: center;
    gap: 18px;
    padding: 22px 30px;
    background: var(--primary-color);
}

.about-page .about-story__year strong {
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 43px;
    font-weight: 400;
}

.about-page .about-story__year strong sup {
    font-size: 19px;
}

.about-page .about-story__year > span {
    width: 1px;
    height: 40px;
    background: rgba(212,175,55,.4);
}

.about-page .about-story__year p {
    margin: 0;
    color: var(--gold-soft);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.5;
}


/* STORY CONTENT */

.about-page .about-story__content {
    max-width: 650px;
    padding-left: 45px;
}

.about-page .about-story__lead {
    margin: 35px 0 22px;
    color: #594b47;
    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 1.65;
}

.about-page .about-story__content > .about-copy + .about-copy {
    margin-top: 12px;
}

.about-page .about-story__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e8ddcc;
}

.about-page .about-story__feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-page .about-story__feature-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(212,175,55,.55);
    border-radius: 50%;
    color: var(--gold-main);
}

.about-page .about-story__feature > div:last-child {
    display: flex;
    flex-direction: column;
}

.about-page .about-story__feature strong {
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 400;
}

.about-page .about-story__feature span {
    margin-top: 4px;
    color: #948681;
    font-size: 11px;
}


/* ================================================================
   JOURNEY
================================================================ */

.about-page .about-journey {
    position: relative;
    padding: 130px 0 150px;
    background: #fbf4e9;
}

.about-page .about-journey__word {
    position: absolute;
    top: 40px;
    right: -30px;
    color: rgba(85,0,6,.025);
    font-family: Georgia, serif;
    font-size: 250px;
    pointer-events: none;
}

.about-page .about-journey__heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 100px;
    margin-bottom: 100px;
}

.about-page .about-journey__timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
}

.about-page .about-journey__timeline::before {
    position: absolute;
    top: 54px;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(212,175,55,.4);
    content: "";
}

.about-page .about-journey__item {
    position: relative;
    padding-top: 90px;
}

.about-page .about-journey__number {
    position: absolute;
    top: -10px;
    left: 0;
    color: rgba(85,0,6,.12);
    font-family: Georgia, serif;
    font-size: 47px;
    font-style: italic;
}

.about-page .about-journey__dot {
    position: absolute;
    z-index: 2;
    top: 48px;
    left: 0;
    width: 13px;
    height: 13px;
    border: 4px solid #fbf4e9;
    border-radius: 50%;
    background: var(--gold-main);
    box-shadow: 0 0 0 1px var(--gold-main);
}

.about-page .about-journey__year {
    color: #a4741d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-page .about-journey__item h3 {
    margin: 10px 0 13px;
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 400;
}

.about-page .about-journey__item p {
    max-width: 330px;
    margin: 0;
    color: #837570;
    font-size: 13px;
    line-height: 1.85;
}


/* ================================================================
   CRAFT
================================================================ */

.about-page .about-craft {
    padding: 150px 0;
    background: #fffdf8;
}

.about-page .about-craft__lead {
    margin: 30px 0 18px;
    color: #594b47;
    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 1.6;
}

.about-page .about-craft__list {
    margin-top: 38px;
    border-top: 1px solid #e9ddcc;
}

.about-page .about-craft__list > div {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e9ddcc;
}

.about-page .about-craft__list > div > span {
    color: var(--gold-main);
    font-family: Georgia, serif;
    font-size: 13px;
    font-style: italic;
}

.about-page .about-craft__list p {
    margin: 0;
    color: #8a7c77;
    font-size: 12px;
    line-height: 1.7;
}

.about-page .about-craft__list strong {
    display: block;
    margin-bottom: 3px;
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 400;
}


/* CRAFT VISUAL */

.about-page .about-craft__visual {
    position: relative;
    width: min(100%, 620px);
    min-height: 650px;
    margin-left: auto;
}

.about-page .about-craft__arch {
    position: absolute;
    top: 0;
    right: 0;
    width: 77%;
    height: 610px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,.55);
    border-radius: 230px 230px 20px 20px;
    padding: 9px;
}

.about-page .about-craft__arch img {
    width: 100%;
    height: 100%;
    border-radius: 220px 220px 14px 14px;
    object-fit: cover;
}

.about-page .about-craft__circle {
    position: absolute;
    z-index: 3;
    bottom: 20px;
    left: 0;
    width: 210px;
    height: 210px;
    overflow: hidden;
    border: 9px solid #fffdf8;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(85,0,6,.1);
}

.about-page .about-craft__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page .about-craft__note {
    position: absolute;
    z-index: 5;
    right: -15px;
    bottom: 45px;
    width: 210px;
    padding: 20px 23px;
    background: #fffaf1;
    box-shadow: 0 15px 35px rgba(85,0,6,.08);
}

.about-page .about-craft__note span {
    color: #ad7b20;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-page .about-craft__note strong {
    display: block;
    margin-top: 7px;
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.35;
}


/* ================================================================
   VALUES
================================================================ */

.about-page .about-values {
    position: relative;
    padding: 130px 0 150px;
    background: #fbf4e9;
}

.about-page .about-values__letter {
    position: absolute;
    bottom: -100px;
    left: -20px;
    color: rgba(85,0,6,.025);
    font-family: Georgia, serif;
    font-size: 350px;
}

.about-page .about-values__heading {
    display: grid;
    grid-template-columns: 1.2fr .65fr;
    align-items: end;
    gap: 100px;
    margin-bottom: 80px;
}

.about-page .about-values__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(212,175,55,.45);
    border-bottom: 1px solid rgba(212,175,55,.45);
}

.about-page .about-value {
    position: relative;
    min-height: 270px;
    padding: 32px;
}

.about-page .about-value + .about-value {
    border-left: 1px solid rgba(212,175,55,.35);
}

.about-page .about-value__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-page .about-value__top span {
    color: rgba(85,0,6,.18);
    font-family: Georgia, serif;
    font-size: 38px;
    font-style: italic;
}

.about-page .about-value__top i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(212,175,55,.5);
    border-radius: 50%;
    color: var(--gold-main);
    font-size: 7px;
}

.about-page .about-value h3 {
    margin: 45px 0 13px;
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 400;
}

.about-page .about-value p {
    max-width: 220px;
    margin: 0;
    color: #897b76;
    font-size: 12px;
    line-height: 1.8;
}


/* ================================================================
   GALLERY
================================================================ */

.about-page .about-gallery {
    padding: 140px 0 160px;
    background: #fffdf8;
}

.about-page .about-gallery__heading {
    max-width: 780px;
    margin: 0 auto 90px;
}

.about-page .about-gallery__composition {
    display: grid;
    grid-template-columns: 1.1fr .9fr .65fr .95fr;
    align-items: center;
    gap: 28px;
}

.about-page .about-gallery__image {
    position: relative;
    margin: 0;
}

.about-page .about-gallery__image > span {
    position: absolute;
    z-index: 2;
    top: -42px;
    left: 10px;
    color: rgba(85,0,6,.17);
    font-family: Georgia, serif;
    font-size: 45px;
    font-style: italic;
}

.about-page .about-gallery__image > div {
    overflow: hidden;
    border: 1px solid rgba(212,175,55,.55);
    padding: 8px;
}

.about-page .about-gallery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.about-page .about-gallery__image:hover img {
    transform: scale(1.04);
}

.about-page .about-gallery__image--one > div {
    height: 500px;
    border-radius: 190px 190px 15px 15px;
}

.about-page .about-gallery__image--one img {
    border-radius: 182px 182px 10px 10px;
}

.about-page .about-gallery__image--two > div {
    height: 390px;
    border-radius: 150px 150px 15px 15px;
}

.about-page .about-gallery__image--two img {
    border-radius: 142px 142px 10px 10px;
}

.about-page .about-gallery__image--three > div {
    height: 450px;
    border-radius: 170px 170px 15px 15px;
}

.about-page .about-gallery__image--three img {
    border-radius: 162px 162px 10px 10px;
}

.about-page .about-gallery__quote {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.about-page .about-gallery__quote span {
    color: #a4741d;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-page .about-gallery__quote strong {
    margin: 12px 0 18px;
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.35;
}

.about-page .about-gallery__quote i {
    color: var(--gold-main);
    font-size: 7px;
}


/* ================================================================
   LEGACY
================================================================ */

.about-page .about-legacy {
    padding: 130px 0;
    background: #fbf4e9;
}

.about-page .about-legacy__shell {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    align-items: center;
    gap: 100px;
}

.about-page .about-legacy__year {
    display: flex;
    width: 360px;
    height: 360px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(212,175,55,.7);
    border-radius: 50%;
}

.about-page .about-legacy__year small {
    color: #a4741d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
}

.about-page .about-legacy__year strong {
    margin: 5px 0;
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 75px;
    font-weight: 400;
}

.about-page .about-legacy__year span {
    width: 70px;
    height: 1px;
    background: var(--gold-main);
}

.about-page .about-legacy__content {
    max-width: 700px;
}

.about-page .about-legacy__content > .about-copy {
    max-width: 610px;
    margin-top: 30px;
}

.about-page .about-legacy__stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid #e5d8c6;
}

.about-page .about-legacy__stats > div {
    display: flex;
    flex-direction: column;
}

.about-page .about-legacy__stats strong {
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 35px;
    font-weight: 400;
}

.about-page .about-legacy__stats strong sup {
    color: var(--gold-main);
    font-size: 16px;
}

.about-page .about-legacy__stats span {
    margin-top: 5px;
    color: #9a8b85;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-page .about-legacy__stats > i {
    width: 1px;
    height: 42px;
    background: #e1d2bd;
}


/* ================================================================
   CLOSING CTA
================================================================ */

.about-page .about-closing {
    position: relative;
    overflow: hidden;
    padding: 140px 0;
    background: #fffdf8;
}

.about-page .about-closing__circle {
    position: absolute;
    border: 1px solid rgba(212,175,55,.18);
    border-radius: 50%;
}

.about-page .about-closing__circle--one {
    top: -220px;
    left: -170px;
    width: 450px;
    height: 450px;
}

.about-page .about-closing__circle--two {
    right: -170px;
    bottom: -250px;
    width: 500px;
    height: 500px;
}

.about-page .about-closing__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.about-page .about-closing__content p {
    max-width: 520px;
    margin: 28px auto 32px;
    color: #81736e;
    font-size: 14px;
    line-height: 1.8;
}


/* ================================================================
   TABLET
================================================================ */

@media (max-width: 991.98px) {

    .about-page .about-hero {
        padding-top: 80px;
    }

    .about-page .about-hero__content {
        margin: auto;
        text-align: center;
    }

    .about-page .about-hero__content .about-eyebrow {
        justify-content: center;
    }

    .about-page .about-hero__title em {
        margin-right: auto;
        margin-left: auto;
    }

    .about-page .about-hero__lead {
        margin-right: auto;
        margin-left: auto;
    }

    .about-page .about-hero__actions {
        justify-content: center;
    }

    .about-page .about-hero__visual {
        margin: 60px auto 0;
    }

    .about-page .about-hero__detail {
        left: -50px;
    }

    .about-page .about-hero__footer {
        margin-top: 70px;
    }

    .about-page .about-story__visual {
        margin: auto;
    }

    .about-page .about-story__content {
        padding: 60px 0 0;
    }

    .about-page .about-journey__heading,
    .about-page .about-values__heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-page .about-craft__visual {
        margin: 60px auto 0;
    }

    .about-page .about-values__row {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page .about-value:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(212,175,55,.35);
    }

    .about-page .about-value:nth-child(4) {
        border-top: 1px solid rgba(212,175,55,.35);
    }

    .about-page .about-gallery__composition {
        grid-template-columns: 1fr 1fr;
        gap: 50px 25px;
    }

    .about-page .about-gallery__quote {
        min-height: 250px;
        justify-content: center;
    }

    .about-page .about-legacy__shell {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-page .about-legacy__year {
        margin: auto;
    }

    .about-page .about-legacy__content {
        margin: auto;
        text-align: center;
    }

    .about-page .about-legacy__content .about-eyebrow {
        justify-content: center;
    }

    .about-page .about-legacy__content > .about-copy {
        margin-right: auto;
        margin-left: auto;
    }
}


/* ================================================================
   MOBILE
================================================================ */

@media (max-width: 767.98px) {

    .about-page .about-title {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

    .about-page .about-hero__title {
        font-size: 53px;
        letter-spacing: -2px;
    }

    .about-page .about-hero__actions {
        flex-direction: column;
        gap: 22px;
    }

    .about-page .about-hero__visual {
        width: 88%;
        height: 500px;
    }

    .about-page .about-hero__badge {
        top: 30px;
        right: -35px;
        width: 100px;
        height: 100px;
    }

    .about-page .about-hero__badge strong {
        font-size: 24px;
    }

    .about-page .about-hero__detail {
        bottom: -20px;
        left: -25px;
        width: 225px;
    }

    .about-page .about-hero__detail-image {
        width: 60px;
        height: 60px;
    }

    .about-page .about-hero__detail strong {
        font-size: 16px;
    }

    .about-page .about-hero__footer {
        margin-top: 90px;
    }

    .about-page .about-hero__footer-line {
        display: none;
    }

    .about-page .about-hero__footer-items {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        white-space: normal;
    }

    .about-page .about-story,
    .about-page .about-craft,
    .about-page .about-gallery,
    .about-page .about-legacy,
    .about-page .about-closing {
        padding: 90px 0;
    }

    .about-page .about-story__visual {
        min-height: 530px;
    }

    .about-page .about-story__year {
        right: 0;
        min-width: 230px;
        padding: 17px 20px;
    }

    .about-page .about-story__year strong {
        font-size: 34px;
    }

    .about-page .about-story__mascot {
        right: 95px;
        width: 70px;
    }

    .about-page .about-story__features {
        grid-template-columns: 1fr;
    }

    .about-page .about-journey {
        padding: 90px 0;
    }

    .about-page .about-journey__timeline {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-left: 30px;
    }

    .about-page .about-journey__timeline::before {
        top: 0;
        bottom: 0;
        left: 5px;
        width: 1px;
        height: auto;
    }

    .about-page .about-journey__item {
        padding-top: 30px;
    }

    .about-page .about-journey__number {
        top: -10px;
    }

    .about-page .about-journey__dot {
        top: 10px;
        left: -31px;
    }

    .about-page .about-craft__visual {
        width: 100%;
        min-height: 530px;
    }

    .about-page .about-craft__arch {
        height: 500px;
    }

    .about-page .about-craft__circle {
        width: 155px;
        height: 155px;
    }

    .about-page .about-craft__note {
        right: 0;
        width: 175px;
    }

    .about-page .about-values {
        padding: 90px 0;
    }

    .about-page .about-values__row {
        grid-template-columns: 1fr;
    }

    .about-page .about-value + .about-value {
        border-top: 1px solid rgba(212,175,55,.35);
        border-left: 0;
    }

    .about-page .about-value {
        min-height: auto;
        padding: 30px 5px;
    }

    .about-page .about-value h3 {
        margin-top: 25px;
    }

    .about-page .about-gallery__composition {
        grid-template-columns: 1fr;
    }

    .about-page .about-gallery__image {
        width: 88%;
        margin: auto;
    }

    .about-page .about-gallery__quote {
        min-height: 180px;
    }

    .about-page .about-legacy__year {
        width: 260px;
        height: 260px;
    }

    .about-page .about-legacy__year strong {
        font-size: 55px;
    }

    .about-page .about-legacy__stats {
        gap: 15px;
    }

    .about-page .about-legacy__stats strong {
        font-size: 25px;
    }
}


/* ================================================================
   SMALL MOBILE
================================================================ */

@media (max-width: 480px) {

    .about-page .about-hero__title {
        font-size: 47px;
    }

    .about-page .about-title {
        font-size: 39px;
    }

    .about-page .about-hero__visual {
        height: 440px;
    }

    .about-page .about-hero__detail {
        width: 205px;
    }

    .about-page .about-story__visual {
        min-height: 470px;
    }

    .about-page .about-story__year {
        min-width: 200px;
    }

    .about-page .about-story__year p {
        font-size: 9px;
    }

    .about-page .about-craft__visual {
        min-height: 470px;
    }

    .about-page .about-craft__arch {
        width: 85%;
        height: 440px;
    }

    .about-page .about-craft__circle {
        width: 130px;
        height: 130px;
    }

    .about-page .about-legacy__stats {
        flex-direction: column;
        gap: 25px;
    }

    .about-page .about-legacy__stats > i {
        width: 50px;
        height: 1px;
    }
}


















/* ==========================================================
   AMRITALAYA CONTACT
   Existing root variables are used.
========================================================== */

.contact-page {
    overflow: hidden;
    background: #fffaf5;
    color: #746a66;
}


/* ==========================================================
   COMMON
========================================================== */

.contact-page .contact-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #a4741d;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.contact-page .contact-label span {
    width: 38px;
    height: 1px;
    background: var(--gold-main);
}


.contact-page .contact-section-title {
    margin: 0;
    color: var(--primary-color);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.contact-page .contact-section-title em {
    color: var(--gold-main);
    font-weight: 400;
}


/* ==========================================================
   HERO
========================================================== */

.contact-page .contact-hero {
    position: relative;
    padding: 90px 0 110px;
    background: #fffaf5;
}


.contact-page .contact-hero__content {
    max-width: 570px;
}


.contact-page .contact-hero__title {
    margin: 0;
    color: var(--primary-color);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -2.5px;
}

.contact-page .contact-hero__title em {
    display: block;
    margin-top: 4px;
    color: var(--gold-main);
    font-weight: 400;
}


.contact-page .contact-hero__text {
    max-width: 520px;
    margin: 28px 0 30px;
    color: #7c716d;
    font-size: 15px;
    line-height: 1.85;
}


/* HERO LINK */

.contact-page .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.contact-page .contact-link > i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(85, 0, 6, .25);
    border-radius: 50%;
    transition: .25s ease;
}

.contact-page .contact-link svg {
    width: 14px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.contact-page .contact-link:hover {
    color: var(--gold-main);
}

.contact-page .contact-link:hover > i {
    transform: translateX(3px);
    border-color: var(--gold-main);
}


/* ==========================================================
   HERO IMAGE
========================================================== */

.contact-page .contact-hero__visual {
    position: relative;
    width: min(100%, 455px);
    height: 510px;
    margin-left: auto;
}


.contact-page .contact-hero__visual::before {
    position: absolute;
    inset: -10px 10px 10px -10px;
    border: 1px solid rgba(212, 175, 55, .55);
    border-radius: 230px 230px 18px 18px;
    content: "";
}


.contact-page .contact-hero__image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 225px 225px 15px 15px;
}


.contact-page .contact-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* EST SEAL */

.contact-page .contact-hero__seal {
    position: absolute;
    right: -42px;
    bottom: 45px;
    display: flex;
    width: 92px;
    height: 92px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, .5);
    border-radius: 50%;
    background: #fffaf5;
}


.contact-page .contact-hero__seal small,
.contact-page .contact-hero__seal span {
    color: #a4741d;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.2px;
}


.contact-page .contact-hero__seal strong {
    margin: 1px 0;
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 400;
}


/* ==========================================================
   CONTACT MAIN
========================================================== */

.contact-page .contact-main {
    padding: 110px 0;
    border-top: 1px solid rgba(212, 175, 55, .22);
    background: #fbf5eb;
}


/* ==========================================================
   INFO
========================================================== */

.contact-page .contact-info {
    max-width: 440px;
}


.contact-page .contact-info__intro {
    max-width: 390px;
    margin: 22px 0 40px;
    color: #817671;
    font-size: 14px;
    line-height: 1.8;
}


.contact-page .contact-info__list {
    border-top: 1px solid #e3d8c8;
}


.contact-page .contact-info__item {
    display: flex;
    gap: 17px;
    padding: 22px 0;
    border-bottom: 1px solid #e3d8c8;
}


.contact-page .contact-info__icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, .5);
    border-radius: 50%;
    color: #b78926;
    font-size: 14px;
}


.contact-page .contact-info__body {
    padding-top: 1px;
}


.contact-page .contact-info__body > span {
    display: block;
    margin-bottom: 6px;
    color: #a4741d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}


.contact-page .contact-info__body a,
.contact-page .contact-info__body p {
    display: block;
    margin: 2px 0;
    color: var(--primary-color);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    text-decoration: none;
}


.contact-page .contact-info__body a:hover {
    color: var(--gold-main);
}


.contact-page .contact-info__body small {
    display: block;
    margin-top: 4px;
    color: #918680;
    font-size: 11px;
}


/* WHATSAPP */

.contact-page .contact-whatsapp {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 28px;
    color: var(--primary-color);
    text-decoration: none;
}


.contact-page .contact-whatsapp__icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--gold-soft);
    font-size: 15px;
}


.contact-page .contact-whatsapp > span:nth-child(2) {
    display: flex;
    flex: 1;
    flex-direction: column;
    font-family: Georgia, serif;
    font-size: 15px;
}


.contact-page .contact-whatsapp small {
    margin-bottom: 2px;
    color: #a4741d;
    font-family: inherit;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.4px;
}


.contact-page .contact-whatsapp > i {
    font-size: 13px;
}


/* ==========================================================
   FORM
========================================================== */

.contact-page .contact-form-wrap {
    max-width: 650px;
    margin-left: auto;
    padding: 42px 45px;
    border: 1px solid #e3d7c7;
    border-radius: 28px;
    background: #fffaf5;
}


.contact-page .contact-form__heading {
    margin-bottom: 34px;
}


.contact-page .contact-form__heading > span {
    display: block;
    margin-bottom: 8px;
    color: #a4741d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.contact-page .contact-form__heading h2 {
    margin: 0;
    color: var(--primary-color);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
}


.contact-page .contact-form__heading p {
    margin: 10px 0 0;
    color: #8a7e79;
    font-size: 13px;
    line-height: 1.7;
}


/* FIELDS */

.contact-page .contact-field label {
    display: block;
    margin-bottom: 8px;
    color: #625652;
    font-size: 12px;
    font-weight: 600;
}


.contact-page .contact-field label sup {
    color: var(--gold-main);
}


.contact-page .contact-field input,
.contact-page .contact-field select,
.contact-page .contact-field textarea {
    width: 100%;
    border: 1px solid #ddd1c2;
    outline: none;
    background: transparent;
    color: #544a46;
    font-family: inherit;
    font-size: 14px;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.contact-page .contact-field input,
.contact-page .contact-field select {
    height: 48px;
    padding: 0 14px;
    border-radius: 10px;
}


.contact-page .contact-field textarea {
    min-height: 120px;
    padding: 13px 14px;
    border-radius: 12px;
    resize: vertical;
}


.contact-page .contact-field input::placeholder,
.contact-page .contact-field textarea::placeholder {
    color: #aaa09a;
}


.contact-page .contact-field input:focus,
.contact-page .contact-field select:focus,
.contact-page .contact-field textarea:focus {
    border-color: var(--gold-main);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .08);
}


.contact-page .contact-error {
    display: block;
    margin-top: 5px;
    color: var(--primary-color);
    font-size: 11px;
}


/* SUBMIT */

.contact-page .contact-submit {
    display: inline-flex;
    height: 50px;
    align-items: center;
    gap: 18px;
    padding: 4px 5px 4px 22px;
    border: 0;
    border-radius: 30px;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}


.contact-page .contact-submit > i {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: var(--gold-main);
}


.contact-page .contact-submit svg {
    width: 14px;
    fill: none;
    stroke: var(--primary-color);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}


/* SUCCESS */

.contact-page .contact-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 12px 15px;
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 12px;
}


/* ==========================================================
   LOCATION
========================================================== */

.contact-page .contact-location {
    padding: 105px 0 120px;
    background: #fffaf5;
}


.contact-page .contact-location__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 42px;
}


.contact-page .contact-location__address {
    display: flex;
    max-width: 370px;
    align-items: center;
    gap: 13px;
}


.contact-page .contact-location__address > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, .5);
    border-radius: 50%;
    color: #b78926;
}


.contact-page .contact-location__address p {
    margin: 0;
    color: #766b66;
    font-size: 13px;
    line-height: 1.65;
}


/* MAP */

.contact-page .contact-map {
    height: 430px;
    overflow: hidden;
    border: 1px solid #e2d5c5;
    border-radius: 28px;
}


.contact-page .contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    .contact-page .contact-hero {
        padding: 75px 0 90px;
    }

    .contact-page .contact-hero__visual {
        width: 420px;
        max-width: 90%;
        height: 470px;
        margin: 40px auto 0;
    }

    .contact-page .contact-hero__content {
        max-width: 620px;
    }

    .contact-page .contact-info {
        max-width: 100%;
    }

    .contact-page .contact-form-wrap {
        max-width: 100%;
        margin-top: 25px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .contact-page .contact-hero {
        padding: 60px 0 75px;
    }


    .contact-page .contact-hero__title {
        font-size: 44px;
        line-height: 1.06;
        letter-spacing: -1.5px;
    }


    .contact-page .contact-hero__text {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.75;
    }


    .contact-page .contact-section-title {
        font-size: 36px;
        letter-spacing: -1px;
    }


    .contact-page .contact-hero__visual {
        width: 330px;
        max-width: 88%;
        height: 390px;
    }


    .contact-page .contact-hero__seal {
        right: -28px;
        bottom: 35px;
        width: 78px;
        height: 78px;
    }


    .contact-page .contact-hero__seal strong {
        font-size: 20px;
    }


    .contact-page .contact-main {
        padding: 75px 0;
    }


    .contact-page .contact-info__intro {
        margin-bottom: 30px;
    }


    .contact-page .contact-form-wrap {
        padding: 30px 22px;
        border-radius: 22px;
    }


    .contact-page .contact-form__heading h2 {
        font-size: 27px;
    }


    .contact-page .contact-location {
        padding: 75px 0 85px;
    }


    .contact-page .contact-location__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }


    .contact-page .contact-map {
        height: 350px;
        border-radius: 20px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .contact-page .contact-hero__title {
        font-size: 40px;
    }

    .contact-page .contact-section-title {
        font-size: 34px;
    }

    .contact-page .contact-hero__visual {
        height: 350px;
    }

    .contact-page .contact-form-wrap {
        padding: 27px 18px;
    }

    .contact-page .contact-map {
        height: 310px;
    }

}













/* ======================================================
========================================================================= */




/* ================================================================
   AMRITALAYA — PRODUCT COLLECTION
================================================================ */

.am-products-page {
    position: relative;
    overflow: hidden;

    background: #fffaf1;
    color: var(--primary-color);
}


/* ================================================================
   HERO
================================================================ */

.am-products-page .am-products-hero {
    position: relative;

    padding: 82px 0 70px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(212, 175, 55, 0.07),
            transparent 27%
        ),
        #fffaf1;
}


/* Watermark */

.am-products-page .am-products-hero__watermark {
    position: absolute;

    right: -20px;
    top: -115px;

    color: rgba(85, 0, 6, 0.025);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 430px;
    font-weight: 400;

    line-height: 1;

    pointer-events: none;
}


/* Layout */

.am-products-page .am-products-hero__layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1.25fr 0.75fr;

    gap: 90px;

    align-items: end;
}


/* Eyebrow */

.am-products-page .am-products-eyebrow {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 20px;

    color: #9b6b16;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.6px;
    text-transform: uppercase;
}


.am-products-page .am-products-eyebrow span {
    display: block;

    width: 42px;
    height: 1px;

    background: var(--gold-main);
}


/* Heading */

.am-products-page .am-products-hero h1 {
    max-width: 730px;

    margin: 0;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5.1vw, 78px);
    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -2.4px;
}


.am-products-page .am-products-hero h1 em {
    display: block;

    margin-top: 5px;

    color: var(--gold-main);

    font-weight: 400;
    font-style: italic;
}


/* Copy */

.am-products-page .am-products-hero__copy {
    position: relative;

    padding: 7px 0 7px 30px;

    border-left: 1px solid rgba(212, 175, 55, 0.45);
}


.am-products-page .am-products-hero__copy p {
    max-width: 450px;

    margin: 0;

    color: #796e6d;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.9;
}


/* Signature */

.am-products-page .am-products-hero__signature {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 24px;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 13px;
    font-style: italic;
}


.am-products-page .am-products-hero__signature span {
    display: block;

    width: 26px;
    height: 1px;

    background: var(--gold-main);
}


/* ================================================================
   CATEGORIES
================================================================ */

.am-products-page .am-product-categories {
    position: relative;
    z-index: 5;

    border-top: 1px solid rgba(212, 175, 55, 0.22);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);

    background: rgba(255, 250, 241, 0.96);
}


.am-products-page .am-product-categories__scroll {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 40px;

    overflow-x: auto;

    scrollbar-width: none;
}


.am-products-page .am-product-categories__scroll::-webkit-scrollbar {
    display: none;
}


.am-products-page .am-category-link {
    position: relative;

    flex: 0 0 auto;

    padding: 20px 2px 18px;

    color: #8d7c76;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.5px;

    text-decoration: none;

    transition: color 0.25s ease;
}


.am-products-page .am-category-link:hover,
.am-products-page .am-category-link.active {
    color: var(--primary-color);
}


.am-products-page .am-category-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -1px;

    width: 0;
    height: 2px;

    background: var(--gold-main);

    transform: translateX(-50%);

    transition: width 0.25s ease;
}


.am-products-page .am-category-link.active::after {
    width: 100%;
}


/* ================================================================
   PRODUCTS
================================================================ */

.am-products-page .am-products {
    position: relative;

    padding: 90px 0 110px;

    background: #fffaf1;
}


/* Giant background typography */

.am-products-page .am-products__watermark {
    position: absolute;

    left: 50%;
    top: 35%;

    transform: translateX(-50%);

    color: rgba(85, 0, 6, 0.018);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(120px, 20vw, 340px);

    line-height: 1;

    letter-spacing: 20px;

    white-space: nowrap;

    pointer-events: none;
}


/* ================================================================
   GRID
================================================================ */

.am-products-page .am-products-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 75px 42px;
}


/* Alternating rhythm */

.am-products-page .am-product:nth-child(3n + 2) {
    margin-top: 55px;
}


.am-products-page .am-product {
    position: relative;

    min-width: 0;
}


/* ================================================================
   NUMBER
================================================================ */

.am-products-page .am-product__number {
    position: absolute;

    top: -37px;
    left: 10px;

    z-index: 3;

    color: rgba(85, 0, 6, 0.15);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 38px;
    font-weight: 400;
    font-style: italic;

    line-height: 1;
}


/* ================================================================
   ARCH IMAGE
================================================================ */

.am-products-page .am-product__image {
    position: relative;

    display: block;

    width: 100%;
    aspect-ratio: 0.82 / 1;

    padding: 8px;

    overflow: hidden;

    background: #fffaf1;

    border: 1px solid rgba(212, 175, 55, 0.48);

    border-radius: 48% 48% 7px 7px / 25% 25% 7px 7px;

    text-decoration: none;
}


.am-products-page .am-product__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 48% 48% 3px 3px / 24% 24% 3px 3px;

    transition: transform 0.7s cubic-bezier(.2, .7, .2, 1);
}


.am-products-page .am-product:hover .am-product__image img {
    transform: scale(1.035);
}


/* ================================================================
   BADGE
================================================================ */

.am-products-page .am-product__label {
    position: absolute;

    top: 24px;
    left: 22px;

    z-index: 5;

    padding: 7px 10px;

    background: #fffaf1;

    color: #9b6b16;

    border: 1px solid rgba(212, 175, 55, 0.42);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* ================================================================
   OUT OF STOCK
================================================================ */

.am-products-page .am-product__unavailable {
    position: absolute;

    inset: 8px;

    z-index: 4;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(62, 25, 27, 0.35);

    border-radius: 48% 48% 3px 3px / 24% 24% 3px 3px;
}


.am-products-page .am-product__unavailable span {
    padding: 9px 13px;

    background: #fffaf1;

    color: var(--primary-color);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ================================================================
   PRODUCT CONTENT
================================================================ */

.am-products-page .am-product__content {
    padding: 20px 8px 0;
}


/* Category */

.am-products-page .am-product__category {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 10px;

    color: #9b6b16;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}


.am-products-page .am-product__category span {
    width: 22px;
    height: 1px;

    background: rgba(85, 0, 6, 0.2);
}


.am-products-page .am-product__category {
    white-space: nowrap;
}


/* ================================================================
   TITLE
================================================================ */

.am-products-page .am-product__title-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;
}


.am-products-page .am-product__name {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
    font-weight: 400;

    line-height: 1.15;
}


.am-products-page .am-product__name a {
    color: var(--primary-color);

    text-decoration: none;
}


/* Arrow */

.am-products-page .am-product__arrow {
    display: flex;

    flex: 0 0 38px;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: var(--primary-color);

    border: 1px solid rgba(85, 0, 6, 0.18);
    border-radius: 50%;

    font-size: 15px;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}


.am-products-page .am-product__arrow:hover {
    background: var(--primary-color);

    color: var(--gold-soft);

    border-color: var(--primary-color);
}


/* ================================================================
   PRICE
================================================================ */

.am-products-page .am-product__price {
    display: flex;

    align-items: baseline;

    gap: 7px;

    margin-top: 10px;
}


.am-products-page .am-product__price > span {
    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;
    font-weight: 600;
}


.am-products-page .am-product__price del {
    color: #aa9c98;

    font-size: 11px;
}


.am-products-page .am-product__price small {
    color: #8b7c78;

    font-size: 10px;
}


/* ================================================================
   EMPTY STATE
================================================================ */

.am-products-page .am-products-empty {
    position: relative;
    z-index: 2;

    max-width: 520px;

    margin: 40px auto;

    text-align: center;
}


.am-products-page .am-products-empty > span {
    color: #9b6b16;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.am-products-page .am-products-empty h2 {
    margin: 12px 0;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 32px;
    font-weight: 400;
}


.am-products-page .am-products-empty p {
    color: #827572;

    font-size: 13px;

    line-height: 1.7;
}


.am-products-page .am-products-empty a {
    display: inline-block;

    margin-top: 10px;

    color: var(--primary-color);

    border-bottom: 1px solid var(--gold-main);

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;
}


/* ================================================================
   PAGINATION
================================================================ */

.am-products-page .am-products-pagination {
    position: relative;
    z-index: 2;

    margin-top: 85px;
}


/* ================================================================
   TABLET
================================================================ */

@media (max-width: 991.98px) {

    .am-products-page .am-products-hero {
        padding: 65px 0 55px;
    }


    .am-products-page .am-products-hero__layout {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .am-products-page .am-products-hero__copy {
        max-width: 520px;
    }


    .am-products-page .am-products-hero h1 {
        max-width: 650px;

        font-size: 58px;
    }


    .am-products-page .am-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 75px 30px;
    }


    .am-products-page .am-product:nth-child(3n + 2) {
        margin-top: 0;
    }


    .am-products-page .am-product:nth-child(even) {
        margin-top: 50px;
    }


    .am-products-page .am-product-categories__scroll {
        justify-content: flex-start;
    }

}


/* ================================================================
   MOBILE
================================================================ */

@media (max-width: 767.98px) {

    .am-products-page .am-products-hero {
        padding: 48px 0 40px;
    }


    .am-products-page .am-products-eyebrow {
        gap: 11px;

        margin-bottom: 15px;

        font-size: 9px;

        letter-spacing: 2px;
    }


    .am-products-page .am-products-eyebrow span {
        width: 28px;
    }


    .am-products-page .am-products-hero h1 {
        font-size: 42px;

        line-height: 1;

        letter-spacing: -1.3px;
    }


    .am-products-page .am-products-hero__copy {
        padding-left: 20px;
    }


    .am-products-page .am-products-hero__copy p {
        font-size: 12.5px;

        line-height: 1.75;
    }


    .am-products-page .am-products-hero__signature {
        margin-top: 17px;

        font-size: 11px;
    }


    /* Categories */

    .am-products-page .am-product-categories__scroll {
        gap: 27px;

        padding: 0 2px;
    }


    .am-products-page .am-category-link {
        padding: 17px 0 15px;

        font-size: 10px;
    }


    /* Products */

    .am-products-page .am-products {
        padding: 70px 0 75px;
    }


    .am-products-page .am-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 58px 14px;
    }


    .am-products-page .am-product:nth-child(even) {
        margin-top: 35px;
    }


    .am-products-page .am-product__number {
        top: -28px;

        font-size: 28px;
    }


    .am-products-page .am-product__image {
        padding: 5px;

        border-radius: 48% 48% 5px 5px / 21% 21% 5px 5px;
    }


    .am-products-page .am-product__image img {
        border-radius: 48% 48% 2px 2px / 20% 20% 2px 2px;
    }


    .am-products-page .am-product__content {
        padding: 13px 2px 0;
    }


    .am-products-page .am-product__category {
        gap: 6px;

        margin-bottom: 7px;

        overflow: hidden;

        font-size: 7px;

        letter-spacing: 0.8px;
    }


    .am-products-page .am-product__category span {
        width: 12px;
    }


    .am-products-page .am-product__name {
        font-size: 17px;
    }


    .am-products-page .am-product__arrow {
        flex-basis: 29px;

        width: 29px;
        height: 29px;

        font-size: 11px;
    }


    .am-products-page .am-product__price {
        margin-top: 7px;
    }


    .am-products-page .am-product__price > span {
        font-size: 14px;
    }


    .am-products-page .am-product__label {
        top: 14px;
        left: 13px;

        padding: 5px 6px;

        font-size: 6px;
    }

}


/* ================================================================
   SMALL MOBILE
================================================================ */

@media (max-width: 480px) {

    .am-products-page .am-products-hero h1 {
        font-size: 37px;
    }


    .am-products-page .am-products-grid {
        gap: 53px 11px;
    }


    .am-products-page .am-product:nth-child(even) {
        margin-top: 28px;
    }


    .am-products-page .am-product__name {
        font-size: 15px;
    }


    .am-products-page .am-product__category {
        font-size: 6.5px;
    }


    /*
     * On very small screens the availability copy makes the
     * category row too crowded.
     */

    .am-products-page .am-product__category span,
    .am-products-page .am-product__category span + * {
        display: none;
    }


    .am-products-page .am-product__arrow {
        flex-basis: 27px;

        width: 27px;
        height: 27px;
    }


    .am-products-page .am-product__price > span {
        font-size: 13px;
    }

}










/* =============================================================================================
=================================================================================================== */








/* ================================================================
   AMRITALAYA — PRODUCT DETAIL
================================================================ */

.am-product-show {
    position: relative;
    overflow: hidden;

    background: #fffaf1;
    color: var(--primary-color);
}


/* ================================================================
   PRODUCT DETAIL
================================================================ */

.am-product-show .am-product-detail {
    position: relative;

    padding: 42px 0 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 22%,
            rgba(212, 175, 55, 0.08),
            transparent 27%
        ),
        #fffaf1;
}


/* Watermark */

.am-product-show .am-product-detail__watermark {
    position: absolute;

    right: -30px;
    top: -120px;

    color: rgba(85, 0, 6, 0.025);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 470px;
    font-weight: 400;

    line-height: 1;

    pointer-events: none;
}


/* ================================================================
   BREADCRUMB
================================================================ */

.am-product-show .am-product-breadcrumb {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 52px;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.am-product-show .am-product-breadcrumb a {
    color: #8c7975;

    text-decoration: none;

    transition: color 0.2s ease;
}


.am-product-show .am-product-breadcrumb a:hover {
    color: var(--primary-color);
}


.am-product-show .am-product-breadcrumb > span:not(.current) {
    color: var(--gold-main);

    font-size: 5px;
}


.am-product-show .am-product-breadcrumb .current {
    color: #9b6b16;
}


/* ================================================================
   MAIN GRID
================================================================ */

.am-product-show .am-product-detail__grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);

    gap: clamp(65px, 8vw, 130px);

    align-items: center;
}


/* ================================================================
   GALLERY
================================================================ */

.am-product-show .am-product-gallery {
    position: relative;

    width: 100%;
    max-width: 600px;

    padding-left: 32px;
}


/* Editorial Number */

.am-product-show .am-product-gallery__number {
    position: absolute;

    left: 0;
    top: -32px;

    color: rgba(85, 0, 6, 0.15);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 44px;
    font-style: italic;

    line-height: 1;
}


/* ================================================================
   MAIN ARCH
================================================================ */

.am-product-show .am-product-gallery__main {
    position: relative;

    width: 100%;
    aspect-ratio: 0.92 / 1;

    padding: 10px;

    overflow: hidden;

    background: #fffaf1;

    border: 1px solid rgba(212, 175, 55, 0.55);

    border-radius: 49% 49% 8px 8px / 25% 25% 8px 8px;
}


.am-product-show .am-product-gallery__main > img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 49% 49% 3px 3px / 24% 24% 3px 3px;

    opacity: 1;

    transform: scale(1);

    transition:
        opacity 0.18s ease,
        transform 0.55s ease;
}


.am-product-show .am-product-gallery__main > img.changing {
    opacity: 0;

    transform: scale(0.985);
}


/* ================================================================
   BADGE
================================================================ */

.am-product-show .am-product-gallery__badge {
    position: absolute;

    left: 27px;
    top: 48px;

    z-index: 3;

    padding: 8px 12px;

    background: rgba(255, 250, 241, 0.96);

    color: #9b6b16;

    border: 1px solid rgba(212, 175, 55, 0.45);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}


/* ================================================================
   THUMBNAILS
================================================================ */

.am-product-show .am-product-gallery__thumbs {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 18px;
    padding-left: 10px;
}


.am-product-show .am-product-thumb {
    position: relative;

    width: 67px;
    height: 67px;

    padding: 4px;

    overflow: hidden;

    background: transparent;

    border: 1px solid rgba(85, 0, 6, 0.13);

    border-radius: 50%;

    cursor: pointer;

    transition: border-color 0.2s ease;
}


.am-product-show .am-product-thumb img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


.am-product-show .am-product-thumb:hover,
.am-product-show .am-product-thumb.active {
    border-color: var(--gold-main);
}


/* ================================================================
   PRODUCT INFORMATION
================================================================ */

.am-product-show .am-product-info {
    position: relative;

    max-width: 570px;
}


/* Eyebrow */

.am-product-show .am-product-info__eyebrow {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 18px;

    color: #9b6b16;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.4px;
    text-transform: uppercase;
}


.am-product-show .am-product-info__eyebrow span {
    width: 39px;
    height: 1px;

    background: var(--gold-main);
}


/* Product title */

.am-product-show .am-product-info h1 {
    max-width: 550px;

    margin: 0;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(45px, 4.6vw, 70px);
    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -2px;
}


/* Intro */

.am-product-show .am-product-info__intro {
    max-width: 500px;

    margin: 25px 0 0;

    color: #766966;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;

    line-height: 1.7;
}


/* ================================================================
   PRICE
================================================================ */

.am-product-show .am-product-info__price {
    display: flex;

    align-items: baseline;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 27px;
}


.am-product-show .current-price {
    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;
    font-weight: 500;

    line-height: 1;
}


.am-product-show .am-product-info__price del {
    color: #ad9c98;

    font-size: 14px;
}


.am-product-show .am-product-info__price small {
    color: #8c7b77;

    font-size: 11px;
}


/* ================================================================
   ORNAMENT
================================================================ */

.am-product-show .am-product-info__divider {
    display: flex;

    align-items: center;

    gap: 9px;

    width: 100%;

    margin: 30px 0;
}


.am-product-show .am-product-info__divider span {
    height: 1px;

    background: rgba(212, 175, 55, 0.27);
}


.am-product-show .am-product-info__divider span:first-child {
    width: 38px;
}


.am-product-show .am-product-info__divider span:last-child {
    flex: 1;
}


.am-product-show .am-product-info__divider i {
    color: var(--gold-main);

    font-size: 6px;
    font-style: normal;
}


/* ================================================================
   META
================================================================ */

.am-product-show .am-product-meta {
    width: 100%;
}


.am-product-show .am-product-meta__item {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 12px 0;

    border-bottom: 1px solid rgba(85, 0, 6, 0.08);
}


.am-product-show .am-product-meta__item:first-child {
    padding-top: 0;
}


.am-product-show .am-product-meta__item .label {
    color: #998985;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.am-product-show .am-product-meta__item .value {
    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 13px;
}


.am-product-show .am-product-meta__item .value.out {
    color: #9a5555;
}


/* ================================================================
   FRESH MESSAGE
================================================================ */

.am-product-show .am-product-fresh {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 27px;
}


.am-product-show .am-product-fresh__mark {
    display: flex;

    flex: 0 0 46px;

    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    color: var(--primary-color);

    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 50%;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 19px;
    font-style: italic;
}


.am-product-show .am-product-fresh span {
    display: block;

    margin-bottom: 3px;

    color: #9b6b16;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}


.am-product-show .am-product-fresh p {
    margin: 0;

    color: #857571;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 12px;
    font-style: italic;
}


/* ================================================================
   EXPLORE
================================================================ */

.am-product-show .am-product-explore {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 31px;

    color: var(--primary-color);

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;
}


.am-product-show .am-product-explore i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    background: var(--primary-color);

    color: var(--gold-soft);

    border-radius: 50%;

    font-size: 12px;
    font-style: normal;

    transition: transform 0.25s ease;
}


.am-product-show .am-product-explore:hover i {
    transform: translate(2px, -2px);
}


/* ================================================================
   PRODUCT STORY
================================================================ */

.am-product-show .am-product-story {
    position: relative;

    padding: 95px 0;

    background: #fff7eb;

    border-top: 1px solid rgba(212, 175, 55, 0.17);
}


.am-product-show .am-product-story__grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: clamp(70px, 10vw, 150px);
}


/* Eyebrow */

.am-product-show .am-product-story__eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 18px;

    color: #9b6b16;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.3px;
    text-transform: uppercase;
}


.am-product-show .am-product-story__eyebrow span {
    width: 37px;
    height: 1px;

    background: var(--gold-main);
}


/* Story title */

.am-product-show .am-product-story__heading h2 {
    max-width: 500px;

    margin: 0;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 4.3vw, 64px);
    font-weight: 400;

    line-height: 1;

    letter-spacing: -1.8px;
}


.am-product-show .am-product-story__heading h2 em {
    display: block;

    margin-top: 5px;

    color: var(--gold-main);

    font-weight: 400;
}


/* ================================================================
   STORY CONTENT
================================================================ */

.am-product-show .am-product-story__content {
    position: relative;

    padding-top: 9px;
}


.am-product-show .am-product-story__quote {
    position: absolute;

    left: -35px;
    top: -20px;

    color: rgba(212, 175, 55, 0.18);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 100px;

    line-height: 1;
}


.am-product-show .am-product-story__description {
    position: relative;
    z-index: 2;

    max-width: 650px;

    color: #716461;

    font-size: 14px;

    line-height: 2;
}


/* ================================================================
   VALUES
================================================================ */

.am-product-show .am-product-story__values {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 0;

    margin-top: 42px;
    padding-top: 28px;

    border-top: 1px solid rgba(85, 0, 6, 0.10);
}


.am-product-show .am-product-story__values > div {
    display: flex;

    align-items: flex-start;

    gap: 12px;
}


.am-product-show .am-product-story__values span {
    color: var(--gold-main);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 12px;
    font-style: italic;
}


.am-product-show .am-product-story__values p {
    margin: 0;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 13px;

    line-height: 1.45;
}


/* ================================================================
   TABLET
================================================================ */

@media (max-width: 991.98px) {

    .am-product-show .am-product-detail {
        padding-bottom: 80px;
    }


    .am-product-show .am-product-detail__grid {
        gap: 55px;

        align-items: start;
    }


    .am-product-show .am-product-gallery {
        padding-left: 15px;
    }


    .am-product-show .am-product-info h1 {
        font-size: 50px;
    }


    .am-product-show .am-product-story__grid {
        gap: 60px;
    }

}


/* ================================================================
   MOBILE
================================================================ */

@media (max-width: 767.98px) {

    .am-product-show .am-product-detail {
        padding: 28px 0 60px;
    }


    .am-product-show .am-product-detail__watermark {
        display: none;
    }


    .am-product-show .am-product-breadcrumb {
        gap: 7px;

        margin-bottom: 43px;

        font-size: 7px;
    }


    .am-product-show .am-product-detail__grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    /* Gallery */

    .am-product-show .am-product-gallery {
        max-width: 520px;

        margin: 0 auto;

        padding-left: 0;
    }


    .am-product-show .am-product-gallery__number {
        top: -28px;
        left: 5px;

        font-size: 32px;
    }


    .am-product-show .am-product-gallery__main {
        padding: 6px;
    }


    .am-product-show .am-product-gallery__thumbs {
        justify-content: center;

        padding-left: 0;
    }


    .am-product-show .am-product-thumb {
        width: 56px;
        height: 56px;
    }


    /* Info */

    .am-product-show .am-product-info {
        max-width: none;
    }


    .am-product-show .am-product-info__eyebrow {
        margin-bottom: 13px;

        font-size: 8px;
    }


    .am-product-show .am-product-info__eyebrow span {
        width: 28px;
    }


    .am-product-show .am-product-info h1 {
        font-size: 41px;

        letter-spacing: -1.2px;
    }


    .am-product-show .am-product-info__intro {
        margin-top: 17px;

        font-size: 14px;

        line-height: 1.7;
    }


    .am-product-show .current-price {
        font-size: 25px;
    }


    /* Story */

    .am-product-show .am-product-story {
        padding: 65px 0;
    }


    .am-product-show .am-product-story__grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .am-product-show .am-product-story__heading h2 {
        font-size: 41px;

        letter-spacing: -1px;
    }


    .am-product-show .am-product-story__quote {
        left: -5px;

        font-size: 75px;
    }


    .am-product-show .am-product-story__description {
        padding-left: 20px;

        font-size: 12.5px;

        line-height: 1.85;
    }

}


/* ================================================================
   SMALL MOBILE
================================================================ */

@media (max-width: 480px) {

    .am-product-show .am-product-breadcrumb .current {
        display: none;
    }


    .am-product-show .am-product-info h1 {
        font-size: 37px;
    }


    .am-product-show .am-product-gallery__main {
        aspect-ratio: 0.9 / 1;
    }


    .am-product-show .am-product-meta__item {
        padding: 10px 0;
    }


    .am-product-show .am-product-meta__item .label {
        font-size: 8px;
    }


    .am-product-show .am-product-meta__item .value {
        font-size: 12px;
    }


    .am-product-show .am-product-story__heading h2 {
        font-size: 37px;
    }


    .am-product-show .am-product-story__values {
        gap: 15px;
    }


    .am-product-show .am-product-story__values > div {
        display: block;
    }


    .am-product-show .am-product-story__values span {
        display: block;

        margin-bottom: 6px;
    }


    .am-product-show .am-product-story__values p {
        font-size: 11px;
    }

}
/* ================================================================
   ORDER NOW
================================================================ */

.am-product-show .am-product-order {
    margin-top: 30px;
}


/* Button */

.am-product-show .am-product-order__btn {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    min-width: 205px;
    height: 55px;

    padding: 5px 6px 5px 24px;

    background: var(--primary-color);

    color: #ffffff;

    border: 1px solid var(--primary-color);
    border-radius: 50px;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.2px;

    text-decoration: none;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


/* Gold circular arrow */

.am-product-show .am-product-order__btn i {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 43px;

    width: 43px;
    height: 43px;

    background: var(--gold-main);

    color: var(--primary-color);

    border-radius: 50%;

    font-size: 15px;
    font-style: normal;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


/* Hover */

.am-product-show .am-product-order__btn:hover {
    background: var(--primary-dark);

    color: #ffffff;

    border-color: var(--primary-dark);

    transform: translateY(-1px);
}


.am-product-show .am-product-order__btn:hover i {
    background: var(--gold-light);

    transform: rotate(45deg);
}


/* Supporting text */

.am-product-show .am-product-order p {
    margin: 9px 0 0 3px;

    color: #92817d;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 10px;
    font-style: italic;
}


/* ================================================================
   ORDER BUTTON — MOBILE
================================================================ */

@media (max-width: 767.98px) {

    .am-product-show .am-product-order {
        margin-top: 25px;
    }


    .am-product-show .am-product-order__btn {
        min-width: 190px;
        height: 51px;

        padding-left: 21px;

        font-size: 11px;
    }


    .am-product-show .am-product-order__btn i {
        flex-basis: 39px;

        width: 39px;
        height: 39px;

        font-size: 13px;
    }

}

/* ================================================================
   AMRITALAYA — SIMILAR PRODUCTS
================================================================ */

.am-product-show .am-similar {
    position: relative;

    padding: 100px 0 115px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 7% 20%,
            rgba(212, 175, 55, 0.06),
            transparent 25%
        ),
        #fffaf1;
}


/* ================================================================
   WATERMARK
================================================================ */

.am-product-show .am-similar__watermark {
    position: absolute;

    right: -25px;
    top: -115px;

    color: rgba(85, 0, 6, 0.022);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 430px;
    font-weight: 400;

    line-height: 1;

    pointer-events: none;
}


/* ================================================================
   HEADER
================================================================ */

.am-product-show .am-similar__header {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1.1fr 0.65fr;

    align-items: end;

    gap: 100px;

    margin-bottom: 75px;
}


/* ================================================================
   EYEBROW
================================================================ */

.am-product-show .am-similar__eyebrow {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 18px;

    color: #9b6b16;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.4px;
    text-transform: uppercase;
}


.am-product-show .am-similar__eyebrow span {
    display: block;

    width: 40px;
    height: 1px;

    background: var(--gold-main);
}


/* ================================================================
   HEADING
================================================================ */

.am-product-show .am-similar__heading h2 {
    max-width: 650px;

    margin: 0;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(45px, 4.7vw, 68px);
    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -2px;
}


.am-product-show .am-similar__heading h2 em {
    color: var(--gold-main);

    font-weight: 400;
    font-style: italic;
}


/* ================================================================
   INTRO
================================================================ */

.am-product-show .am-similar__intro {
    padding-left: 28px;

    border-left: 1px solid rgba(212, 175, 55, 0.42);
}


.am-product-show .am-similar__intro p {
    max-width: 390px;

    margin: 0;

    color: #796d69;

    font-size: 13px;

    line-height: 1.8;
}


/* Explore all */

.am-product-show .am-similar__intro > a {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 20px;

    color: var(--primary-color);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.3px;

    text-decoration: none;
}


.am-product-show .am-similar__intro > a i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    background: var(--primary-color);

    color: var(--gold-soft);

    border-radius: 50%;

    font-size: 10px;
    font-style: normal;

    transition: transform 0.25s ease;
}


.am-product-show .am-similar__intro > a:hover i {
    transform: translate(2px, -2px);
}


/* ================================================================
   PRODUCTS GRID
================================================================ */

.am-product-show .am-similar__grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 42px;
}


/*
|--------------------------------------------------------------------------
| The centre sweet sits slightly lower.
| This matches the editorial rhythm used throughout Amritalaya.
|--------------------------------------------------------------------------
*/

.am-product-show .am-similar-product:nth-child(2) {
    margin-top: 50px;
}


/* ================================================================
   PRODUCT
================================================================ */

.am-product-show .am-similar-product {
    position: relative;

    min-width: 0;
}


/* Number */

.am-product-show .am-similar-product__number {
    position: absolute;

    top: -34px;
    left: 9px;

    z-index: 3;

    color: rgba(85, 0, 6, 0.14);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 36px;
    font-weight: 400;
    font-style: italic;

    line-height: 1;
}


/* ================================================================
   ARCH IMAGE
================================================================ */

.am-product-show .am-similar-product__image {
    position: relative;

    display: block;

    width: 100%;
    aspect-ratio: 0.84 / 1;

    padding: 7px;

    overflow: hidden;

    background: #fffaf1;

    border: 1px solid rgba(212, 175, 55, 0.47);

    border-radius:
        48% 48% 7px 7px /
        24% 24% 7px 7px;

    text-decoration: none;
}


.am-product-show .am-similar-product__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius:
        48% 48% 3px 3px /
        23% 23% 3px 3px;

    transition: transform 0.65s cubic-bezier(.2, .7, .2, 1);
}


.am-product-show .am-similar-product:hover
.am-similar-product__image img {
    transform: scale(1.035);
}


/* ================================================================
   BADGE
================================================================ */

.am-product-show .am-similar-product__badge {
    position: absolute;

    top: 22px;
    left: 20px;

    z-index: 3;

    padding: 6px 9px;

    background: rgba(255, 250, 241, 0.96);

    color: #9b6b16;

    border: 1px solid rgba(212, 175, 55, 0.42);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ================================================================
   PRODUCT CONTENT
================================================================ */

.am-product-show .am-similar-product__content {
    padding: 18px 7px 0;
}


/* Category */

.am-product-show .am-similar-product__category {
    display: block;

    margin-bottom: 7px;

    color: #9b6b16;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}


/* ================================================================
   PRODUCT TITLE
================================================================ */

.am-product-show .am-similar-product__title {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;
}


.am-product-show .am-similar-product__title h3 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;
    font-weight: 400;

    line-height: 1.2;
}


.am-product-show .am-similar-product__title h3 a {
    color: var(--primary-color);

    text-decoration: none;
}


/* ================================================================
   ARROW
================================================================ */

.am-product-show .am-similar-product__arrow {
    display: flex;

    flex: 0 0 36px;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    color: var(--primary-color);

    border: 1px solid rgba(85, 0, 6, 0.18);
    border-radius: 50%;

    font-size: 13px;

    text-decoration: none;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.am-product-show .am-similar-product__arrow:hover {
    background: var(--primary-color);

    color: var(--gold-soft);

    border-color: var(--primary-color);

    transform: translate(2px, -2px);
}


/* ================================================================
   PRICE
================================================================ */

.am-product-show .am-similar-product__price {
    display: flex;

    align-items: baseline;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 9px;
}


.am-product-show .am-similar-product__price > span {
    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 16px;
    font-weight: 600;
}


.am-product-show .am-similar-product__price del {
    color: #ad9e99;

    font-size: 10px;
}


.am-product-show .am-similar-product__price small {
    color: #8b7d78;

    font-size: 9px;
}


/* ================================================================
   TABLET
================================================================ */

@media (max-width: 991.98px) {

    .am-product-show .am-similar {
        padding: 80px 0 90px;
    }


    .am-product-show .am-similar__header {
        grid-template-columns: 1fr 0.7fr;

        gap: 55px;

        margin-bottom: 65px;
    }


    .am-product-show .am-similar__heading h2 {
        font-size: 52px;
    }


    .am-product-show .am-similar__grid {
        gap: 25px;
    }


    .am-product-show .am-similar-product__title h3 {
        font-size: 20px;
    }

}


/* ================================================================
   MOBILE
================================================================ */

@media (max-width: 767.98px) {

    .am-product-show .am-similar {
        padding: 65px 0 70px;
    }


    .am-product-show .am-similar__watermark {
        display: none;
    }


    /* Header */

    .am-product-show .am-similar__header {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 55px;
    }


    .am-product-show .am-similar__eyebrow {
        margin-bottom: 13px;

        font-size: 8px;

        letter-spacing: 1.8px;
    }


    .am-product-show .am-similar__eyebrow span {
        width: 28px;
    }


    .am-product-show .am-similar__heading h2 {
        max-width: 420px;

        font-size: 41px;

        letter-spacing: -1.2px;
    }


    .am-product-show .am-similar__intro {
        max-width: 450px;

        padding-left: 19px;
    }


    .am-product-show .am-similar__intro p {
        font-size: 12px;

        line-height: 1.7;
    }


    /* Products */

    .am-product-show .am-similar__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 55px 14px;
    }


    /*
     * Keep the editorial stagger on mobile,
     * but make it more subtle.
     */

    .am-product-show .am-similar-product:nth-child(2) {
        margin-top: 30px;
    }


    .am-product-show .am-similar-product:nth-child(3) {
        margin-top: 0;
    }


    .am-product-show .am-similar-product__number {
        top: -27px;

        font-size: 27px;
    }


    .am-product-show .am-similar-product__image {
        padding: 5px;

        border-radius:
            48% 48% 5px 5px /
            21% 21% 5px 5px;
    }


    .am-product-show .am-similar-product__image img {
        border-radius:
            48% 48% 2px 2px /
            20% 20% 2px 2px;
    }


    .am-product-show .am-similar-product__content {
        padding: 12px 2px 0;
    }


    .am-product-show .am-similar-product__category {
        margin-bottom: 5px;

        font-size: 7px;
    }


    .am-product-show .am-similar-product__title {
        gap: 7px;
    }


    .am-product-show .am-similar-product__title h3 {
        font-size: 16px;
    }


    .am-product-show .am-similar-product__arrow {
        flex-basis: 28px;

        width: 28px;
        height: 28px;

        font-size: 10px;
    }


    .am-product-show .am-similar-product__price {
        gap: 5px;

        margin-top: 6px;
    }


    .am-product-show .am-similar-product__price > span {
        font-size: 13px;
    }


    .am-product-show .am-similar-product__badge {
        top: 14px;
        left: 13px;

        padding: 5px 6px;

        font-size: 6px;
    }

}


/* ================================================================
   SMALL MOBILE
================================================================ */

@media (max-width: 480px) {

    .am-product-show .am-similar__heading h2 {
        font-size: 37px;
    }


    .am-product-show .am-similar__grid {
        gap: 50px 11px;
    }


    .am-product-show .am-similar-product:nth-child(2) {
        margin-top: 24px;
    }


    .am-product-show .am-similar-product__title h3 {
        font-size: 14px;
    }


    .am-product-show .am-similar-product__arrow {
        flex-basis: 26px;

        width: 26px;
        height: 26px;
    }


    .am-product-show .am-similar-product__price > span {
        font-size: 12px;
    }

}





/* ================================================================
   AMRITALAYA — GALLERY
================================================================ */

.am-gallery-page {
    position: relative;

    overflow: hidden;

    background: #fffaf1;
    color: var(--primary-color);
}


/* ================================================================
   HERO
================================================================ */

.am-gallery-page .am-gallery-hero {
    position: relative;

    padding: 82px 0 72px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(212, 175, 55, 0.07),
            transparent 28%
        ),
        #fffaf1;
}


.am-gallery-page .am-gallery-hero__watermark {
    position: absolute;

    right: -25px;
    top: -125px;

    color: rgba(85, 0, 6, 0.025);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 440px;
    font-weight: 400;

    line-height: 1;

    pointer-events: none;
}


.am-gallery-page .am-gallery-hero__grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1.2fr 0.7fr;

    align-items: end;

    gap: 100px;
}


/* ================================================================
   HERO EYEBROW
================================================================ */

.am-gallery-page .am-gallery-eyebrow {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;

    color: #9b6b16;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}


.am-gallery-page .am-gallery-eyebrow span {
    width: 42px;
    height: 1px;

    background: var(--gold-main);
}


/* ================================================================
   HERO TITLE
================================================================ */

.am-gallery-page .am-gallery-hero h1 {
    max-width: 720px;

    margin: 0;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(50px, 5.2vw, 78px);
    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -2.4px;
}


.am-gallery-page .am-gallery-hero h1 em {
    display: block;

    margin-top: 5px;

    color: var(--gold-main);

    font-weight: 400;
    font-style: italic;
}


/* ================================================================
   HERO COPY
================================================================ */

.am-gallery-page .am-gallery-hero__copy {
    padding: 7px 0 7px 30px;

    border-left: 1px solid rgba(212, 175, 55, 0.45);
}


.am-gallery-page .am-gallery-hero__copy p {
    max-width: 430px;

    margin: 0;

    color: #796e6d;

    font-size: 13.5px;

    line-height: 1.9;
}


.am-gallery-page .am-gallery-hero__signature {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 23px;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 12px;
    font-style: italic;
}


.am-gallery-page .am-gallery-hero__signature span {
    width: 26px;
    height: 1px;

    background: var(--gold-main);
}


/* ================================================================
   FILTER
================================================================ */

.am-gallery-page .am-gallery-filter {
    position: relative;
    z-index: 5;

    background: rgba(255, 250, 241, 0.97);

    border-top: 1px solid rgba(212, 175, 55, 0.22);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}


.am-gallery-page .am-gallery-filter__scroll {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 40px;

    overflow-x: auto;

    scrollbar-width: none;
}


.am-gallery-page .am-gallery-filter__scroll::-webkit-scrollbar {
    display: none;
}


.am-gallery-page .am-gallery-filter__link {
    position: relative;

    flex: 0 0 auto;

    padding: 20px 2px 18px;

    color: #8d7c76;

    font-size: 10.5px;
    font-weight: 600;

    letter-spacing: 0.5px;

    text-decoration: none;

    transition: color 0.25s ease;
}


.am-gallery-page .am-gallery-filter__link:hover,
.am-gallery-page .am-gallery-filter__link.active {
    color: var(--primary-color);
}


.am-gallery-page .am-gallery-filter__link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -1px;

    width: 0;
    height: 2px;

    background: var(--gold-main);

    transform: translateX(-50%);

    transition: width 0.25s ease;
}


.am-gallery-page .am-gallery-filter__link.active::after {
    width: 100%;
}


/* ================================================================
   COLLECTION
================================================================ */

.am-gallery-page .am-gallery-collection {
    position: relative;

    padding: 100px 0 120px;

    background: #fffaf1;
}


.am-gallery-page .am-gallery-collection__word {
    position: absolute;

    left: 50%;
    top: 32%;

    transform: translateX(-50%);

    color: rgba(85, 0, 6, 0.018);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(130px, 20vw, 340px);

    letter-spacing: 20px;

    line-height: 1;

    white-space: nowrap;

    pointer-events: none;
}


/* ================================================================
   GALLERY GRID
================================================================ */

.am-gallery-page .am-gallery-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(12, minmax(0, 1fr));

    gap: 75px 30px;
}


/*
|--------------------------------------------------------------------------
| Editorial layout
|--------------------------------------------------------------------------
|
| 1   = large
| 2   = smaller / lower
| 3   = tall
| 4   = smaller
| then repeat.
|
*/


.am-gallery-page .am-gallery-item {
    position: relative;

    min-width: 0;

    grid-column: span 4;
}


/* Every 6 item rhythm */

.am-gallery-page .am-gallery-item:nth-child(6n + 1) {
    grid-column: span 5;
}


.am-gallery-page .am-gallery-item:nth-child(6n + 2) {
    grid-column: span 3;

    margin-top: 85px;
}


.am-gallery-page .am-gallery-item:nth-child(6n + 3) {
    grid-column: span 4;

    margin-top: 30px;
}


.am-gallery-page .am-gallery-item:nth-child(6n + 4) {
    grid-column: span 3;

    margin-top: 35px;
}


.am-gallery-page .am-gallery-item:nth-child(6n + 5) {
    grid-column: span 5;
}


.am-gallery-page .am-gallery-item:nth-child(6n + 6) {
    grid-column: span 4;

    margin-top: 75px;
}


/* ================================================================
   NUMBER
================================================================ */

.am-gallery-page .am-gallery-item__number {
    position: absolute;

    top: -35px;
    left: 7px;

    z-index: 3;

    color: rgba(85, 0, 6, 0.14);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 36px;
    font-style: italic;

    line-height: 1;
}


/* ================================================================
   IMAGE
================================================================ */

.am-gallery-page .am-gallery-item__image {
    position: relative;

    display: block;

    width: 100%;
    aspect-ratio: 0.86 / 1;

    margin: 0;
    padding: 7px;

    overflow: hidden;

    background: #fffaf1;

    border: 1px solid rgba(212, 175, 55, 0.46);

    border-radius:
        48% 48% 6px 6px /
        22% 22% 6px 6px;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
}


.am-gallery-page .am-gallery-item:nth-child(6n + 1)
.am-gallery-item__image,
.am-gallery-page .am-gallery-item:nth-child(6n + 5)
.am-gallery-item__image {
    aspect-ratio: 0.94 / 1;
}


.am-gallery-page .am-gallery-item:nth-child(6n + 2)
.am-gallery-item__image,
.am-gallery-page .am-gallery-item:nth-child(6n + 4)
.am-gallery-item__image {
    aspect-ratio: 0.78 / 1;
}


.am-gallery-page .am-gallery-item__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius:
        48% 48% 2px 2px /
        21% 21% 2px 2px;

    transition: transform 0.7s cubic-bezier(.2, .7, .2, 1);
}


.am-gallery-page .am-gallery-item:hover
.am-gallery-item__image img {
    transform: scale(1.035);
}


/* ================================================================
   FEATURED
================================================================ */

.am-gallery-page .am-gallery-item__featured {
    position: absolute;

    top: 22px;
    left: 20px;

    z-index: 4;

    padding: 6px 9px;

    background: rgba(255, 250, 241, 0.95);

    color: #9b6b16;

    border: 1px solid rgba(212, 175, 55, 0.42);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ================================================================
   VIEW ICON
================================================================ */

.am-gallery-page .am-gallery-item__view {
    position: absolute;

    right: 21px;
    bottom: 21px;

    z-index: 4;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: rgba(255, 250, 241, 0.94);

    color: var(--primary-color);

    border-radius: 50%;

    font-size: 14px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.am-gallery-page .am-gallery-item:hover
.am-gallery-item__view {
    background: var(--primary-color);

    color: var(--gold-soft);

    transform: translate(2px, -2px);
}


/* ================================================================
   ITEM CONTENT
================================================================ */

.am-gallery-page .am-gallery-item__content {
    padding: 17px 7px 0;
}


.am-gallery-page .am-gallery-item__category {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 7px;

    color: #9b6b16;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}


.am-gallery-page .am-gallery-item__category span {
    width: 20px;
    height: 1px;

    background: var(--gold-main);
}


.am-gallery-page .am-gallery-item__content h2 {
    margin: 0;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;
    font-weight: 400;

    line-height: 1.2;
}


/* ================================================================
   EMPTY
================================================================ */

.am-gallery-page .am-gallery-empty {
    position: relative;
    z-index: 2;

    max-width: 480px;

    margin: 30px auto;

    text-align: center;
}


.am-gallery-page .am-gallery-empty > span {
    color: #9b6b16;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.am-gallery-page .am-gallery-empty h2 {
    margin: 10px 0;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 31px;
    font-weight: 400;
}


.am-gallery-page .am-gallery-empty p {
    margin: 0;

    color: #81736f;

    font-size: 13px;

    line-height: 1.7;
}


.am-gallery-page .am-gallery-empty a {
    display: inline-block;

    margin-top: 18px;
    padding-bottom: 4px;

    color: var(--primary-color);

    border-bottom: 1px solid var(--gold-main);

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;
}


/* ================================================================
   LIGHTBOX
================================================================ */

body.am-gallery-open {
    overflow: hidden;
}


.am-gallery-page .am-gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 45px 90px;

    background: rgba(44, 8, 11, 0.96);

    visibility: hidden;

    opacity: 0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.am-gallery-page .am-gallery-lightbox.active {
    visibility: visible;

    opacity: 1;
}


/* ================================================================
   LIGHTBOX INNER
================================================================ */

.am-gallery-page .am-gallery-lightbox__inner {
    display: grid;

    grid-template-columns: minmax(0, 650px) minmax(260px, 360px);

    align-items: center;

    gap: 60px;

    width: 100%;
    max-width: 1100px;

    max-height: 85vh;
}


/* Image */

.am-gallery-page .am-gallery-lightbox__image {
    width: 100%;
    height: min(75vh, 720px);

    overflow: hidden;

    background: #241416;

    border: 1px solid rgba(212, 175, 55, 0.3);
}


.am-gallery-page .am-gallery-lightbox__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* Information */

.am-gallery-page .am-gallery-lightbox__info > span {
    display: block;

    margin-bottom: 11px;

    color: var(--gold-main);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.am-gallery-page .am-gallery-lightbox__info h3 {
    margin: 0;

    color: var(--gold-soft);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 38px;
    font-weight: 400;

    line-height: 1.08;
}


.am-gallery-page .am-gallery-lightbox__info p {
    margin: 19px 0 0;

    color: rgba(255, 250, 241, 0.65);

    font-size: 12.5px;

    line-height: 1.8;
}


/* ================================================================
   LIGHTBOX CLOSE
================================================================ */

.am-gallery-page .am-gallery-lightbox__close {
    position: absolute;

    top: 27px;
    right: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    padding: 0;

    background: transparent;

    color: var(--gold-soft);

    border: 1px solid rgba(245, 210, 122, 0.35);
    border-radius: 50%;

    font-family: Arial, sans-serif;

    font-size: 24px;
    font-weight: 300;

    cursor: pointer;
}


/* ================================================================
   LIGHTBOX NAVIGATION
================================================================ */

.am-gallery-page .am-gallery-lightbox__nav {
    position: absolute;

    top: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    padding: 0;

    background: transparent;

    color: var(--gold-soft);

    border: 1px solid rgba(245, 210, 122, 0.3);
    border-radius: 50%;

    font-size: 15px;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.am-gallery-page .am-gallery-lightbox__nav:hover {
    background: var(--gold-main);

    color: var(--primary-color);
}


.am-gallery-page .am-gallery-lightbox__prev {
    left: 28px;
}


.am-gallery-page .am-gallery-lightbox__next {
    right: 28px;
}


/* ================================================================
   TABLET
================================================================ */

@media (max-width: 991.98px) {

    .am-gallery-page .am-gallery-hero {
        padding: 65px 0 58px;
    }


    .am-gallery-page .am-gallery-hero__grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .am-gallery-page .am-gallery-hero__copy {
        max-width: 520px;
    }


    .am-gallery-page .am-gallery-hero h1 {
        font-size: 58px;
    }


    /* Gallery */

    .am-gallery-page .am-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 70px 25px;
    }


    .am-gallery-page .am-gallery-item,
    .am-gallery-page .am-gallery-item:nth-child(6n + 1),
    .am-gallery-page .am-gallery-item:nth-child(6n + 2),
    .am-gallery-page .am-gallery-item:nth-child(6n + 3),
    .am-gallery-page .am-gallery-item:nth-child(6n + 4),
    .am-gallery-page .am-gallery-item:nth-child(6n + 5),
    .am-gallery-page .am-gallery-item:nth-child(6n + 6) {
        grid-column: auto;

        margin-top: 0;
    }


    .am-gallery-page .am-gallery-item:nth-child(even) {
        margin-top: 55px;
    }


    /* Lightbox */

    .am-gallery-page .am-gallery-lightbox {
        padding: 60px 70px;
    }


    .am-gallery-page .am-gallery-lightbox__inner {
        grid-template-columns: 1fr;

        gap: 25px;

        max-width: 650px;
    }


    .am-gallery-page .am-gallery-lightbox__image {
        height: 60vh;
    }


    .am-gallery-page .am-gallery-lightbox__info h3 {
        font-size: 29px;
    }

}


/* ================================================================
   MOBILE
================================================================ */

@media (max-width: 767.98px) {

    /* Hero */

    .am-gallery-page .am-gallery-hero {
        padding: 48px 0 40px;
    }


    .am-gallery-page .am-gallery-hero__watermark {
        display: none;
    }


    .am-gallery-page .am-gallery-eyebrow {
        gap: 11px;

        margin-bottom: 14px;

        font-size: 8px;

        letter-spacing: 1.9px;
    }


    .am-gallery-page .am-gallery-eyebrow span {
        width: 28px;
    }


    .am-gallery-page .am-gallery-hero h1 {
        max-width: 450px;

        font-size: 42px;

        letter-spacing: -1.3px;
    }


    .am-gallery-page .am-gallery-hero__copy {
        padding-left: 19px;
    }


    .am-gallery-page .am-gallery-hero__copy p {
        font-size: 12px;

        line-height: 1.75;
    }


    .am-gallery-page .am-gallery-hero__signature {
        margin-top: 17px;

        font-size: 10.5px;
    }


    /* Filter */

    .am-gallery-page .am-gallery-filter__scroll {
        justify-content: flex-start;

        gap: 27px;
    }


    .am-gallery-page .am-gallery-filter__link {
        padding: 17px 0 15px;

        font-size: 9.5px;
    }


    /* Collection */

    .am-gallery-page .am-gallery-collection {
        padding: 70px 0 80px;
    }


    .am-gallery-page .am-gallery-collection__word {
        display: none;
    }


    .am-gallery-page .am-gallery-grid {
        gap: 55px 14px;
    }


    .am-gallery-page .am-gallery-item:nth-child(even) {
        margin-top: 35px;
    }


    .am-gallery-page .am-gallery-item__number {
        top: -27px;

        font-size: 27px;
    }


    .am-gallery-page .am-gallery-item__image,
    .am-gallery-page .am-gallery-item:nth-child(6n + 1) .am-gallery-item__image,
    .am-gallery-page .am-gallery-item:nth-child(6n + 2) .am-gallery-item__image,
    .am-gallery-page .am-gallery-item:nth-child(6n + 4) .am-gallery-item__image,
    .am-gallery-page .am-gallery-item:nth-child(6n + 5) .am-gallery-item__image {
        aspect-ratio: 0.84 / 1;

        padding: 5px;

        border-radius:
            48% 48% 5px 5px /
            20% 20% 5px 5px;
    }


    .am-gallery-page .am-gallery-item__image img {
        border-radius:
            48% 48% 2px 2px /
            19% 19% 2px 2px;
    }


    .am-gallery-page .am-gallery-item__content {
        padding: 12px 2px 0;
    }


    .am-gallery-page .am-gallery-item__category {
        gap: 6px;

        margin-bottom: 5px;

        font-size: 6.5px;
    }


    .am-gallery-page .am-gallery-item__category span {
        width: 12px;
    }


    .am-gallery-page .am-gallery-item__content h2 {
        font-size: 16px;
    }


    .am-gallery-page .am-gallery-item__view {
        right: 13px;
        bottom: 13px;

        width: 30px;
        height: 30px;

        font-size: 10px;
    }


    .am-gallery-page .am-gallery-item__featured {
        top: 14px;
        left: 13px;

        padding: 5px 6px;

        font-size: 6px;
    }


    /* Lightbox */

    .am-gallery-page .am-gallery-lightbox {
        padding: 70px 20px 35px;
    }


    .am-gallery-page .am-gallery-lightbox__inner {
        gap: 20px;

        max-height: 85vh;
    }


    .am-gallery-page .am-gallery-lightbox__image {
        height: 55vh;
    }


    .am-gallery-page .am-gallery-lightbox__info {
        padding: 0 8px;
    }


    .am-gallery-page .am-gallery-lightbox__info > span {
        font-size: 7px;
    }


    .am-gallery-page .am-gallery-lightbox__info h3 {
        font-size: 25px;
    }


    .am-gallery-page .am-gallery-lightbox__info p {
        margin-top: 10px;

        font-size: 11px;

        line-height: 1.6;
    }


    .am-gallery-page .am-gallery-lightbox__close {
        top: 18px;
        right: 18px;

        width: 37px;
        height: 37px;

        font-size: 20px;
    }


    .am-gallery-page .am-gallery-lightbox__nav {
        top: auto;
        bottom: 18px;

        width: 37px;
        height: 37px;

        transform: none;
    }


    .am-gallery-page .am-gallery-lightbox__prev {
        left: 20px;
    }


    .am-gallery-page .am-gallery-lightbox__next {
        right: 20px;
    }

}


/* ================================================================
   SMALL MOBILE
================================================================ */

@media (max-width: 480px) {

    .am-gallery-page .am-gallery-hero h1 {
        font-size: 37px;
    }


    .am-gallery-page .am-gallery-grid {
        gap: 50px 11px;
    }


    .am-gallery-page .am-gallery-item:nth-child(even) {
        margin-top: 27px;
    }


    .am-gallery-page .am-gallery-item__content h2 {
        font-size: 14px;
    }


    .am-gallery-page .am-gallery-item__view {
        width: 27px;
        height: 27px;
    }

}


/* ================================================================
   AMRITALAYA — JOURNAL / BLOG
================================================================ */

.am-blog-page {
    position: relative;

    overflow: hidden;

    background: #fffaf1;
    color: var(--primary-color);
}


/* ================================================================
   HERO
================================================================ */

.am-blog-page .am-blog-hero {
    position: relative;

    padding: 82px 0 72px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 84% 27%,
            rgba(212, 175, 55, 0.07),
            transparent 28%
        ),
        #fffaf1;
}


.am-blog-page .am-blog-hero__watermark {
    position: absolute;

    right: -25px;
    top: -125px;

    color: rgba(85, 0, 6, 0.025);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 440px;
    font-weight: 400;

    line-height: 1;

    pointer-events: none;
}


.am-blog-page .am-blog-hero__grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1.2fr 0.7fr;

    align-items: end;

    gap: 100px;
}


/* Eyebrow */

.am-blog-page .am-blog-eyebrow {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;

    color: #9b6b16;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}


.am-blog-page .am-blog-eyebrow span {
    width: 42px;
    height: 1px;

    background: var(--gold-main);
}


/* Title */

.am-blog-page .am-blog-hero h1 {
    max-width: 720px;

    margin: 0;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(52px, 5.4vw, 80px);
    font-weight: 400;

    line-height: 0.96;

    letter-spacing: -2.5px;
}


.am-blog-page .am-blog-hero h1 em {
    display: block;

    margin-top: 5px;

    color: var(--gold-main);

    font-weight: 400;
    font-style: italic;
}


/* Hero Copy */

.am-blog-page .am-blog-hero__copy {
    padding: 7px 0 7px 30px;

    border-left: 1px solid rgba(212, 175, 55, 0.45);
}


.am-blog-page .am-blog-hero__copy p {
    max-width: 430px;

    margin: 0;

    color: #796e6d;

    font-size: 13.5px;

    line-height: 1.9;
}


.am-blog-page .am-blog-hero__signature {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 23px;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 12px;
    font-style: italic;
}


.am-blog-page .am-blog-hero__signature span {
    width: 26px;
    height: 1px;

    background: var(--gold-main);
}


/* ================================================================
   FILTER
================================================================ */

.am-blog-page .am-blog-filter {
    position: relative;
    z-index: 5;

    background: rgba(255, 250, 241, 0.97);

    border-top: 1px solid rgba(212, 175, 55, 0.22);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}


.am-blog-page .am-blog-filter__scroll {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 40px;

    overflow-x: auto;

    scrollbar-width: none;
}


.am-blog-page .am-blog-filter__scroll::-webkit-scrollbar {
    display: none;
}


.am-blog-page .am-blog-filter__link {
    position: relative;

    flex: 0 0 auto;

    padding: 20px 2px 18px;

    color: #8d7c76;

    font-size: 10.5px;
    font-weight: 600;

    letter-spacing: 0.5px;

    text-decoration: none;

    transition: color 0.25s ease;
}


.am-blog-page .am-blog-filter__link:hover,
.am-blog-page .am-blog-filter__link.active {
    color: var(--primary-color);
}


.am-blog-page .am-blog-filter__link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -1px;

    width: 0;
    height: 2px;

    background: var(--gold-main);

    transform: translateX(-50%);

    transition: width 0.25s ease;
}


.am-blog-page .am-blog-filter__link.active::after {
    width: 100%;
}


/* ================================================================
   FEATURED STORY
================================================================ */

.am-blog-page .am-blog-featured {
    position: relative;

    padding: 95px 0 105px;

    background: #fffaf1;
}


.am-blog-page .am-featured-story {
    display: grid;

    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);

    align-items: center;

    gap: clamp(65px, 8vw, 120px);
}


/* ================================================================
   FEATURED VISUAL
================================================================ */

.am-blog-page .am-featured-story__visual {
    position: relative;

    padding-left: 28px;
}


.am-blog-page .am-featured-story__number {
    position: absolute;

    left: 0;
    top: -35px;

    z-index: 3;

    color: rgba(85, 0, 6, 0.15);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 42px;
    font-style: italic;

    line-height: 1;
}


.am-blog-page .am-featured-story__image {
    position: relative;

    display: block;

    width: 100%;
    aspect-ratio: 1.08 / 1;

    padding: 8px;

    overflow: hidden;

    background: #fffaf1;

    border: 1px solid rgba(212, 175, 55, 0.5);

    border-radius:
        48% 48% 6px 6px /
        22% 22% 6px 6px;
}


.am-blog-page .am-featured-story__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius:
        48% 48% 2px 2px /
        21% 21% 2px 2px;

    transition: transform 0.7s cubic-bezier(.2, .7, .2, 1);
}


.am-blog-page .am-featured-story:hover
.am-featured-story__image img {
    transform: scale(1.025);
}


/* ================================================================
   FEATURED CONTENT
================================================================ */

.am-blog-page .am-featured-story__eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 17px;

    color: #9b6b16;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.am-blog-page .am-featured-story__eyebrow span {
    width: 37px;
    height: 1px;

    background: var(--gold-main);
}


.am-blog-page .am-featured-story__category {
    margin-bottom: 11px;

    color: #9b6b16;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}


.am-blog-page .am-featured-story__content h2 {
    max-width: 570px;

    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(37px, 3.7vw, 54px);
    font-weight: 400;

    line-height: 1.04;

    letter-spacing: -1.4px;
}


.am-blog-page .am-featured-story__content h2 a {
    color: var(--primary-color);

    text-decoration: none;
}


.am-blog-page .am-featured-story__excerpt {
    max-width: 510px;

    margin: 22px 0 0;

    color: #796c69;

    font-size: 13px;

    line-height: 1.85;
}


/* Metadata */

.am-blog-page .am-featured-story__meta {
    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 20px;

    color: #9a8984;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.6px;
    text-transform: uppercase;
}


.am-blog-page .am-featured-story__meta i {
    width: 18px;
    height: 1px;

    background: rgba(212, 175, 55, 0.6);
}


/* Read */

.am-blog-page .am-featured-story__read {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 27px;

    color: var(--primary-color);

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;
}


.am-blog-page .am-featured-story__read i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    background: var(--primary-color);

    color: var(--gold-soft);

    border-radius: 50%;

    font-size: 11px;
    font-style: normal;

    transition: transform 0.25s ease;
}


.am-blog-page .am-featured-story__read:hover i {
    transform: translate(2px, -2px);
}


/* ================================================================
   BLOG COLLECTION
================================================================ */

.am-blog-page .am-blog-collection {
    position: relative;

    padding: 100px 0 115px;

    overflow: hidden;

    background: #fff7eb;

    border-top: 1px solid rgba(212, 175, 55, 0.14);
}


.am-blog-page .am-blog-collection__watermark {
    position: absolute;

    left: 50%;
    top: 30%;

    transform: translateX(-50%);

    color: rgba(85, 0, 6, 0.018);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(130px, 20vw, 330px);

    letter-spacing: 20px;

    line-height: 1;

    white-space: nowrap;

    pointer-events: none;
}


/* ================================================================
   COLLECTION HEADER
================================================================ */

.am-blog-page .am-blog-collection__header {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 0.55fr;

    align-items: end;

    gap: 80px;

    margin-bottom: 75px;
}


.am-blog-page .am-blog-collection__eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 16px;

    color: #9b6b16;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2.2px;
    text-transform: uppercase;
}


.am-blog-page .am-blog-collection__eyebrow span {
    width: 38px;
    height: 1px;

    background: var(--gold-main);
}


.am-blog-page .am-blog-collection__header h2 {
    margin: 0;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(44px, 4.6vw, 66px);
    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -1.8px;
}


.am-blog-page .am-blog-collection__header h2 em {
    color: var(--gold-main);

    font-weight: 400;
}


.am-blog-page .am-blog-collection__header > p {
    max-width: 390px;

    margin: 0;
    padding-left: 25px;

    color: #7c6f6b;

    border-left: 1px solid rgba(212, 175, 55, 0.4);

    font-size: 12.5px;

    line-height: 1.8;
}


/* ================================================================
   BLOG GRID
================================================================ */

.am-blog-page .am-blog-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 75px 40px;
}


.am-blog-page .am-blog-card:nth-child(3n + 2) {
    margin-top: 52px;
}


.am-blog-page .am-blog-card {
    position: relative;

    min-width: 0;
}


/* ================================================================
   BLOG NUMBER
================================================================ */

.am-blog-page .am-blog-card__number {
    position: absolute;

    left: 8px;
    top: -34px;

    z-index: 3;

    color: rgba(85, 0, 6, 0.14);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 35px;
    font-style: italic;

    line-height: 1;
}


/* ================================================================
   BLOG IMAGE
================================================================ */

.am-blog-page .am-blog-card__image {
    position: relative;

    display: block;

    width: 100%;
    aspect-ratio: 0.88 / 1;

    padding: 7px;

    overflow: hidden;

    background: #fff7eb;

    border: 1px solid rgba(212, 175, 55, 0.45);

    border-radius:
        48% 48% 6px 6px /
        21% 21% 6px 6px;
}


.am-blog-page .am-blog-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius:
        48% 48% 2px 2px /
        20% 20% 2px 2px;

    transition: transform 0.7s cubic-bezier(.2, .7, .2, 1);
}


.am-blog-page .am-blog-card:hover
.am-blog-card__image img {
    transform: scale(1.035);
}


/* Featured */

.am-blog-page .am-blog-card__featured {
    position: absolute;

    top: 20px;
    left: 19px;

    padding: 6px 9px;

    background: rgba(255, 250, 241, 0.95);

    color: #9b6b16;

    border: 1px solid rgba(212, 175, 55, 0.4);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ================================================================
   BLOG CONTENT
================================================================ */

.am-blog-page .am-blog-card__content {
    padding: 17px 6px 0;
}


.am-blog-page .am-blog-card__top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 9px;
}


.am-blog-page .am-blog-card__category {
    color: #9b6b16;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


.am-blog-page .am-blog-card__date {
    color: #a0918d;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* Title */

.am-blog-page .am-blog-card h3 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;
    font-weight: 400;

    line-height: 1.17;

    letter-spacing: -0.3px;
}


.am-blog-page .am-blog-card h3 a {
    color: var(--primary-color);

    text-decoration: none;
}


/* Excerpt */

.am-blog-page .am-blog-card__content > p {
    display: -webkit-box;

    margin: 11px 0 0;

    overflow: hidden;

    color: #7d706c;

    font-size: 11.5px;

    line-height: 1.7;

    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


/* Bottom */

.am-blog-page .am-blog-card__bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 17px;
    padding-top: 13px;

    border-top: 1px solid rgba(85, 0, 6, 0.08);
}


.am-blog-page .am-blog-card__bottom > span {
    color: #998984;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 10px;
    font-style: italic;
}


.am-blog-page .am-blog-card__bottom > a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 33px;
    height: 33px;

    color: var(--primary-color);

    border: 1px solid rgba(85, 0, 6, 0.17);
    border-radius: 50%;

    font-size: 11px;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.am-blog-page .am-blog-card__bottom > a:hover {
    background: var(--primary-color);

    color: var(--gold-soft);

    transform: translate(2px, -2px);
}


/* ================================================================
   EMPTY
================================================================ */

.am-blog-page .am-blog-empty {
    position: relative;
    z-index: 2;

    max-width: 480px;

    margin: 30px auto;

    text-align: center;
}


.am-blog-page .am-blog-empty > span {
    color: #9b6b16;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.am-blog-page .am-blog-empty h3 {
    margin: 10px 0;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 31px;
    font-weight: 400;
}


.am-blog-page .am-blog-empty p {
    color: #81736f;

    font-size: 13px;

    line-height: 1.7;
}


.am-blog-page .am-blog-empty a {
    display: inline-block;

    margin-top: 15px;
    padding-bottom: 4px;

    color: var(--primary-color);

    border-bottom: 1px solid var(--gold-main);

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;
}


/* ================================================================
   PAGINATION
================================================================ */

.am-blog-page .am-blog-pagination {
    position: relative;
    z-index: 2;

    margin-top: 80px;
}


/* ================================================================
   TABLET
================================================================ */

@media (max-width: 991.98px) {

    .am-blog-page .am-blog-hero__grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .am-blog-page .am-blog-hero__copy {
        max-width: 520px;
    }


    .am-blog-page .am-featured-story {
        gap: 55px;
    }


    .am-blog-page .am-featured-story__content h2 {
        font-size: 42px;
    }


    .am-blog-page .am-blog-collection__header {
        gap: 45px;
    }


    .am-blog-page .am-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 70px 28px;
    }


    .am-blog-page .am-blog-card:nth-child(3n + 2) {
        margin-top: 0;
    }


    .am-blog-page .am-blog-card:nth-child(even) {
        margin-top: 48px;
    }

}


/* ================================================================
   MOBILE
================================================================ */

@media (max-width: 767.98px) {

    /* Hero */

    .am-blog-page .am-blog-hero {
        padding: 48px 0 40px;
    }


    .am-blog-page .am-blog-hero__watermark {
        display: none;
    }


    .am-blog-page .am-blog-eyebrow {
        gap: 11px;

        margin-bottom: 14px;

        font-size: 8px;
    }


    .am-blog-page .am-blog-eyebrow span {
        width: 28px;
    }


    .am-blog-page .am-blog-hero h1 {
        font-size: 43px;

        letter-spacing: -1.3px;
    }


    .am-blog-page .am-blog-hero__copy {
        padding-left: 19px;
    }


    .am-blog-page .am-blog-hero__copy p {
        font-size: 12px;

        line-height: 1.75;
    }


    /* Filter */

    .am-blog-page .am-blog-filter__scroll {
        justify-content: flex-start;

        gap: 27px;
    }


    .am-blog-page .am-blog-filter__link {
        padding: 17px 0 15px;

        font-size: 9.5px;
    }


    /* Featured */

    .am-blog-page .am-blog-featured {
        padding: 70px 0 75px;
    }


    .am-blog-page .am-featured-story {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .am-blog-page .am-featured-story__visual {
        max-width: 520px;

        margin: 0 auto;

        padding-left: 0;
    }


    .am-blog-page .am-featured-story__number {
        top: -28px;
        left: 5px;

        font-size: 30px;
    }


    .am-blog-page .am-featured-story__content h2 {
        font-size: 38px;
    }


    .am-blog-page .am-featured-story__excerpt {
        margin-top: 15px;

        font-size: 12px;
    }


    /* Collection */

    .am-blog-page .am-blog-collection {
        padding: 70px 0 80px;
    }


    .am-blog-page .am-blog-collection__watermark {
        display: none;
    }


    .am-blog-page .am-blog-collection__header {
        grid-template-columns: 1fr;

        gap: 22px;

        margin-bottom: 55px;
    }


    .am-blog-page .am-blog-collection__header h2 {
        font-size: 41px;
    }


    .am-blog-page .am-blog-collection__header > p {
        max-width: 440px;

        padding-left: 18px;

        font-size: 11.5px;
    }


    /* Blog grid */

    .am-blog-page .am-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 55px 14px;
    }


    .am-blog-page .am-blog-card:nth-child(even) {
        margin-top: 30px;
    }


    .am-blog-page .am-blog-card__number {
        top: -26px;

        font-size: 26px;
    }


    .am-blog-page .am-blog-card__image {
        padding: 5px;

        border-radius:
            48% 48% 5px 5px /
            19% 19% 5px 5px;
    }


    .am-blog-page .am-blog-card__image img {
        border-radius:
            48% 48% 2px 2px /
            18% 18% 2px 2px;
    }


    .am-blog-page .am-blog-card__content {
        padding: 12px 2px 0;
    }


    .am-blog-page .am-blog-card__top {
        display: block;

        margin-bottom: 6px;
    }


    .am-blog-page .am-blog-card__category {
        display: block;

        margin-bottom: 4px;

        font-size: 6.5px;
    }


    .am-blog-page .am-blog-card__date {
        font-size: 7px;
    }


    .am-blog-page .am-blog-card h3 {
        font-size: 16px;

        line-height: 1.2;
    }


    .am-blog-page .am-blog-card__content > p {
        margin-top: 7px;

        font-size: 10.5px;

        -webkit-line-clamp: 2;
    }


    .am-blog-page .am-blog-card__bottom {
        margin-top: 10px;
        padding-top: 9px;
    }


    .am-blog-page .am-blog-card__bottom > span {
        font-size: 8px;
    }


    .am-blog-page .am-blog-card__bottom > a {
        width: 27px;
        height: 27px;

        font-size: 9px;
    }


    .am-blog-page .am-blog-card__featured {
        top: 13px;
        left: 12px;

        padding: 5px 6px;

        font-size: 6px;
    }

}


/* ================================================================
   SMALL MOBILE
================================================================ */

@media (max-width: 480px) {

    .am-blog-page .am-blog-hero h1 {
        font-size: 38px;
    }


    .am-blog-page .am-featured-story__content h2 {
        font-size: 34px;
    }


    .am-blog-page .am-blog-collection__header h2 {
        font-size: 37px;
    }


    .am-blog-page .am-blog-grid {
        gap: 50px 11px;
    }


    .am-blog-page .am-blog-card:nth-child(even) {
        margin-top: 25px;
    }


    .am-blog-page .am-blog-card h3 {
        font-size: 14px;
    }


    /*
    |--------------------------------------------------------------------------
    | Keep two-column mobile journal clean.
    |--------------------------------------------------------------------------
    */

    .am-blog-page .am-blog-card__content > p {
        display: none;
    }


    .am-blog-page .am-blog-card__bottom > span {
        max-width: 90px;

        overflow: hidden;

        white-space: nowrap;
        text-overflow: ellipsis;
    }

}


/* ================================================================
   AMRITALAYA — JOURNAL DETAIL
================================================================ */

.am-article-page {
    position: relative;
    overflow: hidden;

    background: #fffaf1;
    color: var(--primary-color);
}


/* ================================================================
   ARTICLE HEADER
================================================================ */

.am-article-page .am-article-header {
    position: relative;

    padding: 55px 0 85px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(212, 175, 55, 0.07),
            transparent 27%
        ),
        #fffaf1;
}


.am-article-page .am-article-header__watermark {
    position: absolute;

    right: -20px;
    top: -130px;

    color: rgba(85, 0, 6, 0.024);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 450px;
    font-weight: 400;

    line-height: 1;

    pointer-events: none;
}


/* ================================================================
   BREADCRUMB
================================================================ */

.am-article-page .am-article-breadcrumb {
        position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 60px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    justify-content: center;
}


.am-article-page .am-article-breadcrumb a {
    color: #9a8984;

    text-decoration: none;

    transition: color 0.2s ease;
}


.am-article-page .am-article-breadcrumb a:hover {
    color: var(--primary-color);
}


.am-article-page .am-article-breadcrumb span {
    color: var(--gold-main);
}


/* ================================================================
   HEADER INNER
================================================================ */

.am-article-page .am-article-header__inner {
    position: relative;
    z-index: 2;

    max-width: 930px;

    margin: 0 auto;

    text-align: center;
}


/* Category */

.am-article-page .am-article-header__eyebrow {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 22px;

    color: #9b6b16;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2.3px;
    text-transform: uppercase;
}


.am-article-page .am-article-header__eyebrow span {
    width: 38px;
    height: 1px;

    background: var(--gold-main);
}


/* ================================================================
   ARTICLE TITLE
================================================================ */

.am-article-page .am-article-header h1 {
    max-width: 920px;

    margin: 0 auto;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(46px, 5.2vw, 74px);
    font-weight: 400;

    line-height: 1.03;

    letter-spacing: -2.4px;
}


/* Excerpt */

.am-article-page .am-article-header__excerpt {
    max-width: 650px;

    margin: 26px auto 0;

    color: #786b68;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 16px;
    font-style: italic;

    line-height: 1.75;
}


/* ================================================================
   ARTICLE META
================================================================ */

.am-article-page .am-article-meta {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 25px;

    margin-top: 34px;
}


.am-article-page .am-article-meta__author {
    display: flex;

    align-items: center;

    gap: 11px;

    text-align: left;
}


.am-article-page .am-article-meta__initial {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    background: var(--primary-color);

    color: var(--gold-soft);

    border-radius: 50%;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 13px;
}


.am-article-page .am-article-meta small {
    display: block;

    margin-bottom: 2px;

    color: #a08f89;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.am-article-page .am-article-meta strong {
    display: block;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 11px;
    font-weight: 400;
}


.am-article-page .am-article-meta__divider {
    width: 1px;
    height: 30px;

    background: rgba(212, 175, 55, 0.38);
}


.am-article-page .am-article-meta__date {
    text-align: left;
}


/* ================================================================
   COVER
================================================================ */

.am-article-page .am-article-cover {
    position: relative;

    padding: 0 0 100px;

    background: #fffaf1;
}


.am-article-page .am-article-cover__frame {
    position: relative;

    max-width: 1080px;

    margin: 0 auto;

    padding: 8px;

    border: 1px solid rgba(212, 175, 55, 0.45);
}


.am-article-page .am-article-cover__image {
    width: 100%;
    height: clamp(400px, 55vw, 650px);

    overflow: hidden;
}


.am-article-page .am-article-cover__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.am-article-page .am-article-cover__mark {
    position: absolute;

    right: 24px;
    bottom: -13px;

    padding: 7px 13px;

    background: #fffaf1;

    color: #9b6b16;

    border: 1px solid rgba(212, 175, 55, 0.38);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 9px;
    font-style: italic;
}


/* ================================================================
   ARTICLE BODY
================================================================ */

.am-article-page .am-article-body {
    position: relative;

    padding: 15px 0 100px;

    background: #fffaf1;
}


.am-article-page .am-article-body__layout {
    display: grid;

    grid-template-columns: 120px minmax(0, 720px) 150px;

    justify-content: center;

    gap: 55px;
}


/* ================================================================
   LEFT SIDE
================================================================ */

.am-article-page .am-article-side {
    padding-top: 8px;
}


.am-article-page .am-article-side__line {
    display: block;

    width: 1px;
    height: 60px;

    margin-bottom: 17px;

    background: var(--gold-main);
}


.am-article-page .am-article-side__label {
    display: block;

    color: #9b6b16;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    writing-mode: vertical-rl;

    transform: rotate(180deg);
}


.am-article-page .am-article-side__number {
    display: block;

    margin-top: 20px;

    color: rgba(85, 0, 6, 0.16);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;
    font-style: italic;
}


/* ================================================================
   ACTUAL BLOG CONTENT
================================================================ */

.am-article-page .am-article-content {
    min-width: 0;

    color: #504643;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 16px;

    line-height: 1.95;
}


.am-article-page .am-article-content > *:first-child {
    margin-top: 0;
}


/* Paragraph */

.am-article-page .am-article-content p {
    margin: 0 0 25px;
}


/* First paragraph drop cap */

.am-article-page .am-article-content > p:first-of-type::first-letter {
    float: left;

    margin: 7px 10px 0 0;

    color: var(--primary-color);

    font-size: 68px;

    line-height: 0.72;
}


/* ================================================================
   HEADINGS INSIDE CONTENT
================================================================ */

.am-article-page .am-article-content h2 {
    margin: 55px 0 19px;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;
    font-weight: 400;

    line-height: 1.15;

    letter-spacing: -0.8px;
}


.am-article-page .am-article-content h3 {
    margin: 40px 0 15px;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
    font-weight: 400;

    line-height: 1.2;
}


.am-article-page .am-article-content h4 {
    margin: 32px 0 12px;

    color: var(--primary-color);

    font-size: 17px;
}


/* ================================================================
   CONTENT LINKS
================================================================ */

.am-article-page .am-article-content a {
    color: var(--primary-color);

    text-decoration-color: var(--gold-main);
    text-underline-offset: 4px;
}


/* ================================================================
   CONTENT IMAGES
================================================================ */

.am-article-page .am-article-content img {
    display: block;

    max-width: 100%;
    height: auto;

    margin: 40px 0;

    padding: 5px;

    border: 1px solid rgba(212, 175, 55, 0.38);
}


/* ================================================================
   BLOCKQUOTE
================================================================ */

.am-article-page .am-article-content blockquote {
    position: relative;

    margin: 45px 0;

    padding: 30px 35px 30px 38px;

    background: #fff6e7;

    color: var(--primary-color);

    border-left: 2px solid var(--gold-main);

    font-size: 22px;
    font-style: italic;

    line-height: 1.55;
}


.am-article-page .am-article-content blockquote::before {
    content: "“";

    position: absolute;

    right: 18px;
    top: -10px;

    color: rgba(212, 175, 55, 0.2);

    font-size: 90px;

    line-height: 1;
}


/* ================================================================
   LISTS
================================================================ */

.am-article-page .am-article-content ul,
.am-article-page .am-article-content ol {
    margin: 25px 0 30px;

    padding-left: 25px;
}


.am-article-page .am-article-content li {
    margin-bottom: 10px;

    padding-left: 5px;
}


.am-article-page .am-article-content li::marker {
    color: var(--gold-main);
}


/* ================================================================
   HR
================================================================ */

.am-article-page .am-article-content hr {
    width: 80px;
    height: 1px;

    margin: 45px auto;

    background: var(--gold-main);

    border: 0;
}


/* ================================================================
   RIGHT INFO
================================================================ */

.am-article-page .am-article-info {
    padding-top: 8px;
}


.am-article-page .am-article-info__block {
    margin-bottom: 28px;
    padding-bottom: 25px;

    border-bottom: 1px solid rgba(85, 0, 6, 0.09);
}


.am-article-page .am-article-info__block small {
    display: block;

    margin-bottom: 10px;

    color: #a18e88;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}


.am-article-page .am-article-info__block > a {
    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 12px;

    text-decoration: none;
}


/* ================================================================
   SHARE
================================================================ */

.am-article-page .am-article-share {
    display: flex;

    align-items: center;

    gap: 7px;
}


.am-article-page .am-article-share a,
.am-article-page .am-article-share button {
    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 37px;
    height: 32px;

    padding: 0 9px;

    background: transparent;

    color: var(--primary-color);

    border: 1px solid rgba(85, 0, 6, 0.17);

    font-size: 8px;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.am-article-page .am-article-share a:hover,
.am-article-page .am-article-share button:hover {
    background: var(--primary-color);

    color: var(--gold-soft);
}


/* ================================================================
   ARTICLE END
================================================================ */

.am-article-page .am-article-end {
    padding: 0 0 100px;

    background: #fffaf1;
}


.am-article-page .am-article-end__inner {
    max-width: 720px;

    margin: 0 auto;
    padding-top: 40px;

    border-top: 1px solid rgba(212, 175, 55, 0.32);

    text-align: center;
}


.am-article-page .am-article-end__ornament {
    display: block;

    margin-bottom: 12px;

    color: var(--gold-main);

    font-size: 9px;
}


.am-article-page .am-article-end__inner > span:not(.am-article-end__ornament) {
    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 15px;
    font-style: italic;
}


.am-article-page .am-article-end__inner p {
    max-width: 480px;

    margin: 11px auto 0;

    color: #8c7d78;

    font-size: 10.5px;

    line-height: 1.7;
}


/* ================================================================
   RELATED JOURNAL
================================================================ */

.am-article-page .am-related-journal {
    position: relative;

    padding: 95px 0 115px;

    overflow: hidden;

    background: #fff7eb;

    border-top: 1px solid rgba(212, 175, 55, 0.16);
}


.am-article-page .am-related-journal__watermark {
    position: absolute;

    left: 50%;
    top: 20%;

    transform: translateX(-50%);

    color: rgba(85, 0, 6, 0.018);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(140px, 20vw, 330px);

    letter-spacing: 18px;

    line-height: 1;

    white-space: nowrap;

    pointer-events: none;
}


/* ================================================================
   RELATED HEADER
================================================================ */

.am-article-page .am-related-journal__header {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 70px;
}


.am-article-page .am-related-journal__eyebrow {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 15px;

    color: #9b6b16;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.am-article-page .am-related-journal__eyebrow span {
    width: 37px;
    height: 1px;

    background: var(--gold-main);
}


.am-article-page .am-related-journal__header h2 {
    margin: 0;

    color: var(--primary-color);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(43px, 4.5vw, 64px);
    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -1.7px;
}


.am-article-page .am-related-journal__header h2 em {
    color: var(--gold-main);

    font-weight: 400;
}


/* Explore all */

.am-article-page .am-related-journal__all {
    display: flex;

    align-items: center;

    gap: 13px;

    color: var(--primary-color);

    font-size: 9px;
    font-weight: 700;

    text-decoration: none;
}


.am-article-page .am-related-journal__all i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    background: var(--primary-color);

    color: var(--gold-soft);

    border-radius: 50%;

    font-size: 10px;
    font-style: normal;

    transition: transform 0.25s ease;
}


.am-article-page .am-related-journal__all:hover i {
    transform: translate(2px, -2px);
}


/* ================================================================
   RELATED GRID
================================================================ */

.am-article-page .am-related-journal__grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 42px;
}


.am-article-page .am-related-card {
    position: relative;

    min-width: 0;
}


.am-article-page .am-related-card:nth-child(2) {
    margin-top: 48px;
}


/* Number */

.am-article-page .am-related-card__number {
    position: absolute;

    top: -33px;
    left: 7px;

    z-index: 3;

    color: rgba(85, 0, 6, 0.14);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;
    font-style: italic;

    line-height: 1;
}


/* ================================================================
   RELATED IMAGE
================================================================ */

.am-article-page .am-related-card__image {
    display: block;

    width: 100%;
    aspect-ratio: 0.88 / 1;

    padding: 7px;

    overflow: hidden;

    background: #fff7eb;

    border: 1px solid rgba(212, 175, 55, 0.45);

    border-radius:
        48% 48% 6px 6px /
        21% 21% 6px 6px;
}


.am-article-page .am-related-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius:
        48% 48% 2px 2px /
        20% 20% 2px 2px;

    transition: transform 0.65s ease;
}


.am-article-page .am-related-card:hover
.am-related-card__image img {
    transform: scale(1.035);
}


/* ================================================================
   RELATED CONTENT
================================================================ */

.am-article-page .am-related-card__content {
    padding: 16px 6px 0;
}


.am-article-page .am-related-card__meta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 8px;

    font-size: 7.5px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.am-article-page .am-related-card__meta span {
    color: #9b6b16;
}


.am-article-page .am-related-card__meta time {
    color: #a0918d;
}


.am-article-page .am-related-card__title {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;
}


.am-article-page .am-related-card__title h3 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;
    font-weight: 400;

    line-height: 1.18;
}


.am-article-page .am-related-card__title h3 a {
    color: var(--primary-color);

    text-decoration: none;
}


.am-article-page .am-related-card__arrow {
    display: flex;

    flex: 0 0 34px;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    color: var(--primary-color);

    border: 1px solid rgba(85, 0, 6, 0.17);
    border-radius: 50%;

    font-size: 11px;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.am-article-page .am-related-card__arrow:hover {
    background: var(--primary-color);

    color: var(--gold-soft);

    transform: translate(2px, -2px);
}


/* ================================================================
   TABLET
================================================================ */

@media (max-width: 991.98px) {

    .am-article-page .am-article-body__layout {
        grid-template-columns: 70px minmax(0, 650px);

        gap: 35px;
    }


    .am-article-page .am-article-info {
        grid-column: 2;

        display: flex;

        gap: 30px;

        padding-top: 10px;
    }


    .am-article-page .am-article-info__block {
        min-width: 130px;
    }


    .am-article-page .am-related-journal__grid {
        gap: 25px;
    }

}


/* ================================================================
   MOBILE
================================================================ */

@media (max-width: 767.98px) {

    /* Header */

    .am-article-page .am-article-header {
        padding: 35px 0 60px;
    }


    .am-article-page .am-article-header__watermark {
        display: none;
    }


    .am-article-page .am-article-breadcrumb {
        margin-bottom: 40px;

        font-size: 7px;
    }


    .am-article-page .am-article-header__eyebrow {
        margin-bottom: 17px;

        font-size: 8px;
    }


    .am-article-page .am-article-header h1 {
        font-size: 41px;

        line-height: 1.05;

        letter-spacing: -1.3px;
    }


    .am-article-page .am-article-header__excerpt {
        margin-top: 19px;

        font-size: 13px;

        line-height: 1.65;
    }


    .am-article-page .am-article-meta {
        gap: 15px;

        margin-top: 27px;
    }


    .am-article-page .am-article-meta__initial {
        width: 34px;
        height: 34px;
    }


    /* Cover */

    .am-article-page .am-article-cover {
        padding-bottom: 65px;
    }


    .am-article-page .am-article-cover__frame {
        padding: 5px;
    }


    .am-article-page .am-article-cover__image {
        height: auto;
        aspect-ratio: 1 / 0.72;
    }


    .am-article-page .am-article-cover__mark {
        right: 14px;

        font-size: 7px;
    }


    /* Article */

    .am-article-page .am-article-body {
        padding-bottom: 65px;
    }


    .am-article-page .am-article-body__layout {
        display: block;
    }


    .am-article-page .am-article-side {
        display: none;
    }


    .am-article-page .am-article-content {
        max-width: 650px;

        margin: 0 auto;

        font-size: 14px;

        line-height: 1.85;
    }


    .am-article-page .am-article-content p {
        margin-bottom: 21px;
    }


    .am-article-page .am-article-content > p:first-of-type::first-letter {
        font-size: 55px;
    }


    .am-article-page .am-article-content h2 {
        margin-top: 42px;

        font-size: 28px;
    }


    .am-article-page .am-article-content h3 {
        margin-top: 32px;

        font-size: 22px;
    }


    .am-article-page .am-article-content blockquote {
        margin: 35px 0;

        padding: 24px 24px 24px 27px;

        font-size: 18px;
    }


    .am-article-page .am-article-content img {
        margin: 30px 0;
    }


    /* Info */

    .am-article-page .am-article-info {
        display: flex;

        gap: 25px;

        max-width: 650px;

        margin: 40px auto 0;
        padding-top: 25px;

        border-top: 1px solid rgba(85, 0, 6, 0.1);
    }


    .am-article-page .am-article-info__block {
        margin: 0;
        padding: 0;

        border: 0;
    }


    /* End */

    .am-article-page .am-article-end {
        padding-bottom: 70px;
    }


    /* Related */

    .am-article-page .am-related-journal {
        padding: 70px 0 80px;
    }


    .am-article-page .am-related-journal__watermark {
        display: none;
    }


    .am-article-page .am-related-journal__header {
        align-items: flex-end;

        margin-bottom: 55px;
    }


    .am-article-page .am-related-journal__header h2 {
        font-size: 39px;
    }


    .am-article-page .am-related-journal__all span {
        display: none;
    }


    .am-article-page .am-related-journal__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 55px 14px;
    }


    .am-article-page .am-related-card:nth-child(2) {
        margin-top: 30px;
    }


    .am-article-page .am-related-card:nth-child(3) {
        margin-top: 0;
    }


    .am-article-page .am-related-card__number {
        top: -26px;

        font-size: 26px;
    }


    .am-article-page .am-related-card__image {
        padding: 5px;
    }


    .am-article-page .am-related-card__content {
        padding: 11px 2px 0;
    }


    .am-article-page .am-related-card__meta {
        display: block;

        margin-bottom: 6px;

        font-size: 6.5px;
    }


    .am-article-page .am-related-card__meta time {
        display: block;

        margin-top: 3px;
    }


    .am-article-page .am-related-card__title {
        gap: 7px;
    }


    .am-article-page .am-related-card__title h3 {
        font-size: 15px;
    }


    .am-article-page .am-related-card__arrow {
        flex-basis: 27px;

        width: 27px;
        height: 27px;

        font-size: 9px;
    }

}


/* ================================================================
   SMALL MOBILE
================================================================ */

@media (max-width: 480px) {

    .am-article-page .am-article-header h1 {
        font-size: 36px;
    }


    .am-article-page .am-article-meta__divider {
        height: 26px;
    }


    .am-article-page .am-article-meta strong {
        font-size: 10px;
    }


    .am-article-page .am-article-content {
        font-size: 13.5px;
    }


    .am-article-page .am-article-content h2 {
        font-size: 26px;
    }


    .am-article-page .am-related-journal__header h2 {
        font-size: 35px;
    }


    .am-article-page .am-related-journal__grid {
        gap: 50px 11px;
    }


    .am-article-page .am-related-card:nth-child(2) {
        margin-top: 24px;
    }


    .am-article-page .am-related-card__title h3 {
        font-size: 14px;
    }

}

/* ================================================================
   AMRITALAYA — SWEET ALERT
================================================================ */

.am-swal {
    width: 430px !important;

    padding: 35px 32px 30px !important;

    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 0 !important;

    background: #fffaf2 !important;

    box-shadow:
        0 25px 70px rgba(85, 0, 6, 0.13) !important;
}


/* TITLE */

.am-swal__title {
    padding: 0 !important;
    margin: 5px 0 10px !important;

    color: var(--primary-color) !important;

    font-family: "Playfair Display", serif !important;

    font-size: 30px !important;
    font-weight: 500 !important;

    line-height: 1.2 !important;
}


/* MESSAGE */

.am-swal__text {
    margin: 0 !important;

    color: #786b68 !important;

    font-family: "Manrope", sans-serif !important;

    font-size: 13px !important;

    line-height: 1.7 !important;
}


/* ICON */


.am-swal .swal2-success-ring {
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.am-swal .swal2-success-line-tip,
.am-swal .swal2-success-line-long {
    background-color: var(--gold-main) !important;
}


/* BUTTON */

.am-swal__button {
    min-width: 130px;

    margin-top: 10px !important;
    padding: 11px 24px !important;

    border: 1px solid var(--primary-color) !important;
    border-radius: 0 !important;

    background: var(--primary-color) !important;

    color: var(--gold-soft) !important;

    font-family: "Manrope", sans-serif !important;

    font-size: 11px !important;
    font-weight: 700 !important;

    letter-spacing: 0.8px !important;

    box-shadow: none !important;

    transition: 0.25s ease !important;
}

.am-swal__button:hover {
    background: var(--primary-dark) !important;

    border-color: var(--primary-dark) !important;
}


/* CLOSE */

.am-swal .swal2-close {
    color: rgba(85, 0, 6, 0.45) !important;

    font-size: 25px !important;
}

.am-swal .swal2-close:hover {
    color: var(--primary-color) !important;
}


/* MOBILE */

@media (max-width: 576px) {

    .am-swal {
        width: calc(100% - 30px) !important;

        padding: 30px 22px 25px !important;
    }

    .am-swal__title {
        font-size: 26px !important;
    }

    .am-swal__text {
        font-size: 12px !important;
    }

}


/* ================================================================
   AMRITALAYA — FLOATING WHATSAPP
================================================================ */

.am-floating-whatsapp {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 999;

    display: flex;
    align-items: center;
    gap: 0;

    text-decoration: none;
}


/* ================================================================
   LABEL
================================================================ */

.am-floating-whatsapp__label {
    position: relative;

    display: flex;
    align-items: center;

    height: 42px;

    margin-right: -8px;
    padding: 0 20px 0 17px;

    background: var(--primary-color);
    color: var(--gold-soft);

    border: 1px solid rgba(212, 175, 55, 0.4);
    border-right: 0;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.3px;

    opacity: 0;
    visibility: hidden;

    transform: translateX(12px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}


/* ================================================================
   WHATSAPP ICON
================================================================ */

.am-floating-whatsapp__icon {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    background: var(--primary-color);
    color: var(--gold-soft);

    border: 1px solid var(--gold-main);
    border-radius: 50%;

    box-shadow:
        0 8px 28px rgba(85, 0, 6, 0.22);

    font-size: 24px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


/* ================================================================
   INNER GOLD RING
================================================================ */

.am-floating-whatsapp__icon::before {
    content: "";

    position: absolute;
    inset: 4px;

    border: 1px solid rgba(245, 210, 122, 0.25);
    border-radius: 50%;

    pointer-events: none;
}


/* ================================================================
   SUBTLE PULSE
================================================================ */

.am-floating-whatsapp__icon::after {
    content: "";

    position: absolute;
    inset: -1px;

    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 50%;

    animation: amWhatsappPulse 2.4s ease-out infinite;

    pointer-events: none;
}


@keyframes amWhatsappPulse {

    0% {
        opacity: 0.55;
        transform: scale(1);
    }

    70% {
        opacity: 0;
        transform: scale(1.32);
    }

    100% {
        opacity: 0;
        transform: scale(1.32);
    }

}


/* ================================================================
   HOVER
================================================================ */

.am-floating-whatsapp:hover .am-floating-whatsapp__label {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


.am-floating-whatsapp:hover .am-floating-whatsapp__icon {
    transform: translateY(-3px);

    background: var(--gold-main);
    color: var(--primary-color);
}


/* ================================================================
   MOBILE
================================================================ */

@media (max-width: 767.98px) {

    .am-floating-whatsapp {
        right: 16px;
        bottom: 18px;
    }

    .am-floating-whatsapp__icon {
        width: 52px;
        height: 52px;

        font-size: 22px;
    }

    /*
       Don't show hover label on mobile.
       Keeps the screen clean.
    */

    .am-floating-whatsapp__label {
        display: none;
    }

}


/* ================================================================
   VERY SMALL MOBILE
================================================================ */

@media (max-width: 420px) {

    .am-floating-whatsapp {
        right: 14px;
        bottom: 15px;
    }

    .am-floating-whatsapp__icon {
        width: 49px;
        height: 49px;

        font-size: 21px;
    }

}