/* ============================================================
   FOREST PARK HEALING MINISTRIES
   Boutique editorial design system — built from scratch
   ============================================================ */

:root {
    /* Warm earth palette */
    --cream: #f4ebd9;
    --cream-light: #faf3e4;
    --paper: #ede1c8;
    --terra: #b05a3c;
    --terra-soft: #c87a5b;
    --brown: #3d2f22;
    --brown-mid: #6b5640;
    --brown-soft: #8c7556;
    --olive: #6b7a4f;
    --olive-soft: #8b9a6d;
    --ink: #1f1812;
    --muted: #8a7763;
    --line: #d8c8a8;
    --white: #ffffff;

    /* Type */
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Motion */
    --ease: cubic-bezier(0.32, 0.72, 0.24, 1);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--brown);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
}

::selection { background: var(--terra); color: var(--cream); }

/* ============ UTILITIES ============ */
.wrap {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.wrap-narrow {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 32px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--terra);
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--brown);
    color: var(--cream);
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '→';
    transition: transform 0.4s var(--ease);
}

.btn:hover { background: var(--terra); }
.btn:hover::after { transform: translateX(6px); }

.btn-line {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}
.btn-line:hover { background: var(--ink); color: var(--cream); }

.btn-cream {
    background: var(--cream);
    color: var(--ink);
}
.btn-cream:hover { background: var(--white); color: var(--terra); }

/* ============ LOADER ============ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
    width: 180px;
    height: auto;
    animation: loaderPulse 2s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.96); opacity: 0.85; }
}

.loader-mark {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--brown);
    font-style: italic;
    letter-spacing: 0.04em;
    overflow: hidden;
    position: relative;
    padding-bottom: 12px;
}
.loader-mark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--terra);
    transform-origin: left;
    animation: lineLoad 1.6s var(--ease) infinite;
}
@keyframes lineLoad {
    0%, 100% { transform: scaleX(0); }
    50% { transform: scaleX(1); }
}

@media (max-width: 600px) {
    .loader-logo { width: 140px; }
    .loader-mark { font-size: 1.15rem; }
}

/* ============ NAV ============ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: var(--cream-light);
    border-bottom: 1px solid var(--line);
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    padding: 10px 0;
    background: rgba(250, 243, 228, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(31, 24, 18, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}
.nav-logo img {
    height: 110px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    transition: all 0.4s var(--ease);
}
.nav.scrolled .nav-logo img { height: 88px; }
.nav-logo:hover img { transform: scale(1.04); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-menu a {
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--terra);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--terra); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }

.nav-cart {
    padding: 12px 26px !important;
    background: var(--terra);
    color: var(--cream) !important;
    margin-left: 10px;
    font-size: 0.78rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase;
    font-weight: 600 !important;
    transition: background 0.3s;
}
.nav-cart::after { display: none !important; }
.nav-cart:hover { background: var(--brown); color: var(--cream) !important; }

.nav-toggle {
    display: none;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--ink);
    transition: all 0.3s;
    transform-origin: center;
}
.nav-toggle span:nth-child(1) { width: 100%; }
.nav-toggle span:nth-child(2) { width: 70%; align-self: flex-end; }
.nav-toggle span:nth-child(3) { width: 100%; }
.nav-toggle.open span:nth-child(1) { transform: translateY(11px) rotate(45deg); width: 100%; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    height: 100vh;
    min-height: 680px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0 0 80px;
}
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 24, 18, 0.25) 0%, rgba(31, 24, 18, 0.15) 40%, rgba(31, 24, 18, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    color: var(--cream);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.hero-eyebrow {
    color: var(--cream);
    margin-bottom: 28px;
    opacity: 0.85;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    color: var(--cream);
    line-height: 0.98;
    font-weight: 400;
    max-width: 14ch;
    letter-spacing: -0.015em;
    margin-bottom: 36px;
}
.hero-title em {
    font-style: italic;
    color: var(--cream);
    opacity: 0.92;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-tagline {
    max-width: 420px;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--cream);
    opacity: 0.88;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-meta {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    color: var(--cream);
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0.55;
    z-index: 1;
}

/* ============ SECTION ANCHORS ============ */
.section {
    padding: 120px 0;
}
.section-tight { padding: 80px 0; }

/* ============ INTRO STORY ============ */
.intro {
    background: var(--cream);
    padding: 130px 0;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}
