/* Kashmora — Treasured from the Himalayas */

:root {
    --bg: #F6F0E4;
    --bg-soft: #EDE4D2;
    --bg-card: #FFFCF5;
    --forest: #2C4535;
    --forest-deep: #1E3228;
    --gold: #3F6650;
    --gold-light: #2C4535;
    --gold-soft: #E8D48B;
    --gold-dark: #1E3228;
    --text: #1C2820;
    --text-muted: rgba(28, 40, 32, 0.72);
    --line: rgba(44, 69, 53, 0.28);
    --header-h: 92px;
    --font-display: "Cinzel", Georgia, serif;
    --font-script: "Great Vibes", cursive;
    --font-body: "Montserrat", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.section { padding: 88px 0; }

/* ---------- Dry fruit corner decorations ---------- */
.has-corners {
    position: relative;
    overflow: hidden;
}

.section-corners {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.has-corners > .container,
.has-corners > .story-inner,
.has-corners > .trust-grid,
.has-corners > .gifting-head,
.has-corners > .gifting-layout {
    position: relative;
    z-index: 1;
}

.corner {
    position: absolute;
    width: clamp(130px, 16vw, 210px);
    height: auto;
    max-height: 210px;
    background-image: var(--img);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
    filter: drop-shadow(0 10px 18px rgba(40, 55, 40, 0.16));
    pointer-events: none;
}

.corner.corner--img {
    background-image: none;
    object-fit: contain;
    display: block;
}

.corner--tl {
    top: 12px;
    left: clamp(10px, 2vw, 28px);
    background-position: left top;
    object-position: left top;
}

.corner--tr {
    top: 12px;
    right: clamp(10px, 2vw, 28px);
    background-position: right top;
    object-position: right top;
}

.corner--bl {
    bottom: 12px;
    left: clamp(10px, 2vw, 28px);
    width: clamp(140px, 17vw, 230px);
    max-height: 200px;
    background-position: left bottom;
    object-position: left bottom;
}

.corner--br {
    bottom: 12px;
    right: clamp(10px, 2vw, 28px);
    width: clamp(140px, 17vw, 230px);
    max-height: 200px;
    background-position: right bottom;
    object-position: right bottom;
}

.gifting-showcase .corner {
    opacity: 1;
    filter: none;
}

@media (max-width: 700px) {
    .corner {
        width: 88px;
        max-height: 88px;
        opacity: 0.85;
    }

    .corner--bl,
    .corner--br {
        width: 100px;
        max-height: 100px;
    }
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(246, 240, 228, 0.96);
    border-bottom: 1px solid rgba(184, 146, 58, 0.2);
    transition: background 0.3s ease, box-shadow 0.3s ease, top 0.2s ease;
}

.site-header--home {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(246, 240, 228, 0.94) 0%, rgba(246, 240, 228, 0.55) 70%, transparent 100%);
    border-bottom: 0;
}

.site-header.is-scrolled {
    position: sticky;
    top: 0;
    background: rgba(246, 240, 228, 0.98);
    box-shadow: 0 10px 28px rgba(26, 36, 28, 0.08);
    border-bottom: 1px solid rgba(184, 146, 58, 0.22);
}

/*
 * WordPress admin bar sits fixed at the top (32px / 46px).
 * Absolute/sticky header must clear it or the logo/nav get clipped.
 */
html.admin-bar .site-header,
html.admin-bar .site-header--home,
html.admin-bar .site-header.is-scrolled,
body.admin-bar .site-header,
body.admin-bar .site-header--home,
body.admin-bar .site-header.is-scrolled {
    top: var(--wp-admin--admin-bar--height, 32px) !important;
}

@media screen and (max-width: 782px) {
    html.admin-bar .site-header,
    html.admin-bar .site-header--home,
    html.admin-bar .site-header.is-scrolled,
    body.admin-bar .site-header,
    body.admin-bar .site-header--home,
    body.admin-bar .site-header.is-scrolled {
        top: var(--wp-admin--admin-bar--height, 46px) !important;
    }
}

.header-inner {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    min-height: var(--header-h);
    display: grid;
    grid-template-columns: 88px 1fr auto;
    align-items: center;
    gap: 12px 28px;
    padding: 10px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-shrink: 0;
}

.brand-logo {
    width: 78px;
    height: 78px;
    object-fit: contain;
    display: block;
    background: transparent;
    filter: drop-shadow(0 3px 10px rgba(44, 69, 53, 0.16));
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
    min-width: 0;
}

.main-nav > a,
.nav-dropdown > a {
    color: rgba(26, 36, 28, 0.82);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 12px;
    position: relative;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-dark);
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 4px;
    height: 1px;
    background: var(--gold);
}

.caret { font-size: 0.7em; margin-left: 2px; }

.nav-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 210px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 30;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.dropdown-menu a:hover {
    color: var(--gold-dark);
    background: rgba(201, 162, 74, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--text);
    display: grid;
    place-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.25s ease;
}

.icon-btn:hover {
    color: var(--gold-dark);
    background: rgba(201, 162, 74, 0.12);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gold-dark);
    margin-inline: auto;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: 62% center;
    transform: scale(1.02);
    animation: heroZoom 22s ease-in-out infinite alternate;
}

.hero-bg--mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(246, 240, 228, 0.55) 0%, rgba(246, 240, 228, 0.28) 32%, rgba(246, 240, 228, 0.08) 55%, transparent 78%),
        linear-gradient(180deg, rgba(246, 240, 228, 0.22) 0%, transparent 30%, transparent 70%, rgba(246, 240, 228, 0.18) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: calc(var(--header-h) + 48px) 24px 80px clamp(20px, 3.5vw, 48px);
    display: grid;
    grid-template-columns: minmax(280px, 520px) 1fr;
    gap: 24px;
    align-items: center;
    justify-items: start;
    text-align: left;
}

.hero-pill {
    display: inline-block;
    border: 1px solid rgba(44, 69, 53, 0.45);
    color: var(--forest);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 9px 16px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(255, 252, 245, 0.55);
    backdrop-filter: blur(4px);
}

.hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.4vw, 4.35rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0.04em;
    color: var(--forest);
    text-transform: uppercase;
    text-shadow: none;
}

.hero-copy h1 .h1-line {
    display: block;
}

.hero-copy h1 .gold-word {
    color: var(--forest);
}

.hero-copy {
    max-width: 520px;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    justify-self: start;
}

.hero-script {
    font-family: var(--font-script);
    font-size: clamp(1.6rem, 2.8vw, 2.35rem);
    color: var(--forest);
    margin: 14px 0 18px;
}

.hero-desc {
    max-width: 520px;
    color: var(--forest);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 28px;
    opacity: 0.88;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 22px;
    max-width: 320px;
    margin-inline: 0;
    justify-items: start;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
}

.hero-feature-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(44, 69, 53, 0.45);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--forest);
    background: rgba(255, 252, 245, 0.55);
    backdrop-filter: blur(4px);
}

