:root {
    --cream: #f7f2ec;
    --cream-deep: #eee4da;
    --paper: #fffdf9;
    --white: #ffffff;
    --ink: #25211e;
    --ink-soft: #413a35;
    --muted: #756f69;
    --taupe: #af977f;
    --taupe-deep: #8f765f;
    --rose: #d9bcb0;
    --rose-soft: #f0ded7;
    --stone: #d8d1ca;
    --sage: #bec6b7;
    --line: rgba(37, 33, 30, 0.14);
    --line-light: rgba(255, 255, 255, 0.18);
    --shadow: 0 22px 60px rgba(58, 43, 31, 0.12);
    --shadow-soft: 0 15px 40px rgba(58, 43, 31, 0.08);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 36px;
    --container: min(1380px, calc(100vw - 64px));
    --header-height: 88px;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', Arial, sans-serif;
    --display: 'Manrope', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 130px 0; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: fixed;
    z-index: 9999;
    top: 16px;
    left: 16px;
    padding: 12px 18px;
    background: var(--ink);
    color: #fff;
    transform: translateY(-160%);
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; }
h1 { font-family: var(--display); font-weight: 500; letter-spacing: -0.055em; }
h2 { font-family: var(--display); font-weight: 500; letter-spacing: -0.045em; }
h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.025em; }
p { color: var(--muted); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--taupe-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: currentColor; }
.eyebrow-light { color: rgba(255,255,255,.78); }
.large-copy { color: var(--ink); font-size: clamp(20px, 2vw, 30px); line-height: 1.45; letter-spacing: -.02em; }

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: var(--taupe-deep); }
.button-light { background: #fff; color: var(--ink); }
.button-outline { border-color: var(--line); background: transparent; }
.button-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.button-ghost { border-color: var(--line); background: transparent; }
.button-small { min-height: 42px; padding: 0 20px; font-size: 12px; }
.button-full { width: 100%; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.icon-button {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.icon-button:hover { background: var(--ink); color: #fff; }
.icon-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.icon-button-light { border-color: rgba(255,255,255,.22); color: #fff; }

.announcement-bar { background: var(--ink); color: #fff; font-size: 12px; }
.announcement-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; }
.announcement-inner span { opacity: .8; }
.announcement-inner a { font-weight: 700; }
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255,253,249,.9);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 40px rgba(38,31,26,.06); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: 244px; flex: 0 0 auto; }
.brand img { width: 100%; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); }
.desktop-nav a { position: relative; color: var(--ink-soft); font-size: 13px; font-weight: 600; }
.desktop-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--taupe); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 23px; height: 1px; background: currentColor; margin: 6px auto; transition: transform .25s ease; }
.menu-button.active span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button.active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { max-height: 0; overflow: hidden; background: var(--paper); transition: max-height .35s ease; }
.mobile-menu.open { max-height: 520px; border-top: 1px solid var(--line); }
.mobile-menu-inner { padding: 28px 0 34px; display: grid; gap: 20px; }
.mobile-menu a:not(.button) { font-size: 24px; font-family: var(--display); }