.intro-text .eyebrow { margin-bottom: 24px; }
.intro-text h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    margin-bottom: 28px;
    color: var(--ink);
}
.intro-text h2 em {
    font-style: italic;
    color: var(--terra);
}
.intro-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--brown);
    margin-bottom: 18px;
}
.intro-quote {
    border-left: 2px solid var(--terra);
    padding-left: 24px;
    margin: 32px 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--ink);
    line-height: 1.5;
}
.intro-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 0.75rem;
    font-family: var(--font-sans);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--terra);
    font-weight: 600;
}

.intro-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.intro-image:hover img { transform: scale(1.04); }

.intro-image .tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--cream-light);
    color: var(--ink);
    padding: 12px 20px;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ============ MARQUEE ============ */
.strip {
    background: var(--brown);
    color: var(--cream);
    padding: 24px 0;
    overflow: hidden;
}
.strip-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scroll 36s linear infinite;
    width: max-content;
    align-items: center;
}
.strip-item {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 60px;
    color: var(--cream);
}
.strip-item .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--terra);
    font-style: normal;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ COLLECTION ============ */
.collection {
    background: var(--cream-light);
    padding: 130px 0;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
    gap: 40px;
    flex-wrap: wrap;
}
.section-head .left .eyebrow { margin-bottom: 16px; }
.section-head h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--ink);
    max-width: 600px;
}
.section-head h2 em { color: var(--terra); font-style: italic; }
.section-head .right {
    max-width: 360px;
    color: var(--brown-mid);
    font-size: 0.98rem;
    line-height: 1.65;
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 28px;
}
.product {
    position: relative;
    cursor: pointer;
}
.product-photo {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--paper);
    margin-bottom: 22px;
    position: relative;
}
.product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.product:hover .product-photo img {
    transform: scale(1.06);
}
.product-photo .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--cream);
    color: var(--ink);
    padding: 7px 14px;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 1;
}
.product-photo .badge.terra { background: var(--terra); color: var(--cream); }
.product-photo .badge.dark { background: var(--ink); color: var(--cream); }

.product-meta {
    padding: 0 4px;
}
.product-meta .kind {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terra);
    font-weight: 600;
    margin-bottom: 8px;
}
.product-meta h3 {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
}
.product-meta p {
    font-size: 0.9rem;
    color: var(--brown-mid);
    line-height: 1.55;
}

/* ============ SPOTLIGHT ============ */
.spotlight {
    background: var(--paper);
    padding: 130px 0;
}
.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}
.spotlight-photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
}
.spotlight-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.spotlight-photo:hover img { transform: scale(1.04); }
.spotlight-photo .number-tag {
    position: absolute;
    top: 28px;
    right: 28px;
    background: var(--cream);
    padding: 18px 22px;
    text-align: center;
    line-height: 1;
}
.spotlight-photo .number-tag .num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--terra);
    font-weight: 500;
    font-style: italic;
}
.spotlight-photo .number-tag .label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brown);
    margin-top: 6px;
    font-weight: 600;
}

.spotlight-text .eyebrow { margin-bottom: 18px; }
.spotlight-text h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 28px;
    color: var(--ink);
}
.spotlight-text h2 em { font-style: italic; color: var(--terra); }
.spotlight-text > p {
    font-size: 1.05rem;
    color: var(--brown);
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 460px;
}
.spec-list {
    margin: 32px 0;
    border-top: 1px solid var(--line);
}
.spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}
.spec-list li .k {
    color: var(--brown-mid);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 600;
}
.spec-list li .v {
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
}

/* ============ NUMBERS ============ */
.numbers {
    background: var(--brown);
    color: var(--cream);
    padding: 110px 0;
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.number-item {
    text-align: left;
    padding: 0 8px;
    position: relative;
}
.number-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: rgba(244, 235, 217, 0.15);
}
.number-item .n {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    color: var(--cream);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 18px;
}
.number-item .n em { font-style: italic; color: var(--terra-soft); }
.number-item .ttl {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terra-soft);
    font-weight: 600;
    margin-bottom: 8px;
}
.number-item .d {
    font-size: 0.92rem;
    color: rgba(244, 235, 217, 0.7);
    line-height: 1.5;
}

/* ============ EDITORIAL VERSE ============ */
.editorial {
    background: var(--cream);
    padding: 140px 0;
}
.editorial-quote {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}
.editorial-quote .mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--terra);
    line-height: 0.5;
    margin-bottom: 8px;
    font-style: italic;
}
.editorial-quote p {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.3;
    color: var(--ink);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 28px;
}
.editorial-quote cite {
    font-style: normal;
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terra);
    font-weight: 600;
}

