:root {
    --forest-950: #0d2a20;
    --forest-900: #12382a;
    --forest-800: #1a4a38;
    --forest-100: #e8f0eb;
    --saffron-600: #d87812;
    --saffron-500: #ec931c;
    --saffron-100: #fff0d9;
    --magenta-600: #ad174f;
    --paper: #fffdf8;
    --sand: #f7f0e4;
    --sand-dark: #eadcc7;
    --ink: #25231f;
    --muted: #706961;
    --line: rgba(18, 56, 42, .14);
    --white-line: rgba(255, 255, 255, .16);
    --shadow-sm: 0 3px 12px rgba(30, 45, 38, .055);
    --shadow-md: 0 10px 30px rgba(24, 43, 33, .08);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
body.home-page { background: var(--paper); }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--forest-900); }
a:hover { color: var(--saffron-600); }
a, button, input, textarea, select { touch-action: manipulation; }
:focus-visible { outline: 3px solid rgba(236, 147, 28, .7); outline-offset: 3px; }
.container { width: 100%; }
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    color: var(--forest-900);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -.02em;
}
h1 { font-size: clamp(3rem, 6.6vw, 6.2rem); }
h2 { font-size: clamp(2.35rem, 4.6vw, 4.25rem); }
h3 { font-size: clamp(1.55rem, 2.4vw, 2rem); }
p:last-child { margin-bottom: 0; }
code { color: var(--magenta-600); }

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    padding: .65rem 1rem;
    border-radius: var(--radius-sm);
    color: #fff;
    background: var(--magenta-600);
    transform: translateY(-160%);
}
.skip-link:focus { color: #fff; transform: translateY(0); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1060;
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(13, 42, 32, .97);
    box-shadow: 0 5px 20px rgba(13, 42, 32, .12);
    backdrop-filter: blur(12px);
}
.navbar { min-height: 92px; padding: .55rem 0; background: transparent !important; }
.navbar-brand { padding: 0; text-decoration: none; }
.navbar-brand .brand-logo {
    width: 76px;
    height: 76px;
    padding: .2rem;
    border-radius: 18px;
    background: #fff;
    object-fit: contain;
    box-shadow: 0 8px 24px rgba(0,0,0,.14);
}
.brand-copy { display: none; }
.navbar-toggler { border-color: rgba(255,255,255,.45); box-shadow: none !important; }
.navbar .nav-link {
    margin: 0 .14rem;
    padding: .65rem .78rem !important;
    color: rgba(255,255,255,.76) !important;
    font-size: .9rem;
    font-weight: 700;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active { color: #fff !important; }
.navbar .nav-link.active::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    margin: .22rem auto 0;
    border-radius: 99px;
    background: var(--saffron-500);
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .78rem 1.3rem;
    border-radius: 12px;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover, .btn:focus { transform: translateY(-2px); }
.btn-header { min-height: 42px; padding: .6rem 1rem; color: #fff; border: 1px solid var(--saffron-500); background: var(--saffron-500); }
.btn-header:hover, .btn-header:focus { color: #fff; border-color: var(--saffron-600); background: var(--saffron-600); }
.btn-primary-brand { color: #fff; border: 1px solid var(--saffron-600); background: var(--saffron-600); box-shadow: 0 10px 22px rgba(216,120,18,.22); }
.btn-primary-brand:hover, .btn-primary-brand:focus { color: #fff; border-color: var(--magenta-600); background: var(--magenta-600); box-shadow: 0 14px 30px rgba(173,23,79,.2); }
.btn-secondary-brand { color: #fff; border: 1px solid var(--forest-900); background: var(--forest-900); }
.btn-secondary-brand:hover, .btn-secondary-brand:focus { color: #fff; border-color: var(--forest-800); background: var(--forest-800); }
.btn-outline-brand, .btn-quiet { color: var(--forest-900); border: 1px solid rgba(18,56,42,.28); background: transparent; }
.btn-outline-brand:hover, .btn-outline-brand:focus, .btn-quiet:hover, .btn-quiet:focus { color: #fff; border-color: var(--forest-900); background: var(--forest-900); }
.btn-light-brand { color: var(--forest-900); border: 1px solid #fff; background: #fff; }
.btn-light-brand:hover, .btn-light-brand:focus { color: #fff; border-color: var(--saffron-500); background: var(--saffron-500); }
.btn-light-outline { color: #fff; border: 1px solid rgba(255,255,255,.72); background: rgba(255,255,255,.05); }
.btn-light-outline:hover, .btn-light-outline:focus { color: var(--forest-900); border-color: #fff; background: #fff; }
.btn-card { min-height: 40px; padding: .55rem .85rem; color: var(--forest-900); border: 1px solid var(--line); background: var(--sand); font-size: .78rem; }
.btn-card:hover, .btn-card:focus { color: #fff; border-color: var(--forest-900); background: var(--forest-900); }

.eyebrow {
    display: inline-block;
    margin-bottom: .7rem;
    color: var(--saffron-600);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .15em;
    line-height: 1.4;
    text-transform: uppercase;
}
.eyebrow-light { color: #ffd9a0; }
.section-space { padding: clamp(4.75rem, 8vw, 7.5rem) 0; }
.section-tinted { background: var(--sand); }
.section-intro { max-width: 720px; margin: 0 auto 2.8rem; }
.section-intro h2 { margin-bottom: .8rem; }
.section-intro p { color: var(--muted); font-size: 1.03rem; }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2.6rem; }
.section-heading-row .section-intro { margin: 0; }
.text-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--forest-900); font-size: .86rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.text-link:hover { color: var(--magenta-600); }
.mobile-section-action { margin-top: 2rem; }
.mobile-section-action .btn { width: 100%; }

/* Product-first homepage */
.home-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 9% 12%, rgba(236,147,28,.15), transparent 24%),
        linear-gradient(135deg, #fffdf8 0%, #f8efe1 100%);
}
.home-hero::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -260px;
    width: 520px;
    height: 520px;
    border: 62px solid rgba(173,23,79,.055);
    border-radius: 50%;
}
.home-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); min-height: 680px; align-items: center; gap: clamp(3rem, 6vw, 6.5rem); padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.home-hero-copy h1 { max-width: 760px; margin-bottom: 1.2rem; }
.home-hero-copy > p { max-width: 650px; margin-bottom: 1.8rem; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.27rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-trust-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 2.5rem; border-top: 1px solid var(--line); }
.hero-trust-list div { display: grid; gap: .25rem; padding: 1.1rem 1rem 0 0; }
.hero-trust-list span { color: var(--saffron-600); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.35rem; font-weight: 700; }
.hero-trust-list strong { color: var(--forest-900); font-size: .79rem; line-height: 1.4; }
.hero-product-visual { position: relative; max-width: 520px; justify-self: end; }
.hero-product-card { position: relative; overflow: hidden; padding: 1rem; border: 1px solid var(--line); border-radius: 34px; background: #fff; box-shadow: var(--shadow-md); transform: rotate(1.5deg); }
.hero-product-card > img { width: 100%; aspect-ratio: 5 / 5.4; border-radius: 24px; object-fit: cover; }
.hero-product-label { display: flex; align-items: end; justify-content: space-between; gap: 1rem; padding: .35rem .35rem 1rem; }
.hero-product-label span { color: var(--muted); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-product-label strong { color: var(--forest-900); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.4rem; line-height: 1; text-align: right; }
.hero-product-meta { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem .35rem .25rem; color: var(--muted); font-size: .72rem; font-weight: 700; }
.hero-seal { position: absolute; right: -34px; bottom: 56px; display: grid; width: 116px; height: 116px; align-content: center; justify-items: center; border: 7px solid #fff; border-radius: 50%; color: #fff; background: var(--magenta-600); box-shadow: 0 12px 32px rgba(173,23,79,.22); transform: rotate(-7deg); }
.hero-seal strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; line-height: 1; }
.hero-seal span { font-size: .67rem; font-weight: 800; }

.featured-section { background: var(--paper); }
.product-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-card-image { position: relative; display: block; padding: .75rem; overflow: hidden; background: var(--sand); }
.product-card-image img { width: 100%; height: 300px; border-radius: 12px; object-fit: contain; transition: transform .4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.025); }
.product-card-large .product-card-image img { height: 390px; }
.product-category { position: absolute; top: 1.3rem; left: 1.3rem; padding: .42rem .65rem; border-radius: 999px; color: var(--forest-900); background: rgba(255,253,248,.95); box-shadow: 0 4px 14px rgba(13,42,32,.1); font-size: .64rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.product-card-body { display: flex; flex: 1; flex-direction: column; padding: 1.25rem; }
.product-card-body h2, .product-card-body h3 { margin-bottom: .65rem; font-size: 1.65rem; }
.product-card-body h2 a, .product-card-body h3 a { color: var(--forest-900); text-decoration: none; }
.product-card-body > p { color: var(--muted); font-size: .87rem; }
.product-card-specs { display: grid; gap: .5rem; margin: auto 0 1rem; padding-top: .8rem; }
.product-card-specs div { display: grid; grid-template-columns: 72px minmax(0,1fr); gap: .65rem; padding-top: .48rem; border-top: 1px solid var(--line); }
.product-card-specs dt { color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.product-card-specs dd { margin: 0; color: var(--forest-900); font-size: .75rem; font-weight: 700; }
.product-card-footer { display: flex; align-items: center; justify-content: flex-end; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--line); }

.proof-section { background: var(--sand); }
.proof-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.proof-gallery { position: relative; min-height: 590px; padding: 0 5rem 4rem 0; }
.proof-image { margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); }
.proof-image img { width: 100%; height: 100%; object-fit: cover; }
.proof-image-main { height: 530px; }
.proof-image-main figcaption { position: absolute; left: 1.2rem; bottom: 1.2rem; max-width: 240px; padding: .75rem 1rem; border-radius: 12px; color: #fff; background: rgba(13,42,32,.9); font-size: .76rem; font-weight: 700; }
.proof-image-small { position: absolute; right: 0; bottom: 0; width: 230px; height: 180px; padding: .45rem; border: 8px solid var(--sand); border-radius: 24px; }
.proof-copy h2 { margin-bottom: 1rem; }
.proof-copy > p { max-width: 620px; color: var(--muted); font-size: 1.04rem; }
.proof-points { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.1rem; margin: 2rem 0; }
.proof-points div { padding: 1rem; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.54); }
.proof-points strong { display: block; margin-bottom: .3rem; color: var(--forest-900); font-size: .83rem; }
.proof-points span { display: block; color: var(--muted); font-size: .75rem; line-height: 1.55; }
.reviews-block { margin-top: 5rem; padding-top: 5rem; border-top: 1px solid var(--line); }
.review-card { margin: 0; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.review-card p { color: var(--forest-900); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.4rem; line-height: 1.35; }
.review-card footer { display: grid; color: var(--muted); font-size: .75rem; }
.review-card footer strong { color: var(--ink); }

.story-section { background: var(--paper); }
.story-card { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); overflow: hidden; border-radius: 32px; background: var(--forest-900); box-shadow: var(--shadow-md); }
.story-card-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(2.5rem, 6vw, 5rem); }
.story-card-copy h2 { color: #fff; }
.story-card-copy p { margin-bottom: 1.7rem; color: rgba(255,255,255,.74); font-size: 1rem; }
.story-card > img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }

.marketplace-band { padding: clamp(4.5rem, 7vw, 6.5rem) 0; color: rgba(255,255,255,.76); background: var(--forest-950); }
.marketplace-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.marketplace-copy h2 { color: #fff; }
.marketplace-copy p { margin-bottom: 1.5rem; }
.marketplace-logos { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .8rem; }
.marketplace-logos div { display: flex; min-height: 96px; align-items: center; justify-content: center; padding: 1rem 1.4rem; border: 1px solid var(--white-line); border-radius: 16px; background: #fff; }
.marketplace-logos img { width: 100%; max-width: 200px; max-height: 52px; object-fit: contain; }

/* Inner pages */
.page-main { min-height: 55vh; }
.page-hero { padding: clamp(5rem, 8vw, 8rem) 0; color: rgba(255,255,255,.76); background: linear-gradient(135deg, var(--forest-950), var(--forest-800)); }
.page-hero-compact { padding: clamp(4rem, 7vw, 6rem) 0; }
.page-hero h1 { max-width: 960px; margin-bottom: .9rem; color: #fff; }
.page-hero p { max-width: 760px; margin: 0; font-size: 1.04rem; }
.category-filters { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2.7rem; }
.category-filters a { padding: .58rem .9rem; border: 1px solid var(--line); border-radius: 999px; color: var(--forest-900); background: #fff; font-size: .76rem; font-weight: 800; text-decoration: none; }
.category-filters a:hover, .category-filters a.active { color: #fff; border-color: var(--forest-900); background: var(--forest-900); }
.results-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.results-heading h2 { margin: 0; }
.results-heading > span { color: var(--muted); font-size: .78rem; font-weight: 800; }
.empty-state { max-width: 720px; margin: 0 auto; padding: 4rem 1.5rem; text-align: center; }
.custom-order-callout { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius-lg); color: rgba(255,255,255,.74); background: var(--forest-900); }
.custom-order-callout h2 { margin-bottom: .6rem; color: #fff; }
.custom-order-callout p { max-width: 690px; }
.back-link { display: inline-flex; margin-bottom: 2rem; color: var(--forest-900); font-size: .8rem; font-weight: 800; text-decoration: none; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr); align-items: start; gap: clamp(3rem, 7vw, 7rem); }
.product-gallery-card { position: sticky; top: 118px; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--sand); box-shadow: var(--shadow-sm); }
.product-detail-image { width: 100%; max-height: 690px; border-radius: 20px; object-fit: contain; }
.product-detail-copy h1 { font-size: clamp(2.8rem, 5vw, 5.2rem); }
.product-lead { color: var(--muted); font-size: 1.06rem; }
.product-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.8rem 0 .8rem; }
.product-note { padding: .9rem 1rem; border-left: 3px solid var(--saffron-500); color: var(--muted); background: var(--saffron-100); font-size: .76rem; }
.product-specs { margin: 2rem 0; border-top: 1px solid var(--line); }
.product-specs > div { display: grid; grid-template-columns: 150px minmax(0,1fr); gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.product-specs dt { color: var(--forest-900); font-size: .76rem; font-weight: 800; }
.product-specs dd { margin: 0; color: var(--muted); font-size: .82rem; }
.marketplace-product-links { margin-top: 2rem; }
.marketplace-product-links h2 { font-family: "Manrope", Arial, sans-serif; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.marketplace-logo-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.marketplace-logo-link { display: inline-flex; min-height: 50px; align-items: center; gap: .65rem; padding: .55rem .85rem; border: 1px solid var(--line); border-radius: 12px; color: var(--forest-900); background: #fff; box-shadow: var(--shadow-sm); font-size: .76rem; font-weight: 800; text-decoration: none; }
.marketplace-logo-link:hover { color: #fff; border-color: var(--forest-900); background: var(--forest-900); }
.marketplace-logo-link img { width: 66px; height: 28px; object-fit: contain; }
.related-products { margin-top: clamp(5rem, 8vw, 8rem); padding-top: clamp(4rem, 7vw, 6rem); border-top: 1px solid var(--line); }

/* About */
.about-hero { position: relative; overflow: hidden; }
.about-story-grid { display: grid; grid-template-columns: minmax(0,.95fr) minmax(420px,1.05fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.about-story-copy p { color: var(--muted); }
.owner-signature { display: inline-grid; gap: .15rem; margin-top: 1rem; padding: .8rem 1rem; border-left: 3px solid var(--saffron-500); background: var(--saffron-100); }
.owner-signature span { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.owner-signature strong { color: var(--forest-900); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.45rem; line-height: 1.1; }
.about-artwork-stack { position: relative; padding: 0 0 2.5rem 2.5rem; }
.about-artwork-main { width: 100%; aspect-ratio: 16 / 9; padding: .5rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; object-fit: contain; box-shadow: var(--shadow-md); }
.about-stat-card { position: absolute; left: 0; bottom: 0; display: grid; max-width: 220px; padding: 1rem 1.2rem; border-radius: 16px; color: #fff; background: var(--magenta-600); box-shadow: var(--shadow-sm); }
.about-stat-card strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.5rem; line-height: 1; }
.about-stat-card span { font-size: .74rem; }
.value-card { padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.value-card > span { color: var(--saffron-600); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.6rem; font-weight: 700; }
.value-card p { color: var(--muted); font-size: .88rem; }
.artist-panel { display: grid; grid-template-columns: minmax(340px,.8fr) minmax(0,1.2fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius-lg); background: var(--sand); }
.artist-placeholder { position: relative; min-height: 420px; overflow: hidden; border-radius: var(--radius-lg); background: var(--forest-900); }
.artist-pattern { position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(236,147,28,.34), transparent 28%), radial-gradient(circle at 70% 70%, rgba(173,23,79,.28), transparent 32%); }
.artist-placeholder img { position: absolute; inset: 50% auto auto 50%; width: min(80%, 340px); padding: .45rem; border: 5px solid rgba(255,255,255,.55); border-radius: 18px; background: #fff; transform: translate(-50%,-50%); }
.artist-panel p { color: var(--muted); }
.about-cta { padding: 4rem 0; color: rgba(255,255,255,.72); background: var(--forest-900); }
.about-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.about-cta h2 { max-width: 760px; margin: 0; color: #fff; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: minmax(330px,.78fr) minmax(0,1.22fr); overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.contact-info-panel { padding: clamp(2rem, 5vw, 4rem); color: rgba(255,255,255,.72); background: var(--forest-900); }
.contact-info-panel h2 { color: #fff; }
.contact-methods { display: grid; gap: .8rem; margin: 2rem 0; }
.contact-methods a { display: flex; align-items: center; gap: .8rem; padding: .8rem; border: 1px solid var(--white-line); border-radius: 14px; color: #fff; text-decoration: none; }
.contact-methods img { width: 40px; height: 40px; }
.contact-methods span { display: grid; }
.contact-methods small { color: rgba(255,255,255,.55); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-methods strong { font-size: .8rem; overflow-wrap: anywhere; }
.contact-address { display: grid; gap: .3rem; padding: 1.2rem 0; border-top: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); }
.contact-address small { color: rgba(255,255,255,.55); font-size: .68rem; text-transform: uppercase; letter-spacing: .09em; }
.contact-social-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.contact-social-links a { color: #fff; font-size: .75rem; font-weight: 800; text-decoration: none; }
.contact-form-card { padding: clamp(2rem, 5vw, 4rem); background: #fff; }
.form-label { color: var(--forest-900); font-size: .8rem; font-weight: 800; }
.form-control, .input-group-text { min-height: 50px; border-color: var(--line); border-radius: var(--radius-sm); }
.input-group .input-group-text { border-radius: var(--radius-sm) 0 0 var(--radius-sm); color: var(--forest-900); background: var(--forest-100); font-weight: 800; }
.input-group .form-control { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
textarea.form-control { min-height: 150px; }
.form-control:focus { border-color: var(--saffron-500); box-shadow: 0 0 0 .2rem rgba(236,147,28,.14); }
.form-hint { color: var(--muted); font-size: .72rem; }
.form-config-note { padding: .8rem; border: 1px solid #d8b271; border-radius: var(--radius-sm); color: #74551d; background: #fff5df; font-size: .76rem; }

/* Policies */
.policy-layout { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.2rem; }
.policy-card { padding: clamp(1.5rem, 4vw, 2.4rem); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.policy-card > span { color: var(--saffron-600); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.5rem; font-weight: 700; }
.policy-card h2 { font-size: 2rem; }
.policy-card p, .policy-copy p { color: var(--muted); }
.policy-copy { max-width: 860px; }
.policy-copy h2 { margin-top: 2rem; font-size: 2rem; }
.policy-copy h2:first-child { margin-top: 0; }

/* Footer */
.site-footer { color: rgba(255,255,255,.7); background: var(--forest-950); }
.footer-main { padding-top: 4.2rem; padding-bottom: 4rem; }
.footer-brand { display: inline-flex; color: #fff; text-decoration: none; }
.footer-brand-logo { width: 132px; height: 132px; padding: .35rem; border-radius: 24px; background: #fff; object-fit: contain; }
.footer-intro { max-width: 380px; margin-top: 1.2rem; font-size: .84rem; }
.footer-contact-list { display: grid; gap: .6rem; margin-top: 1rem; }
.footer-contact-list a { display: grid; width: fit-content; color: rgba(255,255,255,.68); font-size: .75rem; text-decoration: none; }
.footer-contact-list strong { color: #fff; }
.footer-contact-list span { overflow-wrap: anywhere; }
.footer-title { margin-bottom: 1.1rem; color: #fff; font-family: "Manrope", Arial, sans-serif; font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-nav { display: grid; gap: .58rem; }
.footer-nav a { width: fit-content; color: rgba(255,255,255,.68); font-size: .8rem; text-decoration: none; }
.footer-nav a:hover { color: #fff; }
.footer-care-note { margin-top: 1rem; color: rgba(255,255,255,.48); font-size: .72rem; }
.footer-social-icons { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1rem 0; }
.footer-social-icons a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; transition: transform .2s ease; }
.footer-social-icons a:hover { transform: translateY(-3px); }
.footer-social-icons img { width: 40px; height: 40px; object-fit: contain; }
.footer-instagram { color: #fff; font-size: .78rem; font-weight: 800; text-decoration: none; }
.footer-bottom { padding: 1rem 0; border-top: 1px solid var(--white-line); color: rgba(255,255,255,.46); font-size: .7rem; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 1050; display: inline-flex; align-items: center; gap: .5rem; min-height: 48px; padding: .45rem .8rem .45rem .5rem; border-radius: 999px; color: #fff; background: #178f4d; box-shadow: 0 10px 28px rgba(0,0,0,.22); font-size: .74rem; font-weight: 800; text-decoration: none; }
.whatsapp-float:hover { color: #fff; transform: translateY(-2px); }
.whatsapp-float img { width: 30px; height: 30px; }
.mobile-whatsapp-bar { display: none; }
.to-top-button { position: fixed; left: 18px; bottom: 18px; z-index: 1040; width: 46px; height: 46px; border: 0; border-radius: 50%; color: #fff; background: var(--magenta-600); box-shadow: 0 8px 22px rgba(0,0,0,.18); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease; }
.to-top-button.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 991.98px) {
    .navbar-collapse { padding: .75rem 0 1rem; }
    .navbar .nav-link { width: fit-content; }
    .navbar .nav-link.active::after { margin-left: 0; }
    .btn-header { margin-top: .5rem; }
    .home-hero-grid { grid-template-columns: 1fr; min-height: 0; gap: 3.5rem; }
    .home-hero-copy { max-width: 790px; }
    .hero-product-visual { width: min(100%, 600px); justify-self: center; }
    .proof-grid, .story-card, .marketplace-grid, .about-story-grid, .artist-panel, .contact-layout, .product-detail-grid { grid-template-columns: 1fr; }
    .proof-copy { max-width: 760px; }
    .story-card > img { min-height: 400px; }
    .marketplace-grid { gap: 2.6rem; }
    .product-gallery-card { position: static; }
    .about-artwork-main { max-height: 560px; }
    .about-cta .container { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 767.98px) {
    body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
    h1 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
    h2 { font-size: clamp(2.2rem, 10vw, 3.35rem); }
    .navbar { min-height: 78px; }
    .navbar-brand .brand-logo { width: 62px; height: 62px; border-radius: 15px; }
    .section-space { padding: 4rem 0; }
    .section-heading-row { align-items: flex-start; flex-direction: column; margin-bottom: 2rem; }
    .home-hero-grid { padding: 4rem 0 5rem; }
    .hero-actions .btn { width: 100%; }
    .hero-trust-list { grid-template-columns: 1fr; }
    .hero-trust-list div { grid-template-columns: 42px 1fr; align-items: center; padding: .8rem 0; border-bottom: 1px solid var(--line); }
    .hero-product-card { padding: .7rem; border-radius: 24px; transform: none; }
    .hero-product-card > img { border-radius: 18px; }
    .hero-product-label { align-items: flex-start; flex-direction: column; gap: .3rem; }
    .hero-product-label strong { text-align: left; }
    .hero-seal { right: -6px; bottom: 40px; width: 92px; height: 92px; border-width: 5px; }
    .hero-seal strong { font-size: 1.65rem; }
    .product-card-image img, .product-card-large .product-card-image img { height: auto; max-height: 430px; aspect-ratio: 4 / 5; }
    .product-card-footer { align-items: stretch; flex-direction: column; }
    .btn-card { width: 100%; }
    .proof-gallery { min-height: 480px; padding: 0 2rem 3rem 0; }
    .proof-image-main { height: 440px; }
    .proof-image-small { width: 170px; height: 132px; }
    .proof-points { grid-template-columns: 1fr; }
    .story-card-copy { padding: 2rem; }
    .story-card > img { min-height: 300px; }
    .marketplace-logos { grid-template-columns: 1fr; }
    .page-hero { padding: 4rem 0; }
    .category-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: .5rem; }
    .category-filters a { flex: 0 0 auto; }
    .results-heading, .custom-order-callout { align-items: flex-start; flex-direction: column; }
    .custom-order-callout .btn { width: 100%; }
    .product-actions .btn { width: 100%; }
    .product-specs > div { grid-template-columns: 1fr; gap: .3rem; }
    .about-artwork-stack { padding: 0 0 2rem 1rem; }
    .artist-placeholder { min-height: 330px; }
    .policy-layout { grid-template-columns: 1fr; }
    .footer-main { padding-top: 3.5rem; padding-bottom: 3rem; }
    .footer-brand-logo { width: 112px; height: 112px; }
    .whatsapp-float { display: none; }
    .mobile-whatsapp-bar { position: fixed; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom)); left: 12px; z-index: 1070; display: flex; min-height: 52px; align-items: center; justify-content: center; gap: .6rem; border-radius: 12px; color: #fff; background: #178f4d; box-shadow: 0 10px 28px rgba(0,0,0,.22); font-size: .84rem; font-weight: 800; text-decoration: none; }
    .mobile-whatsapp-bar:hover { color: #fff; }
    .mobile-whatsapp-bar img { width: 28px; height: 28px; }
    .to-top-button { bottom: 76px; width: 42px; height: 42px; }
}

@media (max-width: 575.98px) {
    .proof-gallery { min-height: 390px; padding: 0 1.25rem 2.5rem 0; }
    .proof-image-main { height: 360px; }
    .proof-image-small { width: 142px; height: 108px; border-width: 5px; }
    .proof-image-main figcaption { max-width: 200px; font-size: .68rem; }
    .contact-form-card, .contact-info-panel { padding: 1.5rem; }
    .marketplace-logo-link { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; animation-iteration-count: 1 !important; }
}


/* Reference-inspired refinement: announcement bar, light navigation and editorial hero */
.announcement-bar {
    padding: .45rem 0;
    color: #fff4d7;
    background: var(--forest-950);
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-align: center;
}
.announcement-bar span { margin: 0 .35rem; color: var(--saffron-500); }
.site-header {
    border-bottom: 1px solid var(--line);
    background: rgba(255,253,248,.97);
    box-shadow: 0 5px 24px rgba(13,42,32,.07);
}
.navbar { min-height: 76px; padding: .45rem 0; }
.navbar-brand { gap: .7rem; }
.navbar-brand .brand-logo {
    width: 52px;
    height: 52px;
    padding: .16rem;
    border: 1px solid rgba(18,56,42,.12);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 7px 20px rgba(13,42,32,.09);
}
.brand-name {
    color: var(--forest-900);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.48rem;
    font-weight: 700;
    letter-spacing: -.02em;
}
.navbar-toggler { border-color: rgba(18,56,42,.28); }
.navbar .nav-link {
    color: var(--forest-900) !important;
    font-size: .78rem;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active { color: var(--saffron-600) !important; }
.navbar .nav-link.active::after { background: var(--saffron-600); }
.btn-header {
    min-height: 44px;
    padding-inline: 1.15rem;
    border-color: var(--forest-900);
    border-radius: 999px;
    background: var(--forest-900);
}
.btn-header:hover,
.btn-header:focus { border-color: var(--saffron-600); background: var(--saffron-600); }

.home-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 0;
    background:
        radial-gradient(circle at 9% 18%, rgba(236,147,28,.18), transparent 24%),
        linear-gradient(115deg, #fffaf0 0%, #f8efdf 100%);
}
.home-hero::before {
    content: "";
    position: absolute;
    right: -125px;
    bottom: -245px;
    width: 500px;
    height: 500px;
    border: 24px solid rgba(216,120,18,.08);
    border-radius: 50%;
    box-shadow: inset 0 0 0 24px transparent, 0 0 0 24px rgba(173,23,79,.035);
}
.home-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 14px;
    border: 0;
    border-radius: 0;
    background: repeating-linear-gradient(135deg, var(--forest-900) 0 13px, var(--saffron-500) 13px 16px, var(--magenta-600) 16px 19px, var(--forest-900) 19px 31px);
}
.home-hero-grid {
    min-height: 650px;
    grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr);
    gap: clamp(3rem, 5vw, 5.5rem);
    padding: clamp(4.4rem, 7vw, 6.3rem) 0 clamp(5.5rem, 8vw, 7rem);
}
.home-hero-copy { position: relative; z-index: 3; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .7rem; }
.hero-eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--saffron-500); }
.home-hero-copy h1 {
    max-width: 710px;
    margin-bottom: 1.3rem;
    font-size: clamp(3.8rem, 6vw, 6rem);
    line-height: .96;
}
.home-hero-copy > p {
    max-width: 620px;
    margin-bottom: 1.65rem;
    font-size: 1.02rem;
    line-height: 1.65;
}
.home-hero .btn { border-radius: 999px; }
.home-hero .btn-primary-brand {
    border-color: var(--forest-900);
    background: var(--forest-900);
    box-shadow: 0 10px 25px rgba(13,42,32,.18);
}
.home-hero .btn-primary-brand:hover,
.home-hero .btn-primary-brand:focus { border-color: var(--saffron-600); background: var(--saffron-600); }
.hero-trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1.25rem;
    margin-top: 1.8rem;
    color: var(--forest-900);
    font-size: .72rem;
    font-weight: 800;
}
.hero-trust-inline span::before { content: "✓"; margin-right: .42rem; color: var(--magenta-600); }
.hero-collage {
    position: relative;
    min-height: 490px;
    width: 100%;
    max-width: 600px;
    justify-self: end;
}
.hero-collage figure { margin: 0; overflow: hidden; background: #fff; box-shadow: var(--shadow-md); }
.hero-collage img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage-main {
    position: absolute;
    top: 12px;
    right: 0;
    width: 70%;
    height: 430px;
    padding: .58rem;
    border: 1px solid rgba(18,56,42,.12);
    border-radius: 28px;
    transform: rotate(1.8deg);
}
.hero-collage-main img { border-radius: 20px; }
.hero-collage-small {
    position: absolute;
    left: 2%;
    bottom: 12px;
    z-index: 3;
    width: 43%;
    height: 220px;
    padding: .5rem;
    border: 1px solid rgba(18,56,42,.12);
    border-radius: 25px;
    transform: rotate(-3deg);
}
.hero-collage-small img { border-radius: 17px; }
.hero-note-card {
    position: absolute;
    top: 40px;
    left: 2%;
    z-index: 2;
    width: 185px;
    padding: 1.15rem 1.15rem 1.05rem;
    border: 1px solid rgba(18,56,42,.12);
    border-radius: 15px;
    background: rgba(255,250,240,.92);
    box-shadow: var(--shadow-sm);
}
.hero-note-card strong {
    display: block;
    margin-bottom: .45rem;
    color: var(--forest-900);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.65rem;
    line-height: .9;
}
.hero-note-card span { display: block; color: var(--muted); font-size: .67rem; line-height: 1.5; }

@media (max-width: 991.98px) {
    .brand-name { font-size: 1.28rem; }
    .navbar-collapse { border-top: 1px solid var(--line); background: var(--paper); }
    .home-hero-grid { grid-template-columns: 1fr; }
    .hero-collage { justify-self: center; }
}
@media (max-width: 767.98px) {
    .announcement-bar { padding: .38rem .5rem; font-size: .6rem; }
    .navbar { min-height: 68px; }
    .navbar-brand .brand-logo { width: 46px; height: 46px; }
    .brand-name { font-size: 1.14rem; }
    .home-hero-grid { gap: 2.8rem; padding-top: 3.5rem; }
    .home-hero-copy h1 { font-size: clamp(3.1rem, 14vw, 4.7rem); }
    .hero-collage { min-height: 410px; }
    .hero-collage-main { width: 76%; height: 350px; }
    .hero-collage-small { width: 48%; height: 175px; }
    .hero-note-card { top: 28px; width: 155px; padding: .9rem; }
}
@media (max-width: 575.98px) {
    .announcement-bar span { margin: 0 .18rem; }
    .brand-name { display: none; }
    .hero-trust-inline { display: grid; gap: .45rem; }
    .hero-collage { min-height: 350px; }
    .hero-collage-main { width: 78%; height: 300px; padding: .4rem; border-radius: 22px; }
    .hero-collage-small { width: 49%; height: 145px; padding: .35rem; border-radius: 18px; }
    .hero-note-card { top: 20px; width: 128px; padding: .75rem; }
    .hero-note-card strong { font-size: 1.35rem; }
    .hero-note-card span { font-size: .58rem; }
}


/* Responsive layout hardening — preserves the existing visual design and content. */
iframe,
video,
svg {
    max-width: 100%;
}

.home-hero-grid > *,
.proof-grid > *,
.story-card > *,
.marketplace-grid > *,
.product-detail-grid > *,
.about-story-grid > *,
.artist-panel > *,
.contact-layout > *,
.section-heading-row > *,
.custom-order-callout > * {
    min-width: 0;
}

.product-card,
.review-card,
.value-card,
.policy-card,
.contact-info-panel,
.contact-form-card,
.footer-main [class*="col-"] {
    min-width: 0;
}

.contact-methods span,
.footer-contact-list a,
.marketplace-logo-actions,
.product-card-body,
.product-detail-copy {
    min-width: 0;
    max-width: 100%;
}

@media (min-width: 1400px) {
    .container {
        width: calc(100% - clamp(3.5rem, 4vw, 5rem));
        max-width: var(--container);
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        max-height: calc(100dvh - 112px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }
}

@media (max-width: 359.98px) {
    .contact-form-card,
    .contact-info-panel {
        padding: 1.25rem;
    }

    .home-hero-copy h1 {
        font-size: 2.85rem;
    }

    .hero-collage {
        min-height: 325px;
    }

    .hero-collage-main {
        height: 275px;
    }

    .hero-collage-small {
        height: 132px;
    }

    .hero-note-card {
        width: 116px;
        padding: .65rem;
    }
}

/* Final cross-screen consistency fixes
   Keeps the desktop layout stable across 1280px, 1366px, 1440px and wider
   screens without changing the mobile design. */
.container {
    width: calc(100% - clamp(1rem, 4vw, 4rem));
    max-width: var(--container);
    margin-right: auto;
    margin-left: auto;
}

/* Prevent viewport-width typography from becoming oversized on large monitors. */
h1 { font-size: clamp(3rem, 5vw, 5rem); }
h2 { font-size: clamp(2.35rem, 4vw, 3.75rem); }
.home-hero-copy h1 { font-size: clamp(3.8rem, 5vw, 5rem); }

/* The old 1400px breakpoint expanded the container from 1140px to almost the
   full monitor width. A single capped container removes that layout jump. */
@media (min-width: 1200px) {
    .home-hero-grid {
        min-height: 650px;
        grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr);
    }

    .home-hero-copy h1 {
        max-width: 650px;
    }

    .featured-section .section-heading-row .section-intro {
        max-width: 850px;
    }

    .hero-collage {
        max-width: 560px;
    }
}

@media (min-width: 1400px) {
    .container {
        width: calc(100% - clamp(3rem, 4vw, 4rem));
        max-width: var(--container);
    }
}

/* Native browser print/PDF cleanup. Screenshot-based exporters still depend
   on their selected viewport width, but the page itself now remains stable. */
@media print {
    @page {
        size: auto;
        margin: 0;
    }

    html,
    body {
        background: var(--paper) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    body {
        padding-bottom: 0 !important;
    }

    .site-header {
        position: static;
    }

    .skip-link,
    .whatsapp-float,
    .mobile-whatsapp-bar,
    .to-top-button {
        display: none !important;
    }

    .container {
        width: calc(100% - 2rem);
        max-width: var(--container);
    }

    .home-hero-grid {
        min-height: 0;
    }

    .product-card,
    .proof-grid,
    .story-card,
    .marketplace-grid {
        break-inside: avoid-page;
    }

    .product-card,
    .proof-image,
    .story-card,
    .review-card {
        box-shadow: none;
    }
}

/* Story artwork consistency fix
   Keep the complete 16:9 painting visible and prevent viewport-dependent
   cropping or card-height jumps in the “Traditional art” section. */
.story-card {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    align-items: stretch;
}

.story-card-copy {
    padding: clamp(1.5rem, 2.4vw, 2.25rem);
}

.story-card-copy h2 {
    margin-bottom: clamp(.75rem, 1.25vw, 1.15rem);
    font-size: clamp(2.05rem, 3.15vw, 2.85rem);
    line-height: 1.02;
}

.story-card-copy p {
    margin-bottom: clamp(1rem, 1.6vw, 1.5rem);
    font-size: clamp(.82rem, .95vw, 1rem);
    line-height: 1.55;
}

.story-card-copy .btn {
    min-height: 44px;
    padding: .66rem 1.15rem;
}

.story-card-art {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f6cb08;
}

.story-card-art img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
}

/* Keep the horizontal presentation on desktop and landscape tablets. */
@media (min-width: 992px) {
    .story-card {
        grid-template-columns: minmax(390px, .88fr) minmax(520px, 1.12fr);
    }
}

/* On smaller screens, stack cleanly without ever cropping the painting. */
@media (max-width: 991.98px) {
    .story-card {
        grid-template-columns: 1fr;
    }

    .story-card-copy {
        padding: clamp(1.75rem, 6vw, 3rem);
    }

    .story-card-copy h2 {
        font-size: clamp(2.15rem, 7vw, 3.25rem);
    }

    .story-card-art,
    .story-card-art img {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 575.98px) {
    .story-card {
        border-radius: 22px;
    }

    .story-card-copy {
        padding: 1.5rem;
    }

    .story-card-copy h2 {
        font-size: clamp(2rem, 10vw, 2.7rem);
    }
}

/* Force a compact horizontal card in browser-generated PDFs, regardless of
   the print viewport width, and keep the complete artwork on one page. */
@media print {
    .story-section,
    .story-card {
        break-inside: avoid-page !important;
        page-break-inside: avoid !important;
    }

    .story-card {
        grid-template-columns: minmax(0, 44%) minmax(0, 56%) !important;
        align-items: stretch !important;
    }

    .story-card-copy {
        padding: 1.35rem 1.6rem !important;
    }

    .story-card-copy .eyebrow {
        margin-bottom: .55rem !important;
        font-size: .58rem !important;
    }

    .story-card-copy h2 {
        margin-bottom: .65rem !important;
        font-size: 2rem !important;
        line-height: 1 !important;
    }

    .story-card-copy p {
        margin-bottom: .8rem !important;
        font-size: .72rem !important;
        line-height: 1.4 !important;
    }

    .story-card-copy .btn {
        min-height: 34px !important;
        padding: .42rem .8rem !important;
        font-size: .68rem !important;
    }

    .story-card-art {
        min-height: 0 !important;
        background: #f6cb08 !important;
    }

    .story-card-art img {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 9 !important;
        object-fit: contain !important;
        object-position: center !important;
    }
}