.hero-feature-icon svg {
    width: 18px;
    height: 18px;
}

.hero-visual {
    min-height: 1px;
}

@keyframes heroZoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.08); }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---------- Sections ---------- */
.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 52px;
    text-align: center;
}

.section-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--forest);
}

.heading-flourish {
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(280px, 70%);
}

.heading-flourish .hf-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--forest), transparent);
}

.heading-flourish .hf-ornament {
    color: var(--forest);
    font-size: 0.75rem;
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: 0.25s ease;
}

.btn span { transition: transform 0.25s ease; }
.btn:hover span { transform: translateX(4px); }

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(201, 162, 74, 0.12);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: #1A2B22;
    border: 0;
}

.btn-gold:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

/* ---------- Feel strip (after hero) ---------- */
.feel-strip {
    position: relative;
    padding: 56px 0;
    background:
        radial-gradient(ellipse at center, rgba(201, 162, 74, 0.14), transparent 60%),
        linear-gradient(180deg, var(--bg-soft), var(--bg));
    border-bottom: 1px solid rgba(184, 146, 58, 0.22);
    text-align: center;
}

.feel-inner {
    max-width: 720px;
}

.feel-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.feel-strip h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--forest);
    margin-bottom: 12px;
    line-height: 1.25;
}

.feel-strip p:last-child {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1rem;
}

.section-sub {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    max-width: 520px;
    margin-inline: auto;
}

.section-sub.light {
    color: rgba(26, 36, 28, 0.7);
}

/* ---------- Collection ---------- */
.collection {
    background:
        radial-gradient(circle at top, rgba(44, 69, 53, 0.06), transparent 45%),
        var(--bg);
}

.collection .section-heading h2 {
    color: var(--forest);
}

.collection .heading-flourish .hf-line {
    background: linear-gradient(90deg, transparent, var(--forest), transparent);
}

.collection .heading-flourish .hf-ornament {
    color: var(--forest);
}

.collection .section-sub {
    color: var(--forest);
    opacity: 0.82;
}

.collection .section-heading {
    position: relative;
    z-index: 1;
    padding-inline: clamp(120px, 16vw, 240px);
}

.collection .corner--tl {
    top: 10px;
    left: clamp(12px, 2.5vw, 36px);
    width: clamp(200px, 24vw, 300px);
    max-height: 220px;
    filter: drop-shadow(0 14px 22px rgba(40, 55, 40, 0.18));
}

.collection .corner--br {
    bottom: 18px;
    right: clamp(12px, 2.5vw, 36px);
    width: clamp(180px, 22vw, 280px);
    max-height: 200px;
}

@media (max-width: 700px) {
    .collection .section-heading {
        padding-inline: 12px;
        padding-top: 56px;
    }

    .collection .corner--tl {
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        max-height: 100px;
    }

    .collection .corner--br {
        width: 110px;
        max-height: 90px;
    }
}

.product-marquee {
    overflow: hidden;
    width: 100%;
    padding-inline: 12px;
    mask-image: none;
    -webkit-mask-image: none;
}

.product-marquee-track {
    display: flex;
    width: max-content;
    animation: product-marquee 72s linear infinite;
    will-change: transform;
}

.product-marquee:hover .product-marquee-track {
    animation-play-state: paused;
}

@keyframes product-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.product-row {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 18px 12px;
}

.product-row--scroll {
    display: flex;
    flex-shrink: 0;
    gap: 36px;
    padding: 22px 28px 16px;
    align-items: flex-start;
}

.product-row--scroll .product-item {
    flex: 0 0 auto;
    width: 300px;
}