/* ============ TWO-UP ============ */
.twoup {
    background: var(--cream-light);
    padding: 130px 0;
}
.twoup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.twoup-card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    cursor: pointer;
}
.twoup-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.twoup-card:hover img { transform: scale(1.05); }
.twoup-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(31, 24, 18, 0.85) 100%);
}
.twoup-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--cream);
}
.twoup-overlay .eyebrow { color: var(--terra-soft); margin-bottom: 12px; }
.twoup-overlay h3 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--cream);
    margin-bottom: 8px;
}
.twoup-overlay p {
    font-size: 0.95rem;
    color: rgba(244, 235, 217, 0.85);
    margin-bottom: 20px;
    max-width: 360px;
}
.twoup-overlay .arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    transition: gap 0.3s var(--ease);
}
.twoup-card:hover .arrow { gap: 18px; }

/* ============ FOOTER ============ */
.footer {
    background: var(--ink);
    color: var(--cream);
    padding: 110px 0 36px;
    position: relative;
}

.footer-top {
    text-align: center;
    margin-bottom: 90px;
}
.footer-top .mark {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--cream);
    line-height: 1;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.015em;
    margin-bottom: 22px;
}
.footer-top .mark em { color: var(--terra-soft); }
.footer-top p {
    max-width: 540px;
    margin: 0 auto 32px;
    color: rgba(244, 235, 217, 0.7);
    font-size: 0.98rem;
    line-height: 1.7;
}
.footer-top .btn {
    background: var(--terra);
    color: var(--cream);
}
.footer-top .btn:hover { background: var(--cream); color: var(--ink); }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(244, 235, 217, 0.12);
    margin-bottom: 36px;
}

.footer-brand img {
    height: 76px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 22px;
    opacity: 0.92;
}
.footer-brand h4 {
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: 1.45rem;
    margin-bottom: 14px;
    font-weight: 500;
}
.footer-brand p {
    color: rgba(244, 235, 217, 0.65);
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 320px;
}

.footer-col h5 {
    color: var(--terra-soft);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul a {
    font-size: 0.92rem;
    color: rgba(244, 235, 217, 0.78);
    transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--terra-soft); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.82rem;
    color: rgba(244, 235, 217, 0.5);
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(244, 235, 217, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--terra);
    border-color: var(--terra);
}
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }

/* ============ PAGE BANNER ============ */
.page-banner {
    padding: 200px 0 100px;
    background: var(--paper);
    text-align: center;
    position: relative;
}
.page-banner .eyebrow { margin-bottom: 20px; }
.page-banner h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--ink);
    margin-bottom: 0;
}
.page-banner h1 em {
    font-style: italic;
    color: var(--terra);
}

/* ============ STORY (ABOUT PAGE) ============ */
.story {
    padding: 120px 0;
    background: var(--cream);
}
.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 130px;
}
.story-block:last-child { margin-bottom: 0; }
.story-block:nth-child(even) .story-text { order: 2; }

.story-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.story-image:hover img { transform: scale(1.04); }

.story-text .eyebrow { margin-bottom: 22px; }
.story-text h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-bottom: 28px;
    color: var(--ink);
}
.story-text h2 em { font-style: italic; color: var(--terra); }
.story-text p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--brown);
    margin-bottom: 18px;
    max-width: 480px;
}

.values {
    padding: 120px 0;
    background: var(--paper);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 70px;
}
.value {
    padding: 40px 30px 36px;
    background: var(--cream-light);
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease);
}
.value:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 50px rgba(31, 24, 18, 0.08);
    border-color: var(--terra);
}
.value .n {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--terra);
    margin-bottom: 24px;
    letter-spacing: 0.3em;
    font-style: italic;
}
.value h4 {
    font-size: 1.35rem;
    color: var(--ink);
    margin-bottom: 14px;
    font-family: var(--font-serif);
}
.value p {
    font-size: 0.92rem;
    color: var(--brown-mid);
    line-height: 1.65;
}

/* ============ SHOP CATEGORIES ============ */
.cat {
    padding: 120px 0;
    background: var(--cream);
}
.cat:nth-of-type(even) { background: var(--cream-light); }

.cat-head {
    margin-bottom: 70px;
    text-align: center;
}
.cat-head .eyebrow { margin-bottom: 18px; }
.cat-head h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--ink);
    margin-bottom: 16px;
}
.cat-head h2 em { font-style: italic; color: var(--terra); }
.cat-head p {
    max-width: 580px;
    margin: 0 auto;
    color: var(--brown-mid);
    font-size: 1rem;
    line-height: 1.7;
}