.search-panel { position: fixed; inset: 0; z-index: 3000; pointer-events: none; opacity: 0; transition: opacity .25s ease; }
.search-panel.open { pointer-events: auto; opacity: 1; }
.search-panel-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(22,18,15,.55); backdrop-filter: blur(6px); }
.search-dialog {
    position: relative;
    width: min(900px, calc(100vw - 40px));
    max-height: calc(100vh - 60px);
    margin: 30px auto;
    padding: 34px;
    overflow: auto;
    border-radius: 30px;
    background: var(--ink);
    color: #fff;
    transform: translateY(-24px) scale(.98);
    transition: transform .3s ease;
    box-shadow: 0 40px 100px rgba(0,0,0,.3);
}
.search-panel.open .search-dialog { transform: translateY(0) scale(1); }
.search-dialog-head { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; }
.search-dialog-head h2 { max-width: 580px; margin-bottom: 24px; font-size: clamp(32px,5vw,58px); }
.global-search-field { display: flex; min-height: 70px; align-items: center; gap: 16px; padding: 0 18px 0 22px; border-radius: 16px; background: #fff; color: var(--ink); }
.global-search-field svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.global-search-field input { flex: 1; min-width: 0; border: 0; outline: 0; font-size: 18px; }
.global-search-field kbd { padding: 4px 7px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); font-size: 10px; }
.search-hints { display: flex; flex-wrap: wrap; gap: 8px; padding: 18px 0; }
.search-hints button { padding: 8px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: transparent; color: rgba(255,255,255,.8); cursor: pointer; }
.search-results { display: grid; gap: 8px; }
.search-result-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 18px; align-items: center; padding: 10px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; transition: background .2s ease; }
.search-result-item:hover { background: rgba(255,255,255,.08); }
.search-result-item img { width: 70px; height: 70px; border-radius: 10px; object-fit: cover; background: #fff; }
.search-result-item strong { display: block; font-size: 16px; }
.search-result-item span { color: rgba(255,255,255,.62); font-size: 12px; }
.search-result-item em { font-style: normal; font-size: 24px; }
.search-empty-state { padding: 30px; border: 1px dashed rgba(255,255,255,.2); border-radius: 14px; text-align: center; color: rgba(255,255,255,.65); }
.search-footer { display: flex; justify-content: space-between; gap: 20px; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: 12px; }
.search-footer a { color: #fff; font-weight: 700; }

.hero-section { position: relative; min-height: calc(100vh - 122px); padding: 78px 0 60px; overflow: hidden; background: radial-gradient(circle at 20% 20%, #fff 0, var(--cream) 50%, #efe5dc 100%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .7; }
.hero-orb-one { width: 420px; height: 420px; right: 14%; top: -220px; background: rgba(217,188,176,.45); }
.hero-orb-two { width: 300px; height: 300px; left: 38%; bottom: -160px; background: rgba(190,198,183,.4); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1fr) minmax(520px,.92fr); align-items: center; gap: clamp(50px,7vw,120px); }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 25px; color: var(--taupe-deep); font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--taupe); box-shadow: 0 0 0 0 rgba(175,151,127,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(175,151,127,0); } 100% { box-shadow: 0 0 0 0 rgba(175,151,127,0); } }
.hero-copy h1 { max-width: 780px; margin-bottom: 28px; font-size: clamp(58px, 6.4vw, 112px); }
.hero-copy h1 em { font-family: var(--serif); font-weight: 500; color: var(--taupe-deep); }
.hero-lead { max-width: 650px; margin-bottom: 32px; font-size: clamp(18px,1.5vw,22px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-bottom: 28px; }
.hero-search { max-width: 640px; min-height: 64px; display: flex; align-items: center; gap: 15px; padding: 7px 7px 7px 20px; border: 1px solid rgba(37,33,30,.12); border-radius: 999px; background: rgba(255,255,255,.75); box-shadow: 0 12px 30px rgba(55,42,32,.06); backdrop-filter: blur(10px); }
.hero-search svg { width: 20px; fill: none; stroke: var(--ink); stroke-width: 1.7; }
.hero-search input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; }
.hero-search button { min-height: 48px; padding: 0 22px; border: 0; border-radius: 999px; background: var(--rose-soft); cursor: pointer; font-size: 13px; font-weight: 700; }
.hero-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 720px; margin-top: 35px; padding-top: 25px; border-top: 1px solid var(--line); }
.hero-meta strong, .hero-meta span { display: block; }
.hero-meta strong { margin-bottom: 4px; font-size: 13px; }
.hero-meta span { color: var(--muted); font-size: 11px; }
.hero-visual { position: relative; min-height: 680px; }
.hero-image { position: absolute; overflow: hidden; box-shadow: var(--shadow); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-main { width: 64%; height: 590px; right: 0; top: 10px; border-radius: 180px 180px 28px 28px; }
.hero-image-main::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(28,22,18,.45)); }
.hero-image-secondary { width: 42%; height: 360px; left: 0; bottom: 0; border: 10px solid var(--cream); border-radius: 28px; }
.image-label { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 14px; color: #fff; }
.image-label > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 11px; }
.image-label small, .image-label strong { display: block; }
.image-label small { opacity: .7; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.image-label strong { font-size: 16px; }
.hero-floating-card { position: absolute; z-index: 4; width: 245px; right: 37%; top: 42%; padding: 22px; border: 1px solid rgba(255,255,255,.6); border-radius: 18px; background: rgba(255,253,249,.84); box-shadow: var(--shadow-soft); backdrop-filter: blur(15px); }
.hero-floating-card strong { display: block; margin: 7px 0 16px; font-family: var(--display); font-size: 20px; line-height: 1.2; }
.hero-floating-card small { color: var(--muted); font-size: 10px; }
.mini-label { color: var(--taupe-deep); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.floating-progress { height: 4px; margin-bottom: 10px; overflow: hidden; border-radius: 10px; background: var(--cream-deep); }
.floating-progress span { display: block; width: 72%; height: 100%; background: var(--taupe); }
.hero-circle-text { position: absolute; z-index: 5; width: 120px; height: 120px; right: -18px; bottom: 25px; display: grid; place-items: center; }
.hero-circle-text svg { position: absolute; width: 100%; height: 100%; animation: spin 18s linear infinite; }
.hero-circle-text text { fill: var(--ink); font-size: 10px; letter-spacing: 1.4px; }
.hero-circle-text > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--serif); font-size: 26px; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-scroll-cue { position: absolute; left: 50%; bottom: 14px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.hero-scroll-cue span { width: 34px; height: 1px; background: var(--muted); }

.trust-strip { padding: 18px 0; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-marquee { overflow: hidden; }
.trust-track { width: max-content; display: flex; align-items: center; gap: 30px; animation: marquee 28s linear infinite; }
.trust-track span { color: var(--ink-soft); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.trust-track i { width: 7px; height: 7px; border-radius: 50%; background: var(--taupe); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-heading { margin-bottom: 52px; }
.section-heading h2 { max-width: 820px; margin-bottom: 0; font-size: clamp(44px,5vw,78px); }
.split-heading { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(280px,.55fr); gap: 80px; align-items: end; }
.split-heading p { margin-bottom: 5px; font-size: 18px; }
.section-intro { background: var(--paper); }
.pathway-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.pathway-card { position: relative; min-height: 480px; overflow: hidden; border-radius: 26px; color: #fff; }
.pathway-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.pathway-card:hover img { transform: scale(1.06); }
.pathway-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(25,20,17,.03) 20%, rgba(25,20,17,.82)); }
.pathway-code { position: absolute; top: 22px; left: 22px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 11px; }
.pathway-content { position: absolute; left: 26px; right: 26px; bottom: 25px; }
.pathway-content small { text-transform: uppercase; letter-spacing: .13em; opacity: .7; }
.pathway-content h3 { margin: 10px 0; font-size: 34px; }
.pathway-content p { max-width: 300px; margin: 0; color: rgba(255,255,255,.78); font-size: 13px; }
.round-arrow { position: absolute; right: 0; bottom: 0; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); font-size: 24px; transition: background .25s ease, transform .25s ease; }
.pathway-card:hover .round-arrow { background: #fff; color: var(--ink); transform: rotate(45deg); }

.philosophy-section { background: var(--cream); }
.philosophy-grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: clamp(70px,9vw,150px); }
.philosophy-media { position: relative; min-height: 720px; }
.philosophy-image-large { position: absolute; left: 0; top: 0; width: 76%; height: 620px; overflow: hidden; border-radius: 220px 220px 28px 28px; }
.philosophy-image-large img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-image-small { position: absolute; right: 0; bottom: 0; width: 42%; height: 320px; overflow: hidden; border: 10px solid var(--cream); border-radius: 28px; }
.philosophy-image-small img { width: 100%; height: 100%; object-fit: cover; }
.quality-seal { position: absolute; z-index: 3; left: 66%; top: 90px; width: 155px; padding: 22px; border-radius: 20px; background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.quality-seal span, .quality-seal small { display: block; opacity: .6; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.quality-seal strong { display: block; margin: 10px 0; font-family: var(--serif); font-size: 48px; font-weight: 500; }
.philosophy-copy h2 { max-width: 700px; font-size: clamp(44px,5vw,76px); }
.philosophy-copy > p:not(.large-copy) { max-width: 650px; font-size: 17px; }
.feature-list { margin: 36px 0; border-top: 1px solid var(--line); }
.feature-list > div { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.feature-list > div > span { color: var(--taupe-deep); font-family: var(--serif); font-size: 21px; }
.feature-list strong { display: block; margin-bottom: 5px; font-size: 17px; }
.feature-list p { margin: 0; font-size: 13px; }

.product-showcase-section { overflow: hidden; background: var(--ink); color: #fff; }
.product-showcase-section .eyebrow { color: var(--rose); }
.product-showcase-section .section-heading h2 { color: #fff; }
.product-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.carousel-controls { display: flex; gap: 10px; }
.carousel-controls button { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; font-size: 20px; transition: background .2s ease, color .2s ease; }
.carousel-controls button:hover { background: #fff; color: var(--ink); }
.product-carousel-shell { padding-left: max(32px, calc((100vw - min(1380px, calc(100vw - 64px))) / 2)); }
.product-carousel { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-right: 60px; }
.product-carousel::-webkit-scrollbar { display: none; }
.product-card { flex: 0 0 min(390px, 82vw); overflow: hidden; border-radius: 24px; background: #fff; color: var(--ink); scroll-snap-align: start; }
.product-image { position: relative; height: 390px; display: block; overflow: hidden; background: var(--cream); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.product-card:hover .product-image img { transform: scale(1.045); }
.product-number { position: absolute; top: 18px; left: 18px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.88); font-size: 11px; }
.product-view { position: absolute; left: 50%; bottom: 20px; padding: 10px 15px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; opacity: 0; transform: translate(-50%,10px); transition: opacity .25s ease, transform .25s ease; }
.product-card:hover .product-view { opacity: 1; transform: translate(-50%,0); }
.product-card-body { padding: 24px; }
.product-card-body > div:first-child { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 13px; color: var(--taupe-deep); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.product-card-body > div:first-child small { color: var(--muted); font-size: inherit; }
.product-card-body h3 { min-height: 52px; margin-bottom: 12px; font-size: 24px; }
.product-card-body p { min-height: 58px; margin-bottom: 20px; font-size: 13px; }
.product-card-actions { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 17px; }
.product-card-actions > a { display: inline-flex; gap: 8px; font-size: 12px; font-weight: 700; }
.save-button { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.save-button svg, .saved-counter svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.save-button.saved { background: var(--rose-soft); border-color: var(--rose); }
.save-button.saved svg { fill: var(--taupe-deep); }
.product-showcase-footer { display: flex; justify-content: space-between; gap: 40px; align-items: center; padding-top: 45px; }
.product-showcase-footer p { max-width: 690px; margin: 0; color: rgba(255,255,255,.58); }
.product-showcase-footer .button-dark { background: #fff; color: var(--ink); }

.quality-section { background: var(--paper); }
.quality-heading { text-align: center; }
.quality-heading h2 { max-width: 960px; margin: 0 auto 65px; font-size: clamp(44px,5vw,78px); }
.quality-story { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 720px; }
.quality-image { position: relative; overflow: hidden; }
.quality-image img { width: 100%; height: 100%; object-fit: cover; }
.quality-image-caption { position: absolute; left: 32px; bottom: 32px; padding: 20px 24px; border-radius: 15px; background: rgba(255,255,255,.86); backdrop-filter: blur(15px); }
.quality-image-caption span, .quality-image-caption strong { display: block; }
.quality-image-caption span { color: var(--taupe-deep); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.quality-image-caption strong { margin-top: 5px; font-size: 18px; }
.quality-panel { padding: 65px clamp(38px,6vw,100px); background: var(--cream); }
.quality-panel-item { border-bottom: 1px solid var(--line); }
.quality-panel-item button { width: 100%; display: grid; grid-template-columns: 42px 1fr auto; gap: 18px; align-items: center; padding: 25px 0; border: 0; background: transparent; text-align: left; cursor: pointer; font-family: var(--display); font-size: 21px; font-weight: 600; }
.quality-panel-item button span { color: var(--taupe-deep); font-family: var(--serif); font-size: 18px; }
.quality-panel-item button i { font-style: normal; font-size: 24px; transition: transform .25s ease; }
.quality-panel-item > div { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.quality-panel-item > div p { margin: 0 0 25px 60px; max-width: 540px; }
.quality-panel-item.active > div { max-height: 180px; }
.quality-panel-item.active button i { transform: rotate(45deg); }

.process-section { background: var(--cream); }
.process-line { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.process-step { position: relative; padding: 45px 28px 10px 0; }
.process-step::before { content: ''; position: absolute; top: -6px; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--taupe); }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: 0; right: 20px; bottom: 0; width: 1px; background: var(--line); }
.process-step > span { display: block; margin-bottom: 45px; color: var(--taupe-deep); font-family: var(--serif); font-size: 30px; }
.process-step h3 { font-size: 22px; }
.process-step p { max-width: 250px; font-size: 13px; }

.provider-section { position: relative; padding: 130px 0; overflow: hidden; background: var(--ink); color: #fff; }
.provider-background { position: absolute; inset: 0; opacity: .13; background: radial-gradient(circle at 70% 30%, var(--rose) 0, transparent 35%), linear-gradient(125deg, transparent 0 45%, rgba(255,255,255,.14) 45% 46%, transparent 46%); }
.provider-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px,9vw,140px); align-items: center; }
.provider-copy h2 { max-width: 680px; margin-bottom: 28px; font-size: clamp(46px,5.4vw,82px); }
.provider-copy > p { max-width: 650px; color: rgba(255,255,255,.65); font-size: 18px; }
.provider-points { display: grid; gap: 12px; margin-top: 34px; }
.provider-points span { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.84); font-size: 13px; }
.provider-points span::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--rose); }
.inquiry-form { padding: 32px; border-radius: 26px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(16px); }
.form-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.form-head span { font-family: var(--display); font-size: 22px; font-weight: 600; }
.form-head small { color: rgba(255,255,255,.5); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label > span { color: rgba(255,255,255,.65); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; outline: 0; background: rgba(255,255,255,.08); color: #fff; padding: 13px 14px; transition: border-color .2s ease, background .2s ease; }
.form-grid select option { color: var(--ink); }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.12); }
.form-grid textarea { resize: vertical; }
.form-full { grid-column: 1 / -1; }
.honeypot { position: absolute !important; left: -9999px !important; }
.inquiry-form .button { margin-top: 18px; }
.form-status { min-height: 20px; margin: 12px 0 0; color: rgba(255,255,255,.75); font-size: 12px; }

.site-footer { padding: 90px 0 24px; background: #181512; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .9fr 1fr; gap: 70px; padding-bottom: 60px; }
.footer-brand img { width: 260px; filter: brightness(1.3); }
.footer-brand p { max-width: 430px; color: rgba(255,255,255,.52); }
.footer-grid h3 { margin-bottom: 22px; color: rgba(255,255,255,.62); font-family: var(--sans); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) > a { display: block; margin-bottom: 13px; font-size: 13px; }
.footer-grid > div:not(.footer-brand) > p { color: rgba(255,255,255,.5); font-size: 13px; }
.footer-socials { display: flex; gap: 9px; margin-top: 26px; }
.footer-socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; font-size: 10px; }
.newsletter-form { display: flex; border-bottom: 1px solid rgba(255,255,255,.28); }
.newsletter-form input { flex: 1; min-width: 0; padding: 13px 0; border: 0; outline: 0; background: transparent; color: #fff; }
.newsletter-form button { width: 44px; border: 0; background: transparent; color: #fff; cursor: pointer; font-size: 22px; }
.footer-grid small { color: rgba(255,255,255,.5); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: 10px; }
.cookie-banner { position: fixed; z-index: 2500; left: 24px; right: 24px; bottom: 24px; max-width: 720px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 12px; }
.cookie-banner > div { display: flex; gap: 8px; }
.toast { position: fixed; z-index: 4000; right: 24px; bottom: 24px; padding: 13px 18px; border-radius: 10px; background: var(--ink); color: #fff; font-size: 12px; opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.show { opacity: 1; transform: translateY(0); }

/* Product catalogue */
.catalog-hero { position: relative; padding: 105px 0 95px; overflow: hidden; background: var(--cream); }
.catalog-hero-art { position: absolute; border-radius: 50%; filter: blur(1px); }
.catalog-art-one { width: 460px; height: 460px; right: -170px; top: -230px; border: 1px solid rgba(175,151,127,.4); }
.catalog-art-two { width: 280px; height: 280px; left: 42%; bottom: -190px; background: rgba(217,188,176,.32); }
.catalog-hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .75fr; gap: 90px; align-items: end; }
.catalog-hero h1 { max-width: 780px; margin-bottom: 24px; font-size: clamp(58px,6.4vw,104px); }
.catalog-hero p { max-width: 680px; font-size: 18px; }
.catalog-search-card { padding: 28px; border: 1px solid rgba(255,255,255,.7); border-radius: 24px; background: rgba(255,255,255,.66); box-shadow: var(--shadow-soft); backdrop-filter: blur(14px); }
.catalog-search-card > label { display: block; margin-bottom: 12px; color: var(--taupe-deep); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.catalog-search-field { display: flex; min-height: 62px; align-items: center; gap: 14px; padding: 0 16px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.catalog-search-field svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.catalog-search-field input { flex: 1; min-width: 0; border: 0; outline: 0; }
.catalog-search-field button { border: 0; background: transparent; color: var(--taupe-deep); cursor: pointer; font-size: 11px; font-weight: 700; }
.catalog-popular { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 15px; }
.catalog-popular span { color: var(--muted); font-size: 11px; }
.catalog-popular button { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-size: 10px; }
.catalog-section { padding: 70px 0 120px; }
.catalog-layout { display: grid; grid-template-columns: 285px 1fr; gap: 60px; align-items: start; }
.catalog-sidebar { position: sticky; top: 122px; }
.filter-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.filter-head .eyebrow { margin-bottom: 7px; }
.filter-head h2 { margin: 0; font-size: 32px; }
.filter-head button, [data-filter-reset] { border: 0; background: transparent; color: var(--taupe-deep); cursor: pointer; font-size: 11px; font-weight: 700; }
.filter-group { padding: 28px 0; border-bottom: 1px solid var(--line); }
.filter-group h3 { margin-bottom: 17px; font-family: var(--sans); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.filter-radio, .filter-check { display: flex; align-items: center; gap: 10px; margin: 12px 0; cursor: pointer; }
.filter-radio input, .filter-check input { appearance: none; width: 17px; height: 17px; margin: 0; border: 1px solid rgba(37,33,30,.35); display: grid; place-items: center; cursor: pointer; }
.filter-radio input { border-radius: 50%; }
.filter-check input { border-radius: 4px; }
.filter-radio input::after { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--taupe-deep); transform: scale(0); transition: transform .15s ease; }
.filter-check input::after { content: '✓'; color: #fff; font-size: 11px; transform: scale(0); transition: transform .15s ease; }
.filter-radio input:checked::after, .filter-check input:checked::after { transform: scale(1); }
.filter-check input:checked { background: var(--taupe-deep); border-color: var(--taupe-deep); }
.filter-radio span, .filter-check span { flex: 1; color: var(--ink-soft); font-size: 13px; }
.filter-radio em { color: var(--muted); font-style: normal; font-size: 10px; }
.filter-help { margin-top: 25px; padding: 22px; border-radius: 18px; background: var(--cream); }
.filter-help > span { color: var(--taupe-deep); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.filter-help p { margin: 8px 0 13px; font-size: 12px; }
.filter-help a { font-size: 11px; font-weight: 700; }
.catalog-toolbar { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.catalog-toolbar p { margin: 0; font-size: 13px; }
.catalog-toolbar-actions { display: flex; align-items: center; gap: 16px; }
.saved-counter { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-size: 11px; }
.saved-counter span { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); }
.sort-control { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 11px; }
.sort-control select { border: 0; outline: 0; background: transparent; color: var(--ink); font-weight: 700; }
.view-toggle { display: flex; gap: 5px; }
.view-toggle button { width: 34px; height: 34px; display: grid; grid-template-columns: repeat(2,5px); align-content: center; justify-content: center; gap: 3px; border: 1px solid var(--line); border-radius: 8px; background: transparent; cursor: pointer; }
.view-toggle button span { width: 5px; height: 5px; background: var(--muted); }
.view-toggle button:last-child { grid-template-columns: 18px; }
.view-toggle button:last-child span { width: 18px; height: 2px; }
.view-toggle button.active { background: var(--ink); }
.view-toggle button.active span { background: #fff; }
.mobile-filter-button { display: none; }
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.active-filter-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border-radius: 999px; background: var(--cream); font-size: 10px; }
.active-filter-pill button { border: 0; background: transparent; cursor: pointer; }
.catalog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.catalog-grid.list-view { grid-template-columns: 1fr; }
.catalog-product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.catalog-product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.catalog-product-card[hidden] { display: none; }
.catalog-product-image { position: relative; height: 310px; display: block; overflow: hidden; background: var(--cream); }
.catalog-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.catalog-product-card:hover .catalog-product-image img { transform: scale(1.045); }
.product-badge { position: absolute; left: 15px; top: 15px; padding: 7px 10px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.image-hover-text { position: absolute; left: 50%; bottom: 16px; padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,.9); font-size: 10px; font-weight: 700; opacity: 0; transform: translate(-50%,8px); transition: .2s ease; }
.catalog-product-card:hover .image-hover-text { opacity: 1; transform: translate(-50%,0); }
.catalog-product-body { padding: 20px; }
.product-meta-line { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 12px; color: var(--taupe-deep); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-meta-line small { color: var(--muted); font-size: inherit; }
.catalog-product-body h2 { min-height: 50px; margin-bottom: 10px; font-size: 22px; }
.catalog-product-body > p { min-height: 60px; margin-bottom: 16px; font-size: 12px; }
.catalog-product-strength { padding: 13px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.catalog-product-strength span, .catalog-product-strength strong { display: block; }
.catalog-product-strength span { color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.catalog-product-strength strong { margin-top: 4px; font-size: 11px; }
.catalog-product-actions { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; align-items: center; padding-top: 15px; }
.details-link { display: inline-flex; gap: 8px; font-size: 11px; font-weight: 700; }
.quick-view-button { border: 0; background: transparent; color: var(--taupe-deep); cursor: pointer; font-size: 10px; font-weight: 700; }
.catalog-grid.list-view .catalog-product-card { display: grid; grid-template-columns: 280px 1fr; }
.catalog-grid.list-view .catalog-product-image { height: 100%; min-height: 290px; }
.catalog-grid.list-view .catalog-product-body h2, .catalog-grid.list-view .catalog-product-body > p { min-height: 0; }
.catalog-empty { padding: 90px 20px; text-align: center; }
.empty-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; background: var(--cream); color: var(--taupe-deep); font-family: var(--serif); font-size: 32px; }
.catalog-empty h2 { font-size: 38px; }
.catalog-empty p { max-width: 480px; margin: 0 auto 24px; }
.catalog-disclaimer { margin-top: 50px; padding: 24px; border-left: 3px solid var(--taupe); background: var(--cream); }
.catalog-disclaimer strong { display: block; margin-bottom: 5px; }
.catalog-disclaimer p { margin: 0; font-size: 12px; }
.filter-drawer-backdrop { display: none; }
.quick-view-modal { position: fixed; inset: 0; z-index: 3200; pointer-events: none; opacity: 0; transition: opacity .25s ease; }
.quick-view-modal.open { pointer-events: auto; opacity: 1; }
.quick-view-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(21,17,14,.58); backdrop-filter: blur(7px); }
.quick-view-dialog { position: relative; width: min(980px, calc(100vw - 40px)); max-height: calc(100vh - 60px); margin: 30px auto; display: grid; grid-template-columns: .9fr 1.1fr; overflow: auto; border-radius: 26px; background: #fff; transform: translateY(20px); transition: transform .3s ease; }
.quick-view-modal.open .quick-view-dialog { transform: translateY(0); }
.quick-view-close { position: absolute; z-index: 2; right: 17px; top: 17px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; font-size: 22px; }
.quick-view-image { min-height: 580px; background: var(--cream); }
.quick-view-image img { width: 100%; height: 100%; object-fit: cover; }
.quick-view-content { padding: 60px 50px; }
.quick-view-content h2 { font-size: clamp(38px,5vw,58px); }
.quick-view-content > p { font-size: 16px; }
.quick-view-content dl { margin: 30px 0; border-top: 1px solid var(--line); }
.quick-view-content dl > div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.quick-view-content dt { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.quick-view-content dd { margin: 0; font-weight: 700; font-size: 13px; }
.quick-view-benefits { display: grid; gap: 8px; margin-bottom: 30px; }
.quick-view-benefits span { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.quick-view-benefits span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--taupe); }
.quick-view-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Product detail */
.product-detail-hero { padding: 42px 0 90px; background: var(--cream); }
.product-breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; color: var(--muted); font-size: 11px; }
.product-breadcrumbs a:hover { color: var(--ink); }
.product-detail-grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(60px,8vw,120px); align-items: center; }
.product-gallery { min-width: 0; }
.product-main-image { position: relative; height: 680px; overflow: hidden; border-radius: 28px; background: #fff; }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-image-note { position: absolute; left: 18px; bottom: 18px; padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.product-gallery-note { display: flex; justify-content: space-between; gap: 20px; padding-top: 15px; color: var(--muted); font-size: 10px; }
.product-detail-topline { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.detail-badge { padding: 8px 11px; border-radius: 999px; background: var(--rose-soft); color: var(--taupe-deep); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-detail-copy h1 { margin-bottom: 25px; font-size: clamp(52px,6vw,92px); }
.product-detail-lead { max-width: 700px; margin-bottom: 30px; font-size: 19px; }
.product-detail-specs { border-top: 1px solid var(--line); }
.product-detail-specs > div { display: grid; grid-template-columns: 155px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.product-detail-specs span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.product-detail-specs strong { font-size: 13px; }
.product-detail-cta { display: flex; gap: 10px; margin-top: 28px; }
.product-share-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 22px; font-size: 11px; }
.product-share-row > span { color: var(--muted); }
.product-share-row a, .product-share-row button { border: 0; background: transparent; cursor: pointer; font-weight: 700; padding: 0; }
.professional-notice { display: grid; grid-template-columns: 24px 1fr; gap: 12px; margin-top: 28px; padding: 16px; border-radius: 13px; background: rgba(255,255,255,.62); }
.professional-notice svg { width: 22px; fill: none; stroke: var(--taupe-deep); stroke-width: 1.6; }
.professional-notice p { margin: 0; font-size: 11px; }
.product-information-section { padding: 110px 0; }
.product-information-grid { display: grid; grid-template-columns: 220px 1fr; gap: 90px; align-items: start; }
.product-information-nav { position: sticky; top: 130px; display: grid; }
.product-information-nav .eyebrow { margin-bottom: 15px; }
.product-information-nav a { padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.product-information-nav a.active { color: var(--ink); font-weight: 700; }
.product-content-block { display: grid; grid-template-columns: 70px 1fr; gap: 30px; padding: 0 0 90px; margin-bottom: 90px; border-bottom: 1px solid var(--line); }
.product-content-block:last-child { margin-bottom: 0; }
.content-number { color: var(--taupe-deep); font-family: var(--serif); font-size: 24px; }
.product-content-block h2 { max-width: 820px; font-size: clamp(40px,4.8vw,70px); }
.product-content-block p { max-width: 850px; font-size: 16px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 35px; }
.benefit-grid > div { padding: 24px; border-radius: 18px; background: var(--cream); }
.benefit-grid span { display: block; margin-bottom: 45px; color: var(--taupe-deep); font-family: var(--serif); font-size: 22px; }
.benefit-grid strong { display: block; margin-bottom: 10px; font-size: 16px; }
.benefit-grid p { margin: 0; font-size: 11px; }
.product-accordions { margin-top: 30px; border-top: 1px solid var(--line); }
.product-accordion { border-bottom: 1px solid var(--line); }
.product-accordion button { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border: 0; background: transparent; cursor: pointer; text-align: left; font-size: 16px; font-weight: 700; }
.product-accordion button i { font-style: normal; font-size: 22px; transition: transform .2s ease; }
.product-accordion > div { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.product-accordion > div p { margin: 0 0 22px; font-size: 13px; }
.product-accordion.active > div { max-height: 180px; }
.product-accordion.active button i { transform: rotate(45deg); }
.product-inquiry-section { padding: 110px 0; background: var(--ink); color: #fff; }
.product-inquiry-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.product-inquiry-grid h2 { max-width: 650px; font-size: clamp(46px,5vw,76px); }
.product-inquiry-grid > div > p { max-width: 630px; color: rgba(255,255,255,.62); }
.product-inquiry-contact { display: grid; gap: 10px; margin-top: 30px; }
.product-inquiry-contact a { font-size: 14px; font-weight: 700; }
.inquiry-form-light { background: #fff; color: var(--ink); }
.inquiry-form-light .form-head small { color: var(--muted); }
.inquiry-form-light .form-grid label > span { color: var(--muted); }
.inquiry-form-light .form-grid input, .inquiry-form-light .form-grid select, .inquiry-form-light .form-grid textarea { border-color: var(--line); background: var(--cream); color: var(--ink); }
.inquiry-form-light .form-status { color: var(--muted); }
.related-products-section { background: var(--paper); }
.related-products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.related-product-image { height: 310px; display: block; overflow: hidden; border-radius: 18px; background: var(--cream); }
.related-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.related-product-card:hover img { transform: scale(1.04); }
.related-product-card > span { display: block; margin: 15px 0 8px; color: var(--taupe-deep); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.related-product-card h3 { min-height: 48px; font-size: 20px; }
.not-found-section { padding: 150px 0; background: var(--cream); text-align: center; }
.not-found-inner h1 { font-size: clamp(56px,8vw,110px); }
.not-found-inner p { margin-bottom: 30px; }

.js [data-reveal], .js [data-hero-reveal] { opacity: 0; transform: translateY(26px); }
.js [data-hero-visual] { opacity: 0; transform: translateX(40px); }

@media (max-width: 1180px) {
    :root { --container: min(100% - 40px, 1100px); }
    .desktop-nav { display: none; }
    .menu-button { display: block; }
    .hero-grid { grid-template-columns: 1fr .8fr; gap: 50px; }
    .hero-visual { min-height: 590px; }
    .hero-image-main { height: 520px; }
    .pathway-grid { grid-template-columns: repeat(2,1fr); }
    .philosophy-grid { gap: 70px; }
    .catalog-grid { grid-template-columns: repeat(2,1fr); }
    .benefit-grid { grid-template-columns: 1fr; }
    .related-products-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 920px) {
    :root { --container: min(100% - 32px, 850px); --header-height: 76px; }
    .section { padding: 90px 0; }
    .announcement-inner { justify-content: center; }
    .announcement-inner span { display: none; }
    .brand { width: 205px; }
    .desktop-cta { display: none; }
    .hero-section { padding-top: 50px; }
    .hero-grid, .catalog-hero-grid, .philosophy-grid, .provider-grid, .quality-story, .product-detail-grid, .product-inquiry-grid { grid-template-columns: 1fr; }
    .hero-copy h1 { font-size: clamp(58px,12vw,96px); }
    .hero-visual { min-height: 650px; max-width: 650px; margin: 0 auto; width: 100%; }
    .hero-image-main { width: 65%; }
    .hero-image-secondary { width: 44%; }
    .split-heading { grid-template-columns: 1fr; gap: 20px; }
    .philosophy-media { min-height: 650px; }
    .quality-story { min-height: 0; }
    .quality-image { min-height: 620px; }
    .process-line { grid-template-columns: repeat(2,1fr); }
    .process-step:nth-child(2)::after { display: none; }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
    .catalog-hero-grid { gap: 40px; }
    .catalog-layout { grid-template-columns: 1fr; gap: 0; }
    .catalog-sidebar { position: fixed; z-index: 3100; inset: 0 auto 0 0; width: min(370px, 88vw); padding: 30px; overflow-y: auto; background: #fff; transform: translateX(-105%); transition: transform .3s ease; }
    .catalog-sidebar.open { transform: translateX(0); }
    .filter-drawer-backdrop { position: fixed; z-index: 3000; inset: 0; display: block; background: rgba(20,17,14,.48); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
    .filter-drawer-backdrop.open { opacity: 1; pointer-events: auto; }
    .mobile-filter-button { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; }
    .mobile-filter-button span { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); font-size: 10px; }
    .catalog-toolbar { align-items: flex-start; }
    .catalog-toolbar-actions { flex-wrap: wrap; justify-content: flex-end; }
    .product-main-image { height: 620px; }
    .product-information-grid { grid-template-columns: 1fr; gap: 50px; }
    .product-information-nav { position: static; display: flex; overflow-x: auto; gap: 20px; }
    .product-information-nav .eyebrow { display: none; }
    .product-information-nav a { flex: 0 0 auto; }
}

@media (max-width: 650px) {
    :root { --container: calc(100vw - 28px); }
    .section { padding: 75px 0; }
    .header-actions { gap: 4px; }
    .brand { width: 175px; }
    .hero-copy h1, .catalog-hero h1 { font-size: clamp(48px,15vw,72px); }
    .hero-lead { font-size: 17px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
    .hero-search { border-radius: 18px; }
    .hero-search button { display: none; }
    .hero-meta { grid-template-columns: 1fr; gap: 12px; }
    .hero-visual { min-height: 530px; }
    .hero-image-main { width: 78%; height: 450px; }
    .hero-image-secondary { width: 48%; height: 270px; }
    .hero-floating-card { width: 205px; right: 28%; top: 55%; padding: 16px; }
    .hero-circle-text { display: none; }
    .hero-scroll-cue { display: none; }
    .section-heading h2, .philosophy-copy h2, .quality-heading h2 { font-size: 42px; }
    .pathway-grid { grid-template-columns: 1fr; }
    .pathway-card { min-height: 430px; }
    .philosophy-media { min-height: 520px; }
    .philosophy-image-large { height: 470px; width: 82%; }
    .philosophy-image-small { height: 220px; width: 45%; }
    .quality-seal { left: auto; right: 0; top: 40px; width: 125px; }
    .product-heading { align-items: flex-start; flex-direction: column; }
    .product-showcase-footer { align-items: flex-start; flex-direction: column; }
    .quality-image { min-height: 440px; }
    .quality-panel { padding: 35px 24px; }
    .quality-panel-item button { grid-template-columns: 34px 1fr auto; font-size: 17px; }
    .quality-panel-item > div p { margin-left: 52px; }
    .process-line { grid-template-columns: 1fr; }
    .process-step::after { display: none; }
    .process-step > span { margin-bottom: 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-full { grid-column: auto; }
    .inquiry-form { padding: 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; }
    .cookie-banner { align-items: flex-start; flex-direction: column; }
    .search-dialog { padding: 24px; }
    .search-dialog-head h2 { font-size: 36px; }
    .search-result-item { grid-template-columns: 56px 1fr; }
    .search-result-item img { width: 56px; height: 56px; }
    .search-result-item em { display: none; }
    .search-footer { flex-direction: column; }
    .catalog-hero { padding: 70px 0; }
    .catalog-grid { grid-template-columns: 1fr; }
    .catalog-toolbar { flex-direction: column; }
    .catalog-toolbar-actions { width: 100%; justify-content: space-between; }
    .sort-control span, .view-toggle { display: none; }
    .catalog-grid.list-view .catalog-product-card { grid-template-columns: 1fr; }
    .quick-view-dialog { grid-template-columns: 1fr; }
    .quick-view-image { min-height: 320px; max-height: 380px; }
    .quick-view-content { padding: 35px 24px; }
    .product-main-image { height: 500px; }
    .product-detail-copy h1 { font-size: 52px; }
    .product-detail-topline { align-items: flex-start; flex-direction: column; }
    .product-detail-specs > div { grid-template-columns: 1fr; gap: 4px; }
    .product-detail-cta { flex-direction: column; }
    .product-content-block { grid-template-columns: 1fr; gap: 12px; padding-bottom: 60px; margin-bottom: 60px; }
    .product-content-block h2 { font-size: 40px; }
    .related-products-grid { grid-template-columns: 1fr; }
    .related-product-image { height: 360px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .js [data-reveal], .js [data-hero-reveal], .js [data-hero-visual] { opacity: 1 !important; transform: none !important; }
}

/* RevitaLife V2: editorial structure inspired by premium modern pharmacy websites */
:root {
    --cream: #f5efe7;
    --cream-deep: #e9ded1;
    --paper: #fbf8f3;
    --ink: #2a211b;
    --ink-soft: #493c33;
    --muted: #74695f;
    --taupe: #af977f;
    --taupe-deep: #806854;
    --gold: #b59659;
    --gold-light: #d8c49a;
    --rose: #cdb9aa;
    --rose-soft: #efe3d9;
    --line: rgba(42, 33, 27, .15);
}

.announcement-inner-v2 { min-height: 38px; }
.announcement-links { display: flex; align-items: center; gap: 28px; }
.announcement-links a { position: relative; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.announcement-links a + a::before { content: ''; position: absolute; left: -14px; top: 50%; width: 1px; height: 10px; background: rgba(255,255,255,.22); transform: translateY(-50%); }
.site-header { background: rgba(251,248,243,.92); }
.header-inner { min-height: 92px; }
.desktop-nav-v2 { gap: clamp(17px,1.8vw,31px); }
.desktop-nav-v2 a { font-size: 11px; letter-spacing: .055em; text-transform: uppercase; }
.header-actions .button-dark { background: var(--taupe-deep); }
.header-actions .button-dark:hover { background: var(--ink); }

.rl-overline {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--taupe-deep);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.rl-overline::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.rl-overline-light { color: rgba(255,255,255,.78); }
.rl-arrow-link { display: inline-flex; align-items: center; gap: 14px; font-size: 13px; font-weight: 700; }
.rl-arrow-link span { transition: transform .25s ease; }
.rl-arrow-link:hover span { transform: translateX(6px); }
.rl-section-heading { max-width: 980px; margin-bottom: 62px; }
.rl-section-heading h2 { max-width: 950px; margin: 18px 0 0; font-size: clamp(48px,6.1vw,92px); }
.rl-section-heading-row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 80px; }
.rl-section-heading-row > p { max-width: 490px; margin: 0 0 8px; font-size: 15px; }

.rl-hero {
    position: relative;
    min-height: calc(100vh - 130px);
    overflow: hidden;
    background: var(--cream);
}
.rl-hero::before { content: ''; position: absolute; inset: auto -15% -55% 42%; height: 100%; border-radius: 50%; background: radial-gradient(circle, rgba(181,150,89,.17), rgba(181,150,89,0) 68%); }
.rl-hero-grain { position: absolute; inset: 0; pointer-events: none; opacity: .12; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E"); }
.rl-hero-layout { position: relative; z-index: 2; min-height: calc(100vh - 130px); display: grid; grid-template-columns: minmax(0,1.04fr) minmax(520px,.96fr); gap: clamp(40px,7vw,115px); align-items: center; padding-top: 60px; padding-bottom: 72px; }
.rl-hero-copy { padding-bottom: 20px; }
.rl-hero-copy h1 { max-width: 870px; margin: 22px 0 30px; font-size: clamp(66px,7.1vw,124px); line-height: .94; }
.rl-hero-copy h1 em { display: block; color: var(--taupe-deep); font-family: var(--serif); font-weight: 500; letter-spacing: -.045em; }
.rl-hero-copy > p { max-width: 650px; margin-bottom: 32px; font-size: clamp(17px,1.4vw,21px); line-height: 1.55; }
.rl-hero-actions { display: flex; align-items: center; gap: 28px; margin-bottom: 34px; }
.rl-hero-search { max-width: 690px; min-height: 62px; display: flex; align-items: center; gap: 15px; padding: 6px 7px 6px 22px; border: 1px solid rgba(42,33,27,.12); border-radius: 999px; background: rgba(255,255,255,.66); backdrop-filter: blur(12px); }
.rl-hero-search svg { width: 19px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.7; }
.rl-hero-search input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font-size: 13px; }
.rl-hero-search button { min-height: 48px; padding: 0 24px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.rl-hero-collage { position: relative; min-height: 690px; }
.rl-hero-portrait, .rl-hero-detail { position: absolute; margin: 0; overflow: hidden; box-shadow: 0 30px 80px rgba(55,41,30,.16); }
.rl-hero-portrait { width: 69%; height: 610px; right: 0; top: 0; border-radius: 240px 240px 26px 26px; }
.rl-hero-portrait::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(24,18,14,.58)); }
.rl-hero-portrait img, .rl-hero-detail img { width: 100%; height: 112%; object-fit: cover; }
.rl-hero-portrait figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; color: #fff; }
.rl-hero-portrait figcaption span, .rl-hero-portrait figcaption strong { display: block; }
.rl-hero-portrait figcaption span { margin-bottom: 5px; opacity: .72; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.rl-hero-portrait figcaption strong { font-size: 19px; }
.rl-hero-detail { width: 46%; height: 365px; left: 0; bottom: 0; border: 9px solid var(--cream); border-radius: 24px; }
.rl-hero-note { position: absolute; z-index: 4; width: 260px; right: 42%; top: 45%; padding: 24px; border: 1px solid rgba(255,255,255,.7); border-radius: 18px; background: rgba(251,248,243,.88); box-shadow: 0 24px 65px rgba(45,32,24,.14); backdrop-filter: blur(16px); }
.rl-hero-note span, .rl-hero-note small { display: block; }
.rl-hero-note span { color: var(--taupe-deep); font-size: 8px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.rl-hero-note strong { display: block; margin: 9px 0 18px; font-family: var(--display); font-size: 21px; line-height: 1.22; }
.rl-hero-note small { color: var(--muted); font-size: 9px; line-height: 1.45; }
.rl-hero-monogram { position: absolute; z-index: 5; right: -12px; bottom: 25px; width: 110px; height: 110px; display: grid; place-items: center; border: 1px solid rgba(42,33,27,.15); border-radius: 50%; background: var(--paper); color: var(--gold); font-family: var(--serif); font-size: 47px; box-shadow: var(--shadow-soft); }
.rl-scroll-mark { position: absolute; z-index: 3; left: 28px; bottom: 35px; display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; }
.rl-scroll-mark span { width: 1px; height: 55px; background: var(--taupe); animation: rlScrollPulse 1.8s ease-in-out infinite; }
@keyframes rlScrollPulse { 0%,100% { transform: scaleY(.55); transform-origin: top; opacity: .45; } 50% { transform: scaleY(1); opacity: 1; } }

.rl-featured-release { padding: 74px 0; background: var(--ink); color: #fff; }
.rl-release-grid { display: grid; grid-template-columns: .42fr 1.58fr; gap: 80px; align-items: center; }
.rl-release-intro p { max-width: 290px; margin: 20px 0 0; color: rgba(255,255,255,.55); font-size: 13px; }
.rl-release-card { min-height: 310px; display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(255,255,255,.04); transition: background .25s ease, transform .25s ease; }
.rl-release-card:hover { background: rgba(255,255,255,.075); transform: translateY(-4px); }
.rl-release-copy { padding: 44px; }
.rl-release-copy > span { color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.rl-release-copy h2 { margin: 15px 0; font-size: clamp(38px,4.1vw,64px); }
.rl-release-copy p { max-width: 540px; color: rgba(255,255,255,.6); font-size: 13px; }
.rl-release-copy > div { display: flex; align-items: center; gap: 13px; margin-top: 28px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.rl-release-image { min-height: 310px; overflow: hidden; background: var(--cream); }
.rl-release-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.rl-release-card:hover img { transform: scale(1.04); }

.rl-story { background: var(--paper); }
.rl-story-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 50px 110px; align-items: start; }
.rl-story-heading h2 { max-width: 700px; margin: 20px 0 0; font-size: clamp(55px,6.2vw,96px); }
.rl-story-copy { padding-top: 42px; }
.rl-story-lead { color: var(--ink); font-size: clamp(22px,2.15vw,33px); line-height: 1.45; letter-spacing: -.025em; }
.rl-story-copy > p:not(.rl-story-lead) { max-width: 650px; font-size: 15px; }
.rl-story-copy .rl-arrow-link { margin-top: 15px; }
.rl-story-image { position: relative; grid-column: 1 / -1; height: min(64vw,720px); margin-top: 35px; overflow: hidden; border-radius: 28px; }
.rl-story-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(27,20,16,.62)); }
.rl-story-image img { width: 100%; height: 110%; object-fit: cover; }
.rl-story-image > div { position: absolute; z-index: 2; left: 42px; right: 42px; bottom: 38px; color: #fff; }
.rl-story-image span, .rl-story-image strong { display: block; }
.rl-story-image span { margin-bottom: 6px; opacity: .7; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.rl-story-image strong { font-size: clamp(24px,3vw,44px); }

.rl-audience { background: var(--cream); }
.rl-audience-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 290px; gap: 18px; }
.rl-audience-card { position: relative; grid-column: span 4; overflow: hidden; border-radius: 22px; background: var(--ink); color: #fff; }
.rl-audience-card-wide { grid-column: span 8; }
.rl-audience-card-tall { grid-row: span 2; }
.rl-audience-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.7,.2,1); }
.rl-audience-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,15,12,.06) 20%, rgba(20,15,12,.75) 100%); transition: background .35s ease; }
.rl-audience-card:hover img { transform: scale(1.055); }
.rl-audience-card:hover .rl-audience-shade { background: linear-gradient(180deg, rgba(20,15,12,.02) 10%, rgba(20,15,12,.82) 100%); }
.rl-card-tag { position: absolute; z-index: 2; left: 22px; top: 22px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(35,27,22,.18); backdrop-filter: blur(8px); font-size: 8px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.rl-audience-content { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 24px; }
.rl-audience-content h3 { max-width: 560px; margin-bottom: 8px; font-size: clamp(25px,2.4vw,40px); }
.rl-audience-content p { max-width: 620px; margin: 0; color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.5; }
.rl-round-link { position: absolute; right: 0; bottom: 0; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 20px; transition: background .25s ease, color .25s ease, transform .25s ease; }
.rl-audience-card:hover .rl-round-link { background: #fff; color: var(--ink); transform: rotate(8deg); }

.rl-popular { overflow: hidden; background: var(--paper); }
.rl-carousel-controls { flex: 0 0 auto; }
.rl-product-rail { width: calc(100vw - max(32px, (100vw - 1380px)/2)); display: flex; gap: 18px; margin-left: max(32px, (100vw - 1380px)/2); padding-right: 50px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.rl-product-rail::-webkit-scrollbar { display: none; }
.rl-product-card { flex: 0 0 clamp(290px,27vw,410px); scroll-snap-align: start; }
.rl-product-media { position: relative; height: 470px; display: block; overflow: hidden; border-radius: 20px; background: var(--cream); }
.rl-product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.rl-product-media > span { position: absolute; left: 18px; top: 18px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(42,33,27,.18); border-radius: 50%; background: rgba(251,248,243,.75); backdrop-filter: blur(8px); font-size: 9px; }
.rl-product-card:hover .rl-product-media img { transform: scale(1.045); }
.rl-product-meta { display: flex; justify-content: space-between; gap: 16px; margin-top: 17px; color: var(--taupe-deep); font-size: 8px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.rl-product-meta small { color: var(--muted); font-size: inherit; }
.rl-product-card h3 { min-height: 58px; margin: 10px 0 17px; font-size: clamp(22px,2vw,30px); }
.rl-product-actions { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); }
.rl-product-actions > a { display: flex; gap: 9px; font-size: 11px; font-weight: 700; }
.rl-popular-footer { display: flex; align-items: center; justify-content: space-between; gap: 50px; margin-top: 48px; }
.rl-popular-footer p { max-width: 650px; margin: 0; font-size: 13px; }

.rl-quality-banner { position: relative; min-height: 760px; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.rl-quality-media, .rl-quality-overlay { position: absolute; inset: 0; }
.rl-quality-media img { width: 100%; height: 112%; object-fit: cover; }
.rl-quality-overlay { background: linear-gradient(90deg, rgba(31,22,17,.83) 0%, rgba(31,22,17,.45) 55%, rgba(31,22,17,.12) 100%); }
.rl-quality-content { position: relative; z-index: 2; padding-bottom: 90px; }
.rl-quality-content h2 { max-width: 980px; margin: 20px 0 26px; font-size: clamp(58px,7.2vw,112px); }
.rl-quality-content p { max-width: 660px; margin-bottom: 30px; color: rgba(255,255,255,.68); font-size: 16px; }

.rl-services { background: var(--cream); }
.rl-services-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: stretch; }
.rl-service-list { border-top: 1px solid var(--line); }
.rl-service-item { width: 100%; display: grid; grid-template-columns: 48px 1fr auto; gap: 20px; align-items: center; padding: 27px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; cursor: pointer; text-align: left; transition: color .25s ease, padding-left .25s ease; }
.rl-service-item.active { color: var(--taupe-deep); padding-left: 12px; }
.rl-service-code { font-family: var(--serif); font-size: 13px; }
.rl-service-name { font-family: var(--display); font-size: clamp(25px,2.5vw,39px); font-weight: 600; letter-spacing: -.035em; }
.rl-service-arrow { font-size: 22px; transition: transform .25s ease; }
.rl-service-item.active .rl-service-arrow { transform: rotate(45deg); }
.rl-service-mobile-copy { display: none; grid-column: 2 / -1; color: var(--muted); font-size: 12px; }
.rl-service-stage { position: relative; min-height: 720px; overflow: hidden; border-radius: 26px; background: var(--ink); }
.rl-service-panel { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: scale(1.02); transition: opacity .45s ease, visibility .45s ease, transform .7s ease; }
.rl-service-panel.active { opacity: 1; visibility: visible; transform: scale(1); }
.rl-service-panel img { width: 100%; height: 100%; object-fit: cover; }
.rl-service-stage-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,16,12,.08), rgba(22,16,12,.82)); }
.rl-service-panel-copy { position: absolute; left: 35px; right: 35px; bottom: 34px; color: #fff; }
.rl-service-panel-copy > span { font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.rl-service-panel-copy p { max-width: 620px; margin: 14px 0 20px; color: rgba(255,255,255,.75); font-size: 14px; }
.rl-service-panel-copy ul { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 24px; list-style: none; }
.rl-service-panel-copy li { padding: 8px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.06); font-size: 9px; }
.rl-service-panel-copy a { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.rl-process { background: var(--paper); }
.rl-process-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.rl-process-grid article { position: relative; min-height: 300px; padding: 30px 28px 30px 0; border-right: 1px solid var(--line); }
.rl-process-grid article:not(:first-child) { padding-left: 28px; }
.rl-process-grid article:last-child { border-right: 0; }
.rl-process-grid article > span { display: block; margin-bottom: 70px; color: var(--gold); font-family: var(--serif); font-size: 25px; }
.rl-process-grid h3 { font-size: 25px; }
.rl-process-grid p { margin: 0; font-size: 12px; }

.rl-resources { background: var(--cream); }
.rl-article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.rl-article-card { min-width: 0; }
.rl-article-image { height: 370px; overflow: hidden; border-radius: 20px; }
.rl-article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.rl-article-card:hover img { transform: scale(1.045); }
.rl-article-meta { display: flex; justify-content: space-between; gap: 15px; margin: 18px 0 12px; color: var(--taupe-deep); font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.rl-article-meta small { color: var(--muted); font-size: inherit; }
.rl-article-card h3 { margin-bottom: 12px; font-size: clamp(24px,2.2vw,34px); }
.rl-article-card p { min-height: 62px; font-size: 12px; }
.rl-article-card > a { display: flex; gap: 9px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 11px; font-weight: 700; }

.rl-provider-v2 { background: var(--ink); }
.rl-provider-v2 .provider-background { background: radial-gradient(circle at 10% 30%, rgba(181,150,89,.2), transparent 37%), radial-gradient(circle at 75% 85%, rgba(175,151,127,.18), transparent 38%); }
.rl-provider-v2 .inquiry-form { border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.07); backdrop-filter: blur(15px); }

.products-page .catalog-hero { background: linear-gradient(135deg, var(--cream) 0%, var(--paper) 58%, #e7d9ca 100%); }
.products-page .catalog-hero h1 { max-width: 900px; font-size: clamp(62px,7vw,112px); }
.products-page .catalog-search-card { border: 1px solid rgba(42,33,27,.12); background: rgba(255,255,255,.72); backdrop-filter: blur(14px); }
.products-page .catalog-product-card { border-radius: 18px; }
.products-page .catalog-product-image { height: 350px; }
.products-page .product-badge { background: var(--taupe-deep); }
.products-page .catalog-sidebar { border-radius: 18px; }
.product-detail-hero { background: linear-gradient(135deg, var(--cream), var(--paper)); }
.detail-badge { background: var(--cream-deep); color: var(--taupe-deep); }

@media (max-width: 1180px) {
    .rl-hero-layout { grid-template-columns: 1fr .78fr; gap: 45px; }
    .rl-hero-collage { min-height: 610px; }
    .rl-hero-portrait { height: 535px; }
    .rl-release-grid { grid-template-columns: 1fr; gap: 35px; }
    .rl-release-intro p { max-width: 600px; }
    .rl-services-grid { gap: 45px; }
    .rl-service-stage { min-height: 650px; }
    .rl-audience-grid { grid-auto-rows: 260px; }
}

@media (max-width: 920px) {
    .announcement-links a:first-child { display: none; }
    .rl-hero-layout { grid-template-columns: 1fr; min-height: auto; padding-top: 72px; }
    .rl-hero-copy h1 { font-size: clamp(64px,12vw,106px); }
    .rl-hero-collage { width: min(680px,100%); min-height: 670px; margin: 0 auto; }
    .rl-story-grid { grid-template-columns: 1fr; gap: 30px; }
    .rl-story-copy { padding-top: 0; }
    .rl-story-image { height: 680px; }
    .rl-audience-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 340px; }
    .rl-audience-card, .rl-audience-card-wide { grid-column: span 1; }
    .rl-audience-card-tall { grid-row: span 1; }
    .rl-section-heading-row { align-items: flex-start; flex-direction: column; gap: 25px; }
    .rl-services-grid { grid-template-columns: 1fr; }
    .rl-service-stage { min-height: 660px; }
    .rl-process-grid { grid-template-columns: repeat(2,1fr); }
    .rl-process-grid article:nth-child(2) { border-right: 0; }
    .rl-process-grid article:nth-child(n+3) { border-top: 1px solid var(--line); }
    .rl-article-grid { grid-template-columns: 1fr 1fr; }
    .rl-article-card:last-child { grid-column: 1 / -1; }
    .rl-article-card:last-child .rl-article-image { height: 500px; }
}

@media (max-width: 650px) {
    .announcement-links { gap: 16px; }
    .announcement-links a { font-size: 8px; }
    .announcement-links a + a::before { left: -8px; }
    .rl-section-heading { margin-bottom: 40px; }
    .rl-section-heading h2 { font-size: 45px; }
    .rl-hero { min-height: auto; }
    .rl-hero-layout { padding-top: 48px; padding-bottom: 50px; }
    .rl-hero-copy h1 { font-size: clamp(53px,16vw,76px); }
    .rl-hero-copy h1 em { display: inline; }
    .rl-hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
    .rl-hero-search { border-radius: 17px; }
    .rl-hero-search button { display: none; }
    .rl-hero-collage { min-height: 520px; }
    .rl-hero-portrait { width: 79%; height: 445px; }
    .rl-hero-detail { width: 48%; height: 255px; border-width: 7px; }
    .rl-hero-note { width: 205px; right: 24%; top: 54%; padding: 16px; }
    .rl-hero-note strong { font-size: 17px; }
    .rl-hero-monogram, .rl-scroll-mark { display: none; }
    .rl-featured-release { padding: 55px 0; }
    .rl-release-card { grid-template-columns: 1fr; }
    .rl-release-copy { padding: 28px; }
    .rl-release-image { min-height: 280px; }
    .rl-story-heading h2 { font-size: 49px; }
    .rl-story-lead { font-size: 23px; }
    .rl-story-image { height: 520px; border-radius: 20px; }
    .rl-story-image > div { left: 22px; right: 22px; bottom: 22px; }
    .rl-audience-grid { grid-template-columns: 1fr; grid-auto-rows: 420px; }
    .rl-audience-content p { padding-right: 56px; }
    .rl-product-rail { width: calc(100vw - 14px); margin-left: 14px; padding-right: 14px; }
    .rl-product-card { flex-basis: 84vw; }
    .rl-product-media { height: 430px; }
    .rl-popular-footer { align-items: flex-start; flex-direction: column; }
    .rl-quality-banner { min-height: 650px; }
    .rl-quality-content { padding-bottom: 55px; }
    .rl-quality-content h2 { font-size: 52px; }
    .rl-service-list { border-top: 1px solid var(--line); }
    .rl-service-item { grid-template-columns: 35px 1fr auto; padding: 22px 0; }
    .rl-service-name { font-size: 27px; }
    .rl-service-mobile-copy { display: none; }
    .rl-service-stage { min-height: 540px; }
    .rl-service-panel-copy { left: 22px; right: 22px; bottom: 22px; }
    .rl-process-grid { grid-template-columns: 1fr; }
    .rl-process-grid article, .rl-process-grid article:not(:first-child) { min-height: 245px; padding: 25px 0; border-right: 0; border-top: 1px solid var(--line); }
    .rl-process-grid article:first-child { border-top: 0; }
    .rl-process-grid article > span { margin-bottom: 45px; }
    .rl-article-grid { grid-template-columns: 1fr; }
    .rl-article-card:last-child { grid-column: auto; }
    .rl-article-image, .rl-article-card:last-child .rl-article-image { height: 390px; }
    .products-page .catalog-product-image { height: 370px; }
}

/* RevitaLife V2.1: refined scale, smaller headings and product imagery */
.rl-section-heading {
    max-width: 860px;
    margin-bottom: 50px;
}
.rl-section-heading h2 {
    max-width: 820px;
    font-size: clamp(40px, 4.7vw, 68px);
    line-height: 1.02;
}
.rl-hero-copy h1 {
    max-width: 760px;
    font-size: clamp(54px, 5.45vw, 88px);
    line-height: .99;
}
.rl-release-copy h2 {
    font-size: clamp(32px, 3.25vw, 50px);
}
.rl-story-heading h2 {
    max-width: 650px;
    font-size: clamp(43px, 4.7vw, 70px);
    line-height: 1.02;
}
.rl-story-lead {
    font-size: clamp(20px, 1.75vw, 27px);
}
.rl-audience-content h3 {
    font-size: clamp(23px, 2vw, 33px);
}
.rl-quality-content h2 {
    max-width: 860px;
    font-size: clamp(48px, 5.4vw, 78px);
    line-height: 1.01;
}
.rl-service-name {
    font-size: clamp(22px, 2.05vw, 32px);
}
.rl-article-card h3 {
    font-size: clamp(21px, 1.75vw, 28px);
}

/* Popular products on the homepage */
.rl-product-rail {
    gap: 16px;
}
.rl-product-card {
    flex: 0 0 clamp(270px, 23vw, 340px);
}
.rl-product-media {
    height: 350px;
}
.rl-product-card h3 {
    min-height: 48px;
    font-size: clamp(19px, 1.55vw, 24px);
}

/* Product catalogue */
.catalog-hero h1,
.products-page .catalog-hero h1 {
    max-width: 800px;
    font-size: clamp(48px, 5.4vw, 78px);
    line-height: 1.02;
}
.catalog-product-image,
.products-page .catalog-product-image {
    height: 255px;
}
.catalog-product-body h2 {
    min-height: 44px;
    font-size: 19px;
}
.catalog-product-body > p {
    min-height: 54px;
}
.catalog-grid.list-view .catalog-product-image {
    min-height: 240px;
}

/* Product detail page */
.product-main-image {
    height: 515px;
}
.product-detail-copy h1 {
    font-size: clamp(42px, 4.6vw, 68px);
    line-height: 1.02;
}
.product-detail-lead {
    font-size: 17px;
}
.product-content-block h2 {
    font-size: clamp(34px, 3.55vw, 52px);
}
.product-inquiry-grid h2 {
    font-size: clamp(38px, 4vw, 58px);
}
.related-product-image {
    height: 235px;
}
.related-product-card h3 {
    min-height: 42px;
    font-size: 18px;
}
.quick-view-image {
    min-height: 440px;
}
.quick-view-content h2 {
    font-size: clamp(32px, 4vw, 46px);
}

@media (max-width: 1180px) {
    .rl-product-card { flex-basis: clamp(270px, 29vw, 320px); }
    .rl-product-media { height: 330px; }
}

@media (max-width: 920px) {
    .rl-hero-copy h1 { font-size: clamp(50px, 9vw, 74px); }
    .rl-section-heading h2 { font-size: clamp(39px, 7vw, 58px); }
    .rl-story-heading h2 { font-size: clamp(40px, 7vw, 58px); }
    .rl-quality-content h2 { font-size: clamp(44px, 7.6vw, 64px); }
    .product-main-image { height: 500px; }
}

@media (max-width: 650px) {
    .rl-section-heading { margin-bottom: 38px; }
    .rl-section-heading h2 { font-size: 36px; }
    .rl-hero-copy h1 { font-size: clamp(45px, 13vw, 59px); }
    .rl-story-heading h2 { font-size: 38px; }
    .rl-story-lead { font-size: 20px; }
    .rl-release-copy h2 { font-size: 34px; }
    .rl-quality-content h2 { font-size: 42px; }
    .rl-product-card { flex-basis: 76vw; }
    .rl-product-media { height: 315px; }
    .products-page .catalog-product-image,
    .catalog-product-image { height: 245px; }
    .catalog-hero h1,
    .products-page .catalog-hero h1 { font-size: 43px; }
    .catalog-product-body h2 { min-height: 0; font-size: 18px; }
    .product-main-image { height: 400px; }
    .product-detail-copy h1 { font-size: 43px; }
    .product-content-block h2 { font-size: 34px; }
    .product-inquiry-grid h2 { font-size: 40px; }
    .related-product-image { height: 275px; }
    .quick-view-image { min-height: 280px; max-height: 320px; }
}

/* RevitaLife V2.2: final product-image breathing room and quieter typography */
.rl-hero-copy h1 { font-size: clamp(52px, 5vw, 80px); }
.rl-section-heading h2 { font-size: clamp(38px, 4.3vw, 62px); }
.rl-story-heading h2 { font-size: clamp(41px, 4.35vw, 64px); }
.rl-quality-content h2 { font-size: clamp(46px, 4.9vw, 70px); }
.catalog-hero h1,
.products-page .catalog-hero h1 { font-size: clamp(46px, 4.85vw, 70px); }
.product-detail-copy h1 { font-size: clamp(40px, 4vw, 58px); }
.product-content-block h2 { font-size: clamp(32px, 3.1vw, 46px); }
.product-inquiry-grid h2 { font-size: clamp(36px, 3.55vw, 52px); }

.rl-product-media { height: 310px; background: #fff; }
.catalog-product-image,
.products-page .catalog-product-image { height: 225px; background: #fff; }
.product-main-image { height: 440px; background: #fff; }
.related-product-image { height: 215px; background: #fff; }
.quick-view-image { min-height: 390px; background: #fff; }

.rl-product-media img,
.catalog-product-image img,
.product-main-image img,
.related-product-image img,
.quick-view-image img {
    object-fit: contain;
    padding: 24px;
}
.rl-product-card:hover .rl-product-media img,
.catalog-product-card:hover .catalog-product-image img,
.related-product-card:hover img {
    transform: scale(1.025);
}

@media (max-width: 920px) {
    .rl-hero-copy h1 { font-size: clamp(48px, 8.4vw, 68px); }
    .rl-section-heading h2 { font-size: clamp(37px, 6.4vw, 52px); }
    .product-main-image { height: 420px; }
}

@media (max-width: 650px) {
    .rl-hero-copy h1 { font-size: clamp(43px, 12vw, 55px); }
    .rl-section-heading h2 { font-size: 34px; }
    .rl-story-heading h2 { font-size: 36px; }
    .rl-quality-content h2 { font-size: 39px; }
    .rl-product-media { height: 275px; }
    .catalog-product-image,
    .products-page .catalog-product-image { height: 215px; }
    .product-main-image { height: 340px; }
    .product-detail-copy h1 { font-size: 39px; }
    .product-content-block h2 { font-size: 32px; }
    .product-inquiry-grid h2 { font-size: 37px; }
    .related-product-image { height: 250px; }
    .rl-product-media img,
    .catalog-product-image img,
    .product-main-image img,
    .related-product-image img,
    .quick-view-image img { padding: 18px; }
}