@media (max-width: 700px) {
    .product-marquee {
        padding-inline: 0;
        overflow: visible;
    }

    .product-marquee-track {
        display: block;
        width: 100%;
        animation: none;
    }

    /* Hide duplicated marquee loop on mobile */
    .product-row--scroll[aria-hidden="true"] {
        display: none;
    }

    .product-row--scroll {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
        padding: 8px 4px 4px;
        width: 100%;
    }

    .product-row--scroll .product-item {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-marquee-track {
        animation: none;
    }
}

.product-item {
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-item:hover { transform: translateY(-10px); }

/* Arched packaging frames — double green border */
.product-frame {
    --arch: 999px 999px 24px 24px;
    position: relative;
    width: min(280px, 100%);
    margin: 0 auto 20px;
    padding: 7px;
    isolation: isolate;
    border-radius: var(--arch);
    background:
        linear-gradient(160deg, #8AAF93 0%, #4A7358 32%, #2C4535 68%, #6B8F74 100%);
    box-shadow:
        0 18px 38px rgba(40, 55, 40, 0.16),
        0 0 0 1px rgba(44, 69, 53, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.product-frame::before {
    content: "";
    position: absolute;
    inset: 3px;
    z-index: 0;
    border-radius: inherit;
    background: #FFFCF5;
    box-shadow:
        inset 0 0 0 1.5px rgba(44, 69, 53, 0.35),
        inset 0 0 0 3px #FFFCF5;
    pointer-events: none;
}

.product-frame-ring {
    display: none;
}

.product-circle {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: inherit;
    background: #F3EDE2;
    cursor: zoom-in;
    box-shadow:
        inset 0 0 0 1.5px rgba(44, 69, 53, 0.45),
        inset 0 0 18px rgba(44, 69, 53, 0.06);
}

.product-item:hover .product-frame {
    transform: translateY(-8px);
    filter: brightness(1.04);
    box-shadow:
        0 24px 48px rgba(40, 55, 40, 0.2),
        0 0 0 1px rgba(44, 69, 53, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.product-item:hover .product-circle {
    transform: none;
}

.product-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    display: block;
    transform-origin: center center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-circle.is-img-zooming img {
    transition: none;
}

.product-item h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--forest);
    line-height: 1.35;
    min-height: 2.6em;
}

@media (max-width: 700px) {
    .product-marquee {
        padding-inline: 8px;
    }

    .product-frame {
        width: min(200px, 100%);
        padding: 5px;
    }

    .product-frame::before {
        inset: 2.5px;
    }

    .product-item h3 {
        font-size: 0.88rem;
        letter-spacing: 0.05em;
    }
}

.feature-link {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid var(--gold-light);
    padding: 9px 14px;
    align-self: flex-start;
    display: inline-flex;
    transition: 0.25s ease;
}

/* ---------- Gifting showcase ---------- */
.gifting-showcase {
    position: relative;
    padding: 84px 0 76px;
    overflow: hidden;
}

.gifting-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: saturate(0.92);
}

.gifting-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(246, 240, 228, 0.92) 0%, rgba(246, 240, 228, 0.88) 50%, rgba(246, 240, 228, 0.95) 100%),
        radial-gradient(circle at 50% 20%, rgba(201, 162, 74, 0.12), transparent 55%);
}

.gifting-showcase .section-corners {
    z-index: 2;
}

.gifting-head {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-bottom: 40px;
}

.gifting-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    margin: 16px 0 10px;
}

.gifting-layout {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* Gift hang-tag cards — notch top, side cuts, zigzag bottom */
.gifting-cards {
    --gift-clip: polygon(
        0% 0%,
        38% 0%,
        42% 3%,
        50% 6%,
        58% 3%,
        62% 0%,
        100% 0%,
        100% 38%,
        92% 42%,
        100% 46%,
        100% 78%,
        92% 82%,
        100% 86%,
        100% 100%,
        88% 96%,
        76% 100%,
        64% 96%,
        50% 100%,
        36% 96%,
        24% 100%,
        12% 96%,
        0% 100%,
        0% 86%,
        8% 82%,
        0% 78%,
        0% 46%,
        8% 42%,
        0% 38%
    );
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 28px;
    align-items: start;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 16px;
}

.gift-card-frame {
    --lift: 0px;
    position: relative;
    display: block;
    padding: 3.5px;
    clip-path: var(--gift-clip);
    background:
        linear-gradient(
            145deg,
            #3F6650 0%,
            #2C4535 22%,
            #1A2E24 48%,
            #14241C 62%,
            #2C4535 82%,
            #3F6650 100%
        );
    box-shadow:
        0 18px 38px rgba(40, 55, 40, 0.22),
        0 0 0 1px rgba(20, 36, 28, 0.55);
    filter:
        drop-shadow(0 0 1px rgba(20, 36, 28, 0.7))
        drop-shadow(0 10px 22px rgba(40, 55, 40, 0.2));
    transform: translateY(var(--lift));
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.45s ease;
}

.gift-card-frame:nth-child(even) {
    --lift: 16px;
}

.gift-card-frame:hover {
    z-index: 3;
    transform: translateY(calc(var(--lift) - 12px));
    filter:
        drop-shadow(0 0 2px rgba(63, 102, 80, 0.7))
        drop-shadow(0 0 14px rgba(44, 69, 53, 0.3))
        drop-shadow(0 16px 28px rgba(40, 55, 40, 0.24));
}

.gift-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    height: 100%;
    overflow: hidden;
    color: var(--text);
    text-decoration: none;
    border: none;
    border-radius: 0;
    background: linear-gradient(180deg, #FFFCF5 0%, #F6F0E4 55%, #EFE6D4 100%);
    clip-path: var(--gift-clip);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.gift-card::before {
    content: "";
    position: absolute;
    inset: 6px;
    z-index: 4;
    pointer-events: none;
    border: 1.5px solid rgba(30, 50, 40, 0.55);
    border-radius: 0;
    clip-path: var(--gift-clip);
}

.gift-card::after {
    display: none;
}

.gift-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.gift-card-media {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 0.95;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    padding: 22px 14px 8px;
    overflow: hidden;
    background: #1A2E24;
    border-radius: 0;
    cursor: zoom-in;
}

.gift-card-media::before {
    content: "";
    position: absolute;
    top: 48%;
    left: 50%;
    width: 86%;
    height: 86%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 42%,
            #3F6650 0%,
            #2C4535 42%,
            #1E3228 72%,
            #15241E 100%);
    box-shadow:
        inset 0 0 36px rgba(10, 20, 16, 0.35),
        0 0 0 1px rgba(107, 143, 116, 0.18);
    pointer-events: none;
    z-index: 0;
}

.gift-card-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    border-radius: 12px;
    filter: drop-shadow(0 10px 16px rgba(20, 30, 24, 0.35));
    transform-origin: center center;
    transition: transform 0.35s ease;
}

.gift-card-media.is-img-zooming img {
    transition: none;
}

.gift-card-fade {
    display: none;
}

.gift-tag {
    position: absolute;
    top: 16px;
    left: 14px;
    z-index: 6;
    display: inline-block;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FFFCF5;
    background: linear-gradient(135deg, #6B8F74, #2C4535);
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 8px 16px rgba(40, 55, 40, 0.22);
}

.gift-card .gift-tag {
    top: 16px;
    left: 14px;
    right: auto;
    transform: none;
    font-size: 0.52rem;
    letter-spacing: 0.14em;
    color: #FFFCF5;
    background: linear-gradient(135deg, #6B8F74, #2C4535);
    border: none;
    padding: 6px 12px;
    box-shadow: 0 8px 16px rgba(40, 55, 40, 0.22);
}

.gift-card-body {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
    width: 100%;
    margin: 0;
    padding: 16px 22px 44px;
    text-align: center;
    border: none;
    border-top: 1px dashed rgba(44, 69, 53, 0.28);
    background: transparent;
    min-height: 0;
}

.gift-card-body h3 {
    margin: 0;
    width: 100%;
    min-height: 0;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
    line-height: 1.3;
}

.gift-card-body p {
    margin: 0;
    width: 100%;
    max-width: 30ch;
    min-height: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gift-card-ornament {
    display: none;
}

.gift-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 12px 22px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FFFCF5;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #6B8F74, #2C4535);
    box-shadow: 0 8px 16px rgba(40, 55, 40, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gift-card:hover .gift-card-cta {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(40, 55, 40, 0.28);
    background: linear-gradient(135deg, #6B8F74, #2C4535);
    border-color: transparent;
    color: #FFFCF5;
}

.gifting-cta {
    margin-top: 34px;
    text-align: center;
}

/* ---------- Packaging grid ---------- */
.packaging-grid {
    background:
        radial-gradient(circle at bottom left, rgba(201, 162, 74, 0.08), transparent 40%),
        var(--bg);
}

.pack-row {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 18px;
}

.pack-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 360px;
    display: block;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.pack-card--large {
    min-height: 420px;
}

.pack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pack-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.pack-card:hover img {
    transform: scale(1.07);
}

.pack-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 28px 22px;
    background: linear-gradient(transparent, rgba(6, 10, 8, 0.94));
}

.pack-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin: 10px 0 8px;
}

.pack-overlay p {
    color: rgba(244, 239, 227, 0.8);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

/* ---------- Categories (Dry Fruits & Spices) ---------- */
.categories-section {
    background:
        radial-gradient(circle at top, rgba(201, 162, 74, 0.1), transparent 45%),
        var(--bg);
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

/* Unique fan / wave layout */
.category-cards--fan {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    padding: 36px 8px 20px;
    perspective: 1200px;
}

.category-cards--fan .category-card {
    flex: 0 1 200px;
    width: min(200px, 18vw);
    margin-left: -18px;
    aspect-ratio: 0.72;
    transform-origin: center bottom;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        box-shadow 0.45s ease,
        z-index 0s;
    z-index: calc(1 + var(--i, 0));
}

.category-cards--fan .category-card:first-child {
    margin-left: 0;
}

.category-cards--fan .category-card:nth-child(1) {
    transform: translateY(42px) rotate(-8deg);
}

.category-cards--fan .category-card:nth-child(2) {
    transform: translateY(18px) rotate(-4deg);
    z-index: 3;
}

.category-cards--fan .category-card:nth-child(3) {
    flex-basis: 230px;
    width: min(230px, 20vw);
    aspect-ratio: 0.7;
    transform: translateY(-10px) rotate(0deg) scale(1.06);
    border-color: rgba(201, 162, 74, 0.55);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 162, 74, 0.2),
        0 0 36px rgba(201, 162, 74, 0.18);
    z-index: 5;
}

.category-cards--fan .category-card:nth-child(4) {
    transform: translateY(18px) rotate(4deg);
    z-index: 3;
}

.category-cards--fan .category-card:nth-child(5) {
    transform: translateY(42px) rotate(8deg);
}

.category-cards--fan:hover .category-card:not(:hover) {
    filter: brightness(0.72) saturate(0.9);
}

.category-cards--fan .category-card:hover {
    transform: translateY(-28px) rotate(0deg) scale(1.08);
    border-color: var(--gold);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(201, 162, 74, 0.45),
        0 0 40px rgba(201, 162, 74, 0.28);
    z-index: 10;
    filter: none;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 0.78;
    border: 1px solid rgba(201, 162, 74, 0.22);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.category-card-glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(160deg, rgba(201, 162, 74, 0.18), transparent 42%),
        radial-gradient(circle at 50% 110%, rgba(201, 162, 74, 0.22), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-cards--fan .category-card:nth-child(3) .category-card-glow,
.category-card:hover .category-card-glow {
    opacity: 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

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

.category-card-label {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 36px 12px 18px;
    background: linear-gradient(transparent, rgba(6, 10, 8, 0.92));
    text-align: center;
}

.category-card-label span {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F7F1E9;
}

/* ---------- Nature finest banner ---------- */
.nature-finest {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    overflow: hidden;
    text-align: center;
    color: var(--text);
}

.nature-finest-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.03);
}

.nature-finest-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(246, 240, 228, 0.78) 0%, rgba(246, 240, 228, 0.55) 40%, rgba(246, 240, 228, 0.86) 100%),
        radial-gradient(circle at center, rgba(201, 162, 74, 0.12), transparent 55%);
}

.nature-finest-content {
    position: relative;
    z-index: 1;
    padding: 88px 24px;
    max-width: 860px;
}

.nature-finest-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--gold-light);
    text-shadow: none;
    margin-bottom: 36px;
    letter-spacing: 0.04em;
}

.nature-finest-steps {
    display: flex;
    justify-content: center;
    gap: clamp(28px, 7vw, 72px);
    flex-wrap: wrap;
}

.nature-step {
    max-width: 150px;
}

.nature-step-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 1.5px solid rgba(184, 146, 58, 0.65);
    background: rgba(255, 252, 246, 0.85);
    backdrop-filter: blur(5px);
    color: var(--gold-light);
    display: grid;
    place-items: center;
    box-shadow: 0 8px 18px rgba(40, 30, 20, 0.12);
}

.nature-step-icon svg {
    width: 26px;
    height: 26px;
}

.nature-step p {
    font-size: 0.9rem;
    line-height: 1.35;
    color: var(--forest);
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(247, 242, 233, 0.9);
}

/* ---------- Trust ---------- */
.trust-bar {
    background: var(--bg-soft);
    border-block: 1px solid rgba(184, 146, 58, 0.22);
    padding: 36px 0;
    margin-top: 40px;
}

.trust-bar--features {
    margin-top: 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 46px;
    height: 46px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.trust-icon svg {
    width: 22px;
    height: 22px;
}

.trust-item h4 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.trust-item p {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ---------- Story ---------- */
.story-banner {
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 162, 74, 0.08), transparent 40%),
        linear-gradient(180deg, var(--bg-soft), var(--bg));
    padding: 90px 0;
}

.story-inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.story-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.4vw, 2.7rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 18px;
}

.story-copy > p {
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 28px;
    font-weight: 300;
}

.story-script {
    font-family: var(--font-script);
    font-size: 1.9rem;
    color: var(--forest);
    margin-top: 22px;
}

.story-visual {
    position: relative;
}

.story-visual > img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    object-fit: cover;
    aspect-ratio: 1.15;
}