.candles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.scent-card {
    background: var(--cream-light);
    border: 1px solid var(--line);
    position: relative;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    overflow: hidden;
}
.scent-card:hover {
    transform: translateY(-8px);
    border-color: var(--scent-color, var(--terra));
    box-shadow: 0 30px 60px rgba(31, 24, 18, 0.12);
}
.scent-photo {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--paper);
}
.scent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}
.scent-card:hover .scent-photo img { transform: scale(1.07); }
.scent-photo .num-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--cream);
    color: var(--ink);
    padding: 6px 12px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    z-index: 2;
    border: 1px solid var(--line);
}
.scent-photo .swatch-corner {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--scent-color, var(--terra));
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), inset 0 -3px 6px rgba(0, 0, 0, 0.15), 0 0 0 3px var(--cream-light);
    z-index: 2;
}
.scent-info {
    padding: 26px 24px 28px;
}
.scent-name {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--ink);
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.2;
}
.scent-name em {
    font-style: italic;
    color: var(--scent-color, var(--terra));
}
.scent-desc {
    font-size: 0.9rem;
    color: var(--brown-mid);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}
.scent-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.scent-tag {
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brown-mid);
    font-weight: 600;
}
.scent-burn {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--scent-color, var(--terra));
}

/* Price + Add to Cart */
.scent-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    margin-top: 4px;
    border-top: 1px solid var(--line);
}
.scent-price {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--ink);
    font-weight: 500;
}
.scent-price .currency {
    font-size: 0.9rem;
    color: var(--brown-mid);
    margin-right: 2px;
}

/* Add to Cart button (compact) */
.btn-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--scent-color, var(--brown));
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.btn-cart svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.3s var(--ease);
}
.btn-cart:hover {
    background: var(--brown);
    transform: translateY(-2px);
}
.btn-cart:hover svg { transform: translateX(2px); }
.btn-cart.added {
    background: var(--olive);
    pointer-events: none;
}
.btn-cart.added::before {
    content: '✓ ';
    margin-right: 4px;
}

/* Larger cart button for split sections */
.btn-cart-lg {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--terra);
    color: var(--cream);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    border: none;
}
.btn-cart-lg svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s var(--ease);
}
.btn-cart-lg:hover {
    background: var(--brown);
    transform: translateY(-2px);
}
.btn-cart-lg:hover svg { transform: translateX(3px); }
.btn-cart-lg.added {
    background: var(--olive);
    pointer-events: none;
}
.btn-cart-lg.added::before { content: '✓ '; }

/* Floating cart count badge in nav */
.nav-cart {
    position: relative;
}
.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--ink);
    color: var(--cream);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s var(--ease);
}
.cart-count.show {
    opacity: 1;
    transform: scale(1);
}

/* Cart toast notification */
.cart-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: var(--ink);
    color: var(--cream);
    padding: 16px 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    z-index: 9998;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s var(--ease);
    pointer-events: none;
    max-width: 90vw;
}
.cart-toast.show {
    transform: translateX(-50%) translateY(0);
}
.cart-toast .check {
    width: 24px;
    height: 24px;
    background: var(--olive);
    color: var(--cream);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}
.cart-toast em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--terra-soft);
}

/* Updated merch-card with images */
.merch-card.with-image {
    padding: 0;
}
.merch-card .merch-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--paper);
}
.merch-card .merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.merch-card.with-image:hover .merch-image img { transform: scale(1.06); }
.merch-card .merch-body {
    padding: 32px 28px 28px;
}
.merch-card .merch-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.merch-card .merch-price-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--ink);
    font-weight: 500;
}
.merch-card .merch-price-text .currency {
    font-size: 0.85rem;
    color: var(--brown-mid);
}

.tees-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.tees-photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--paper);
    position: relative;
}
.tees-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.tees-split:hover .tees-photo img { transform: scale(1.04); }
.tees-photo .ribbon {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--cream);
    padding: 14px 22px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
}