.story-badge {
    position: absolute;
    left: -18px;
    bottom: -18px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--gold);
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--bg-soft);
    border-top: 1px solid rgba(184, 146, 58, 0.22);
}

.footer-top {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 70px 0 46px;
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 0.9fr 1fr 1.2fr;
    gap: 28px;
}

.footer-brand img { margin-bottom: 14px; }

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    max-width: 280px;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--gold-dark);
    transition: 0.25s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: #0B1210;
    border-color: var(--gold);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.footer-col li + li { margin-top: 9px; }

.footer-col a {
    font-size: 0.86rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--gold-dark); }

.footer-newsletter p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.newsletter-form {
    display: grid;
    gap: 10px;
}

.newsletter-form input {
    height: 42px;
    border: 1px solid rgba(184, 146, 58, 0.35);
    background: var(--bg-card);
    border-radius: 2px;
    padding: 0 12px;
    color: var(--text);
    font-family: inherit;
}

.newsletter-form button {
    height: 42px;
    border: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #0B1210;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(184, 146, 58, 0.18);
    text-align: center;
    padding: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-credits {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.footer-credits a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-credits a:hover {
    color: var(--forest);
    text-decoration: underline;
}

.footer-credits-sep {
    margin: 0 8px;
    opacity: 0.55;
}

/* ---------- Inner pages ---------- */
.page-hero {
    position: relative;
    padding: 150px 24px 72px;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(246, 240, 228, 0.82), rgba(36, 53, 40, 0.55)),
        url("../images/hero-lake.jpg") center/cover;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F3E7C5;
    margin-bottom: 12px;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.page-hero p {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(247, 241, 233, 0.9);
}

.page-hero--gifting {
    min-height: 380px;
    padding: 160px 24px 88px;
    display: grid;
    place-items: center;
    background: #1A2E24;
}

.page-hero--gifting .page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.03);
}

.page-hero--gifting .page-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(20, 36, 28, 0.42) 0%,
            rgba(20, 36, 28, 0.28) 45%,
            rgba(20, 36, 28, 0.55) 100%),
        linear-gradient(90deg,
            rgba(20, 36, 28, 0.35) 0%,
            transparent 35%,
            transparent 65%,
            rgba(20, 36, 28, 0.3) 100%);
}

.page-hero--gifting .page-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.page-hero--gifting .page-hero-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(232, 212, 139, 0.55);
    background: rgba(20, 36, 28, 0.45);
    color: #F3E7C5;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.page-hero--gifting h1 {
    color: #FFF8E8;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    margin-bottom: 14px;
}

.page-hero--gifting p {
    color: rgba(255, 248, 232, 0.92);
    font-size: 1.02rem;
    line-height: 1.55;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

@media (max-width: 700px) {
    .page-hero--gifting {
        min-height: 300px;
        padding: 130px 20px 64px;
    }

    .page-hero--gifting p {
        font-size: 0.92rem;
        max-width: 32ch;
    }
}

/* ---------- About page ---------- */
.page-hero--about {
    min-height: min(72vh, 560px);
    padding: 160px 24px 88px;
    display: grid;
    place-items: center;
    background: #1A2E24;
}

.page-hero--about .page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 45%;
    transform: scale(1.06);
    animation: aboutHeroDrift 18s ease-in-out infinite alternate;
}