.tees-text h3 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    margin-bottom: 24px;
    line-height: 1.15;
}
.tees-text h3 em { font-style: italic; color: var(--terra); }
.tees-text p {
    font-size: 1.02rem;
    color: var(--brown);
    line-height: 1.75;
    margin-bottom: 18px;
    max-width: 460px;
}
.tees-features {
    margin: 36px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.tees-features .feat {
    padding: 20px;
    background: var(--cream-light);
    border-left: 3px solid var(--terra);
}
.tees-features .feat .n {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--terra);
    line-height: 1;
    margin-bottom: 8px;
}
.tees-features .feat .t {
    font-size: 0.82rem;
    color: var(--brown);
    letter-spacing: 0.05em;
}

/* Card grid for misc merch (no photos, typography-led) */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.merch-card {
    background: var(--cream-light);
    border: 1px solid var(--line);
    padding: 50px 32px;
    text-align: left;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.merch-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--terra);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.merch-card:hover {
    transform: translateY(-6px);
    border-color: var(--terra);
    box-shadow: 0 24px 50px rgba(31, 24, 18, 0.08);
}
.merch-card:hover::after { transform: scaleX(1); }
.merch-card .ico {
    width: 56px;
    height: 56px;
    background: var(--terra);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 22px;
}
.merch-card h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 10px;
}
.merch-card p {
    font-size: 0.92rem;
    color: var(--brown-mid);
    line-height: 1.6;
}

/* Coming Soon cards with photos */
.soon-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.soon-photo-card {
    background: var(--cream-light);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}
.soon-photo-card:hover {
    transform: translateY(-6px);
    border-color: var(--terra);
    box-shadow: 0 24px 50px rgba(31, 24, 18, 0.12);
}
.soon-photo-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}
.soon-photo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}
.soon-photo-card:hover .soon-photo-image img { transform: scale(1.05); }
.soon-photo-body {
    padding: 36px 32px 32px;
}
.soon-photo-body .pill {
    display: inline-block;
    background: var(--terra);
    color: var(--cream);
    padding: 7px 16px;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 18px;
}
.soon-photo-body h4 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.2;
}
.soon-photo-body h4 em { color: var(--terra); font-style: italic; }
.soon-photo-body p {
    color: var(--brown-mid);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 20px;
}
.soon-photo-body .when {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.92rem;
    color: var(--terra);
    padding-top: 18px;
    border-top: 1px solid var(--line);
    width: 100%;
}

.soon-card-typo {
    background: var(--brown);
    color: var(--cream);
    padding: 64px 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}
.soon-card-typo::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    background: var(--terra);
    border-radius: 50%;
    opacity: 0.25;
    transition: all 0.6s var(--ease);
}
.soon-card-typo:hover { transform: translateY(-6px); }
.soon-card-typo:hover::before { transform: scale(1.2); opacity: 0.4; }
.soon-card-typo .pill {
    display: inline-block;
    background: var(--terra);
    color: var(--cream);
    padding: 8px 18px;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.soon-card-typo h4 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}
.soon-card-typo h4 em { color: var(--terra-soft); font-style: italic; }
.soon-card-typo p {
    color: rgba(244, 235, 217, 0.78);
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.soon-card-typo .when {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--terra-soft);
    padding-top: 24px;
    border-top: 1px solid rgba(244, 235, 217, 0.15);
    position: relative;
    z-index: 1;
}

/* Decals/Stickers — typography card layout */
.decals-text h3 em { font-style: italic; color: var(--terra); }

.decals-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.decals-text h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--ink);
    margin-bottom: 22px;
}
.decals-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--brown);
    margin-bottom: 14px;
}
.decals-text ul {
    margin-top: 26px;
    border-top: 1px solid var(--line);
}
.decals-text ul li {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--brown);
    font-size: 0.95rem;
}
.decals-text ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--terra);
    border-radius: 50%;
    flex-shrink: 0;
}
.decals-photo {
    aspect-ratio: 5 / 4;
    overflow: hidden;
}
.decals-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.decals-photo:hover img { transform: scale(1.05); }

.soon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.soon-card {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
}
.soon-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.soon-card:hover img { transform: scale(1.05); }
.soon-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(31, 24, 18, 0.85) 100%);
}
.soon-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    color: var(--cream);
}
.soon-overlay .pill {
    display: inline-block;
    background: var(--terra);
    color: var(--cream);
    padding: 6px 14px;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
    align-self: flex-start;
}
.soon-overlay h4 {
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 8px;
    font-family: var(--font-serif);
}
.soon-overlay p {
    font-size: 0.92rem;
    color: rgba(244, 235, 217, 0.8);
    max-width: 360px;
}

/* ============ CONTACT ============ */
.contact-block {
    padding: 120px 0;
    background: var(--cream);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}
.contact-side h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 22px;
    color: var(--ink);
}
.contact-side h2 em { font-style: italic; color: var(--terra); }
.contact-side > p {
    font-size: 1rem;
    color: var(--brown);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 420px;
}

.info-row {
    display: flex;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}
.info-row:first-of-type { border-top: 1px solid var(--line); }
.info-icon {
    width: 42px;
    height: 42px;
    background: var(--terra);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
.info-row h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 4px;
    font-weight: 500;
}
.info-row p, .info-row a {
    color: var(--brown-mid);
    font-size: 0.95rem;
}
.info-row a:hover { color: var(--terra); }

.contact-form {
    background: var(--cream-light);
    padding: 48px;
    border: 1px solid var(--line);
}
.contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--ink);
}
.contact-form > p {
    color: var(--brown-mid);
    font-size: 0.95rem;
    margin-bottom: 32px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.field {
    margin-bottom: 18px;
}
.field label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown);
    font-weight: 600;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: var(--cream);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    border-radius: 0;
    transition: all 0.3s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--terra);
    background: var(--white);
}
.field textarea {
    resize: vertical;
    min-height: 130px;
}
.contact-form .btn {
    width: 100%;
    justify-content: center;
}
.form-success {
    background: rgba(154, 171, 132, 0.2);
    color: var(--olive);
    padding: 14px 18px;
    margin-top: 16px;
    font-size: 0.92rem;
    display: none;
}
.form-success.show {
    display: block;
    animation: fadeIn 0.4s var(--ease);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ SHOP CATEGORY NAV ============ */
.cat[id] { scroll-margin-top: 180px; }
@media (max-width: 900px) { .cat[id] { scroll-margin-top: 150px; } }
@media (max-width: 600px) { .cat[id] { scroll-margin-top: 130px; } }

.shop-catnav {
    background: var(--cream-light);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 100px;
    z-index: 90;
    padding: 18px 0;
    box-shadow: 0 4px 20px rgba(31, 24, 18, 0.04);
}
.shop-catnav-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}
.shop-catnav a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--brown);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}
.shop-catnav a svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    opacity: 0.7;
}
.shop-catnav a:hover,
.shop-catnav a.active {
    background: var(--terra);
    color: var(--cream);
    border-color: var(--terra);
}
.shop-catnav a:hover svg,
.shop-catnav a.active svg { opacity: 1; }

@media (max-width: 900px) {
    .shop-catnav { top: 80px; padding: 14px 0; }
    .shop-catnav-inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 22px;
        gap: 6px;
    }
    .shop-catnav-inner::-webkit-scrollbar { display: none; }
    .shop-catnav a {
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 0.72rem;
        letter-spacing: 0.16em;
    }
}
@media (max-width: 600px) {
    .shop-catnav { top: 72px; padding: 12px 0; }
    .shop-catnav a { padding: 9px 14px; font-size: 0.68rem; gap: 6px; }
    .shop-catnav a svg { width: 12px; height: 12px; }
}

/* Variant photo treatments (creates visual variety from a single source image) */
.scent-card.variant-a .scent-photo img {
    filter: saturate(1.15) contrast(1.05);
}
.scent-card.variant-b .scent-photo img {
    filter: sepia(0.35) saturate(1.1) hue-rotate(-15deg) brightness(0.95);
}
.scent-card.variant-c .scent-photo img {
    filter: grayscale(0.18) sepia(0.15) saturate(1.2) hue-rotate(10deg);
}
.scent-card.variant-d .scent-photo img {
    filter: brightness(1.08) contrast(0.95) saturate(0.85);
}
.scent-card.variant-mono .scent-photo img {
    filter: grayscale(1) contrast(1.05) brightness(0.95);
}

/* Color-tinted overlay on photo for extra variety */
.scent-card .scent-photo {
    position: relative;
}
.scent-card.tint .scent-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--scent-color, var(--terra));
    mix-blend-mode: multiply;
    opacity: 0.18;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}
.scent-card.tint:hover .scent-photo::after {
    opacity: 0.08;
}

/* Inquire button (for items without photos) */
.btn-inquire {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.btn-inquire svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: transform 0.3s var(--ease);
}
.btn-inquire:hover {
    background: var(--ink);
    color: var(--cream);
}
.btn-inquire:hover svg { transform: translateX(3px); }