.page-hero--about .page-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(18, 32, 24, 0.55) 0%,
            rgba(18, 32, 24, 0.35) 45%,
            rgba(18, 32, 24, 0.72) 100%),
        linear-gradient(90deg,
            rgba(18, 32, 24, 0.45) 0%,
            transparent 40%,
            transparent 60%,
            rgba(18, 32, 24, 0.4) 100%);
}

.page-hero--about .page-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.page-hero-brand {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #F3E7C5;
    margin-bottom: 10px;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.page-hero--about h1 {
    color: #FFF8E8;
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    letter-spacing: 0.18em;
    margin-bottom: 14px;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
}

.page-hero--about p:not(.page-hero-brand) {
    color: rgba(255, 248, 232, 0.9);
    font-size: 1.02rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

@keyframes aboutHeroDrift {
    from { transform: scale(1.04) translateY(0); }
    to { transform: scale(1.1) translateY(-1.5%); }
}

.about-story {
    padding: 96px 0 80px;
    background:
        radial-gradient(circle at 12% 20%, rgba(63, 102, 80, 0.08), transparent 42%),
        radial-gradient(circle at 88% 70%, rgba(201, 162, 74, 0.08), transparent 40%),
        var(--bg);
}

.about-story-inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 52px;
    align-items: center;
}

.about-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest);
    opacity: 0.7;
}

.about-story-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 18px;
}

.about-story-copy > p {
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 14px;
    font-weight: 300;
    font-size: 1.02rem;
}

.about-story-visual {
    position: relative;
}

.about-story-frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(44, 69, 53, 0.22);
    box-shadow: 0 28px 60px rgba(40, 55, 40, 0.18);
    background: #1A2E24;
}

.about-story-frame img {
    width: 100%;
    aspect-ratio: 1.08;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-story-visual:hover .about-story-frame img {
    transform: scale(1.06);
}

.about-quote {
    padding: 54px 0 10px;
    text-align: center;
}

.about-quote-script {
    font-family: var(--font-script);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 8px;
}

.about-quote span {
    display: block;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--forest);
    opacity: 0.55;
}

.about-chapters {
    padding: 40px 0 96px;
    background: var(--bg);
}

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

.about-chapter-media {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid rgba(44, 69, 53, 0.16);
    box-shadow: 0 16px 34px rgba(40, 55, 40, 0.1);
    background: #1A2E24;
}

.about-chapter-media img {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-chapter:hover .about-chapter-media img {
    transform: scale(1.06);
}

.about-chapter-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--forest);
    opacity: 0.6;
}

.about-chapter h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 10px;
}

.about-chapter p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 320px;
}

.about-pillars {
    padding: 24px 0 90px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 10px;
}

.about-pillar {
    text-align: center;
    padding: 10px 8px 0;
}

.about-pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--forest);
    background:
        radial-gradient(circle at 40% 35%, rgba(232, 212, 139, 0.35), transparent 55%),
        #FFFCF5;
    border: 1px solid rgba(44, 69, 53, 0.2);
    box-shadow: 0 10px 24px rgba(40, 55, 40, 0.08);
}

.about-pillar-icon svg {
    width: 28px;
    height: 28px;
}

.about-pillar h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 8px;
}

.about-pillar p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.55;
    max-width: 240px;
    margin: 0 auto;
}

.about-moments {
    padding: 88px 0;
    background: var(--bg);
}

.about-moments-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.about-moment {
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 0.78;
    border: 1px solid rgba(44, 69, 53, 0.18);
    box-shadow: 0 16px 36px rgba(40, 55, 40, 0.1);
}

.about-moment img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-moment figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 14px 16px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFF8E8;
    background: linear-gradient(180deg, transparent, rgba(18, 32, 24, 0.82));
}

.about-moment:hover img {
    transform: scale(1.08);
}

.about-moment:nth-child(2),
.about-moment:nth-child(4) {
    transform: translateY(18px);
}

.about-promise {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #1A2E24;
}

.about-promise-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.04);
}

.about-promise-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 28, 22, 0.72), rgba(16, 28, 22, 0.78));
}

.about-promise-content {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 48px));
    text-align: center;
    padding: 80px 0;
}

.about-promise-script {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    color: #E8D48B;
    margin-bottom: 12px;
}

.about-promise-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.4;
    color: #FFF8E8;
    margin-bottom: 28px;
}

.about-promise-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.btn-outline-light {
    border: 1px solid rgba(243, 231, 197, 0.7);
    color: #F3E7C5;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(243, 231, 197, 0.12);
    color: #FFF8E8;
}

@media (max-width: 980px) {
    .about-story-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .about-moment:nth-child(2),
    .about-moment:nth-child(4) {
        transform: none;
    }
}

@media (max-width: 700px) {
    .page-hero--about {
        min-height: 340px;
        padding: 130px 20px 64px;
    }

    .page-hero-brand {
        letter-spacing: 0.16em;
    }

    .about-story {
        padding: 64px 0 48px;
    }

    .about-pillars {
        padding-bottom: 64px;
    }

    .about-pillars-grid,
    .about-moments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-moment {
        aspect-ratio: 1.25;
    }

    .about-promise {
        min-height: 360px;
    }

    .about-promise-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-promise-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- Why Kashmora page ---------- */
.page-hero--why {
    min-height: min(58vh, 460px);
    padding: 150px 24px 72px;
    display: grid;
    place-items: center;
    background: #1A2E24;
}

.page-hero--why .page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transform: scale(1.03);
    filter: saturate(1.08) contrast(1.05);
    animation: aboutHeroDrift 18s ease-in-out infinite alternate;
}

.page-hero--why .page-hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 48%,
            rgba(246, 240, 228, 0.42) 0%,
            rgba(246, 240, 228, 0.14) 55%,
            rgba(26, 46, 36, 0.08) 100%),
        linear-gradient(180deg,
            rgba(246, 240, 228, 0.22) 0%,
            rgba(246, 240, 228, 0.06) 50%,
            rgba(246, 240, 228, 0.28) 100%);
}

.page-hero--why .page-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 18px 22px;
}

.page-hero--why .page-hero-brand,
.page-hero--why h1,
.page-hero--why p:not(.page-hero-brand) {
    color: var(--forest);
    text-shadow: none;
}

.why-lead {
    padding: 72px 0 28px;
    text-align: center;
    background: var(--bg);
}

.why-lead-inner {
    max-width: 720px;
}

.why-lead h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--forest);
    line-height: 1.25;
    margin: 12px 0 14px;
}

.why-lead p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1.02rem;
}

.why-reasons-stack {
    padding: 20px 0 72px;
    background: var(--bg);
}

.why-reason-row {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 42px;
}

.why-reason-row:last-child {
    margin-bottom: 0;
}