/* ============ CART PAGE ============ */
.cart-page {
    padding: 80px 0 120px;
    background: var(--cream);
    min-height: 60vh;
}
.cart-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}
.cart-items {
    background: var(--cream-light);
    border: 1px solid var(--line);
}
.cart-empty {
    padding: 100px 40px;
    text-align: center;
    background: var(--cream-light);
    border: 1px solid var(--line);
}
.cart-empty .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--paper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra);
}
.cart-empty h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--ink);
    margin-bottom: 12px;
}
.cart-empty p {
    color: var(--brown-mid);
    margin-bottom: 28px;
    font-size: 0.98rem;
}

.cart-row {
    display: grid;
    grid-template-columns: 110px 1fr auto auto auto;
    gap: 24px;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
    transition: background 0.3s;
}
.cart-row:last-child { border-bottom: none; }
.cart-row:hover { background: rgba(176, 90, 60, 0.04); }

.cart-row-image {
    width: 110px;
    height: 110px;
    overflow: hidden;
    background: var(--paper);
    flex-shrink: 0;
}
.cart-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-row-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
}

.cart-row-info h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 6px;
    font-weight: 500;
}
.cart-row-info .unit-price {
    font-size: 0.85rem;
    color: var(--brown-mid);
    letter-spacing: 0.05em;
}
.cart-row-info .unit-price em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--terra);
    font-size: 1rem;
    margin-left: 6px;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    background: var(--cream);
}
.qty-btn {
    width: 38px;
    height: 38px;
    background: transparent;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.qty-btn:hover { background: var(--terra); color: var(--cream); }
.qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.qty-num {
    min-width: 42px;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--ink);
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    padding: 6px 4px;
    font-weight: 500;
}

.cart-row-total {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--ink);
    font-weight: 500;
    min-width: 90px;
    text-align: right;
}
.cart-row-total .currency {
    font-size: 0.9rem;
    color: var(--brown-mid);
    margin-right: 2px;
}

.cart-remove {
    width: 38px;
    height: 38px;
    background: transparent;
    color: var(--brown-mid);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.cart-remove:hover {
    background: var(--terra);
    color: var(--cream);
    border-color: var(--terra);
}
.cart-remove svg { width: 16px; height: 16px; fill: currentColor; }

/* Cart summary */
.cart-summary {
    background: var(--cream-light);
    border: 1px solid var(--line);
    padding: 36px 32px;
    position: sticky;
    top: 120px;
}
.cart-summary h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}
.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    color: var(--brown);
    font-size: 0.95rem;
}
.summary-line .v { color: var(--ink); font-weight: 500; }
.summary-divider {
    height: 1px;
    background: var(--line);
    margin: 14px 0;
}
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0 24px;
}
.summary-total .l {
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brown-mid);
    font-weight: 600;
}
.summary-total .v {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--terra);
    font-weight: 500;
}
.summary-total .v .currency {
    font-size: 1.1rem;
    color: var(--brown-mid);
    margin-right: 4px;
}
.cart-summary .btn {
    width: 100%;
    justify-content: center;
}
.cart-summary .btn-line {
    margin-top: 12px;
}
.cart-note {
    margin-top: 20px;
    padding: 16px;
    background: rgba(176, 90, 60, 0.08);
    color: var(--brown);
    font-size: 0.85rem;
    line-height: 1.6;
    border-left: 3px solid var(--terra);
}
.cart-note strong { color: var(--terra); }

/* Order placed success */
.order-success {
    text-align: center;
    padding: 80px 40px;
    background: var(--cream-light);
    border: 1px solid var(--line);
    max-width: 700px;
    margin: 0 auto;
}
.order-success .check-big {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    background: var(--olive);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 300;
}
.order-success h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--ink);
    margin-bottom: 14px;
}
.order-success h2 em { font-style: italic; color: var(--terra); }
.order-success p {
    color: var(--brown-mid);
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .cart-layout { grid-template-columns: 1fr; gap: 40px; }
    .cart-summary { position: static; }
}
@media (max-width: 600px) {
    .cart-row {
        grid-template-columns: 80px 1fr;
        gap: 16px;
        padding: 18px 16px;
    }
    .cart-row-image { width: 80px; height: 80px; }
    .qty-control, .cart-row-total, .cart-remove {
        grid-column: 2;
    }
    .cart-row-total { text-align: left; min-width: 0; }
    .cart-row-info { grid-column: 2; }
    .qty-control { justify-self: start; }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.5s; }

/* ============ SCROLL TOP ============ */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    z-index: 999;
    font-size: 18px;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--terra); transform: translateY(-3px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .products { grid-template-columns: repeat(3, 1fr); }
    .candles { grid-template-columns: repeat(2, 1fr); }
    .merch-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
}