.why-reason-row--flip .why-reason-media {
    order: 2;
}

.why-reason-row--flip .why-reason-copy {
    order: 1;
}

.why-reason-media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(44, 69, 53, 0.16);
    box-shadow: 0 18px 40px rgba(40, 55, 40, 0.12);
    background: #1A2E24;
}

.why-reason-media img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-reason-row:hover .why-reason-media img {
    transform: scale(1.05);
}

.why-reason-num {
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--forest);
    opacity: 0.5;
}

.why-reason-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 12px;
}

.why-reason-copy p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 420px;
}

.why-proof {
    background: #1A2E24;
    padding: 72px 0;
}

.why-proof-inner {
    width: min(1100px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.why-proof-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #FFF8E8;
    line-height: 1.3;
    margin: 10px 0 14px;
}

.why-proof-copy p {
    color: rgba(255, 248, 232, 0.78);
    font-weight: 300;
    margin-bottom: 22px;
    max-width: 480px;
}

.why-proof-list {
    display: grid;
    gap: 12px;
}

.why-proof-list li {
    padding: 14px 18px;
    border: 1px solid rgba(243, 231, 197, 0.28);
    color: #F3E7C5;
    font-family: var(--font-display);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 252, 245, 0.04);
}

.why-cta-band {
    padding: 72px 0 90px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(63, 102, 80, 0.08), transparent 50%),
        var(--bg);
}

.why-cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
    margin: 8px 0 22px;
}

@media (max-width: 980px) {
    .about-chapters-grid {
        grid-template-columns: 1fr;
    }

    .why-reason-row,
    .why-reason-row--flip,
    .why-proof-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .why-reason-row--flip .why-reason-media,
    .why-reason-row--flip .why-reason-copy {
        order: unset;
    }
}

@media (max-width: 700px) {
    .page-hero--why {
        min-height: 320px;
        padding: 130px 20px 56px;
    }

    .why-lead {
        padding: 48px 0 12px;
    }

    .why-reasons-stack {
        padding-bottom: 48px;
    }

    .why-proof {
        padding: 52px 0;
    }

    .why-cta-band {
        padding: 52px 0 72px;
    }

    .about-chapter p {
        max-width: none;
    }
}

.page-content { padding: 72px 0; }

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 36px;
    max-width: 820px;
    margin: 0 auto;
}

.content-card h2 {
    font-family: var(--font-display);
    color: var(--gold-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.content-card p {
    color: var(--text-muted);
    font-weight: 300;
}

.content-card p + p { margin-top: 12px; }

.legal-card h3 {
    margin: 28px 0 10px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
}

.legal-card a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    font-size: 0.85rem;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid rgba(201, 162, 74, 0.28);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 12px 14px;
    color: var(--text);
    font-family: inherit;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.products-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-tile {
    background: var(--bg-card);
    border: 1px solid rgba(44, 69, 53, 0.22);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 24px rgba(40, 55, 40, 0.08);
}

.product-tile--clickable {
    width: 100%;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.product-tile:hover {
    transform: translateY(-4px);
    border-color: var(--forest);
}

.product-tile img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    background: #EFE8DA;
}

.product-tile .tile-body {
    padding: 16px;
    text-align: center;
}

.product-tile h3 {
    font-family: var(--font-display);
    font-size: 0.92rem;
    color: var(--forest);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.35;
}

/* Products page — arched packs + hover zoom */
.page-hero--products {
    min-height: min(58vh, 460px);
    padding: 150px 24px 72px;
    display: grid;
    place-items: center;
    background: #1A2E24;
}

.page-hero--products .page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.05);
    animation: aboutHeroDrift 18s ease-in-out infinite alternate;
}

.page-hero--products .page-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(246, 240, 228, 0.72) 0%,
            rgba(246, 240, 228, 0.55) 48%,
            rgba(246, 240, 228, 0.78) 100%);
}

.page-hero--products .page-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.page-hero--products .page-hero-brand,
.page-hero--products h1,
.page-hero--products p:not(.page-hero-brand) {
    color: var(--forest);
    text-shadow: 0 1px 0 rgba(255, 252, 245, 0.55);
}

.page-content--products {
    padding: 56px 0 88px;
    background:
        radial-gradient(circle at 10% 8%, rgba(63, 102, 80, 0.07), transparent 40%),
        var(--bg);
}

.category-block {
    margin-bottom: 56px;
}

.category-block:last-child {
    margin-bottom: 0;
}

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

.category-block .section-heading h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}

.products-list--packs {
    gap: 28px 18px;
    align-items: start;
}

.product-tile--pack {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    transition: none;
}

.product-tile--pack:hover {
    transform: none;
    border-color: transparent;
}

.product-tile--pack .product-frame {
    width: min(240px, 100%);
    margin-bottom: 14px;
}

.product-tile--pack:hover .product-frame {
    transform: translateY(-8px);
    filter: brightness(1.04);
    box-shadow:
        0 24px 48px rgba(40, 55, 40, 0.2),
        0 0 0 1px rgba(44, 69, 53, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.product-tile--pack .product-tile-media,
.product-tile--pack .product-circle {
    cursor: zoom-in;
}

.product-tile--pack img {
    aspect-ratio: auto;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    transform-origin: center center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    background: #F3EDE2;
}

.product-tile--pack .product-circle.is-img-zooming img {
    transition: none;
}

.product-tile--pack .tile-body {
    padding: 0 8px;
}

.product-tile--pack h3 {
    font-size: 0.95rem;
    min-height: 2.5em;
}

.product-tile--pack .tile-hint {
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-tile--pack:hover .tile-hint {
    opacity: 0.75;
    transform: translateY(0);
}

.tile-hint {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    opacity: 0.7;
}

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

.gift-tile {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
    background: #1A2E24;
    border: 1.5px solid rgba(44, 69, 53, 0.45);
    box-shadow: 0 12px 28px rgba(40, 55, 40, 0.1);
    overflow: hidden;
}

.gift-tile:hover {
    border-color: rgba(44, 69, 53, 0.65);
}

.gift-tile-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #1A2E24;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 0;
    cursor: zoom-in;
}

.gift-tile-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 45%,
            #3F6650 0%,
            #2C4535 38%,
            #1E3228 68%,
            #15241E 100%);
    pointer-events: none;
    z-index: 0;
}

.gift-tile-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.08);
    transform-origin: center center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.gift-tile-media.is-img-zooming img {
    transition: none;
}

.gift-tile .gift-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    pointer-events: none;
    z-index: 2;
}

.gift-tile-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 20px;
    text-align: left;
    background: var(--bg-card, #FFFCF5);
}

.gift-tile-body h3 {
    font-size: 0.98rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin: 0;
}

.gift-tile-desc {
    margin: 10px 0 0;
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.gift-tile .tile-hint {
    margin-top: auto;
    padding-top: 14px;
}

.gift-tile.product-tile--clickable .gift-tag {
    pointer-events: none;
}

/* Product / gift detail modal */
.product-modal[hidden] {
    display: none !important;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 40, 32, 0.45);
    backdrop-filter: blur(3px);
}

.product-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(90vh, 760px);
    overflow: auto;
    background: linear-gradient(180deg, #FFFCF5, var(--bg-soft));
    border: 1.5px solid rgba(44, 69, 53, 0.28);
    border-radius: 22px;
    box-shadow: 0 28px 60px rgba(40, 55, 40, 0.28);
    padding: 28px;
}

.product-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(44, 69, 53, 0.08);
    color: var(--forest);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: center;
}

.product-modal-media {
    position: relative;
    border-radius: 18px;
    background: radial-gradient(ellipse at 50% 35%, #FFFCF5 0%, #E8DFCC 75%);
    border: 1px solid rgba(44, 69, 53, 0.16);
    padding: 18px;
    display: grid;
    place-items: center;
    min-height: 320px;
    overflow: hidden;
    cursor: zoom-in;
}

.product-modal-media.is-zooming {
    cursor: zoom-out;
}

.product-modal-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.18s ease-out;
    will-change: transform;
}

.product-modal-media.is-zooming img {
    transition: none;
}

.product-modal--gift .product-modal-media {
    background: #1A2E24;
    border-color: rgba(44, 69, 53, 0.28);
    padding: 22px;
}

.product-modal--gift .product-modal-media::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 78%;
    height: 78%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 42%,
            #3F6650 0%,
            #2C4535 42%,
            #1E3228 72%,
            #15241E 100%);
    pointer-events: none;
    z-index: 0;
}

.product-modal--gift .product-modal-media img {
    filter: drop-shadow(0 12px 20px rgba(10, 18, 14, 0.35));
}

.product-modal-category {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--forest);
    opacity: 0.75;
}

.product-modal-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 12px;
    line-height: 1.25;
    padding-right: 28px;
}

.product-modal-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin: 0 0 14px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(44, 69, 53, 0.08);
    border: 1px solid rgba(44, 69, 53, 0.18);
}

.product-modal-trust strong {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--forest);
}

.product-modal-trust span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.product-modal-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.product-modal-promise {
    margin: 0 0 18px;
    font-size: 0.86rem;
    line-height: 1.5;
    color: var(--forest);
    font-weight: 600;
}

.product-modal-meta {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.product-modal-meta li {
    display: grid;
    gap: 3px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(44, 69, 53, 0.2);
}

.product-modal-meta strong {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
}

.product-modal-meta span {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.45;
}

.product-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 760px) {
    .product-modal-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-modal-media {
        min-height: 240px;
    }
}

/* ---------- Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay { transition-delay: 0.15s; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
    .product-row { grid-template-columns: repeat(4, 1fr); }
    .header-inner {
        width: min(1280px, calc(100% - 32px));
        grid-template-columns: 72px 1fr auto;
        gap: 10px 16px;
    }
    .brand-logo {
        width: 68px;
        height: 68px;
    }
    .main-nav > a,
    .nav-dropdown > a {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
        padding: 10px 8px;
    }

    .gifting-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 780px;
        gap: 32px 24px;
    }

    .gift-card {
        min-height: 540px;
    }
}

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

    .main-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        background: rgba(246, 240, 228, 0.98);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 18px 24px;
        gap: 0;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: 0.35s ease;
        border-bottom: 1px solid var(--line);
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav > a,
    .nav-dropdown > a {
        padding: 14px 6px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 0.78rem;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        border: 0;
        background: transparent;
        padding: 0 0 8px 10px;
    }

    .nav-dropdown.is-open .dropdown-menu { display: block; }

    :root {
        --header-h: 72px;
    }

    .header-inner {
        width: min(1320px, calc(100% - 24px));
        gap: 10px;
        min-height: var(--header-h);
        grid-template-columns: 1fr auto;
        padding: 4px 0;
    }

    .brand-logo {
        width: 56px;
        height: 56px;
    }

    .header-actions {
        gap: 2px;
        justify-self: end;
    }

    .icon-btn {
        width: 38px;
        height: 38px;
    }

    .main-nav {
        grid-column: 1 / -1;
    }

    .site-header--home {
        background: rgba(246, 240, 228, 0.96);
        border-bottom: 1px solid rgba(184, 146, 58, 0.18);
    }

    .container {
        width: min(1200px, calc(100% - 28px));
    }

    .section {
        padding: 56px 0;
    }

    /* Mobile hero: image on top, cream content below */
    .hero {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding-top: min(58vh, 420px);
        background: var(--bg);
    }

    .hero-bg--desktop {
        display: none;
    }

    .hero-bg--mobile {
        display: block;
        inset: 0 0 auto 0;
        height: min(58vh, 420px);
        background-position: center 30%;
        background-size: cover;
        animation: none;
        transform: none;
    }

    .hero-overlay {
        inset: 0 0 auto 0;
        height: min(58vh, 420px);
        background:
            linear-gradient(180deg,
                rgba(246, 240, 228, 0.35) 0%,
                rgba(246, 240, 228, 0.08) 45%,
                rgba(246, 240, 228, 0.55) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        grid-template-columns: 1fr;
        text-align: left;
        justify-items: stretch;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 28px 20px 36px;
        background:
            linear-gradient(180deg, #F6F0E4 0%, #F6F0E4 100%);
        box-shadow: 0 -16px 28px rgba(40, 55, 40, 0.06);
    }

    .hero-copy {
        max-width: none;
        width: 100%;
        margin: 0;
        text-align: left;
    }

    .hero-copy,
    .hero-desc,
    .hero-features {
        margin-inline: 0;
        text-align: left;
    }

    .hero-pill {
        background: #FFFCF5;
        border-color: rgba(44, 69, 53, 0.35);
        box-shadow: none;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 8.5vw, 2.55rem);
        text-shadow: none;
        color: var(--forest);
    }

    .hero-script {
        margin: 10px 0 14px;
        color: var(--forest);
    }

    .hero-desc {
        max-width: 38ch;
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 22px;
        text-shadow: none;
        color: var(--forest);
        opacity: 0.9;
    }

    .hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
        width: 100%;
        gap: 18px 14px;
        margin-inline: 0;
        justify-items: start;
        padding-top: 4px;
        border-top: 1px solid rgba(44, 69, 53, 0.12);
    }

    .hero-feature {
        align-items: flex-start;
        text-align: left;
        color: var(--forest);
        text-shadow: none;
        font-size: 0.56rem;
    }

    .hero-feature-icon {
        background: #FFFCF5;
        border-color: rgba(44, 69, 53, 0.35);
        color: var(--forest);
    }

    .hero-visual {
        display: none;
    }

    .gifting-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 22px;
        max-width: 720px;
        margin-inline: auto;
        padding-top: 10px;
    }

    .gift-card {
        min-height: 520px;
    }

    .gift-card-frame:nth-child(even) {
        --lift: 0px;
    }

    .pack-row {
        grid-template-columns: 1fr;
    }

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

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

    .pack-card,
    .pack-card--large {
        min-height: 320px;
    }

    .category-cards--fan {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        padding: 10px 0 0;
        perspective: none;
    }

    .category-cards--fan .category-card,
    .category-cards--fan .category-card:first-child,
    .category-cards--fan .category-card:nth-child(1),
    .category-cards--fan .category-card:nth-child(2),
    .category-cards--fan .category-card:nth-child(3),
    .category-cards--fan .category-card:nth-child(4),
    .category-cards--fan .category-card:nth-child(5) {
        width: auto;
        margin-left: 0;
        flex: none;
        aspect-ratio: 0.78;
        transform: none;
        filter: none;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
        border-color: rgba(201, 162, 74, 0.22);
        z-index: 1;
    }

    .category-cards--fan .category-card:nth-child(3) {
        grid-column: 2;
    }

    .category-cards--fan:hover .category-card:not(:hover) {
        filter: none;
    }

    .category-cards--fan .category-card:hover {
        transform: translateY(-6px);
    }

    .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }

    .nature-finest-content h2 {
        color: var(--gold-light);
        text-shadow: none;
    }

    .nature-step-icon {
        border-color: rgba(44, 69, 53, 0.45);
        background: rgba(255, 252, 245, 0.78);
        color: var(--forest);
    }

    .nature-step p {
        color: var(--text);
        text-shadow: none;
    }

    .story-inner { grid-template-columns: 1fr; }

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

    .footer-brand,
    .footer-newsletter { grid-column: 1 / -1; }

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

    .page-hero--products {
        min-height: 320px;
        padding: 130px 20px 56px;
    }

    .product-tile--pack .product-frame {
        width: min(200px, 100%);
    }

    .product-tile--pack .tile-hint {
        opacity: 0.7;
        transform: none;
    }
}