@media (max-width: 900px) {
    .section, .intro, .collection, .spotlight, .numbers, .editorial, .twoup, .story, .values, .cat, .contact-block { padding: 80px 0; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 82%;
        max-width: 400px;
        height: 100vh;
        background: var(--cream-light);
        flex-direction: column;
        align-items: flex-start;
        padding: 130px 36px 40px;
        gap: 10px;
        transition: right 0.5s var(--ease);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    .nav-menu.open { right: 0; }
    .nav-menu li {
        width: 100%;
    }
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 22px 0;
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        color: var(--ink);
        border-bottom: 1px solid var(--line);
        transition: color 0.3s, padding-left 0.3s var(--ease);
    }
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--terra);
        padding-left: 8px;
    }
    .nav-menu a::after { display: none; }
    .nav-cart {
        margin: 28px 0 0 !important;
        width: 100%;
        justify-content: center;
        border-bottom: none !important;
        background: var(--terra) !important;
        color: var(--cream) !important;
        padding: 18px 22px !important;
        font-size: 0.85rem !important;
    }
    .nav-cart:hover {
        padding-left: 22px !important;
    }

    .intro-grid, .spotlight-grid, .story-block, .decals-split, .contact-grid, .tees-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .story-block:nth-child(even) .story-text { order: 1; }
    .products { grid-template-columns: repeat(2, 1fr); }
    .candles { grid-template-columns: repeat(2, 1fr); }
    .merch-grid { grid-template-columns: repeat(2, 1fr); }
    .soon-cards { grid-template-columns: 1fr; }
    .twoup-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .tees-features { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
    .number-item:not(:last-child)::after { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-meta { display: none; }
    .contact-form { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .wrap, .wrap-narrow, .nav-inner, .hero-content { padding-left: 20px; padding-right: 20px; }
    .section, .intro, .collection, .spotlight, .numbers, .editorial, .twoup, .story, .values, .cat, .contact-block { padding: 60px 0; }
    .hero { min-height: 580px; padding-bottom: 48px; }
    .hero-title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
    .hero-eyebrow { margin-bottom: 22px; }
    .hero-tagline { font-size: 0.95rem; max-width: none; }
    .hero-bottom { flex-direction: column; align-items: flex-start; gap: 28px; }
    .hero-actions { width: 100%; gap: 10px; flex-wrap: wrap; }
    .hero-actions .btn { flex: 1 1 auto; min-width: 140px; justify-content: center; padding: 16px 22px; font-size: 0.74rem; }
    .strip-item { font-size: 1.05rem; gap: 36px; }
    .strip { padding: 18px 0; }
    .products, .candles { grid-template-columns: 1fr; }
    .merch-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: 1fr; }
    .nav { padding: 10px 0; }
    .nav-logo img { height: 72px; }
    .nav.scrolled .nav-logo img { height: 60px; }
    .nav-cart { padding: 10px 22px !important; font-size: 0.72rem !important; }
    .footer-brand img { height: 64px; }
    .footer { padding: 70px 0 30px; }
    .footer-top { margin-bottom: 50px; }
    .scroll-top { width: 42px; height: 42px; bottom: 18px; right: 18px; }
    .page-banner { padding: 120px 0 60px; }
    .scent-info { padding: 22px 20px 24px; }
    .scent-name { font-size: 1.35rem; }
    .intro-quote { font-size: 1.1rem; padding-left: 18px; }
    .contact-form { padding: 28px 22px; }
    .info-row { padding: 18px 0; gap: 16px; }
    .info-icon { width: 38px; height: 38px; }
    .btn { padding: 16px 28px; font-size: 0.78rem; }
    .editorial-quote .mark { font-size: 4rem; }
    .editorial-quote p { font-size: 1.4rem; }
    .footer-bottom { font-size: 0.78rem; gap: 12px; }
    .number-item .n { font-size: 4rem; }
    .spotlight-photo .number-tag { padding: 14px 18px; }
    .spotlight-photo .number-tag .num { font-size: 1.8rem; }
    .soon-photo-body { padding: 28px 24px 26px; }
}

@media (max-width: 380px) {
    .wrap, .wrap-narrow, .nav-inner, .hero-content { padding-left: 16px; padding-right: 16px; }
    .hero-title { font-size: 2.2rem; }
    .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.2em; }
    .nav-cart { display: none; }
    .strip-item { font-size: 0.95rem; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