@media (max-width: 640px) {
    :root {
        --header-h: 66px;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .header-actions .icon-btn:nth-child(1),
    .header-actions .cart-btn {
        display: none;
    }

    .hero {
        padding-top: min(48vh, 340px);
    }

    .hero-bg--mobile,
    .hero-overlay {
        height: min(48vh, 340px);
    }

    .hero-bg--mobile {
        background-position: center 28%;
    }

    .hero-content {
        padding: 24px 18px 32px;
    }

    .hero-pill {
        margin-bottom: 14px;
        font-size: 0.6rem;
        letter-spacing: 0.14em;
        padding: 7px 12px;
    }

    .hero-copy h1 {
        font-size: clamp(1.85rem, 9.5vw, 2.25rem);
        line-height: 1.08;
    }

    .hero-script {
        font-size: clamp(1.3rem, 5.2vw, 1.6rem);
    }

    .hero-desc {
        font-size: 0.88rem;
        max-width: none;
    }

    .hero-feature {
        font-size: 0.52rem;
        letter-spacing: 0.05em;
        gap: 6px;
    }

    .hero-feature-icon {
        width: 36px;
        height: 36px;
    }

    .section-heading h2 {
        font-size: clamp(1.45rem, 6.5vw, 1.85rem);
        letter-spacing: 0.05em;
    }

    .section-sub {
        font-size: 0.9rem;
        max-width: 30ch;
        margin-inline: auto;
    }

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

    .product-frame {
        width: 100%;
        padding: 4px;
        margin-bottom: 10px;
    }

    .product-item h3 {
        font-size: 0.78rem;
        min-height: 2.3em;
        letter-spacing: 0.04em;
    }

    .collection .section-cta {
        margin-top: 18px;
        text-align: center;
    }

    .collection .corner--tl {
        width: 110px;
        max-height: 80px;
        top: 6px;
    }

    .collection .corner--br {
        width: 96px;
        max-height: 78px;
        bottom: 10px;
        right: 8px;
    }

    .category-cards--fan {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-cards--fan .category-card:nth-child(3) {
        grid-column: auto;
    }

    .category-cards--fan .category-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 220px;
        margin-inline: auto;
    }

    .gifting-showcase {
        padding: 56px 0 64px;
    }

    .gifting-head {
        margin-bottom: 28px;
        padding-inline: 8px;
    }

    .gifting-head h2 {
        font-size: clamp(1.5rem, 6.5vw, 1.9rem);
        letter-spacing: 0.08em;
    }

    .gifting-cta {
        margin-top: 28px;
        text-align: center;
    }

    .gifting-cards {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-inline: auto;
        gap: 28px;
        padding-top: 8px;
    }

    .product-item:hover {
        transform: none;
    }

    .product-item:hover .product-frame {
        transform: none;
        filter: none;
    }

    .gift-card-frame {
        max-width: 320px;
        margin-inline: auto;
    }

    .gift-card {
        min-height: 460px;
    }

    .gift-card-media {
        padding: 18px 12px 6px;
    }

    .gift-card-body {
        padding: 8px 16px 22px;
    }

    .gift-card-body h3 {
        font-size: 1rem;
    }

    .gift-card-frame,
    .gift-card-frame:nth-child(even) {
        --lift: 0px;
    }

    .products-list--gifts {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 420px;
        margin-inline: auto;
    }

    .gift-tile-media {
        aspect-ratio: 1 / 1;
        padding: 0;
    }

    .gift-tile-media img {
        transform: scale(1.06);
    }

    .product-modal-media img {
        max-height: 300px;
    }

    .gift-tile-body {
        padding: 16px 18px 18px;
    }

    .gift-tile-body h3 {
        font-size: 1.05rem;
        letter-spacing: 0.04em;
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: none;
    }

    .gift-tile-desc {
        font-size: 0.9rem;
        -webkit-line-clamp: 3;
        line-height: 1.5;
    }

    .gift-tile .gift-tag {
        top: 10px;
        left: 10px;
    }

    .page-content .section-heading {
        margin-bottom: 24px !important;
    }

    .page-content .section-sub {
        max-width: 28ch;
        margin-inline: auto;
        line-height: 1.5;
    }

    .trust-bar {
        padding: 36px 0;
    }

    .trust-grid { grid-template-columns: 1fr; gap: 16px; }

    .trust-item {
        padding: 4px 0;
    }

    .nature-finest {
        min-height: 380px;
    }

    .nature-finest-content {
        padding: 48px 20px;
    }

    .nature-finest-content h2 {
        font-size: clamp(1.35rem, 6vw, 1.7rem);
        color: var(--forest);
    }

    .nature-finest-steps {
        gap: 18px;
    }

    .story-banner {
        padding: 56px 0;
    }

    .story-copy h2 {
        font-size: clamp(1.5rem, 6.5vw, 1.9rem);
    }

    .story-script {
        font-size: 1.55rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        padding: 48px 0 32px;
        gap: 28px;
    }

    .footer-bottom {
        padding: 16px 0 28px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .products-list--gifts {
        max-width: none;
        gap: 16px;
    }

    .gift-tile-body h3 {
        font-size: 0.98rem;
    }

    .gift-tile-desc {
        font-size: 0.86rem;
    }
}
