:root {
    --bg: #ffffff;
    --white: #ffffff;
    --brown: #7a5a44;
    --brown-deep: #6d4f3d;
    --text: #2f261f;
    --line: rgba(255, 255, 255, 0.35);
    --overlay: rgba(20, 13, 9, 0.35);
    --home-shell-width: 1260px;
    --font-serif: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    width: 100%;
    height: auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: transparent;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    box-shadow: 0 -1px rgba(255, 255, 255, 0.25) inset;
}

.body-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 40;
}

.body-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.site-header.scrolled {
    background: #ffffff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(47, 38, 31, 0.18);
    transition: 300ms;
}

.header-inner {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 18px 24px 12px;
    text-align: center;
    position: relative;
}

.brand {
    display: inline-block;
    width: 150px;
    transition: opacity 0.2s ease;
}

.brand:hover,
.brand:focus-visible {
    opacity: 0.8;
}

.brand .logo {
    width: 150px;
    height: auto;
}

.brand .logo-black {
    display: none;
}

.brand .logo-white {
    display: block;
}

.top-nav {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 0;
    align-items: flex-start;
    position: relative;
}

.top-nav-link,
.mobile-menu a {
    color: var(--white);
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.top-nav-link:hover,
.top-nav-link:focus-visible,
.mobile-menu a:hover {
    opacity: 0.8;
}

.top-nav-item {
    position: static;
    padding: 0 13px 8px;
}

.top-nav-item:first-child {
    padding-left: 0;
}

.top-nav-item:last-child {
    padding-right: 0;
}

.top-nav-link {
    display: inline-block;
    padding-bottom: 8px;
}

.top-nav-item.is-active .top-nav-link {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.top-nav-dropdown {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%) translateY(8px);
    display: flex;
    justify-content: center;
    gap: 22px;
    padding: 18px 18px 80px;
    background: #ffffff;
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: none;
    z-index: 3;
    box-shadow: none;
}

.top-nav-dropdown-card {
    display: block;
    width: 240px;
    color: var(--text);
    text-align: center;
}

.top-nav-dropdown-media {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #d8d8d8;
}

.top-nav-dropdown-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.top-nav-dropdown-title {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding-bottom: 4px;
}

.top-nav-dropdown-card:hover .top-nav-dropdown-media img,
.top-nav-dropdown-card:focus-visible .top-nav-dropdown-media img {
    transform: scale(1.04);
}

.top-nav-dropdown-card:hover .top-nav-dropdown-title,
.top-nav-dropdown-card:focus-visible .top-nav-dropdown-title {
    color: #7f634b !important;
}

.top-nav-item:hover .top-nav-dropdown,
.top-nav-item:focus-within .top-nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.top-nav-item:hover .top-nav-link,
.top-nav-item:focus-within .top-nav-link {
    color: #7f634b !important;
    opacity: 1;
}

.mobile-menu-toggle {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 20px;
    border: 0;
    background: transparent;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-toggle span {
    display: block;
    height: 1.5px;
    background: var(--white);
    border-radius: 1px;
    transition: background 0.2s;
}

.site-header.scrolled .top-nav-link {
    color: var(--text);
}

.site-header.scrolled .mobile-menu-toggle span {
    background: var(--text);
}

/* ── Bag button ──────────────────────────────────────── */
.bag-btn {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--white);
    transition: color 0.2s, opacity 0.2s;
    z-index: 10;
}

.bag-btn:hover {
    opacity: 0.7;
}

.bag-icon {
    display: block;
    flex-shrink: 0;
}

.bag-count {
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #8b6748;
    color: #ffffff;
    font-size: 9px;
    font-family: var(--font-sans);
    letter-spacing: 0.02em;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    pointer-events: none;
    transition: opacity 0.15s;
}

.bag-count[data-hidden] {
    opacity: 0;
    pointer-events: none;
}

.site-header.scrolled .bag-btn {
    color: var(--text);
}

.site-header.scrolled .brand .logo-white {
    display: none;
}

.site-header.scrolled .brand .logo-black {
    display: block;
}

body.inner-page .site-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(47, 38, 31, 0.18);
}

body.ror-page .site-header {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}

body.ror-page .site-header.scrolled {
    background: #ffffff;
    border-bottom: 1px solid rgba(47, 38, 31, 0.18);
}

body.ror-page .site-header .logo-white {
    display: block;
}

body.ror-page .site-header .logo-black {
    display: none;
}

body.ror-page .site-header.scrolled .logo-white {
    display: none;
}

body.ror-page .site-header.scrolled .logo-black {
    display: block;
}

body.ror-page .site-header .top-nav-link {
    color: #ffffff;
}

body.ror-page .site-header.scrolled .top-nav-link {
    color: var(--text);
}

body.ror-page .site-header .mobile-menu-toggle span {
    background: #ffffff;
}

body.ror-page .site-header.scrolled .mobile-menu-toggle span {
    background: var(--text);
}

body.ror-page .site-header .bag-btn {
    color: #ffffff;
}

body.ror-page .site-header.scrolled .bag-btn {
    color: var(--text);
}

body.inner-page .top-nav-link {
    color: var(--text);
}

body.inner-page .mobile-menu-toggle span {
    background: var(--text);
}

body.inner-page .bag-btn {
    color: var(--text);
}

body.inner-page .brand .logo-white {
    display: none;
}

body.inner-page .brand .logo-black {
    display: block;
}

body.inner-page.ror-page .site-header .logo-white {
    display: block;
}

body.inner-page.ror-page .site-header .logo-black {
    display: none;
}

body.inner-page.ror-page .site-header.scrolled .logo-white {
    display: none;
}

body.inner-page.ror-page .site-header.scrolled .logo-black {
    display: block;
}

@media (max-width: 1320px) {
    .top-nav-dropdown {
        gap: 14px;
        padding: 14px;
    }

    .top-nav-dropdown-card {
        width: 190px;
    }
}

/* ── Mobile Slide-in Menu ──────────────────────────── */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 82vw;
    max-width: 340px;
    height: 100%;
    background: #3a3a3a;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 0;
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-menu-close {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 22px 24px 14px;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.2s;
    line-height: 1;
}

.mobile-menu-close:hover {
    opacity: 1;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: #c9a97a;
}

.mobile-nav-plus {
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease;
    display: inline-block;
}

.mobile-nav-item.is-expanded .mobile-nav-plus {
    transform: rotate(45deg);
}

.mobile-nav-sub {
    list-style: none;
    margin: 0;
    padding: 0 0 4px 0;
    display: none;
    background: rgba(0, 0, 0, 0.18);
}

.mobile-nav-sub.is-open {
    display: block;
}

.mobile-nav-sub li a {
    display: block;
    padding: 13px 24px 13px 32px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
}

.mobile-nav-sub li:last-child a {
    border-bottom: none;
}

.mobile-nav-sub li a:hover {
    color: #c9a97a;
}

/* Nested expandable category items inside sub-menus */
.mobile-nav-sub .mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav-sub .mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-sub-expand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 24px 13px 32px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.mobile-nav-sub-expand:hover {
    color: #c9a97a;
}

/* Third-level product list */
.mobile-nav-sub--deep {
    background: rgba(0, 0, 0, 0.14);
    padding-bottom: 0;
}

.mobile-nav-sub--deep li a {
    padding-left: 44px;
}

.mobile-nav-secondary {
    padding: 24px 24px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-secondary a {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}

.mobile-nav-secondary a:hover {
    color: #c9a97a;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 13, 9, 0.45) 0%, rgba(20, 13, 9, 0.18) 42%, rgba(20, 13, 9, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 140px 24px 90px;
}

.hero-kicker {
    font-size: 14px;
    letter-spacing: 0.25em;
    margin-bottom: 8px;
}

.hero h1 {
    font-family: var(--font-sans);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 300;
    letter-spacing: 0.1em;
}

.home-body {
    padding: 110px 24px 0;
}

.feature-block,
.feature-grid,
.sanctums,
.circle-section {
    max-width: var(--home-shell-width);
    margin: 0 auto 112px;
}

#origin.feature-block {
    margin-bottom: 55px;
}

/* Warm the origin image — remove green tint, match sandy palette */
#origin .feature-card img {
    filter: sepia(0.45) saturate(0.72) brightness(0.88) hue-rotate(10deg);
    transition: transform 0.45s ease, filter 0.45s ease;
}

#origin .feature-card:hover img {
    filter: sepia(0.35) saturate(0.78) brightness(0.92) hue-rotate(10deg);
}

/* Warm tone overlay for origin — sandy amber tint over the gradient */
#origin .feature-overlay {
    background:
        linear-gradient(180deg, rgba(20, 13, 9, 0.08) 30%, rgba(20, 13, 9, 0.65) 100%),
        linear-gradient(180deg, rgba(180, 138, 82, 0.18) 0%, rgba(120, 85, 45, 0.12) 100%);
}

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    background: #d6d2cc;
}

.feature-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.feature-wide .feature-card {
    min-height: 700px;
}

.feature-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.feature-card:hover img {
    transform: scale(1.03);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s ease, transform 0.75s ease;
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

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

.feature-card-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: -4px;
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 13, 9, 0.1) 32%, rgba(20, 13, 9, 0.68) 100%);
}

.feature-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding: 0 20px;
}

p.feature-kicker {
    font-size: 12px;
    letter-spacing: 0.26em;
    margin-bottom: 8px;
}

.feature-content h2 {
    font-family: var(--font-sans);
    font-size: clamp(20px, 2.6vw, 34px);
    letter-spacing: 0.08em;
    font-weight: 300;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
}

.feature-grid .feature-card {
    min-height: 720px;
}

.feature-grid .feature-content h2 {
    font-size: clamp(19px, 1.9vw, 28px);
}

.feature-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 0.23em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* ── Mobile-only elements (hidden on desktop) ───────────────── */
.mob-circle-cta {
    display: none;
}

/* ── Mobile-only origin text block (hidden on desktop) ──────── */
.mob-origin-info {
    display: none;
}

.mob-label {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #3e3e47;
    text-transform: uppercase;
    line-height: 1.25;
}

.mob-section-heading {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3e3e47;
    line-height: 1.35;
    margin: 0;
}

.mob-section-link {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11.4px;
    letter-spacing: 0.21em;
    text-transform: uppercase;
    color: #3e3e47;
    text-decoration: none;
    border-bottom: 1px solid rgba(62, 62, 71, 0.55);
    padding-bottom: 3px;
    margin-top: 4px;
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 3.1vw, 44px);
    letter-spacing: 0.06em;
    font-weight: 400;
    margin-bottom: 8px;
}

.section-header p {
    font-size: 14px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* Sanctums slider */
.sanctums-slider {
    position: relative;
}

.sanctums-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
}

.sanctums-track {
    display: flex;
    gap: 22px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.sanctum-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    flex: 0 0 calc((100% - 44px) / 3);
}

/* Sanctums arrows */
.sanctums-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.90);
    border: none;
    color: #2f261f;
    cursor: pointer;
    padding: 0;
    transition: background 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}

.sanctums-arrow-prev {
    left: 14px;
}

.sanctums-arrow-next {
    right: 14px;
}

.sanctums-arrow svg {
    width: 20px;
    height: 20px;
}

.sanctums-arrow:hover {
    background: #2f261f;
    color: #fff;
}

.sanctums-arrow[disabled] {
    opacity: 0;
    cursor: default;
    pointer-events: none;
}

/* Sanctums dots */
.sanctums-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 28px;
}

.sanctums-dot {
    height: 4px;
    border-radius: 2px;
    background: #d4c4b0;
    transition: width 0.35s ease, background 0.35s ease;
    width: 8px;
    cursor: pointer;
}

.sanctums-dot.is-active {
    width: 28px;
    background: #a8895c;
}

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

.sanctum-card:hover img {
    transform: scale(1.03);
}

.sanctum-content {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 40px;
    color: var(--white);
    text-align: center;
    padding: 0 18px;
}

.sanctum-content p {
    font-size: 12px;
    letter-spacing: 0.2em;
    margin-bottom: 6px;
}

.sanctum-content h3 {
    font-size: clamp(17px, 1.6vw, 22px);
    letter-spacing: 0.08em;
    font-weight: 400;
}

.circle-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
    padding-bottom: 80px;
}

.circle-copy h2 {
    font-family: var(--font-serif);
    font-size: clamp(34px, 3vw, 46px);
    letter-spacing: 0.06em;
    font-weight: 400;
    margin-bottom: 16px;
}

.circle-copy {
    width: 300px;
}

.circle-copy p {
    letter-spacing: 0.17em;
    font-size: 12px;
    margin-bottom: 24px;
}

.circle-accordion {
    display: grid;
    gap: 8px;
    max-width: 320px;
}

.circle-item {
    border: 1px solid #d8ccc0;
    background: transparent;
    color: #6a5340;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: left;
    padding: 13px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.circle-item.active {
    background: #7f634b;
    color: var(--white);
    border-color: #7f634b;
}

.circle-item:hover {
    background: #7f634b;
    color: var(--white);
    border-color: #7f634b;
}

.circle-art {
    width: 656px;
    justify-self: end;
}

.origin-page {
    min-height: 70vh;
    padding: 160px 24px 80px;
    background: #ffffff;
}

.origin-shell {
    max-width: var(--home-shell-width);
    margin: 0 auto;
}

.origin-shell h1 {
    font-family: var(--font-serif);
    font-size: 46px;
    font-weight: 400;
    margin-bottom: 28px;
}

.origin-subnav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.origin-subnav a {
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid rgba(47, 38, 31, 0.25);
    padding-bottom: 2px;
}

.origin-subnav a:hover {
    border-bottom-color: rgba(47, 38, 31, 0.9);
}

.origin-origins {
    background: #efefef;
    margin-top: 64px;
    padding: 80px 24px 76px;
}

.origin-origins h2 {
    font-family: var(--font-sans);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-align: center;
    margin: 0 0 56px;
}

.origin-origins-grid {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
}

.origin-origins-card a {
    display: block;
    color: inherit;
    text-align: center;
}

.origin-origins-card img {
    width: 100%;
    height: auto;
    display: block;
}

.origin-origins-card span {
    display: inline-block;
    margin-top: 40px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(46, 46, 46, 0.5);
    padding-bottom: 4px;
}

.origin-origins-card a:hover span {
    border-bottom-color: rgba(46, 46, 46, 0.95);
}

/* ── Site Footer ─────────────────────────────────────────── */
.site-footer {
    background: #6d5141;
    color: var(--white);
    border-top: 1px solid rgba(181, 181, 190, 0.15);
}

.footer-inner {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 0 46px;
}

/* Nav row */
.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 56px 0 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.44);
}

.footer-nav-left {
    display: flex;
    gap: 80px;
}

.footer-col {
    min-width: 120px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.069em;
    color: #ffffff;
    margin: 0 0 22px;
    text-transform: uppercase;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer li a {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.site-footer li a:hover {
    opacity: 0.7;
}

/* Bottom row */
.footer-bottom {
    padding: 28px 0 30px;
    text-align: center;
}

.footer-logo {
    display: block;
    width: 150px;
    margin: 0 auto 10px;
}

.footer-bottom small {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
}

.footer-bottom small sup {
    font-size: 9px;
    vertical-align: super;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    .reveal-on-scroll.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 980px) {
    .body-overlay {
        display: none;
    }

    .top-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .home-body {
        padding-top: 84px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sanctums-track {
        gap: 14px;
    }

    .sanctums-arrow {
        background: transparent;
        color: #fff;
    }

    .sanctums-arrow:hover {
        background: transparent;
        color: #fff;
    }

    .sanctum-card {
        height: 420px;
        flex: 0 0 100%;
    }

    .circle-section {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .origin-shell h1 {
        font-size: 36px;
    }

    .origin-origins {
        margin-top: 54px;
        padding: 68px 24px 66px;
    }

    .origin-origins h2 {
        margin-bottom: 44px;
    }

    .origin-origins-grid {
        gap: 28px;
    }

    .origin-origins-card span {
        margin-top: 28px;
    }

    .circle-art {
        max-width: 340px;
        justify-self: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 40px;
    }

    .footer-nav-left {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-inner {
        padding: 0 24px;
    }
}

@media (max-width: 640px) {
    .header-inner {
        padding: 12px 16px;
    }

    .mobile-menu-toggle {
        left: 16px;
    }

    .bag-btn {
        right: 16px;
    }

    .hero-content {
        justify-content: center;
        padding: 0 24px;
        min-height: 100svh;
    }

    .hero-kicker {
        font-size: clamp(9px, 3.2vw, 14px);
        white-space: nowrap;
    }

    .hero h1 {
        font-size: clamp(16px, 6.5vw, 28px);
        white-space: nowrap;
    }

    /* Remove all home-body padding on mobile — sections handle own spacing */
    .home-body {
        padding: 0;
    }

    /* Origin image card: contained, not full-bleed */
    .feature-wide .feature-card {
        min-height: 248px;
        width: calc(100% - 30px);
        margin: 0 auto;
    }

    /* Feature grid cards (Refinage + Elements): full-height, full-bleed */
    .feature-grid .feature-card {
        min-height: 547px;
    }

    .origin-origins {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .origin-origins h2 {
        font-size: 30px;
        margin-bottom: 32px;
    }

    .origin-origins-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .origin-origins-card span {
        margin-top: 22px;
        letter-spacing: 0.15em;
    }

    .footer-inner {
        padding: 0 16px;
    }

    .footer-nav-left {
        flex-direction: column;
        gap: 32px;
    }

    /* ── Mobile: Origin section ──────────────────────────────── */
    #origin {
        background: #fff;
        max-width: 100%;
        margin: 0;
        padding: 30px 0 52px;
    }

    /* Hide desktop overlay text on mobile */
    #origin .feature-overlay,
    #origin .feature-content {
        display: none;
    }

    /* Keep warm filter but skip hover scale */
    #origin .feature-card img {
        transition: none;
    }

    /* Show mobile text block */
    .mob-origin-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 24px 0;
        gap: 10px;
    }

    /* ── Mobile: Rituals section (Refinage + Elements) ─────── */
    #rituals {
        max-width: 100%;
        margin: 0;
        gap: 0;
    }

    /* Center feature-content vertically for full-height cards */
    .feature-grid .feature-content {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }

    /* ── Mobile: Sanctums section ───────────────────────────── */
    .sanctums {
        max-width: 100%;
        margin: 0;
        padding: 0 16px 56px;
    }

    .section-header {
        padding-top: 48px;
        margin-bottom: 28px;
    }

    .section-header h2 {
        font-family: var(--font-sans);
        font-size: 24px;
        font-weight: 300;
        letter-spacing: 0.1em;
        margin-bottom: 0;
    }

    /* Hide the sanctums subtitle on mobile */
    .section-header p {
        display: none;
    }

    /* Sanctum cards: nearly full-width on mobile */
    .sanctum-card {
        height: 399px;
        flex: 0 0 calc(100% - 2px);
    }

    /* ── Mobile: Circle section ─────────────────────────────── */
    .circle-section {
        display: flex;
        flex-direction: column;
        align-items: stretch;   /* override desktop grid's align-items: center */
        max-width: 100%;
        margin: 0;
        /* No side padding — handled per-child so art can be full-bleed */
        padding: 48px 0 64px;
        gap: 0;
    }

    /* Text block gets its own 16px side padding (matches Figma left: 16px) */
    .circle-copy {
        width: 100%;
        text-align: left;
        padding: 0 16px;
    }

    /* Circle art: full-width × 325px, mandala right-half bleeds off edge */
    .circle-art {
        display: block;
        width: 100%;
        max-width: 100%;
        justify-self: unset;
        height: auto;
        overflow: visible;
        position: static;
        margin-top: 24px;
        margin-bottom: 40px;
        flex-shrink: 0;
    }

    .circle-art img {
        position: static;
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block;
    }

    /* Hide desktop accordion on mobile */
    .circle-accordion--desktop {
        display: none;
    }

    .circle-copy h2 {
        font-family: var(--font-sans);
        font-size: 24px;
        font-weight: 300;
        letter-spacing: 0.1em;
        margin-bottom: 16px;
    }

    .circle-copy p {
        font-size: 14px;
        letter-spacing: 3.6px;
        line-height: 2.86;
        text-transform: uppercase;
        margin-bottom: 0;
        color: #454545;
    }

    /* ── Mobile-only button container ── */
    .mob-circle-cta {
        display: flex;
        flex-direction: column;
        max-width: 317px;
        width: calc(100% - 76px);
        margin: 0 auto;
        gap: 26px;
        padding: 0;
    }

    /* FILLED button (INQUIRE CONCIERGE) — Figma node 268:2869 */
    .circle-item--filled {
        position: relative;
        display: flex;
        align-items: center;
        background: #88735e;
        border: 1px solid #a17c5e;
        /* White hairlines inside top & bottom, matching Figma border-white */
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -1px 0 rgba(255,255,255,0.45);
        color: #fff;
        text-align: left;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        padding: 20px 24px;
        width: 100%;
        cursor: pointer;
        border-radius: 0;
    }

    /* OUTLINED button (DISCOVER SANCTUMS) — Figma node 268:2875 */
    .circle-item--outline {
        position: relative;
        display: flex;
        align-items: center;
        background: transparent;
        border: 1px solid #a17c5e;
        color: #000;
        text-align: left;
        font-size: 12px;
        font-weight: 300;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        padding: 20px 24px;
        width: 100%;
        cursor: pointer;
        border-radius: 0;
    }

    /* Cross / "+" icon — positioned absolute right */
    .circle-btn-icon {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        flex-shrink: 0;
    }
}

/* Legacy Page (scoped) */
.legacy-page {
    background: #fff;
}

.legacy-page .legacy {
    background: #fff;
    color: #2e2e2e;
}

.legacy-page .legacy-header {
    position: relative;
    margin-bottom: 120px;
}

.legacy-page .legacy-header-image {
    height: min(430px, 45vw);
    overflow: hidden;
}

.legacy-page .legacy-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legacy-page .legacy-header-card {
    width: min(510px, calc(100% - 32px));
    margin: -42px auto 0;
    background: #fff;
    text-align: center;
    padding: 30px 20px 22px;
    position: relative;
    z-index: 2;
}

.legacy-page .legacy-header-card h1 {
    font-family: var(--font-sans);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.legacy-page .legacy-header-card p {
    font-size: 14px;
    letter-spacing: 0.26em;
    line-height: 1.8;
    text-transform: uppercase;
}

.legacy-page .legacy-intro {
    max-width: var(--home-shell-width);
    margin: 0 auto 140px;
    padding: 0 24px;
    text-align: center;
}

.legacy-page .legacy-intro p {
    max-width: 1040px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.03em;
}

.legacy-page .legacy-timeline {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 0 24px 120px;
    display: grid;
    gap: 96px;
}

.legacy-page .legacy-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 44px;
}

.legacy-page .legacy-media img {
    width: 100%;
    height: auto;
}

.legacy-page .legacy-media-caption span:not(.legacy-play-btn) {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ── Video play button overlay ── */
.legacy-page .legacy-video-trigger {
    position: relative;
    display: block;
    text-decoration: none;
}

.legacy-page .legacy-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.18);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.legacy-page .legacy-play-btn svg {
    display: block;
}

.legacy-page .legacy-video-trigger:hover .legacy-play-btn {
    background: rgba(0, 0, 0, 0.42);
    border-color: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.08);
}

.legacy-page .legacy-copy h2 {
    font-family: var(--font-sans);
    font-size: 29px;
    font-weight: 300;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.legacy-page .legacy-copy p {
    font-size: 13px;
    line-height: 1.95;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.legacy-page .legacy-copy a {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border-bottom: 1px solid rgba(46, 46, 46, 0.4);
    padding-bottom: 2px;
}

.legacy-page .legacy-copy a:hover {
    border-bottom-color: rgba(46, 46, 46, 0.95);
}

.legacy-page .legacy-origins {
    background: #fff;
    padding: 80px 24px 76px;
}

.legacy-page .legacy-origins h2 {
    font-family: var(--font-sans);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-align: center;
    margin: 0 0 56px;
}

.legacy-page .legacy-origins-grid {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
}

.legacy-page .legacy-origins-card a {
    display: block;
    color: inherit;
    text-align: center;
}

.legacy-origins-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 600 / 353;
}

.legacy-origins-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.legacy-origins-card--gara .legacy-origins-card-img img {
    position: absolute;
    width: 183.85%;
    height: auto;
    left: -83.78%;
    top: -39.97%;
    max-width: none;
}

.legacy-page .legacy-origins-card span {
    display: inline-block;
    margin-top: 40px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(46, 46, 46, 0.5);
    padding-bottom: 4px;
}

.legacy-page .legacy-origins-card a:hover span {
    border-bottom-color: rgba(46, 46, 46, 0.95);
}

@media (max-width: 980px) {
    .legacy-page .legacy-header {
        margin-bottom: 72px;
    }

    .legacy-page .legacy-header-image {
        height: 300px;
    }

    .legacy-page .legacy-intro {
        margin-bottom: 86px;
    }

    .legacy-page .legacy-timeline {
        gap: 72px;
        padding-bottom: 84px;
    }

    .legacy-page .legacy-row,
    .legacy-page .legacy-row.legacy-row-reverse {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .legacy-page .legacy-row.legacy-row-reverse .legacy-media {
        order: -1;
    }

    .legacy-page .legacy-copy h2 {
        font-size: 29px;
    }

    .legacy-page .legacy-origins {
        padding: 68px 24px 66px;
    }

    .legacy-page .legacy-origins h2 {
        margin-bottom: 44px;
    }

    .legacy-page .legacy-origins-grid {
        gap: 28px;
    }

    .legacy-page .legacy-origins-card span {
        margin-top: 28px;
    }
}

@media (max-width: 640px) {
    .legacy-page .legacy-header-image {
        height: 240px;
    }

    .legacy-page .legacy-header-card h1 {
        font-size: 30px;
    }

    .legacy-page .legacy-header-card p {
        font-size: 12px;
    }

    .legacy-page .legacy-intro p,
    .legacy-page .legacy-copy p {
        font-size: 12px;
    }

    .legacy-page .legacy-copy h2 {
        font-size: 29px;
    }

    .legacy-page .legacy-origins {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .legacy-page .legacy-origins h2 {
        font-size: 30px;
        margin-bottom: 32px;
    }

    .legacy-page .legacy-origins-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .legacy-page .legacy-origins-card span {
        margin-top: 22px;
        letter-spacing: 0.15em;
    }
}

/* The Legend of Gara Page (scoped) */
.legend-gara-page .legend-gara {
    background: #fff;
    color: #2e2e2e;
    padding: 0 0 86px;
}

.legend-gara-page .lg-hero {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 0 120px;
}

.legend-gara-page .lg-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.legend-gara-page .lg-hero-card {
    position: relative;
    margin: -52px auto 0;
    z-index: 2;
    background: #ffffff;
    width: min(620px, calc(100% - 48px));
    text-align: center;
    padding: 28px 20px 24px;
}

.legend-gara-page .lg-hero-card h1 {
    font-family: var(--font-sans);
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.legend-gara-page .lg-hero-card p {
    font-size: 12px;
    letter-spacing: 0.06em;
}

.legend-gara-page .lg-story {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    gap: 104px;
}

.legend-gara-page .lg-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.legend-gara-page .lg-media img {
    width: 100%;
    height: auto;
    display: block;
}

.legend-gara-page .lg-copy h2 {
    font-family: var(--font-sans);
    font-size: 29px;
    font-weight: 300;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.legend-gara-page .lg-copy p {
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.legend-gara-page .lg-quote {
    max-width: var(--home-shell-width);
    margin: 100px auto 110px;
    padding: 0 24px;
}

.legend-gara-page .lg-quote p {
    margin: 0 0 52px;
    font-family: var(--font-sans);
    font-size: clamp(18px, 2.2vw, 28px);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.75;
    text-transform: uppercase;
}

.legend-gara-page .lg-quote span {
    display: block;
    text-align: right;
    font-family: var(--font-sans);
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.legend-gara-page .lg-origins {
    padding: 0 24px;
}

.legend-gara-page .lg-origins h2 {
    font-family: var(--font-sans);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-align: center;
    margin: 0 0 56px;
}

.legend-gara-page .lg-origins-grid {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
}

.legend-gara-page .lg-origins-card a {
    display: block;
    color: inherit;
    text-align: center;
}

.legend-gara-page .lg-origins-card img {
    width: 100%;
    height: auto;
    display: block;
}

.legend-gara-page .lg-origins-card span {
    display: inline-block;
    margin-top: 40px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(46, 46, 46, 0.5);
    padding-bottom: 4px;
}

.legend-gara-page .lg-origins-card a:hover span {
    border-bottom-color: rgba(46, 46, 46, 0.95);
}

@media (max-width: 980px) {
    .legend-gara-page .legend-gara {
        padding-top: 118px;
    }

    .legend-gara-page .lg-hero {
        margin-bottom: 76px;
    }

    .legend-gara-page .lg-hero-card {
        margin: -36px auto 0;
    }

    .legend-gara-page .lg-story {
        gap: 74px;
    }

    .legend-gara-page .lg-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .legend-gara-page .lg-copy h2 {
        font-size: 30px;
    }

    .legend-gara-page .lg-quote {
        margin: 76px auto 84px;
    }

    .legend-gara-page .lg-quote span {
        font-size: 34px;
    }

    .legend-gara-page .lg-origins h2 {
        margin-bottom: 44px;
    }

    .legend-gara-page .lg-origins-grid {
        gap: 28px;
    }

    .legend-gara-page .lg-origins-card span {
        margin-top: 28px;
    }
}

@media (max-width: 640px) {
    .legend-gara-page .legend-gara {
        padding-top: 102px;
        padding-bottom: 62px;
    }

    .legend-gara-page .lg-hero {
        margin-bottom: 56px;
    }

    .legend-gara-page .lg-hero-card {
        width: calc(100% - 32px);
        padding: 20px 16px 18px;
    }

    .legend-gara-page .lg-hero-card h1 {
        font-size: 26px;
    }

    .legend-gara-page .lg-hero-card p,
    .legend-gara-page .lg-copy p {
        font-size: 12px;
    }

    .legend-gara-page .lg-story {
        padding: 0 16px;
        gap: 58px;
    }

    .legend-gara-page .lg-copy h2 {
        font-size: 24px;
    }

    .legend-gara-page .lg-quote {
        padding: 0 16px;
        margin: 60px auto 70px;
    }

    .legend-gara-page .lg-quote p {
        font-size: 16px;
        margin-bottom: 36px;
    }

    .legend-gara-page .lg-quote span {
        font-size: 13px;
    }

    .legend-gara-page .lg-origins {
        padding: 0 16px;
    }

    .legend-gara-page .lg-origins h2 {
        font-size: 30px;
        margin-bottom: 32px;
    }

    .legend-gara-page .lg-origins-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .legend-gara-page .lg-origins-card span {
        margin-top: 22px;
        letter-spacing: 0.15em;
    }
}

/* ============================================
   RITUAL OF RETURN PAGE (SCOPED)
   ============================================ */

.ror-page {
    background: #ffffff;
    color: #454545;
}

.ror-page .container {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 0 80px;
}

.ror-page .section {
    padding: 120px 0;
}

.ror-page em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
}

.ror-page h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.9vw, 3.5rem);
    line-height: 1.15;
    font-weight: 300;
    color: #2c1f14;
}

.ror-page .section-label,
.ror-page .section-label-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c4956a;
}

.ror-page .section-label::before,
.ror-page .section-label-small::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}

.ror-page .section-label {
    margin-bottom: 20px;
}

.ror-page .section-label-small {
    margin-bottom: 16px;
}

.ror-page .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.ror-page .section-header .section-label-small {
    justify-content: center;
}

.ror-page .section-header .section-label-small::before {
    display: none;
}

.ror-page .section-header h2 {
    margin-bottom: 20px;
}

.ror-page .section-intro {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #6b4e35;
    line-height: 1.9;
    text-transform: none;
    letter-spacing: normal;
}

.ror-page .section-line {
    width: 30px;
    height: 1px;
    background: #c4956a;
    margin: 0 auto 24px;
}

.ror-page .btn {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 0;
    text-align: center;
    transition: all 0.4s ease;
}

.ror-page .btn-primary {
    background: #a17c5e;
    color: #ffffff;
    border: 1px solid #a17c5e;
}

.ror-page .btn-primary:hover {
    background: #6b5744;
    border-color: #6b5744;
}

.ror-page .btn-outline {
    background: transparent;
    color: #2c1f14;
    border: 1px solid #d8cbbb;
}

.ror-page .btn-outline:hover {
    background: #2c1f14;
    color: #ffffff;
    border-color: #2c1f14;
}

.ror-page .btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 1);
}

.ror-page .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.ror-page #hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
}

.ror-page .hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ror-page .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ror-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(17, 16, 9, 0.72) 0%,
        rgba(17, 16, 9, 0.18) 60%,
        rgba(17, 16, 9, 0.08) 100%
    );
    z-index: 1;
}

.ror-page .hero-content {
    position: absolute;
    bottom: 120px;
    left: 72px;
    z-index: 2;
    color: #ffffff;
    max-width: 650px;
    align-items: flex-start;
    text-align: left;
    padding: 0;
}

.ror-page .hero-tag {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 28px;
}

.ror-page .hero-tag-line {
    display: block;
    width: 32px;
    height: 1px;
    background: #b8945a;
}

.ror-page .hero-tag-text {
    font-family: 'Raleway', sans-serif;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: #d4ae7a;
}

.ror-page .hero-content h1 {
    color: #fefcf8;
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 5.2vw, 100px);
    line-height: 0.92;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-align: left;
}

.ror-page .hero-content h1 em {
    color: #fefcf8;
}

.ror-page .hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fdfaf6;
    margin-bottom: 28px;
    max-width: 574px;
    line-height: 1.46;
}

.ror-page .hero-cta {
    width: 498px;
    max-width: 100%;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ror-page .hero-scroll {
    position: absolute;
    bottom: 89px;
    right: 74px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.ror-page .hero-scroll span {
    font-family: 'Raleway', sans-serif;
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.ror-page .scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(184, 148, 90, 0), #b8945a);
    position: relative;
    overflow: hidden;
}

.ror-page .scroll-line::after {
    display: none;
}

.ror-page .hero-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(237, 217, 192, 0) 0%, #edd9c0 25%, #c4956a 50%, #edd9c0 75%, rgba(237, 217, 192, 0) 100%);
}

.ror-page #ritual-return {
    padding: 140px 0;
    text-align: center;
}

.ror-page .ritual-return-content {
    max-width: 980px;
    margin: 0 auto;
}

.ror-page .section-icon {
    margin-bottom: 40px;
}

.ror-page .ritual-return-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.2vw, 2.875rem);
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.3;
    color: #111009;
    letter-spacing: 0;
}

.ror-page .ritual-return-content h2 em {
    font-style: normal;
    color: #BEA882;
}

.ror-page .ritual-return-content p {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #8B8480;
    line-height: 1.9;
    max-width: 520px;
    margin: 0 auto;
}

.ror-page .ritual-return-content p strong {
    font-weight: 400;
    color: #8B8480;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ror-page .section-source {
    padding-bottom: 0;
}

.ror-page .source-image-wrap {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.ror-page .source-image {
    width: 100%;
    height: 100%;
}

.ror-page .source-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark gradient overlay — covers bottom-left where content sits */
.ror-page .source-overlay-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(10, 8, 5, 0.72) 0%,
        rgba(10, 8, 5, 0.45) 45%,
        rgba(10, 8, 5, 0.05) 75%,
        transparent 100%
    );
}

/* All content overlaid on the image */
.ror-page .source-image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 44%;
    min-width: 480px;
    padding: 0 0 60px 80px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Label: THE SOURCE · KARAKUM DESERT */
.ror-page .source-location {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #BEA882;
    margin-bottom: 18px;
}

/* H2 */
.ror-page .source-image-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.07;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.96);
    margin: 0 0 24px 0;
}

.ror-page .source-image-content h2 em {
    font-style: normal;
    color: #BEA882;
}

/* Body paragraph */
.ror-page .source-image-content > p {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.98);
    margin: 0;
    padding-top: 4px;
}

/* Stats */
.ror-page .source-stats {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.95);
}

.ror-page .stat {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 24px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.ror-page .stat-label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.69);
    min-width: 110px;
    flex-shrink: 0;
}

.ror-page .stat-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.5;
}

.ror-page #experience {
    background: #ffffff;
}

.ror-page .journey-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(109, 81, 65, 0.18);
    max-width: 480px;
    margin: 0 auto 60px;
}

.ror-page .journey-tab {
    flex: 1;
    padding: 14px 20px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #6b4e35;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    cursor: pointer;
    text-transform: uppercase;
}

.ror-page .journey-tab.active {
    background: #6d5141;
    color: #ffffff;
    border-color: #6d5141;
}

.ror-page .journey-tab:hover:not(.active) {
    border-color: #6d5141;
}

.ror-page .journey-panel {
    display: none;
}

.ror-page .journey-panel.active {
    display: block;
}

.ror-page .journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(109, 81, 65, 0.15);
    border: 1px solid rgba(109, 81, 65, 0.15);
}

.ror-page .step {
    background: #ffffff;
    padding: 40px 32px;
}

.ror-page .step-icon {
    margin-bottom: 20px;
    opacity: 0.7;
}

.ror-page .step-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    color: #c4956a;
    text-align: right;
    margin-bottom: 12px;
}

.ror-page .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 8px;
    color: #2c1f14;
}

.ror-page .step-duration {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 300;
    color: rgba(196, 149, 106, 0.9);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ror-page .step p {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #6b4e35;
    line-height: 1.9;
}

.ror-page .section-program {
    background: #6d5141;
    color: #ffffff;
    overflow: hidden;
}

.ror-page .program-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.ror-page .program-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.ror-page .day-card {
    padding: 32px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: none;
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: none;
    position: relative;
}

.ror-page .day-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.ror-page .day-card.mud::after {
    background: rgba(255, 255, 255, 0.5);
    height: 2px;
}

.ror-page .day-card.mud {
    background: rgba(30, 12, 4, 0.52);
}

.ror-page .day-card.salt {
    background: transparent;
}

.ror-page .day-card:hover {
    background: #261c0c;
}

.ror-page .day-label {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    color: rgba(237, 217, 192, 0.9);
    margin-bottom: 28px;
}

.ror-page .day-treatment {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: auto;
}

.ror-page .day-duration {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 300;
    color: rgba(237, 217, 192, 0.9);
    letter-spacing: 1px;
    margin-top: 24px;
}

.ror-page .program-info .section-label {
    color: rgba(255, 255, 255, 0.7);
    justify-content: flex-start;
}

.ror-page .program-info .section-label::before {
    background: #ffffff;
}

.ror-page .program-info h2 {
    color: #f5efe6;
    margin-bottom: 24px;
    font-size: clamp(1.8rem, 3.9vw, 3.5rem);
    line-height: 1.15;
}

.ror-page .program-info h2 em {
    color: #ffffff;
}

.ror-page .program-info p {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #edd9c0;
    line-height: 1.9;
}

.ror-page .section-mechanisms {
    background: #ffffff;
    color: #2c1f14;
}

.ror-page .mechanisms-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.ror-page .mechanisms-header h2 {
    color: #2c1f14;
    margin-bottom: 0;
}

.ror-page .mechanisms-intro {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #6b4e35;
    line-height: 1.9;
    padding-top: 8px;
}

.ror-page .mech-slider-outer {
    position: relative;
    overflow: hidden;
}

.ror-page .mech-slider-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
}

.ror-page .mech-spacer {
    flex: 0 0 max(80px, calc((100vw - 1260px) / 2 + 80px));
}

.ror-page .mech-slider-track::-webkit-scrollbar {
    display: none;
}

.ror-page .mech-slider-track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.ror-page .mech-card {
    flex: 0 0 calc(20%);
    min-width: 220px;
    border: 1px solid rgba(109, 81, 65, 0.18);
    border-right: none;
    padding: 48px 32px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: background 0.35s ease;
}

.ror-page .mech-card:last-child {
    border-right: 1px solid rgba(109, 81, 65, 0.18);
}

.ror-page .mech-card:hover {
    background: #6d5141;
}

.ror-page .mech-card:hover .mech-symbol,
.ror-page .mech-card:hover .mech-name,
.ror-page .mech-card:hover .mech-desc {
    color: #ffffff;
}

.ror-page .mech-card:hover .mech-divider {
    background: rgba(255, 255, 255, 0.3);
}

.ror-page .mech-symbol {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    font-style: italic;
    color: #D4C2A8;
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.35s ease;
}

.ror-page .mech-divider {
    width: 100%;
    height: 1px;
    background: rgba(109, 81, 65, 0.18);
    margin-bottom: 20px;
    transition: background 0.35s ease;
}

.ror-page .mech-name {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6b4e35;
    margin-bottom: 16px;
    transition: color 0.35s ease;
}

.ror-page .mech-desc {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #6b4e35;
    line-height: 1.85;
    margin: 0;
    transition: color 0.35s ease;
}

.ror-page .mech-arrow {
    display: none;
}


.ror-page .mech-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 24px;
}

.ror-page .mech-dot {
    height: 4px;
    border-radius: 2px;
    background: #d4c4b0;
    transition: width 0.35s ease, background 0.35s ease;
    width: 8px;
    cursor: pointer;
}

.ror-page .mech-dot.is-active {
    width: 28px;
    background: #a8895c;
}

.ror-page .benefits-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.ror-page .benefits-header .section-label-small {
    justify-content: flex-start;
}

.ror-page .benefits-header h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    margin-bottom: 0;
}

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

.ror-page .benefit-card {
    background: #f5efe6;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    border-radius: 0;
}

.ror-page .benefit-numeral {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-style: italic;
    font-weight: 300;
    color: #c4956a;
    line-height: 1;
    margin-bottom: 28px;
}

.ror-page .benefit-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #2c1f14;
}

.ror-page .benefit-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: #6b4e35;
    margin-bottom: 16px;
    line-height: 1.6;
}

.ror-page .benefit-card > p:not(.benefit-quote) {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #6b4e35;
    line-height: 1.9;
    margin-bottom: 0;
    flex-grow: 1;
}

.ror-page .benefit-timeline {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: #c4956a;
    font-style: italic;
    border-top: 1px solid rgba(196, 149, 106, 0.3);
    padding-top: 20px;
    margin-top: 28px;
}

.ror-page .pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.ror-page .pricing-header .section-label-small {
    justify-content: center;
}

.ror-page .pricing-header-line {
    width: 30px;
    height: 1px;
    background: #c4956a;
    margin: 0 auto 20px;
}

.ror-page .pricing-header h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    margin-bottom: 0;
}

/* ── Pricing grid — exact Figma values ─────────────────── */
.ror-page #pricing .container {
    max-width: 1576px; /* 3 × 524px + 2px gaps */
    padding: 0 40px;
}

.ror-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #a17c5e; /* 1px separator colour */
    border: 1px solid #a17c5e;
    align-items: stretch;
}

.ror-page .pricing-card {
    padding: 51px 43px 40px;
    text-align: left;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    border: none;
}

.ror-page .pricing-card:last-child {
    background: #fdfaf6;
}

.ror-page .pricing-card-inner {
    flex-grow: 1;
}

.ror-page .pricing-card.featured {
    background: #6d5141;
    color: #ffffff;
    min-height: 441px;
}

/* Badge label */
.ror-page .pricing-label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: #4a4540;
    margin-bottom: 24px;
}

.ror-page .pricing-card.featured .pricing-label {
    font-weight: 800;
    color: #d4ae7a;
}

/* Card title */
.ror-page .pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
    color: #a17c5e;
    margin-bottom: 4px;
}

.ror-page .pricing-card.featured h3 {
    color: #fefcf8;
}

/* Tagline / subtitle */
.ror-page .pricing-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    color: #8a847c;
    margin-bottom: 23px;
}

.ror-page .pricing-card.featured .pricing-tagline {
    color: rgba(253, 250, 246, 0.87);
}

/* Invite Only / access line */
.ror-page .pricing-access {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    color: #454545;
    margin-bottom: 24px;
}

.ror-page .pricing-card.featured .pricing-access {
    color: rgba(253, 250, 246, 0.87);
}

/* Price */
.ror-page .pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    color: #8a847c;
    margin-bottom: 24px;
}

.ror-page .pricing-card.featured .pricing-price {
    color: rgba(253, 250, 246, 0.87);
}

.ror-page .pricing-price span {
    font-size: 13px;
    font-weight: 400;
}

/* Feature list */
.ror-page .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex-grow: 1;
}

.ror-page .pricing-features li {
    font-family: 'Raleway', sans-serif;
    font-size: 11.5px;
    font-weight: 300;
    line-height: 25.3px;
    color: #4a4540;
    padding-left: 14px;
    position: relative;
}

.ror-page .pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.7);
}

.ror-page .pricing-features li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    line-height: 22px;
    color: #ebd9b8;
}

.ror-page .pricing-card.featured .pricing-features li::before {
    color: rgba(235, 217, 184, 0.45);
}

/* CTA button */
.ror-page .pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 14px;
    background: transparent;
    border: 1px solid rgba(17, 16, 9, 0.14);
    color: #4a4540;
    font-family: 'Raleway', sans-serif;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 1.98px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.ror-page .pricing-card .btn:hover {
    background: rgba(17, 16, 9, 0.06);
    border-color: rgba(17, 16, 9, 0.3);
}

.ror-page .pricing-card.featured .btn {
    border-color: rgba(253, 250, 246, 0.18);
    color: #ffffff;
}

.ror-page .pricing-card.featured .btn:hover {
    background: rgba(253, 250, 246, 0.08);
    border-color: rgba(253, 250, 246, 0.4);
}

.ror-page .sanctums-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.ror-page .sanctums-header .section-label-small {
    justify-content: center;
}

.ror-page .sanctums-header-line {
    width: 30px;
    height: 1px;
    background: #c4956a;
    margin: 0 auto 20px;
}

.ror-page .sanctums-header h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    margin-bottom: 0;
}

.ror-page .sanctums-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.ror-page .sanctum-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 520px;
    min-height: 0;
}

.ror-page .sanctum-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.ror-page .sanctum-card:hover > img {
    transform: scale(1.03);
}

.ror-page .sanctum-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 14, 8, 0.7) 0%, rgba(20, 14, 8, 0.3) 40%, rgba(20, 14, 8, 0.05) 100%);
    z-index: 1;
}

.ror-page .sanctum-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
    color: #ffffff;
}

.ror-page .sanctum-area {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.ror-page .sanctum-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #ffffff;
}

.ror-page .sanctum-content p {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    line-height: 1.7;
    letter-spacing: 0;
}

.ror-page .btn-sanctum {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: transparent;
    transition: all 0.4s ease;
}

.ror-page .btn-sanctum:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
}

.ror-page .products-header {
    display: flex;
    align-items: stretch;
    gap: 80px;
    margin-bottom: 60px;
}

.ror-page .products-header-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ror-page .products-header-left .section-label {
    margin-bottom: 0;
}

.ror-page .products-header-left h2 {
    margin-bottom: 0;
}

.ror-page .products-header-left h2 em {
    color: #8b6147;
}

.ror-page .products-header-right {
    flex: 1;
}

.ror-page .products-header-right p {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #6b4e35;
    line-height: 1.9;
    margin: 0;
}

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

.ror-page .product-card {
    display: block;
    text-align: center;
    text-decoration: none;
}

.ror-page .product-image {
    height: 340px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.ror-page .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.ror-page .product-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    color: #4b4b4b;
    letter-spacing: 4.76px;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ror-page [data-animate] {
    opacity: 1;
    transform: none;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    50% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .ror-page .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ror-page .program-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ror-page .program-grid {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .ror-page .container {
        padding: 0 32px;
    }

    .ror-page .mech-spacer {
        flex: 0 0 32px;
    }

    .ror-page .source-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ror-page .mechanisms-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ror-page .journey-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .ror-page .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        gap: 1px;
    }

    .ror-page .pricing-card {
        padding: 44px 36px 40px;
        min-height: auto;
    }

    .ror-page .pricing-card.featured {
        min-height: auto;
    }

    .ror-page .sanctums-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .ror-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ror-page .section {
        padding: 60px 0;
    }

    .ror-page .hero-content {
        bottom: 100px;
        left: 32px;
        right: 32px;
    }

    .ror-page .hero-scroll {
        display: none;
    }

    .ror-page .source-image-wrap {
        height: 50vh;
    }

    .ror-page .source-image-text {
        left: 32px;
        bottom: 40px;
    }

    .ror-page .journey-steps {
        grid-template-columns: 1fr;
    }

    .ror-page .journey-tabs {
        flex-direction: column;
    }

    .ror-page .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ror-page .mechanisms-tabs {
        flex-wrap: wrap;
    }

    .ror-page .mech-tab {
        min-width: 0;
        flex: 0 0 calc(33.333% - 0px);
    }

    .ror-page .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ror-page .container {
        padding: 0 20px;
    }

    .ror-page .mech-spacer {
        flex: 0 0 20px;
    }

    .ror-page .hero-content {
        bottom: 80px;
        left: 20px;
        right: 20px;
    }

    .ror-page .program-grid {
        grid-template-columns: 1fr;
    }

    .ror-page .products-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .ror-page .mech-card {
        flex: 0 0 280px;
    }

    .ror-page .mech-dots {
        display: flex;
    }

    .ror-page .source-image-content > p,
    .ror-page .source-stats {
        display: none;
    }

    .ror-page .source-image-content {
        width: 100%;
        min-width: 0;
        padding: 0 24px 48px;
        align-items: center;
    }

    .ror-page .source-image-content h2 {
        text-align: center;
    }

    .ror-page .source-location {
        text-align: center;
    }
}

/* The Sources Page (scoped) */
.the-sources-page .the-sources {
    background: #ffffff;
    color: #333333;
    padding-bottom: 0;
}

.the-sources-page .sources-hero {
    padding-top: 82px;
    position: relative;
}

.the-sources-page .sources-hero-image img {
    width: 100%;
    height: auto;
}

.the-sources-page .sources-hero-card {
    width: min(580px, calc(100% - 48px));
    margin: -52px auto 0;
    background: #ffffff;
    text-align: center;
    padding: 24px 20px 20px;
    position: relative;
    z-index: 2;
}

.the-sources-page .sources-hero-card h1 {
    font-family: var(--font-sans);
    font-size: clamp(34px, 4.2vw, 50px);
    font-weight: 300;
    letter-spacing: 0.11em;
    line-height: 1.18;
}

.the-sources-page .sources-intro {
    max-width: 980px;
    margin: 52px auto 0;
    padding: 0 24px;
    text-align: center;
}

.the-sources-page .sources-intro p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.the-sources-page .sources-block {
    max-width: var(--home-shell-width);
    margin: 86px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: end;
}

.the-sources-page .sources-block-copy h2 {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

.the-sources-page .sources-block-copy p {
    font-size: 13px;
    line-height: 1.82;
    letter-spacing: 0.02em;
}

.the-sources-page .sources-block-copy p + p {
    margin-top: 14px;
}

.the-sources-page .sources-thumb-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 520px;
}

.the-sources-page .sources-thumb-btn {
    display: block;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    overflow: hidden;
}

.the-sources-page .sources-thumb-btn img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.the-sources-page .sources-thumb-btn:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.sources-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.88);
    align-items: center;
    justify-content: center;
}

.sources-lightbox.is-open {
    display: flex;
}

.sources-lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}

.sources-lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.2s;
    padding: 4px 8px;
}

.sources-lightbox-close:hover {
    opacity: 1;
}

.the-sources-page .sources-consensus {
    max-width: var(--home-shell-width);
    margin: 120px auto 0;
    padding: 0 24px;
    text-align: center;
}

.the-sources-page .sources-consensus h2 {
    font-family: var(--font-sans);
    font-size: clamp(33px, 3.2vw, 44px);
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.the-sources-page .sources-consensus p {
    font-size: 15px;
    letter-spacing: 0.03em;
    margin-bottom: 48px;
}

.the-sources-page .sources-consensus-media img {
    width: 100%;
    height: auto;
}

.the-sources-page .sources-origins {
    margin-top: 96px;
    background: #fff;
    padding: 80px 24px 76px;
}

.the-sources-page .sources-origins h2 {
    font-family: var(--font-sans);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-align: center;
    margin: 0 0 56px;
}

.the-sources-page .sources-origins-grid {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
}

.the-sources-page .sources-origins-card a {
    display: block;
    color: inherit;
    text-align: center;
}

.the-sources-page .sources-origins-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.the-sources-page .sources-origins-card span {
    display: inline-block;
    margin-top: 40px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(46, 46, 46, 0.5);
    padding-bottom: 4px;
}

.the-sources-page .sources-origins-card a:hover span {
    border-bottom-color: rgba(46, 46, 46, 0.95);
}

@media (max-width: 980px) {
    .the-sources-page .sources-hero-card {
        margin-top: -40px;
    }

    .the-sources-page .sources-block {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 72px;
    }

    .the-sources-page .sources-block-lake .sources-block-media {
        order: 1;
    }

    .the-sources-page .sources-block-lake .sources-block-copy {
        order: 2;
    }

    .the-sources-page .sources-block-volcan .sources-block-copy {
        order: 2;
    }

    .the-sources-page .sources-block-volcan .sources-block-media {
        order: 1;
    }

    .the-sources-page .sources-thumb-grid {
        max-width: 100%;
    }

    .the-sources-page .sources-block-copy {
        display: flex;
        flex-direction: column;
    }

    .the-sources-page .sources-block-copy .sources-thumb-grid {
        order: -1;
        margin-top: 0;
        margin-bottom: 24px;
    }

    .the-sources-page .sources-consensus {
        margin-top: 88px;
    }

    .the-sources-page .sources-origins {
        margin-top: 74px;
        padding: 68px 24px 66px;
    }

    .the-sources-page .sources-origins h2 {
        margin-bottom: 44px;
    }

    .the-sources-page .sources-origins-grid {
        gap: 28px;
    }

    .the-sources-page .sources-origins-card span {
        margin-top: 28px;
    }
}

@media (max-width: 640px) {
    .the-sources-page .the-sources {
        padding-bottom: 54px;
    }

    .the-sources-page .sources-hero {
        padding-top: 72px;
    }

    .the-sources-page .sources-hero-card {
        width: calc(100% - 32px);
        margin-top: -28px;
        padding: 18px 14px 16px;
    }

    .the-sources-page .sources-hero-card h1 {
        font-size: 28px;
    }

    .the-sources-page .sources-intro {
        margin-top: 38px;
        padding: 0 16px;
    }

    .the-sources-page .sources-intro p {
        font-size: 12px;
    }

    .the-sources-page .sources-block {
        margin-top: 56px;
        padding: 0 16px;
        gap: 22px;
    }

    .the-sources-page .sources-block-copy h2 {
        font-size: 26px;
    }

    .the-sources-page .sources-block-copy p {
        font-size: 12px;
    }

    .the-sources-page .sources-thumb-grid {
        gap: 10px;
        margin-top: 18px;
    }

    .the-sources-page .sources-consensus {
        margin-top: 66px;
        padding: 0 16px;
    }

    .the-sources-page .sources-consensus h2 {
        font-size: 28px;
    }

    .the-sources-page .sources-consensus p {
        font-size: 12px;
        margin-bottom: 28px;
    }

    .the-sources-page .sources-origins {
        margin-top: 56px;
        padding: 56px 16px;
    }

    .the-sources-page .sources-origins h2 {
        font-size: 30px;
        margin-bottom: 32px;
    }

    .the-sources-page .sources-origins-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .the-sources-page .sources-origins-card span {
        margin-top: 22px;
        letter-spacing: 0.15em;
    }
}

/* The Elements of Return page */
.eor-page .eor-page-main {
    background: #ffffff;
    padding: 150px 24px 110px;
}

.eor-page .eor-page-hero {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.eor-page .eor-page-title {
    font-family: var(--font-sans);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 300;
    letter-spacing: 0.22em;
    color: #4d4d4d;
}

.eor-page .eor-page-intro {
    margin: 34px auto 0;
    max-width: 1058px;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 41px;
    letter-spacing: 0;
    text-align: center;
    color: #454545;
}

.eor-page .eor-page-sections {
    max-width: var(--home-shell-width);
    margin: 140px auto 0;
    display: grid;
    gap: 94px;
}

.eor-page .eor-page-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    align-items: center;
    gap: 84px;
}

.eor-page .eor-page-row.eor-page-row-reverse {
    grid-template-columns: minmax(340px, 430px) minmax(0, 1fr);
}

.eor-page .eor-page-row.eor-page-row-reverse .eor-page-media {
    order: 2;
}

.eor-page .eor-page-row.eor-page-row-reverse .eor-page-copy {
    order: 1;
}

.eor-page .eor-page-media img {
    width: 100%;
    height: auto;
}

.eor-page .eor-page-copy {
    text-align: center;
}

.eor-page .eor-page-copy h2 {
    font-family: var(--font-sans);
    font-size: clamp(30px, 3.1vw, 44px);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #55565d;
}

.eor-page .eor-page-copy p {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.7;
    color: #66676d;
}

.eor-page .eor-page-copy a {
    display: inline-block;
    margin-top: 26px;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: #4f5057;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.eor-page .eor-page-copy a:hover {
    border-bottom-color: currentColor;
}

@media (max-width: 980px) {
    .eor-page .eor-page-main {
        padding: 130px 20px 92px;
    }

    .eor-page .eor-page-intro {
        font-size: 15px;
    }

    .eor-page .eor-page-sections {
        margin-top: 102px;
        gap: 72px;
    }

    .eor-page .eor-page-row,
    .eor-page .eor-page-row.eor-page-row-reverse {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .eor-page .eor-page-row.eor-page-row-reverse .eor-page-media,
    .eor-page .eor-page-row.eor-page-row-reverse .eor-page-copy {
        order: initial;
    }

    .eor-page .eor-page-media {
        max-width: 760px;
        margin: 0 auto;
    }

    .eor-page .eor-page-copy {
        max-width: 760px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .eor-page .eor-page-main {
        padding: 118px 16px 72px;
    }

    .eor-page .eor-page-title {
        font-size: 25px;
        letter-spacing: 0.16em;
    }

    .eor-page .eor-page-intro {
        margin-top: 24px;
        font-size: 13px;
        line-height: 1.65;
    }

    .eor-page .eor-page-sections {
        margin-top: 72px;
        gap: 56px;
    }

    .eor-page .eor-page-copy h2 {
        font-size: 26px;
        letter-spacing: 0.14em;
    }

    .eor-page .eor-page-copy p {
        margin-top: 16px;
        font-size: 12px;
        line-height: 1.6;
    }

    .eor-page .eor-page-copy a {
        margin-top: 18px;
        font-size: 11px;
        letter-spacing: 0.14em;
    }
}

/* Elements of Return — Sanctums section */
.eor-sanctums {
    max-width: var(--home-shell-width);
    margin: 120px auto 0;
    padding: 0 0 0;
}

.eor-sanctums-header {
    text-align: center;
    margin-bottom: 40px;
}

.eor-sanctums-header h2 {
    font-family: var(--font-sans);
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 300;
    letter-spacing: 0.22em;
    color: #4d4d4d;
}

.eor-sanctums-header p {
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: #888;
}

.eor-sanctums-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.eor-sanctums-grid .sanctum-card {
    display: block;
    text-decoration: none;
    height: 520px;
}

.eor-sanctum-btn {
    display: inline-block;
    margin-top: 14px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 8px 22px;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--white);
    transition: background 0.25s ease;
}

.eor-sanctums-grid .sanctum-card:hover .eor-sanctum-btn {
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 700px) {
    .eor-sanctums {
        margin-top: 80px;
    }

    .eor-sanctums-grid {
        grid-template-columns: 1fr;
    }

    .eor-sanctums-grid .sanctum-card {
        height: 420px;
    }
}

/* Elements of Purification page */
.eop-page .eop-page-main {
    background: #ffffff;
    padding: 150px 24px 104px;
}

.eop-page .eop-page-hero {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.eop-page .eop-page-title {
    font-family: var(--font-sans);
    font-size: 33px;
    font-weight: 300;
    letter-spacing: 0.22em;
    color: #3f3f3f;
}

.eop-page .eop-page-intro {
    margin: 32px auto 0;
    max-width: 620px;
    font-size: 17px;
    line-height: 1.65;
    color: #555;
}

.eop-page .eop-page-products {
    max-width: 1134px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 3.3vw, 44px);
}

.eop-page .eop-page-products.eop-page-products-two {
    max-width: 774px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eop-page .eop-page-product-card {
    text-align: center;
}

.eop-page .eop-page-product-link {
    display: block;
    overflow: hidden;
}

.eop-page .eop-page-product-card img {
    display: block;
    width: 100%;
    max-width: 333px;
    height: auto;
    margin: 0 auto;
    transition: transform 0.45s ease;
}

.eop-page .eop-page-product-card:hover img {
    transform: scale(1.04);
}

.eop-page .eop-page-product-card h2 {
    margin-top: 30px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.22em;
    color: #4a4a4a;
}

.eop-page .eop-page-discover {
    max-width: var(--home-shell-width);
    margin: 170px auto 0;
    text-align: center;
}

.eop-page .eop-page-discover-title {
    font-family: var(--font-sans);
    font-size: 33px;
    font-weight: 300;
    letter-spacing: 0.17em;
    color: #3f3f3f;
}

.eop-page .eop-page-elements-grid {
    margin-top: 78px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.6vw, 34px);
}

.eop-page .eop-page-element-card a {
    display: block;
    text-decoration: none;
}

.eop-page .eop-page-element-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.eop-page .eop-page-element-card span {
    display: inline-block;
    margin-top: 24px;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #5a5a5a;
    border-bottom: 1px solid #9a9a9a;
    line-height: 1.5;
}

.eop-page .eop-page-element-card a:hover span {
    color: #000000;
    border-bottom-color: #000000;
}

@media (max-width: 980px) {
    .eop-page .eop-page-main {
        padding: 130px 20px 90px;
    }

    .eop-page .eop-page-intro {
        font-size: 15px;
    }

    .eop-page .eop-page-products {
        margin-top: 118px;
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .eop-page .eop-page-products.eop-page-products-two {
        max-width: 760px;
        grid-template-columns: 1fr;
    }

    .eop-page .eop-page-discover {
        margin-top: 126px;
    }

    .eop-page .eop-page-elements-grid {
        margin-top: 54px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .eop-page .eop-page-main {
        padding: 118px 16px 70px;
    }

    .eop-page .eop-page-title {
        font-size: 25px;
        letter-spacing: 0.16em;
    }

    .eop-page .eop-page-intro {
        margin-top: 24px;
        font-size: 13px;
        line-height: 1.6;
    }

    .eop-page .eop-page-products {
        margin-top: 84px;
        gap: 46px;
    }

    .eop-page .eop-page-product-card h2 {
        margin-top: 18px;
        font-size: 11px;
        letter-spacing: 0.16em;
    }

    .eop-page .eop-page-discover {
        margin-top: 96px;
    }

    .eop-page .eop-page-discover-title {
        font-size: 26px;
        letter-spacing: 0.12em;
    }

    .eop-page .eop-page-elements-grid {
        margin-top: 38px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .eop-page .eop-page-element-card span {
        margin-top: 14px;
        font-size: 11px;
        letter-spacing: 0.16em;
    }
}

/* Volcanic Mud Face Mask page */
.volcanic-mask-page .top-nav-link,
.volcanic-mask-page .mobile-menu a {
    color: #ffffff;
}

.volcanic-mask-page .top-nav-dropdown-card,
.volcanic-mask-page .top-nav-dropdown-title {
    color: var(--text);
}

.volcanic-mask-page .mobile-menu-toggle span {
    background: #ffffff;
}

.volcanic-mask-main {
    background: #ffffff;
}

.volcanic-mask-hero {
    position: relative;
    min-height: 100vh;
    background-image: url("../images/volcanic-mud-face-mask/hero.jpg");
    background-size: cover;
    background-position: center;
}

.volcanic-mask-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(13, 8, 5, 0.72) 0%, rgba(13, 8, 5, 0.38) 52%, rgba(13, 8, 5, 0.06) 100%);
}

.volcanic-mask-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--home-shell-width);
    min-height: 100vh;
    margin: 0 auto;
    padding: 180px 54px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
}

.volcanic-mask-tags {
    font-size: 14px;
    letter-spacing: 0.23em;
}

.volcanic-mask-tags span {
    margin-left: 30px;
}

.volcanic-mask-hero h1 {
    margin-top: 16px;
    font-size: clamp(37px, 5vw, 66px);
    font-weight: 300;
    letter-spacing: 0.09em;
    line-height: 1.04;
}

.volcanic-mask-price {
    margin-top: 42px;
    font-size: 32px;
    font-family: var(--font-serif);
}

.volcanic-mask-size {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
}

.volcanic-mask-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 16px;
    min-width: 290px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.volcanic-mask-cta:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.volcanic-mask-content {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 110px 54px 140px;
    display: grid;
    gap: 120px;
}

.volcanic-mask-section {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(28px, 5vw, 100px);
}

.volcanic-mask-copy h2 {
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 300;
    letter-spacing: 0.11em;
    color: #555555;
}

.volcanic-mask-copy p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
    color: #626262;
}

.volcanic-mask-media img {
    width: 100%;
    height: auto;
}

.volcanic-mask-section-intro {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.volcanic-mask-product-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.volcanic-mask-thumbs {
    display: flex;
    gap: 20px;
}

.volcanic-mask-thumb-btn {
    display: block;
    padding: 0;
    border: 1px solid #d1d1d1;
    background: #f7f7f7;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.volcanic-mask-thumb-btn.is-active {
    border-color: #6f6f6f;
    box-shadow: 0 0 0 1px rgba(111, 111, 111, 0.25);
}

.volcanic-mask-thumbs img {
    width: 76px;
    height: 76px;
    object-fit: cover;
}

.volcanic-mask-primary-image {
    width: 100%;
    max-width: 540px;
}

.volcanic-mask-section-effects {
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.volcanic-mask-section-effects .volcanic-mask-copy {
    order: 1;
}

.volcanic-mask-section-effects .volcanic-mask-media {
    order: 2;
}

.volcanic-mask-section-application {
    grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
}

.volcanic-mask-application-vector {
    margin: 28px 0;
    max-width: 320px;
}

@media (max-width: 980px) {
    .volcanic-mask-hero-content {
        padding: 150px 28px 90px;
    }

    .volcanic-mask-tags {
        font-size: 12px;
    }

    .volcanic-mask-tags span {
        margin-left: 20px;
    }

    .volcanic-mask-price {
        margin-top: 24px;
        font-size: 28px;
    }

    .volcanic-mask-cta {
        margin-top: 24px;
        min-width: 250px;
    }

    .volcanic-mask-content {
        padding: 92px 28px 110px;
        gap: 92px;
    }

    .volcanic-mask-section,
    .volcanic-mask-section-intro,
    .volcanic-mask-section-effects,
    .volcanic-mask-section-application {
        grid-template-columns: 1fr;
    }

    .volcanic-mask-section-effects .volcanic-mask-copy,
    .volcanic-mask-section-effects .volcanic-mask-media {
        order: initial;
    }

    .volcanic-mask-copy,
    .volcanic-mask-media {
        max-width: 760px;
        margin: 0 auto;
    }

    .volcanic-mask-thumbs {
        justify-content: center;
    }

    .volcanic-mask-primary-image {
        margin: 0 auto;
    }

    .volcanic-mask-application-vector {
        max-width: 270px;
    }
}

@media (max-width: 640px) {
    .volcanic-mask-hero {
        background-position: 62% center;
    }

    .volcanic-mask-hero-content {
        padding: 132px 16px 64px;
    }

    .volcanic-mask-tags {
        font-size: 11px;
        letter-spacing: 0.16em;
    }

    .volcanic-mask-tags span {
        margin-left: 12px;
    }

    .volcanic-mask-hero h1 {
        margin-top: 12px;
        font-size: 32px;
        letter-spacing: 0.07em;
    }

    .volcanic-mask-price {
        margin-top: 18px;
        font-size: 24px;
    }

    .volcanic-mask-size {
        margin-top: 8px;
        font-size: 12px;
    }

    .volcanic-mask-cta {
        min-width: 220px;
        letter-spacing: 0.2em;
    }

    .volcanic-mask-content {
        padding: 72px 16px 84px;
        gap: 72px;
    }

    .volcanic-mask-copy h2 {
        font-size: 26px;
        letter-spacing: 0.08em;
    }

    .volcanic-mask-copy p {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.65;
    }

    .volcanic-mask-product-gallery {
        gap: 24px;
    }

    .volcanic-mask-thumbs {
        gap: 12px;
    }

    .volcanic-mask-thumbs img {
        width: 64px;
        height: 64px;
    }

    .volcanic-mask-application-vector {
        margin: 20px 0;
        max-width: 240px;
    }
}

/* Silk & Toning Body Scrub page */
.silk-scrub-page .top-nav-link,
.silk-scrub-page .mobile-menu a {
    color: #ffffff;
}

.silk-scrub-page .top-nav-dropdown-card,
.silk-scrub-page .top-nav-dropdown-title {
    color: var(--text);
}

.silk-scrub-page .mobile-menu-toggle span {
    background: #ffffff;
}

.silk-scrub-main {
    background: #ffffff;
}

.silk-scrub-hero {
    position: relative;
    min-height: 100vh;
    background-image: url("../images/silk-toning-body-scrub/hero.png");
    background-size: cover;
    background-position: center;
}

.silk-scrub-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(13, 8, 5, 0.72) 0%, rgba(13, 8, 5, 0.38) 52%, rgba(13, 8, 5, 0.06) 100%);
}

.silk-scrub-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--home-shell-width);
    min-height: 100vh;
    margin: 0 auto;
    padding: 180px 54px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
}

.silk-scrub-tags {
    font-size: 14px;
    letter-spacing: 0.23em;
}

.silk-scrub-tags span {
    margin-left: 30px;
}

.silk-scrub-hero h1 {
    margin-top: 16px;
    font-size: clamp(37px, 5vw, 66px);
    font-weight: 300;
    letter-spacing: 0.09em;
    line-height: 1.04;
}

.silk-scrub-size {
    margin-top: 42px;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
}

.silk-scrub-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 16px;
    min-width: 290px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.silk-scrub-cta:hover {
    background: rgba(255, 255, 255, 0.12);
}

.silk-scrub-content {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 110px 54px 140px;
    display: grid;
    gap: 120px;
}

.silk-scrub-section {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(28px, 5vw, 100px);
}

.silk-scrub-copy h2 {
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 300;
    letter-spacing: 0.11em;
    color: #555555;
    white-space: nowrap;
}

.silk-scrub-copy p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
    color: #626262;
}

.silk-scrub-copy strong {
    font-weight: 500;
    color: #4a4a4a;
    letter-spacing: 0.04em;
}

.silk-scrub-media img {
    width: 100%;
    height: auto;
}

.silk-scrub-section-intro {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.silk-scrub-product-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.silk-scrub-thumbs {
    display: flex;
    gap: 20px;
}

.silk-scrub-thumb-btn {
    display: block;
    padding: 0;
    border: 1px solid #d1d1d1;
    background: #f7f7f7;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.silk-scrub-thumb-btn.is-active {
    border-color: #6f6f6f;
    box-shadow: 0 0 0 1px rgba(111, 111, 111, 0.25);
}

.silk-scrub-thumbs img {
    width: 76px;
    height: 76px;
    object-fit: cover;
}

.silk-scrub-primary-image {
    width: 100%;
    max-width: 540px;
}

.silk-scrub-section-effects {
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.silk-scrub-section-effects .silk-scrub-copy {
    order: 1;
}

.silk-scrub-section-effects .silk-scrub-media {
    order: 2;
}

@media (max-width: 980px) {
    .silk-scrub-hero-content {
        padding: 150px 28px 90px;
    }

    .silk-scrub-tags {
        font-size: 12px;
    }

    .silk-scrub-tags span {
        margin-left: 20px;
    }

    .silk-scrub-size {
        margin-top: 24px;
    }

    .silk-scrub-cta {
        margin-top: 24px;
        min-width: 250px;
    }

    .silk-scrub-content {
        padding: 92px 28px 110px;
        gap: 92px;
    }

    .silk-scrub-section,
    .silk-scrub-section-intro,
    .silk-scrub-section-effects {
        grid-template-columns: 1fr;
    }

    .silk-scrub-section-effects .silk-scrub-copy,
    .silk-scrub-section-effects .silk-scrub-media {
        order: initial;
    }

    .silk-scrub-copy,
    .silk-scrub-media {
        max-width: 760px;
        margin: 0 auto;
    }

    .silk-scrub-thumbs {
        justify-content: center;
    }

    .silk-scrub-primary-image {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .silk-scrub-hero {
        background-position: 45% center;
    }

    .silk-scrub-hero-content {
        padding: 132px 16px 64px;
        justify-content: center;
        align-items: flex-start;
    }

    .silk-scrub-tags {
        font-size: 11px;
        letter-spacing: 0.16em;
    }

    .silk-scrub-tags span {
        margin-left: 12px;
    }

    .silk-scrub-hero h1 {
        margin-top: 12px;
        font-size: 32px;
        letter-spacing: 0.07em;
    }

    .silk-scrub-size {
        margin-top: 18px;
        font-size: 12px;
    }

    .silk-scrub-cta {
        min-width: 220px;
        letter-spacing: 0.2em;
    }

    .silk-scrub-content {
        padding: 72px 16px 84px;
        gap: 72px;
    }

    .silk-scrub-copy h2 {
        font-size: 26px;
        letter-spacing: 0.08em;
    }

    .silk-scrub-copy p {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.65;
    }

    .silk-scrub-product-gallery {
        gap: 24px;
    }

    .silk-scrub-thumbs {
        gap: 12px;
    }

    .silk-scrub-thumbs img {
        width: 64px;
        height: 64px;
    }
}

/* Healing Clay Body Mask page */
.clay-mask-page .top-nav-link,
.clay-mask-page .mobile-menu a {
    color: #ffffff;
}

.clay-mask-page .top-nav-dropdown-card,
.clay-mask-page .top-nav-dropdown-title {
    color: var(--text);
}

.clay-mask-page .mobile-menu-toggle span {
    background: #ffffff;
}

.clay-mask-main {
    background: #ffffff;
}

.clay-mask-hero {
    position: relative;
    min-height: 100vh;
    background-image: url("../images/healing-clay-body-mask/hero.png");
    background-size: cover;
    background-position: center;
}

.clay-mask-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(5, 3, 1, 0.88) 0%, rgba(5, 3, 1, 0.72) 40%, rgba(5, 3, 1, 0.28) 100%);
}

.clay-mask-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--home-shell-width);
    min-height: 100vh;
    margin: 0 auto;
    padding: 180px 54px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
}

.clay-mask-tags {
    font-size: 14px;
    letter-spacing: 0.23em;
}

.clay-mask-tags span {
    margin-left: 30px;
}

.clay-mask-hero h1 {
    margin-top: 16px;
    font-size: clamp(37px, 5vw, 66px);
    font-weight: 300;
    letter-spacing: 0.09em;
    line-height: 1.04;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.clay-mask-size {
    margin-top: 42px;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
}

.clay-mask-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 16px;
    min-width: 290px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.clay-mask-cta:hover {
    background: rgba(255, 255, 255, 0.12);
}

.clay-mask-content {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 110px 54px 140px;
    display: grid;
    gap: 120px;
}

.clay-mask-section {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(28px, 5vw, 100px);
}

.clay-mask-copy h2 {
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 300;
    letter-spacing: 0.11em;
    color: #555555;
    white-space: nowrap;
}

.clay-mask-copy p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
    color: #626262;
}

.clay-mask-copy strong {
    font-weight: 500;
    color: #4a4a4a;
    letter-spacing: 0.02em;
}

.clay-mask-media img {
    width: 100%;
    height: auto;
}

.clay-mask-section-intro {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.clay-mask-product-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.clay-mask-thumbs {
    display: flex;
    gap: 20px;
}

.clay-mask-thumb-btn {
    display: block;
    padding: 0;
    border: 1px solid #d1d1d1;
    background: #f7f7f7;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.clay-mask-thumb-btn.is-active {
    border-color: #6f6f6f;
    box-shadow: 0 0 0 1px rgba(111, 111, 111, 0.25);
}

.clay-mask-thumbs img {
    width: 76px;
    height: 76px;
    object-fit: cover;
}

.clay-mask-primary-image {
    width: 100%;
    max-width: 540px;
}

.clay-mask-section-effects {
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.clay-mask-section-effects .clay-mask-copy {
    order: 1;
}

.clay-mask-section-effects .clay-mask-media {
    order: 2;
}

@media (max-width: 980px) {
    .clay-mask-hero-content {
        padding: 150px 28px 90px;
    }

    .clay-mask-tags {
        font-size: 12px;
    }

    .clay-mask-tags span {
        margin-left: 20px;
    }

    .clay-mask-size {
        margin-top: 24px;
    }

    .clay-mask-cta {
        margin-top: 24px;
        min-width: 250px;
    }

    .clay-mask-content {
        padding: 92px 28px 110px;
        gap: 92px;
    }

    .clay-mask-section,
    .clay-mask-section-intro,
    .clay-mask-section-effects {
        grid-template-columns: 1fr;
    }

    .clay-mask-section-effects .clay-mask-copy,
    .clay-mask-section-effects .clay-mask-media {
        order: initial;
    }

    .clay-mask-copy,
    .clay-mask-media {
        max-width: 760px;
        margin: 0 auto;
    }

    .clay-mask-thumbs {
        justify-content: center;
    }

    .clay-mask-primary-image {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .clay-mask-hero {
        background-position: 60% center;
    }

    .clay-mask-hero-content {
        padding: 132px 16px 64px;
    }

    .clay-mask-tags {
        font-size: 11px;
        letter-spacing: 0.16em;
    }

    .clay-mask-tags span {
        margin-left: 12px;
    }

    .clay-mask-hero h1 {
        margin-top: 12px;
        font-size: 32px;
        letter-spacing: 0.07em;
    }

    .clay-mask-size {
        margin-top: 18px;
        font-size: 12px;
    }

    .clay-mask-cta {
        min-width: 220px;
        letter-spacing: 0.2em;
    }

    .clay-mask-content {
        padding: 72px 16px 84px;
        gap: 72px;
    }

    .clay-mask-copy h2 {
        font-size: 26px;
        letter-spacing: 0.08em;
    }

    .clay-mask-copy p {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.65;
    }

    .clay-mask-product-gallery {
        gap: 24px;
    }

    .clay-mask-thumbs {
        gap: 12px;
    }

    .clay-mask-thumbs img {
        width: 64px;
        height: 64px;
    }
}

/* Caspian Sea Bath Bombs page */
.bath-bomb-page .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.bath-bomb-page .top-nav-link,
.bath-bomb-page .mobile-menu a {
    color: #ffffff;
}

.bath-bomb-page .top-nav-dropdown-card,
.bath-bomb-page .top-nav-dropdown-title {
    color: var(--text);
}

.bath-bomb-page .mobile-menu-toggle span {
    background: #ffffff;
}

.bath-bomb-page .site-header.scrolled {
    background: #ffffff;
    border-bottom: 1px solid rgba(47, 38, 31, 0.18);
}

.bath-bomb-main {
    background: #ffffff;
}

.bath-bomb-hero {
    position: relative;
    min-height: 100vh;
    background-image: url("../images/caspian-sea-salt-bath-bomb/hero.png");
    background-size: cover;
    background-position: center;
}

.mini-bath-bomb-page .bath-bomb-hero {
    background-image: url("../images/caspian-sea-mini-bath-bombs/hero.png");
}

.bath-bomb-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(5, 3, 1, 0.88) 0%, rgba(5, 3, 1, 0.72) 40%, rgba(5, 3, 1, 0.28) 100%);
}

.bath-bomb-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--home-shell-width);
    min-height: 100vh;
    margin: 0 auto;
    padding: 180px 54px 90px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.bath-bomb-tags {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    margin: 0;
}

.bath-bomb-tags span {
    margin-left: 30px;
}

.bath-bomb-hero h1 {
    margin-top: 16px;
    font-size: clamp(37px, 5vw, 66px);
    font-weight: 300;
    letter-spacing: 0.09em;
    color: #ffffff;
    line-height: 1.08;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.bath-bomb-size {
    margin-top: 18px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.8);
}

.bath-bomb-cta {
    display: inline-block;
    margin-top: 36px;
    padding: 16px 36px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    color: #ffffff;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    min-width: 260px;
    text-align: center;
    cursor: pointer;
}

.bath-bomb-cta:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.bath-bomb-price-cta {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: 36px;
}

.bath-bomb-price-cta .bath-bomb-price {
    margin-top: 0;
}

.bath-bomb-price-cta .bath-bomb-cta {
    margin-top: 0;
}

.bath-bomb-content {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 110px 54px 140px;
    display: grid;
    gap: 120px;
}

.bath-bomb-section {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(28px, 5vw, 100px);
}

.bath-bomb-section-intro {
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.bath-bomb-section-intro .bath-bomb-media {
    order: 1;
}

.bath-bomb-section-intro .bath-bomb-copy {
    order: 2;
}

.bath-bomb-media {
    margin: 0;
}

.bath-bomb-media img {
    width: 100%;
    height: auto;
    display: block;
}

.bath-bomb-copy h2 {
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 300;
    letter-spacing: 0.11em;
    color: #555555;
    margin: 0 0 28px;
    white-space: nowrap;
}

.bath-bomb-copy p {
    font-size: clamp(14px, 1.4vw, 17px);
    font-weight: 300;
    line-height: 1.8;
    color: #444444;
    margin: 0 0 18px;
    max-width: 540px;
}

.bath-bomb-copy p:last-child {
    margin-bottom: 0;
}

.bath-bomb-section-effects {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.bath-bomb-section-effects .bath-bomb-copy {
    order: 1;
}

.bath-bomb-section-effects .bath-bomb-media {
    order: 2;
}

/* Aromatic Experiences section */
.bath-bomb-section-aromas {
    display: block;
    grid-template-columns: unset;
    text-align: center;
}

.bath-bomb-aromas-title {
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 300;
    letter-spacing: 0.11em;
    color: #555555;
    margin: 0 0 64px;
    text-align: center;
    white-space: nowrap;
}

.bath-bomb-aromas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 72px 48px;
}

.bath-bomb-aroma-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
}

.bath-bomb-aroma-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 24px;
}

.bath-bomb-aroma-card span {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #555555;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.bath-bomb-aroma-card p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: #666666;
    margin: 0;
    max-width: 300px;
}

@media (max-width: 980px) {
    .bath-bomb-hero-content {
        padding: 150px 28px 90px;
    }

    .bath-bomb-tags {
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .bath-bomb-tags span {
        margin-left: 16px;
    }

    .bath-bomb-cta {
        margin-top: 24px;
        min-width: 250px;
    }

    .bath-bomb-content {
        padding: 92px 28px 110px;
        gap: 92px;
    }

    .bath-bomb-section,
    .bath-bomb-section-intro,
    .bath-bomb-section-effects {
        grid-template-columns: 1fr;
    }

    .bath-bomb-section-intro .bath-bomb-media,
    .bath-bomb-section-intro .bath-bomb-copy,
    .bath-bomb-section-effects .bath-bomb-copy,
    .bath-bomb-section-effects .bath-bomb-media {
        order: initial;
    }

    .bath-bomb-aromas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 36px;
    }
}

@media (max-width: 640px) {
    .bath-bomb-hero {
        background-position: 60% center;
    }

    .bath-bomb-hero-content {
        padding: 132px 16px 64px;
    }

    .bath-bomb-tags {
        font-size: 9px;
        letter-spacing: 0.14em;
    }

    .bath-bomb-tags span {
        margin-left: 12px;
    }

    .bath-bomb-hero h1 {
        margin-top: 12px;
        font-size: 32px;
        letter-spacing: 0.07em;
    }

    .bath-bomb-cta {
        margin-top: 20px;
        padding: 14px 24px;
        min-width: 220px;
        letter-spacing: 0.2em;
    }

    .bath-bomb-content {
        padding: 72px 16px 84px;
        gap: 72px;
    }

    .bath-bomb-copy h2 {
        font-size: 26px;
        letter-spacing: 0.08em;
    }

    .bath-bomb-copy p {
        font-size: 14px;
        line-height: 1.65;
    }

    .bath-bomb-aromas-title {
        margin-bottom: 40px;
    }

    .bath-bomb-aromas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 44px 20px;
    }

    .bath-bomb-aroma-card img {
        width: 88px;
        height: 88px;
    }

    .bath-bomb-aroma-card span {
        font-size: 10px;
        letter-spacing: 0.14em;
    }

    .bath-bomb-aroma-card p {
        font-size: 13px;
    }
}

/* Caspian Sea Salt Bath Bomb — split hero */
.salt-bomb-page .bath-bomb-hero {
    background-image: none;
    background: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: stretch;
    min-height: 100vh;
}

.salt-bomb-page .bath-bomb-hero-content {
    position: static;
    min-height: unset;
    padding: 140px 60px 90px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.salt-bomb-page .bath-bomb-tags {
    color: #4a4540;
}

.salt-bomb-page .bath-bomb-hero h1 {
    color: #111009;
    text-shadow: none;
    font-size: clamp(40px, 4.8vw, 70px);
}

.salt-bomb-page .bath-bomb-size {
    color: #6b6460;
}

.bath-bomb-price {
    margin-top: 22px;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #ffffff;
    font-family: var(--font-sans);
}

.salt-bomb-page .bath-bomb-price {
    color: #111009;
}

.salt-bomb-page .bath-bomb-cta {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
}

.salt-bomb-page .bath-bomb-cta:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.bath-bomb-hero-media {
    overflow: hidden;
}

.salt-bomb-page .bath-bomb-hero-media {
    min-height: 100vh;
}

.salt-bomb-page .bath-bomb-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 860px) {
    .salt-bomb-page .bath-bomb-hero {
        grid-template-columns: 1fr;
    }

    .salt-bomb-page .bath-bomb-hero-content {
        padding: 120px 28px 50px;
        min-height: unset;
    }

    .salt-bomb-page .bath-bomb-hero-media {
        min-height: 56vw;
        height: 56vw;
    }
}

@media (max-width: 640px) {
    .salt-bomb-page .bath-bomb-hero-media {
        min-height: 40vh;
        height: 40vh;
    }
}

/* Header styling for salt bomb page — dark text on white hero */
.salt-bomb-page .site-header {
    position: fixed;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}

.salt-bomb-page .site-header .top-nav-link {
    color: var(--text);
}

.salt-bomb-page .site-header .logo-white {
    display: none;
}

.salt-bomb-page .site-header .logo-black {
    display: block;
}

.salt-bomb-page .site-header .mobile-menu-toggle span {
    background: var(--text);
}

.salt-bomb-page .site-header.scrolled {
    background: #ffffff;
    border-bottom: 1px solid rgba(47, 38, 31, 0.18);
}

/* Bubble Bath page */
.bubble-bath-page .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.bubble-bath-page .top-nav-link,
.bubble-bath-page .mobile-menu a {
    color: #ffffff;
}

.bubble-bath-page .top-nav-dropdown-card,
.bubble-bath-page .top-nav-dropdown-title {
    color: var(--text);
}

.bubble-bath-page .mobile-menu-toggle span {
    background: #ffffff;
}

.bubble-bath-page .site-header.scrolled {
    background: #ffffff;
    border-bottom: 1px solid rgba(47, 38, 31, 0.18);
}

.bubble-bath-main {
    background: #ffffff;
}

.bubble-bath-hero {
    position: relative;
    min-height: 100vh;
    background-image: url("../images/bubble-path/hero.png");
    background-size: cover;
    background-position: center;
}

.bubble-bath-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(5, 3, 1, 0.88) 0%, rgba(5, 3, 1, 0.72) 40%, rgba(5, 3, 1, 0.28) 100%);
}

.bubble-bath-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--home-shell-width);
    min-height: 100vh;
    margin: 0 auto;
    padding: 180px 54px 90px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.bubble-bath-tags {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    margin: 0;
}

.bubble-bath-tags span {
    margin-left: 30px;
}

.bubble-bath-hero h1 {
    margin-top: 16px;
    font-size: clamp(37px, 5vw, 66px);
    font-weight: 300;
    letter-spacing: 0.09em;
    color: #ffffff;
    line-height: 1.08;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.bubble-bath-size {
    margin-top: 18px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.8);
}

.bubble-bath-cta {
    display: inline-block;
    margin-top: 36px;
    padding: 16px 36px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    min-width: 260px;
    text-align: center;
}

.bubble-bath-cta:hover {
    background: rgba(255, 255, 255, 0.12);
}

.bubble-bath-content {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 110px 54px 140px;
    display: grid;
    gap: 120px;
}

.bubble-bath-section {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 100px);
}

.bubble-bath-section-intro {
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.bubble-bath-section-effects {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.bubble-bath-section-effects .bubble-bath-copy {
    order: 1;
}

.bubble-bath-section-effects .bubble-bath-media {
    order: 2;
}

.bubble-bath-media {
    margin: 0;
}

.bubble-bath-media img {
    width: 100%;
    height: auto;
    display: block;
}

.bubble-bath-copy h2 {
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 300;
    letter-spacing: 0.11em;
    color: #555555;
    margin: 0 0 28px;
    white-space: nowrap;
}

.bubble-bath-copy p {
    font-size: clamp(14px, 1.4vw, 17px);
    font-weight: 300;
    line-height: 1.8;
    color: #444444;
    margin: 0 0 18px;
    max-width: 540px;
}

.bubble-bath-copy p:last-child {
    margin-bottom: 0;
}

/* Availability section */
.bubble-bath-section-availability {
    display: block;
    grid-template-columns: unset;
}

.bubble-bath-availability-header {
    text-align: center;
    margin-bottom: 56px;
}

.bubble-bath-availability-header h2 {
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 300;
    letter-spacing: 0.11em;
    color: #555555;
    margin: 0 0 18px;
}

.bubble-bath-availability-header p {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: #888888;
    text-transform: uppercase;
    margin: 0;
}

.bubble-bath-sanctums-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.bubble-bath-sanctum-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.bubble-bath-sanctum-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.bubble-bath-sanctum-card:hover img {
    transform: scale(1.04);
}

.bubble-bath-sanctum-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(5, 3, 1, 0.38);
    gap: 6px;
}

.bubble-bath-sanctum-label span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 980px) {
    .bubble-bath-hero-content {
        padding: 150px 28px 90px;
    }

    .bubble-bath-tags span {
        margin-left: 16px;
    }

    .bubble-bath-cta {
        margin-top: 24px;
        min-width: 250px;
    }

    .bubble-bath-content {
        padding: 92px 28px 110px;
        gap: 92px;
    }

    .bubble-bath-section,
    .bubble-bath-section-intro,
    .bubble-bath-section-effects {
        grid-template-columns: 1fr;
    }

    .bubble-bath-section-effects .bubble-bath-copy,
    .bubble-bath-section-effects .bubble-bath-media {
        order: initial;
    }
}

@media (max-width: 640px) {
    .bubble-bath-hero {
        background-position: 60% center;
    }

    .bubble-bath-hero-content {
        padding: 132px 16px 64px;
    }

    .bubble-bath-tags {
        font-size: 9px;
        letter-spacing: 0.14em;
    }

    .bubble-bath-tags span {
        margin-left: 12px;
    }

    .bubble-bath-hero h1 {
        margin-top: 12px;
        font-size: 32px;
        letter-spacing: 0.07em;
    }

    .bubble-bath-cta {
        margin-top: 20px;
        padding: 14px 24px;
        min-width: 220px;
        letter-spacing: 0.2em;
    }

    .bubble-bath-content {
        padding: 72px 16px 84px;
        gap: 72px;
    }

    .bubble-bath-copy h2 {
        font-size: 26px;
        letter-spacing: 0.08em;
    }

    .bubble-bath-copy p {
        font-size: 14px;
        line-height: 1.65;
    }

    .bubble-bath-sanctums-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bubble-bath-sanctum-card {
        aspect-ratio: 3 / 2;
    }
}

/* Contact page */
.contact-main {
    background: #ffffff;
    padding: 150px 24px 120px;
}

.contact-hero {
    max-width: 732px;
    margin: 0 auto;
    text-align: center;
}

.contact-kicker {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: #6d5141;
    text-transform: uppercase;
    margin: 0;
}

.contact-title {
    margin-top: 12px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.225em;
    color: #6d5141;
    text-transform: uppercase;
}

.contact-form-section {
    max-width: 732px;
    margin: 48px auto 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-field label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.28em;
    color: #000000;
    text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
    appearance: none;
    border: 1px solid #6d5141;
    padding: 14px 17px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: #2f261f;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease;
    border-radius: 0;
    width: 100%;
}

.contact-field textarea {
    resize: vertical;
    min-height: 88px;
    line-height: 1.6;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #3d2e22;
}

/* Select field */
.contact-field--select {
    grid-column: 1;
}

.contact-select-wrap {
    position: relative;
}

.contact-select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #6d5141;
    padding: 14px 40px 14px 17px;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.28em;
    color: #6d5141;
    background: #ffffff;
    outline: none;
    cursor: pointer;
    width: 100%;
    border-radius: 0;
    transition: border-color 0.2s ease;
    text-transform: uppercase;
}

.contact-select-wrap select:focus {
    border-color: #3d2e22;
}

.contact-select-wrap select option {
    font-size: 12px;
    letter-spacing: 0;
    color: #2f261f;
    text-transform: none;
}

.contact-select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-60%);
    font-size: 18px;
    color: #6d5141;
    pointer-events: none;
    line-height: 1;
}

/* Preferred response method */
.contact-preference {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.contact-preference-label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.28em;
    color: #000000;
    text-transform: uppercase;
}

.contact-preference-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-pref-option {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 15px;
    border: 1px solid #6d5141;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.14em;
    color: #000000;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
    user-select: none;
}

.contact-pref-option input[type="radio"] {
    display: none;
}

.contact-pref-dot {
    width: 7px;
    height: 7px;
    border-radius: 3.5px;
    border: 1px solid #6d5141;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.contact-pref-option:has(input:checked) {
    background: rgba(184, 148, 90, 0.07);
    color: #6d5141;
}

.contact-pref-option:has(input:checked) .contact-pref-dot {
    background: #6d5141;
}

/* Divider above submit */
.contact-form-divider {
    border-top: 1px solid #ebd9b8;
    margin-top: 11px;
}

/* Submit */
.contact-submit {
    margin-top: 0;
}

.contact-btn {
    appearance: none;
    display: block;
    width: 100%;
    background: #6d5141;
    border: none;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.28em;
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: background 0.25s ease;
}

.contact-btn:hover {
    background: #5a4234;
}

/* Privacy note */
.contact-privacy {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    line-height: 1.65;
    color: #000000;
    text-align: center;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-field--select {
        grid-column: 1;
    }
}

@media (max-width: 640px) {
    .contact-main {
        padding: 120px 20px 96px;
    }

    .contact-title {
        font-size: 14px;
    }

    .contact-preference-options {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════
   FAQ Section
═══════════════════════════════════════════ */

/* Standalone FAQ page — extra top padding for fixed header */
.faq-page .faq-section {
    padding-top: 160px;
}

.faq-section {
    background: #ffffff;
    padding: 100px 0 140px;
    border-top: 1px solid rgba(47, 38, 31, 0.10);
}

/* Hero */
.faq-hero {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 24px 64px;
    text-align: center;
}

.faq-title {
    font-family: 'Raleway', var(--font-sans);
    font-size: clamp(42px, 6vw, 69px);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: #0e0d0b;
    line-height: 1.32;
    margin-bottom: 40px;
}

.faq-search-wrap {
    max-width: 560px;
    margin: 0 auto;
}

.faq-search {
    width: 100%;
    appearance: none;
    border: none;
    border-bottom: 1px solid rgba(14, 13, 11, 0.57);
    padding: 10px 0 15px;
    font-family: 'Jost', var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: #0e0d0b;
    background: transparent;
    outline: none;
    text-align: center;
    transition: border-color 0.25s ease;
}

.faq-search::placeholder {
    color: rgba(14, 13, 11, 0.45);
}

.faq-search:focus {
    border-bottom-color: var(--brown);
}

/* Layout */
.faq-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0;
    align-items: flex-start;
}

/* Sidebar */
.faq-sidebar {
    width: 200px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    padding-top: 64px;
    display: flex;
    flex-direction: column;
}

.faq-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-family: 'Jost', var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #0e0d0b;
    cursor: pointer;
    transition: color 0.2s ease;
    text-decoration: none;
}

.faq-sidebar-item:hover {
    color: var(--brown);
}

.faq-sidebar-dash {
    display: block;
    height: 1px;
    background: #0e0d0b;
    width: 16px;
    flex-shrink: 0;
    transition: width 0.2s ease, background 0.2s ease;
}

.faq-sidebar-item.is-active .faq-sidebar-dash {
    width: 28px;
    background: #b8945a;
}

.faq-sidebar-item.is-active {
    color: #0e0d0b;
}

/* FAQ Content */
.faq-content {
    flex: 1;
    min-width: 0;
    padding-left: 80px;
}

/* Group */
.faq-group {
    margin-bottom: 64px;
}

.faq-group.is-hidden {
    display: none;
}

.faq-group-label {
    font-family: 'Jost', var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 24px;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid rgba(14, 13, 11, 0.57);
}

.faq-item.is-hidden {
    display: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 21px 0 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-q-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    color: #0e0d0b;
    line-height: 1.4;
}

.faq-icon {
    font-family: 'Jost', var(--font-sans);
    font-size: 18px;
    font-weight: 200;
    color: #0e0d0b;
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.3s ease;
    display: block;
    width: 18px;
    text-align: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding-bottom: 0;
}

.faq-answer.is-open {
    max-height: 600px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: #555;
}

.faq-answer p + p {
    margin-top: 12px;
}

.faq-answer a {
    color: var(--brown);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* No results */
.faq-no-results-reset {
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--brown);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.faq-no-results {
    padding: 40px 0;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: #888;
}

.faq-no-results a {
    color: var(--brown);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .faq-layout {
        flex-direction: column;
    }

    .faq-sidebar {
        position: static;
        width: 100%;
        padding-top: 0;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px 0;
        margin-bottom: 40px;
        border-bottom: 1px solid rgba(14, 13, 11, 0.12);
        padding-bottom: 24px;
    }

    .faq-sidebar-item {
        padding: 6px 16px 6px 0;
        font-size: 8px;
    }

    .faq-sidebar-dash {
        display: none;
    }

    .faq-content {
        padding-left: 0;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 72px 0 100px;
    }

    .faq-hero {
        padding: 0 20px 48px;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-q-text {
        font-size: 16px;
    }
}

/* Revitalizing & Nourishing Body Oil page */
.body-oil-page .top-nav-link,
.body-oil-page .mobile-menu a {
    color: #ffffff;
}

.body-oil-page .top-nav-dropdown-card,
.body-oil-page .top-nav-dropdown-title {
    color: var(--text);
}

.body-oil-page .mobile-menu-toggle span {
    background: #ffffff;
}

.body-oil-main {
    background: #ffffff;
}

.body-oil-hero {
    position: relative;
    min-height: 100vh;
    background-image: url("../images/body-lotion/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.body-oil-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(13, 8, 5, 0.72) 0%, rgba(13, 8, 5, 0.38) 52%, rgba(13, 8, 5, 0.06) 100%);
}

.body-oil-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--home-shell-width);
    min-height: 100vh;
    margin: 0 auto;
    padding: 180px 54px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
}

.body-oil-tags {
    font-size: 14px;
    letter-spacing: 0.23em;
}

.body-oil-tags span {
    margin-left: 30px;
}

.body-oil-hero h1 {
    margin-top: 16px;
    font-size: clamp(37px, 5vw, 66px);
    font-weight: 300;
    letter-spacing: 0.09em;
    line-height: 1.04;
}

.body-oil-size {
    margin-top: 42px;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
}

.body-oil-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 16px;
    min-width: 290px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.body-oil-cta:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.body-oil-price-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.body-oil-price {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #ffffff;
    font-family: var(--font-sans);
    text-align: left;
}

.body-oil-price-cta .body-oil-cta {
    margin-top: 0;
}

.body-oil-content {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 110px 54px 140px;
    display: grid;
    gap: 120px;
}

.body-oil-section {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(28px, 5vw, 100px);
}

.body-oil-copy h2 {
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 300;
    letter-spacing: 0.11em;
    color: #555555;
    white-space: nowrap;
}

.body-oil-copy p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
    color: #626262;
}

.body-oil-copy strong {
    font-weight: 500;
    color: #4a4a4a;
    letter-spacing: 0.04em;
}

.body-oil-media img {
    width: 100%;
    height: auto;
}

.body-oil-section-intro {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.body-oil-product-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.body-oil-thumbs {
    display: flex;
    gap: 20px;
}

.body-oil-thumb-btn {
    display: block;
    padding: 0;
    border: 1px solid #d1d1d1;
    background: #f7f7f7;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.body-oil-thumb-btn.is-active {
    border-color: #6f6f6f;
    box-shadow: 0 0 0 1px rgba(111, 111, 111, 0.25);
}

.body-oil-thumbs img {
    width: 76px;
    height: 76px;
    object-fit: cover;
}

.body-oil-primary-image {
    width: 100%;
    max-width: 540px;
}

.body-oil-primary-image img {
    max-height: 450px;
    width: auto;
    max-width: 100%;
}

.body-oil-section-effects {
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.body-oil-section-effects .body-oil-copy {
    order: 1;
}

.body-oil-section-effects .body-oil-media {
    order: 2;
}

.body-oil-section-application {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 980px) {
    .body-oil-hero-content {
        padding: 150px 28px 90px;
    }

    .body-oil-tags {
        font-size: 12px;
    }

    .body-oil-tags span {
        margin-left: 20px;
    }

    .body-oil-size {
        margin-top: 24px;
    }

    .body-oil-cta {
        margin-top: 24px;
        min-width: 250px;
    }

    .body-oil-content {
        padding: 92px 28px 110px;
        gap: 92px;
    }

    .body-oil-section,
    .body-oil-section-intro,
    .body-oil-section-effects,
    .body-oil-section-application {
        grid-template-columns: 1fr;
    }

    .body-oil-section-effects .body-oil-copy,
    .body-oil-section-effects .body-oil-media {
        order: initial;
    }

    .body-oil-copy,
    .body-oil-media {
        max-width: 760px;
        margin: 0 auto;
    }

    .body-oil-thumbs {
        justify-content: center;
    }

    .body-oil-primary-image {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .body-oil-hero {
        background-position: 62% center;
    }

    .body-oil-hero-content {
        padding: 132px 16px 64px;
    }

    .body-oil-tags {
        font-size: 11px;
        letter-spacing: 0.16em;
    }

    .body-oil-tags span {
        margin-left: 12px;
    }

    .body-oil-hero h1 {
        margin-top: 12px;
        font-size: 32px;
        letter-spacing: 0.07em;
    }

    .body-oil-size {
        margin-top: 18px;
        font-size: 12px;
    }

    .body-oil-cta {
        min-width: 220px;
        letter-spacing: 0.2em;
    }

    .body-oil-content {
        padding: 72px 16px 84px;
        gap: 72px;
    }

    .body-oil-copy h2 {
        font-size: 26px;
        letter-spacing: 0.08em;
    }

    .body-oil-copy p {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.65;
    }

    .body-oil-product-gallery {
        gap: 24px;
    }

    .body-oil-thumbs {
        gap: 12px;
    }

    .body-oil-thumbs img {
        width: 64px;
        height: 64px;
    }
}

/* Mollagara Body Lotion (Revitalizing & Nourishing Body Oil card) page */
.rn-lotion-main {
    background: #ffffff;
}

.rn-lotion-hero {
    position: relative;
    min-height: 100vh;
    background-image: url("../images/revitalizing-nourishing-body-oil/hero.png");
    background-size: cover;
    background-position: center right;
}

.rn-lotion-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--home-shell-width);
    min-height: 100vh;
    margin: 0 auto;
    padding: 180px 54px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #2a2a2a;
}

.rn-lotion-tags {
    font-size: 14px;
    letter-spacing: 0.18em;
    color: #4a4a4a;
}

.rn-lotion-hero h1 {
    margin-top: 16px;
    font-size: clamp(37px, 5vw, 66px);
    font-weight: 300;
    letter-spacing: 0.09em;
    line-height: 1.04;
    color: #1a1a1a;
}

.rn-lotion-price {
    margin-top: 28px;
    font-size: 18px;
    letter-spacing: 0.06em;
    color: #3a3a3a;
}

.rn-lotion-size {
    margin-top: 8px;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: #5a5a5a;
}

.rn-lotion-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 16px;
    min-width: 290px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.rn-lotion-cta:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.rn-lotion-content {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 110px 54px 140px;
    display: grid;
    gap: 120px;
}

.rn-lotion-section {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(28px, 5vw, 100px);
}

.rn-lotion-copy h2 {
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 300;
    letter-spacing: 0.11em;
    color: #555555;
}

.rn-lotion-copy-centered h2 {
    text-align: center;
    white-space: nowrap;
}

.rn-lotion-copy p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
    color: #626262;
}

.rn-lotion-copy-centered p {
    text-align: center;
}

.rn-lotion-copy strong {
    font-weight: 500;
    color: #4a4a4a;
    letter-spacing: 0.04em;
}

.rn-lotion-aed {
    font-size: 13px;
    letter-spacing: 0.08em;
    color: #888888;
}

.rn-lotion-options {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rn-lotion-option-wrap {
    position: relative;
}

.rn-lotion-option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid #d8d8d8;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #4a4a4a;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.2s;
}

.rn-lotion-option-row.is-open {
    border-color: #b09a82;
}

.rn-lotion-option-arrow {
    font-size: 18px;
    color: #999999;
    transition: transform 0.25s ease;
    display: inline-block;
}

.rn-lotion-option-row.is-open .rn-lotion-option-arrow {
    transform: rotate(180deg);
}

.rn-lotion-dropdown {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 20;
}

.rn-lotion-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rn-lotion-dropdown-item {
    padding: 14px 0;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: #b0a090;
    text-align: center;
    cursor: pointer;
    transition: color 0.15s;
}

.rn-lotion-dropdown-item:hover,
.rn-lotion-dropdown-item.is-active {
    color: #2f261f;
}

.rn-lotion-media img {
    width: 100%;
    height: auto;
}

/* Description intro: gallery left, text right */
.rn-lotion-section-intro {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    align-items: start;
}

.rn-lotion-product-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.rn-lotion-primary-image {
    display: flex;
    justify-content: center;
}

.rn-lotion-primary-image img {
    width: 100%;
    max-width: 240px;
    height: auto;
}

.rn-lotion-thumbs {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.rn-lotion-thumb-btn {
    display: block;
    padding: 0;
    border: 1px solid #d1d1d1;
    background: #f7f7f7;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rn-lotion-thumb-btn.is-active {
    border-color: #6f6f6f;
    box-shadow: 0 0 0 1px rgba(111, 111, 111, 0.25);
}

.rn-lotion-thumbs img {
    width: 76px;
    height: 76px;
    object-fit: cover;
}

/* Effects: text left, image right */
.rn-lotion-section-effects {
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.rn-lotion-section-effects .rn-lotion-copy {
    order: 1;
}

.rn-lotion-section-effects .rn-lotion-media {
    order: 2;
}

/* Application: text left, image right (equal columns) */
.rn-lotion-section-application {
    grid-template-columns: 1fr 1fr;
}

/* Aromatic Experiences */
.rn-lotion-aromas {
    padding: 100px 54px 120px;
    max-width: var(--home-shell-width);
    margin: 0 auto;
    text-align: center;
}

.rn-lotion-aromas-title {
    font-size: clamp(20px, 2.2vw, 32px);
    font-weight: 300;
    letter-spacing: 0.22em;
    color: #888888;
    margin-bottom: 72px;
}

.rn-lotion-aromas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.rn-lotion-aroma-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.rn-lotion-aroma-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.rn-lotion-aroma-card h3 {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #4a4a4a;
}

.rn-lotion-aroma-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #7a7a7a;
    max-width: 300px;
}

@media (max-width: 980px) {
    .rn-lotion-hero-content {
        padding: 150px 28px 90px;
    }

    .rn-lotion-tags {
        font-size: 12px;
    }

    .rn-lotion-size {
        margin-top: 6px;
    }

    .rn-lotion-cta {
        margin-top: 24px;
        min-width: 250px;
    }

    .rn-lotion-content {
        padding: 92px 28px 110px;
        gap: 92px;
    }

    .rn-lotion-section,
    .rn-lotion-section-intro,
    .rn-lotion-section-effects,
    .rn-lotion-section-application {
        grid-template-columns: 1fr;
    }

    .rn-lotion-section-effects .rn-lotion-copy,
    .rn-lotion-section-effects .rn-lotion-media {
        order: initial;
    }

    .rn-lotion-copy,
    .rn-lotion-media {
        max-width: 760px;
        margin: 0 auto;
    }

    .rn-lotion-aromas {
        padding: 72px 28px 96px;
    }

    .rn-lotion-aromas-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

@media (max-width: 640px) {
    .rn-lotion-hero {
        background-position: 45% center;
    }

    .rn-lotion-hero-content {
        padding: 90px 16px 64px;
        justify-content: center;
        align-items: flex-start;
    }

    .rn-lotion-tags {
        font-size: 11px;
        letter-spacing: 0.12em;
        color: #1a1a1a;
    }

    .rn-lotion-hero h1 {
        margin-top: 12px;
        font-size: 32px;
        letter-spacing: 0.07em;
        color: #1a1a1a;
    }

    .rn-lotion-price {
        color: #1a1a1a;
    }

    .rn-lotion-size {
        color: #1a1a1a;
    }

    .rn-lotion-cta {
        min-width: 220px;
        letter-spacing: 0.2em;
        border-color: #1a1a1a;
        color: #1a1a1a;
    }

    .rn-lotion-cta:hover {
        background: #1a1a1a;
        color: #fff;
        border-color: #1a1a1a;
    }

    .rn-lotion-content {
        padding: 72px 16px 84px;
        gap: 72px;
    }

    .rn-lotion-copy h2 {
        font-size: 26px;
        letter-spacing: 0.08em;
    }

    .rn-lotion-copy p {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.65;
    }

    .rn-lotion-aromas {
        padding: 60px 16px 72px;
    }

    .rn-lotion-aromas-grid {
        gap: 48px;
    }
}

/* ============================================================
   CREAM SHOWER GEL PAGE (sgc-*)
   ============================================================ */

/* Hero */
.sgc-hero {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/shower-gel-cream/hero.png');
    background-size: cover;
    background-position: 75% center;
    display: flex;
    align-items: center;
}

.sgc-hero-content {
    position: relative;
    z-index: 1;
    padding: 160px 80px 100px;
    color: #fff;
    max-width: 640px;
    text-align: left;
}

.sgc-tags {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px;
}

.sgc-hero h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 20px;
    display: block;
    white-space: normal;
    word-break: normal;
}

.sgc-size {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 36px;
}

.sgc-cta {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.25em;
    background: transparent;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.sgc-cta:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.sgc-price-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 24px;
}

.sgc-price {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #ffffff;
    font-family: var(--font-sans);
    margin: 20px 0 0;
}

.sgc-price-cta .sgc-cta {
    margin: 0;
}

/* Nav override: hero is dark so nav should be white */
.sgc-page .site-header {
    --nav-color: #fff;
    --logo-filter: brightness(0) invert(1);
}

/* Content wrapper */
.sgc-content {
    padding: 120px 54px 140px;
    max-width: var(--home-shell-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

/* Description section: two-column */
.sgc-description-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

/* Left column: product image + overlay panels */
.sgc-product-col {
    position: relative;
}

.sgc-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sgc-gallery-main {
    width: 260px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sgc-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.sgc-gallery-thumbs {
    display: flex;
    gap: 16px;
}

.sgc-thumb-btn {
    display: block;
    padding: 0;
    border: 1px solid #d1d1d1;
    background: #f7f7f7;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.sgc-thumb-btn.is-active {
    border-color: #2a2a2a;
    box-shadow: 0 0 0 1px #2a2a2a;
}

.sgc-thumb-btn:hover:not(.is-active) {
    border-color: #999;
    box-shadow: 0 0 0 1px rgba(111, 111, 111, 0.25);
}

.sgc-thumb-btn img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    display: block;
}

/* Selector panels (overlaid on left column) */
.sgc-selector-wrap {
    position: relative;
}

.sgc-panel {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e8e0d8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.sgc-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sgc-panel-option {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.22em;
    background: none;
    border: none;
    cursor: pointer;
    padding: 14px 0;
    width: 100%;
    text-align: center;
    color: #c8bfb5;
    transition: color 0.2s ease;
}

.sgc-panel-option.is-active {
    color: #2a2a2a;
}

.sgc-panel-option:hover:not(.is-active) {
    color: #7a7a7a;
}

/* Right column: description copy */
.sgc-copy {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sgc-copy h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #2a2a2a;
    margin: 0 0 16px;
}

.sgc-aed {
    font-family: var(--font-body);
    font-size: 15px;
    letter-spacing: 0.05em;
    color: #7a7a7a;
    margin: 0 0 24px;
}

.sgc-copy > p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0 0 28px;
}

/* Selector dropdowns */
.sgc-selectors {
    margin-top: 8px;
    border-top: 1px solid #e8e0d8;
}

.sgc-selector-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid #e8e0d8;
    background: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #2a2a2a;
    transition: color 0.2s ease;
}

.sgc-selector-row:hover {
    color: #7a7a7a;
}

.sgc-chevron {
    font-size: 18px;
    color: #2a2a2a;
    line-height: 1;
    display: inline-block;
    transition: transform 0.25s ease;
}

.sgc-selector-row.is-open .sgc-chevron {
    transform: rotate(180deg);
}

/* Sold out button */
.sgc-sold-out-btn {
    display: block;
    width: 100%;
    margin-top: 28px;
    padding: 18px 0;
    border: 1px solid #c8bfb5;
    background: none;
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: #c8bfb5;
    cursor: not-allowed;
    text-align: center;
}

/* More information accordion */
.sgc-more-info {
    margin-top: 0;
    border-top: 1px solid #e8e0d8;
}

.sgc-more-info-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    border: none;
    border-bottom: 1px solid #e8e0d8;
    background: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #2a2a2a;
    text-align: left;
}

.sgc-more-info-arrow {
    font-size: 18px;
    transition: transform 0.25s ease;
    display: inline-block;
}

.sgc-more-info-body {
    padding: 20px 0 16px;
    border-bottom: 1px solid #e8e0d8;
}

.sgc-more-info-body p {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.75;
    color: #7a7a7a;
    margin: 0 0 12px;
}

.sgc-more-info-body p:last-child {
    margin-bottom: 0;
}

/* Effects / Nature's Alchemy sections */
.sgc-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sgc-section-effects {
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.sgc-section-effects .sgc-copy {
    order: 1;
}

.sgc-section-effects .sgc-media {
    order: 2;
}

.sgc-section .sgc-copy h2 {
    margin-bottom: 24px;
}

.sgc-section .sgc-copy p {
    margin-bottom: 16px;
}

.sgc-section .sgc-copy p:last-child {
    margin-bottom: 0;
}

.sgc-media {
    margin: 0;
}

.sgc-media img {
    width: 100%;
    height: auto;
    display: block;
}

/* Aromatic Experiences */
.sgc-aromas {
    padding: 100px 54px 120px;
    max-width: var(--home-shell-width);
    margin: 0 auto;
    text-align: center;
}

.sgc-aromas-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: #2a2a2a;
    margin: 0 0 64px;
}

.sgc-aromas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.sgc-aroma-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sgc-aroma-card img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.sgc-aroma-card h3 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #4a4a4a;
    margin: 0;
}

.sgc-aroma-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #7a7a7a;
    max-width: 300px;
    margin: 0;
}

/* Responsive */
@media (max-width: 980px) {
    .sgc-hero-content {
        padding: 150px 28px 90px;
    }

    .sgc-content {
        padding: 92px 28px 110px;
        gap: 92px;
    }

    .sgc-description-section,
    .sgc-section,
    .sgc-section-effects {
        grid-template-columns: 1fr;
    }

    .sgc-section-effects .sgc-copy,
    .sgc-section-effects .sgc-media {
        order: initial;
    }

    .sgc-panel {
        left: 0;
        right: 0;
    }

    .sgc-aromas {
        padding: 72px 28px 96px;
    }

    .sgc-aromas-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

@media (max-width: 640px) {
    .sgc-hero-content {
        padding: 132px 12px 64px;
    }

    .sgc-hero h1 {
        font-size: 24px;
        letter-spacing: 0.05em;
        line-height: 1.25;
    }

    .sgc-price-cta {
        gap: 16px;
        margin-top: 20px;
    }

    .sgc-price-cta .sgc-price {
        font-size: 20px;
        white-space: nowrap;
    }

    .sgc-price-cta .sgc-cta {
        padding: 12px 20px;
        font-size: 10px;
        white-space: nowrap;
    }

    .sgc-content {
        padding: 72px 16px 84px;
        gap: 72px;
    }

    .sgc-aromas {
        padding: 60px 16px 72px;
    }
}

/* Pro Collagen Face Cream page */
.pcfc-page .top-nav-link,
.pcfc-page .mobile-menu a {
    color: #ffffff;
}

.pcfc-page .top-nav-dropdown-card,
.pcfc-page .top-nav-dropdown-title {
    color: var(--text);
}

.pcfc-page .mobile-menu-toggle span {
    background: #ffffff;
}

.pcfc-main {
    background: #ffffff;
}

.pcfc-hero {
    position: relative;
    min-height: 100vh;
    background-image: url("../images/pro-collagen-face-cream/hero.png");
    background-size: cover;
    background-position: center;
}

.pcfc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(13, 8, 5, 0.72) 0%, rgba(13, 8, 5, 0.38) 52%, rgba(13, 8, 5, 0.06) 100%);
}

.pcfc-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--home-shell-width);
    min-height: 100vh;
    margin: 0 auto;
    padding: 180px 54px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
}

.pcfc-tags {
    font-size: 14px;
    letter-spacing: 0.23em;
}

.pcfc-tags span {
    margin-left: 30px;
}

.pcfc-hero h1 {
    margin-top: 16px;
    font-size: clamp(37px, 5vw, 66px);
    font-weight: 300;
    letter-spacing: 0.09em;
    line-height: 1.04;
}

.pcfc-price {
    margin-top: 42px;
    font-size: 15px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.9);
}

.pcfc-size {
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.72);
}

.pcfc-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 16px;
    min-width: 290px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.pcfc-cta:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.pcfc-content {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 110px 54px 140px;
    display: grid;
    gap: 120px;
}

.pcfc-section {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(28px, 5vw, 100px);
}

.pcfc-copy h2 {
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 300;
    letter-spacing: 0.11em;
    color: #555555;
    white-space: nowrap;
}

.pcfc-copy p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
    color: #626262;
}

.pcfc-copy strong {
    font-weight: 500;
    color: #4a4a4a;
    letter-spacing: 0.04em;
}

.pcfc-media img {
    width: 100%;
    height: auto;
}

.pcfc-section-intro {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.pcfc-product-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.pcfc-thumbs {
    display: flex;
    gap: 20px;
}

.pcfc-thumb-btn {
    display: block;
    padding: 0;
    border: 1px solid #d1d1d1;
    background: #f7f7f7;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pcfc-thumb-btn.is-active {
    border-color: #6f6f6f;
    box-shadow: 0 0 0 1px rgba(111, 111, 111, 0.25);
}

.pcfc-thumbs img {
    width: 76px;
    height: 76px;
    object-fit: cover;
}

.pcfc-primary-image {
    width: 100%;
    max-width: 540px;
}

.pcfc-section-effects {
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.pcfc-section-effects .pcfc-copy {
    order: 1;
}

.pcfc-section-effects .pcfc-media {
    order: 2;
}

.pcfc-section-application {
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.pcfc-section-application .pcfc-application-copy {
    order: 1;
}

.pcfc-section-application .pcfc-application-media {
    order: 2;
}

.pcfc-application-steps {
    margin-top: 16px;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.pcfc-application-steps li {
    font-size: 15px;
    line-height: 1.75;
    color: #626262;
}

.pcfc-application-media {
    position: relative;
}

.pcfc-application-label {
    position: absolute;
    bottom: 28px;
    right: 28px;
    font-size: 11px;
    letter-spacing: 0.22em;
    line-height: 1.7;
    color: #ffffff;
    text-align: right;
}

@media (max-width: 980px) {
    .pcfc-hero-content {
        padding: 150px 28px 90px;
    }

    .pcfc-tags {
        font-size: 12px;
    }

    .pcfc-tags span {
        margin-left: 20px;
    }

    .pcfc-price {
        margin-top: 24px;
    }

    .pcfc-cta {
        margin-top: 24px;
        min-width: 250px;
    }

    .pcfc-content {
        padding: 92px 28px 110px;
        gap: 92px;
    }

    .pcfc-section,
    .pcfc-section-intro,
    .pcfc-section-effects,
    .pcfc-section-application {
        grid-template-columns: 1fr;
    }

    .pcfc-section-effects .pcfc-copy,
    .pcfc-section-effects .pcfc-media,
    .pcfc-section-application .pcfc-application-copy,
    .pcfc-section-application .pcfc-application-media {
        order: initial;
    }

    .pcfc-copy,
    .pcfc-media {
        max-width: 760px;
        margin: 0 auto;
    }

    .pcfc-thumbs {
        justify-content: center;
    }

    .pcfc-primary-image {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .pcfc-hero {
        background-position: 62% center;
    }

    .pcfc-hero-content {
        padding: 132px 16px 64px;
    }

    .pcfc-tags {
        font-size: 11px;
        letter-spacing: 0.16em;
    }

    .pcfc-tags span {
        margin-left: 12px;
    }

    .pcfc-hero h1 {
        margin-top: 12px;
        font-size: 32px;
        letter-spacing: 0.07em;
    }

    .pcfc-price {
        margin-top: 18px;
        font-size: 13px;
    }

    .pcfc-size {
        font-size: 12px;
    }

    .pcfc-cta {
        min-width: 220px;
        letter-spacing: 0.2em;
    }

    .pcfc-content {
        padding: 72px 16px 84px;
        gap: 72px;
    }

    .pcfc-copy h2 {
        font-size: 26px;
        letter-spacing: 0.08em;
    }

    .pcfc-copy p {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.65;
    }

    .pcfc-application-steps li {
        font-size: 13px;
    }

    .pcfc-product-gallery {
        gap: 24px;
    }

    .pcfc-thumbs {
        gap: 12px;
    }

    .pcfc-thumbs img {
        width: 64px;
        height: 64px;
    }
}

/* Silk Caterpillar Scalp Serum page */
.silk-serum-page .top-nav-link,
.silk-serum-page .mobile-menu a {
    color: #ffffff;
}

.silk-serum-page .top-nav-dropdown-card,
.silk-serum-page .top-nav-dropdown-title {
    color: var(--text);
}

.silk-serum-page .mobile-menu-toggle span {
    background: #ffffff;
}

.silk-serum-main {
    background: #ffffff;
}

.silk-serum-hero {
    position: relative;
    min-height: 100vh;
    background-image: url("../images/silk-caterpillar-scalp-serum/hero.png");
    background-size: cover;
    background-position: center;
}

.silk-serum-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(5, 12, 24, 0.78) 0%, rgba(5, 12, 24, 0.42) 52%, rgba(5, 12, 24, 0.08) 100%);
}

.silk-serum-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--home-shell-width);
    min-height: 100vh;
    margin: 0 auto;
    padding: 180px 54px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
}

.silk-serum-tags {
    font-size: 14px;
    letter-spacing: 0.23em;
}

.silk-serum-tags span {
    margin-left: 30px;
}

.silk-serum-hero h1 {
    margin-top: 16px;
    font-size: clamp(37px, 5vw, 66px);
    font-weight: 300;
    letter-spacing: 0.09em;
    line-height: 1.04;
}

.silk-serum-price {
    margin-top: 42px;
    font-size: 15px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.9);
}

.silk-serum-size {
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.72);
}

.silk-serum-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 16px;
    min-width: 290px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.silk-serum-cta:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.silk-serum-content {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 110px 54px 140px;
    display: grid;
    gap: 120px;
}

.silk-serum-section {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(28px, 5vw, 100px);
}

.silk-serum-copy h2 {
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 300;
    letter-spacing: 0.11em;
    color: #555555;
    white-space: nowrap;
}

.silk-serum-copy p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
    color: #626262;
}

.silk-serum-copy strong {
    font-weight: 500;
    color: #4a4a4a;
    letter-spacing: 0.04em;
}

.silk-serum-media img {
    width: 100%;
    height: auto;
}

.silk-serum-section-intro {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.silk-serum-product-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.silk-serum-thumbs {
    display: flex;
    gap: 20px;
}

.silk-serum-thumb-btn {
    display: block;
    padding: 0;
    border: 1px solid #d1d1d1;
    background: #f7f7f7;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.silk-serum-thumb-btn.is-active {
    border-color: #6f6f6f;
    box-shadow: 0 0 0 1px rgba(111, 111, 111, 0.25);
}

.silk-serum-thumbs img {
    width: 76px;
    height: 76px;
    object-fit: cover;
}

.silk-serum-primary-image {
    width: 100%;
    max-width: 540px;
}

.silk-serum-section-effects {
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.silk-serum-section-effects .silk-serum-copy {
    order: 1;
}

.silk-serum-section-effects .silk-serum-media {
    order: 2;
}

.silk-serum-section-application {
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.silk-serum-section-application .silk-serum-application-copy {
    order: 1;
}

.silk-serum-section-application .silk-serum-application-media {
    order: 2;
}

.silk-serum-application-media {
    position: relative;
}

.silk-serum-application-label {
    position: absolute;
    bottom: 28px;
    right: 28px;
    font-size: 11px;
    letter-spacing: 0.22em;
    line-height: 1.7;
    color: #ffffff;
    text-align: right;
}

@media (max-width: 980px) {
    .silk-serum-hero-content {
        padding: 150px 28px 90px;
    }

    .silk-serum-tags {
        font-size: 12px;
    }

    .silk-serum-tags span {
        margin-left: 20px;
    }

    .silk-serum-price {
        margin-top: 24px;
    }

    .silk-serum-cta {
        margin-top: 24px;
        min-width: 250px;
    }

    .silk-serum-content {
        padding: 92px 28px 110px;
        gap: 92px;
    }

    .silk-serum-section,
    .silk-serum-section-intro,
    .silk-serum-section-effects,
    .silk-serum-section-application {
        grid-template-columns: 1fr;
    }

    .silk-serum-section-effects .silk-serum-copy,
    .silk-serum-section-effects .silk-serum-media,
    .silk-serum-section-application .silk-serum-application-copy,
    .silk-serum-section-application .silk-serum-application-media {
        order: initial;
    }

    .silk-serum-copy,
    .silk-serum-media {
        max-width: 760px;
        margin: 0 auto;
    }

    .silk-serum-thumbs {
        justify-content: center;
    }

    .silk-serum-primary-image {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .silk-serum-hero {
        background-position: 62% center;
    }

    .silk-serum-hero-content {
        padding: 132px 16px 64px;
    }

    .silk-serum-tags {
        font-size: 11px;
        letter-spacing: 0.16em;
    }

    .silk-serum-tags span {
        margin-left: 12px;
    }

    .silk-serum-hero h1 {
        margin-top: 12px;
        font-size: 32px;
        letter-spacing: 0.07em;
    }

    .silk-serum-price {
        margin-top: 18px;
        font-size: 13px;
    }

    .silk-serum-size {
        font-size: 12px;
    }

    .silk-serum-cta {
        min-width: 220px;
        letter-spacing: 0.2em;
    }

    .silk-serum-content {
        padding: 72px 16px 84px;
        gap: 72px;
    }

    .silk-serum-copy h2 {
        font-size: 26px;
        letter-spacing: 0.08em;
    }

    .silk-serum-copy p {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.65;
    }

    .silk-serum-product-gallery {
        gap: 24px;
    }

    .silk-serum-thumbs {
        gap: 12px;
    }

    .silk-serum-thumbs img {
        width: 64px;
        height: 64px;
    }
}


/* ============================================================
   THE ART OF REFINEMENT PAGE
   ============================================================ */

.taor-page .taor-main {
    background: #ffffff;
}

/* Intro */
.taor-page .taor-intro {
    padding: 160px 40px 100px;
    text-align: center;
    max-width: 1920px;
    margin: 0 auto;
}

.taor-page .taor-title {
    font-family: var(--font-sans);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #454545;
    margin-top: 172px;
    margin-bottom: 48px;
}

.taor-page .taor-intro-text {
    max-width: 640px;
    margin: 0 auto;
}

.taor-page .taor-intro-text p {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: #454545;
    line-height: 1.8;
    margin-bottom: 20px;
}

.taor-page .taor-intro-text p:last-child {
    margin-bottom: 0;
}

/* Content sections wrapper */
.taor-page .taor-content {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 0 54px 140px;
    display: grid;
    gap: 120px;
}

.taor-page .taor-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 80px);
    align-items: center;
}

.taor-page .taor-section-media {
    overflow: hidden;
}

.taor-page .taor-section-media img {
    width: 100%;
    height: auto;
    display: block;
}

.taor-page .taor-section-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.taor-page .taor-section-heading {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.11em;
    color: #555555;
    margin: 0 0 28px;
    text-align: center;
}

.taor-page .taor-section-copy p {
    font-family: var(--font-sans);
    font-size: clamp(14px, 1.4vw, 17px);
    font-weight: 300;
    color: #444444;
    line-height: 1.8;
    margin: 0 0 18px;
    max-width: 540px;
    text-align: center;
}

.taor-page .taor-section-copy p:last-child {
    margin-bottom: 0;
}

/* Craftsmanship section reordering */
.taor-page .taor-craftsmanship {
    grid-template-columns: 1fr 1fr;
}

.taor-page .taor-craftsmanship .taor-section-media {
    order: 2;
}

.taor-page .taor-craftsmanship .taor-section-copy {
    order: 1;
}

/* Transformation: single sketch composition */
.taor-page .taor-transformation-media {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.taor-page .taor-sketch {
    width: 100%;
    max-height: 460px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 1024px) {
    .taor-page .taor-content {
        padding: 0 40px 100px;
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .taor-page .taor-intro {
        padding: 130px 24px 70px;
    }

    .taor-page .taor-content {
        padding: 0 24px 80px;
        gap: 60px;
    }

    .taor-page .taor-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .taor-page .taor-craftsmanship .taor-section-media,
    .taor-page .taor-responsibility .taor-section-media {
        order: -1;
    }

    .taor-page .taor-section-copy p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .taor-page .taor-intro {
        padding: 110px 20px 56px;
    }
}

/* ── TAOR page — Products section ──────────────────────── */
.taor-page .container {
    max-width: var(--home-shell-width);
    margin: 0 auto;
    padding: 80px 80px 120px;
}

.taor-page .section-label {
    display: flex;
    align-items: center;
    gap: 24px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c4956a;
    margin-bottom: 20px;
}

.taor-page .section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}

.taor-page .products-header {
    display: flex;
    align-items: stretch;
    gap: 80px;
    margin-bottom: 60px;
}

.taor-page .products-header-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.taor-page .products-header-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.9vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: #2c1f14;
    margin-bottom: 0;
}

.taor-page .products-header-left h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: #8b6147;
}

.taor-page .products-header-right {
    flex: 1;
}

.taor-page .products-header-right p {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #6b4e35;
    line-height: 1.9;
    margin: 0;
    text-align: left;
}

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

.taor-page .product-card {
    display: block;
    text-align: center;
    text-decoration: none;
}

.taor-page .product-image {
    height: 340px;
    margin-bottom: 20px;
    overflow: hidden;
}

.taor-page .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.taor-page .product-card h3 {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #4b4b4b;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 980px) {
    .taor-page .container {
        padding: 60px 40px 80px;
    }

    .taor-page .products-header {
        flex-direction: column;
        gap: 24px;
    }

    .taor-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .taor-page .product-image {
        height: 260px;
    }
}

@media (max-width: 640px) {
    .taor-page .container {
        padding: 48px 24px 64px;
    }

    .taor-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .taor-page .product-image {
        height: 200px;
    }
}

/* Hide reserve buttons for Talise Spa and One & Only Royal Mirage */
#talise-spa .reserve-button,
#one-only-royal-mirage .reserve-button {
    display: none;
}

/* ============================================================
   REQUEST ACCESS MODAL
   ============================================================ */
.ra-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 12, 7, 0.52);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease, visibility 0.32s ease;
}

.ra-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.ra-modal {
    background: #ffffff;
    width: min(480px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    padding: 44px 40px 48px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    scrollbar-width: thin;
    scrollbar-color: #d8ccc0 transparent;
}

.ra-overlay.is-open .ra-modal {
    transform: translateY(0);
}

.ra-modal-title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: #1e160e;
    text-align: center;
    margin: 0 0 28px;
}

.ra-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ddd6ce;
    background: none;
    color: #8a6e52;
    cursor: pointer;
    margin: 0 auto 32px;
    transition: border-color 0.2s ease, color 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.ra-close:hover {
    border-color: #8a6e52;
    color: #5a3f28;
}

/* Form */
.ra-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ra-field {
    position: relative;
}

.ra-input {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 18px;
    border: 1px solid #e4dbd3;
    background: #faf8f6;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: #3a2a1e;
    letter-spacing: 0.01em;
    outline: none;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    border-radius: 0;
}

.ra-input::placeholder {
    color: #a89a8e;
}

.ra-input:focus {
    border-color: #a8895c;
    background: #fff;
}

/* Custom Select */
.ra-select-wrap {
    position: relative;
}

.ra-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: 1px solid #e4dbd3;
    background: #faf8f6;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.2s ease;
}

.ra-select-trigger:focus {
    outline: none;
    border-color: #a8895c;
}

.ra-select-wrap.is-open .ra-select-trigger {
    border-color: #a8895c;
    background: #fff;
}

.ra-select-label {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: #a89a8e;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.ra-select-wrap.has-value .ra-select-label {
    color: #3a2a1e;
}

.ra-select-arrow {
    color: #a89a8e;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.ra-select-wrap.is-open .ra-select-arrow {
    transform: rotate(180deg);
}

.ra-select-dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e4dbd3;
    border-top: none;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 10;
    display: none;
}

.ra-select-wrap.is-open .ra-select-dropdown {
    display: block;
}

.ra-select-dropdown li {
    padding: 16px 18px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: #3a2a1e;
    cursor: pointer;
    border-bottom: 1px solid #f0ebe5;
    transition: background 0.15s ease, color 0.15s ease;
    letter-spacing: 0.01em;
}

.ra-select-dropdown li:last-child {
    border-bottom: none;
}

.ra-select-dropdown li:hover,
.ra-select-dropdown li.is-selected {
    background: #faf3ec;
    color: #7f634b;
}

/* Checkbox */
.ra-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-top: 4px;
}

.ra-checkbox-label span {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: #6a5a4e;
    letter-spacing: 0.01em;
}

.ra-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid #d0c4b8;
    border-radius: 0;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #7f634b;
}

/* Submit */
.ra-submit {
    width: 100%;
    padding: 18px;
    background: #8a6e52;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.25s ease;
    border-radius: 0;
}

.ra-submit:hover {
    background: #6e5540;
}

@media (max-width: 520px) {
    .ra-modal {
        padding: 36px 24px 40px;
    }
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-main {
    padding: 140px 50px 120px;
    background: #ffffff;
}

.checkout-container {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.checkout-right {
    display: flex;
    flex-direction: column;
}

/* Section labels */
.checkout-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.checkout-label-line {
    width: 20px;
    height: 1px;
    background: #4a4540;
}

.checkout-label-text {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: #4a4540;
}

/* Header */
.checkout-header {
    margin-bottom: 12px;
}

.checkout-title {
    font-family: var(--font-sans);
    font-size: 40px;
    font-weight: 400;
    color: #111009;
    line-height: 1.2;
}

.checkout-title em {
    font-style: italic;
}

.checkout-desc {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: #111009;
    line-height: 1.85;
    margin-bottom: 40px;
}

/* Sections */
.checkout-section {
    margin-bottom: 36px;
}

/* Form */
.checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px 20px;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-field-label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 2.52px;
    text-transform: uppercase;
    color: #111009;
}

.checkout-input {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: #111009;
    border: 1px solid #6d5141;
    background: #fff;
    padding: 15px 17px;
    outline: none;
    transition: border-color 0.3s;
}

.checkout-input::placeholder {
    color: #bbb;
    font-style: italic;
}

.checkout-input:focus {
    border-color: #b8945a;
}

/* Sanctum Cards */
.checkout-sanctum-grid {
    display: flex;
    gap: 16px;
}

.checkout-sanctum-card {
    flex: 1;
    border: 1px solid #6d5141;
    background: #fff;
    padding: 23px 25px;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s, border-color 0.3s;
}

.checkout-sanctum-card.active {
    background: #6d5141;
}

.checkout-sanctum-card.active .checkout-sanctum-name,
.checkout-sanctum-card.active .checkout-sanctum-address {
    color: #fff;
}

.checkout-sanctum-name {
    display: block;
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 400;
    color: #111009;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.checkout-sanctum-address {
    display: block;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    color: #8a847c;
    line-height: 1.65;
    transition: color 0.3s;
}

/* Calendar */
.checkout-calendar-info {
    background: rgba(184, 148, 90, 0.07);
    border: 1px solid #b8945a;
    border-left-width: 3px;
    padding: 6px 10px;
    margin-bottom: 20px;
}

.checkout-calendar-info p {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    color: #4a4540;
    line-height: 1.8;
}

.checkout-calendar-info strong {
    font-weight: 400;
}

.checkout-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.checkout-calendar-month {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 400;
    color: #111009;
}

.checkout-calendar-nav {
    display: flex;
    gap: 8px;
}

.checkout-cal-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(184, 148, 90, 0.18);
    background: #fff;
    color: #b8945a;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.checkout-cal-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.checkout-cal-btn:hover:not(:disabled) {
    background: rgba(184, 148, 90, 0.08);
}

.checkout-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 3px;
}

.checkout-calendar-weekdays span {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #111009;
    padding: 6px 0;
}

.checkout-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.checkout-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: #111009;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.checkout-day:hover:not(.checkout-day-past):not(.checkout-day-empty) {
    background: rgba(184, 148, 90, 0.1);
}

.checkout-day-empty {
    border: none;
    cursor: default;
}

.checkout-day-past {
    opacity: 0.25;
    cursor: default;
}

.checkout-day-spa {
    background: rgba(184, 148, 90, 0.35);
    border-color: rgba(0, 0, 0, 0.15);
}

.checkout-day-salt {
    background: rgba(0, 156, 222, 0.25);
    border-color: rgba(0, 0, 0, 0.15);
}

.checkout-day-selected {
    background: #b8945a !important;
    color: #fff;
    font-weight: 500;
}

.checkout-calendar-legend {
    display: flex;
    gap: 20px;
    margin-top: 14px;
}

.checkout-legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.checkout-legend-color {
    width: 14px;
    height: 14px;
    border-radius: 2px;
}

.checkout-legend-spa {
    background: #b8945a;
}

.checkout-legend-salt {
    background: #c6e4f1;
    border: 1px solid rgba(59, 122, 138, 0.22);
}

.checkout-legend-item span:last-child {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8a847c;
}

/* Reservation Summary */
.checkout-reservation {
    flex: 1;
    border: 1px solid #6d5141;
    background: #fff;
    padding: 28px;
    margin-top: 24px;
}

.checkout-reservation-title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    color: #6d5141;
    margin-bottom: 14px;
}

.checkout-reservation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0 10px;
    border-bottom: 1px solid #6d5141;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 1.35px;
    text-transform: uppercase;
    color: #6d5141;
}

.checkout-reservation-row-main {
    padding: 14px 0 15px;
}

.checkout-reservation-row-main span:first-child {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
}

.checkout-reservation-price {
    font-size: 22px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.checkout-reservation-value {
    font-size: 11px !important;
    font-style: italic;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

/* Submit */
.checkout-submit {
    width: 100%;
    margin-top: 16px;
    background: #6d5141;
    border: 1px solid #fff;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    padding: 16px 33px;
    cursor: pointer;
    transition: background 0.3s;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-submit:hover {
    background: #5a4335;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-main {
        padding: 120px 24px 80px;
    }

    .checkout-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .checkout-form-grid {
        grid-template-columns: 1fr;
    }

    .checkout-sanctum-grid {
        flex-direction: column;
    }

    .checkout-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .checkout-main {
        padding: 110px 20px 60px;
    }

    .checkout-title {
        font-size: 26px;
    }
}

/* ─── Success / Confirmation Page ─────────────────────────────────────────── */

.success-main {
    padding: 140px 50px 100px;
    background: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

/* Error state */
.success-error {
    text-align: center;
    padding: 80px 20px;
    color: var(--text);
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* ── Top two-column layout ── */
.success-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 64px;
}

/* ── Left column ── */
.success-checkmark {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(47, 38, 31, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.success-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 24px;
}

.success-heading em {
    font-style: italic;
}

.success-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(47, 38, 31, 0.72);
    max-width: 380px;
    margin-bottom: 36px;
}

.success-return-btn {
    display: inline-block;
    border: 1px solid var(--text);
    padding: 14px 32px;
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 500;
    color: var(--text);
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
}

.success-return-btn:hover {
    background: var(--text);
    color: #fff;
}

/* ── Right: booking card ── */
.success-card {
    background: #6d5043;
    color: #ffffff;
    padding: 32px 32px 0;
    display: flex;
    flex-direction: column;
}

.success-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 4px;
}

.success-card-title {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.success-card-badge {
    font-size: 9px;
    letter-spacing: 0.16em;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 4px 10px;
    color: rgba(255, 255, 255, 0.85);
}

.success-card-rows {
    display: flex;
    flex-direction: column;
}

.success-card-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    gap: 16px;
}

.success-card-label {
    font-size: 10px;
    letter-spacing: 0.14em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    padding-top: 2px;
    min-width: 72px;
    flex-shrink: 0;
}

.success-card-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    text-align: right;
    font-weight: 400;
}

.success-card-value-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.success-card-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.success-card-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0 28px;
    margin-top: 4px;
}

.success-card-total > span:first-child {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.success-card-total-amount {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.01em;
}

/* ── Concierge strip ── */
.success-concierge {
    border: 1px solid rgba(47, 38, 31, 0.14);
    padding: 40px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.success-concierge-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.success-concierge-label span {
    font-size: 10px;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--brown);
    text-transform: uppercase;
}

.success-concierge-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--text);
    margin-bottom: 12px;
}

.success-concierge-heading em {
    font-style: italic;
}

.success-concierge-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(47, 38, 31, 0.65);
    max-width: 420px;
}

.success-concierge-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.success-concierge-phone {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px;
    font-weight: 400;
    color: var(--text);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.success-concierge-hours {
    font-size: 10px;
    letter-spacing: 0.18em;
    color: rgba(47, 38, 31, 0.55);
    text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .success-main {
        padding: 110px 24px 80px;
    }

    .success-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .success-heading {
        font-size: 40px;
    }

    .success-concierge {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 24px;
    }

    .success-concierge-right {
        align-items: flex-start;
    }

    .success-concierge-phone {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .success-heading {
        font-size: 32px;
    }

    .success-card {
        padding: 24px 20px 0;
    }

    .success-card-total-amount {
        font-size: 28px;
    }
}

/* ── Toast notification (YOUR BAG) ──────────────────────────────────────── */

#mg-toast-root {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.mg-toast {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 260px;
    max-width: 320px;
    padding: 18px 16px 18px 20px;
    background: #2f261f;
    color: #f5f0eb;
    border-left: 2px solid #8b6748;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    pointer-events: auto;

    /* Enter: start invisible and shifted down */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.mg-toast--visible {
    opacity: 1;
    transform: translateY(0);
}

.mg-toast-body {
    flex: 1;
    min-width: 0;
}

.mg-toast-label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8b6748;
    margin-bottom: 5px;
}

.mg-toast-name {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
    color: #f5f0eb;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mg-toast-details {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.06em;
    color: rgba(245, 240, 235, 0.5);
    margin-top: 3px;
}

.mg-toast-close {
    flex-shrink: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 2px;
    color: rgba(245, 240, 235, 0.45);
    line-height: 1;
    transition: color 0.15s;
    margin-top: 1px;
}

.mg-toast-close:hover {
    color: #f5f0eb;
}

@media (max-width: 480px) {
    #mg-toast-root {
        bottom: 20px;
        right: 16px;
        left: 16px;
    }

    .mg-toast {
        min-width: 0;
        max-width: 100%;
    }
}

/* ============================================================
   CART SIDEBAR — "YOUR BAG"
   ============================================================ */

/* Backdrop */
.cart-sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 13, 9, 0.42);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Root wrapper — controls aria-hidden and backdrop pointer events */
.cart-sidebar.is-open .cart-sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
}

/* Panel */
.cart-sidebar-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 440px;
    max-width: 100vw;
    background: #ffffff;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.52s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
    box-shadow: -2px 0 40px rgba(20, 13, 9, 0.12);
}

.cart-sidebar.is-open .cart-sidebar-panel {
    transform: translateX(0);
}

/* Head — base (detail overridden below with back-button layout) */
.cart-sidebar-head {
    display: flex;
    align-items: center;
    padding: 32px 32px 24px;
    flex-shrink: 0;
}

.cart-sidebar-eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: #2f261f;
    text-transform: uppercase;
}

.cart-sidebar-count {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    color: #9a8a7e;
    letter-spacing: 0.04em;
}

.cart-sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(47, 38, 31, 0.18);
    background: transparent;
    color: #2f261f;
    cursor: pointer;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
    flex-shrink: 0;
}

.cart-sidebar-close:hover {
    background: #2f261f;
    border-color: #2f261f;
    color: #ffffff;
}

.cart-sidebar-close:focus-visible {
    outline: 2px solid #7a5a44;
    outline-offset: 2px;
}

/* Divider */
.cart-sidebar-divider {
    height: 1px;
    background: rgba(47, 38, 31, 0.08);
    flex-shrink: 0;
}

/* .cart-sidebar-body removed — scroll now lives on .cart-screen children */

/* Item list */
.cart-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Single cart item */
.cart-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 0 20px;
    padding: 22px 32px;
    border-bottom: 1px solid rgba(47, 38, 31, 0.07);
    position: relative;
    transition: background 0.18s ease;
}

.cart-item:hover {
    background: rgba(122, 90, 68, 0.022);
}

/* Item image */
.cart-item-image-wrap {
    width: 76px;
    height: 96px;
    overflow: hidden;
    background: #f5f0eb;
    flex-shrink: 0;
}

.cart-item-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.cart-item:hover .cart-item-image-wrap img {
    transform: scale(1.04);
}

/* Item info */
.cart-item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 2px 0;
}

.cart-item-name {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: #2f261f;
    text-transform: uppercase;
    line-height: 1.5;
    margin: 0 0 4px;
    padding-right: 24px;
}

.cart-item-details {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    color: #9a8a7e;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin: 0 0 10px;
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-item-price {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    color: #2f261f;
    letter-spacing: 0.06em;
}

/* Quantity controls */
.cart-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(47, 38, 31, 0.2);
    height: 28px;
}

.cart-qty-btn {
    width: 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #2f261f;
    cursor: pointer;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    transition: background 0.18s ease;
    flex-shrink: 0;
}

.cart-qty-btn:hover {
    background: rgba(122, 90, 68, 0.1);
}

.cart-qty-btn:active {
    background: rgba(122, 90, 68, 0.2);
}

.cart-qty-val {
    min-width: 28px;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    color: #2f261f;
    letter-spacing: 0.06em;
    user-select: none;
    padding: 0 2px;
}

/* Remove button */
.cart-item-remove {
    position: absolute;
    top: 20px;
    right: 28px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: rgba(47, 38, 31, 0.32);
    cursor: pointer;
    transition: color 0.18s ease;
    padding: 0;
}

.cart-item-remove:hover {
    color: #2f261f;
}

/* Empty state */
.cart-empty {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 72px 40px;
    gap: 16px;
}

.cart-empty.is-visible {
    display: flex;
}

.cart-empty-icon {
    color: rgba(122, 90, 68, 0.35);
    margin-bottom: 8px;
}

.cart-empty-title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #2f261f;
    text-transform: uppercase;
    margin: 0;
}

.cart-empty-sub {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    color: #9a8a7e;
    letter-spacing: 0.04em;
    line-height: 1.7;
    margin: 0;
    max-width: 240px;
}

/* Footer */
.cart-sidebar-foot {
    flex-shrink: 0;
    padding: 0 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
}

.cart-subtotal-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 22px 0 6px;
}

.cart-subtotal-label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: #9a8a7e;
    text-transform: uppercase;
}

.cart-subtotal-amount {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 300;
    color: #2f261f;
    letter-spacing: 0.04em;
}

.cart-subtotal-note {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    color: #b4a49a;
    letter-spacing: 0.03em;
    margin: 0 0 22px;
    line-height: 1.6;
}

/* Checkout button — styled like "BEGIN YOUR RETURN" but inverted / luxury */
.cart-checkout-btn {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: #2f261f;
    color: #ffffff;
    border: 1px solid #2f261f;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
    margin-bottom: 12px;
}

.cart-checkout-btn:hover {
    background: #7a5a44;
    border-color: #7a5a44;
    color: #ffffff;
}

.cart-checkout-btn:focus-visible {
    outline: 2px solid #7a5a44;
    outline-offset: 2px;
}

/* Continue shopping — ghost */
.cart-continue-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    color: #9a8a7e;
    border: 1px solid rgba(47, 38, 31, 0.18);
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.22s ease, color 0.22s ease;
}

.cart-continue-btn:hover {
    border-color: rgba(47, 38, 31, 0.45);
    color: #2f261f;
}

.cart-continue-btn:focus-visible {
    outline: 2px solid #7a5a44;
    outline-offset: 2px;
}

/* ── Head layout update (back button added) ──────────────── */

.cart-sidebar-head {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 32px 32px 24px;
    flex-shrink: 0;
}

.cart-sidebar-head-mid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Back button */
.cart-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: #9a8a7e;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0;
    margin-right: 16px;
    flex-shrink: 0;
    transition: color 0.2s ease;
    line-height: 1;
}

.cart-back-btn:hover {
    color: #2f261f;
}

.cart-back-btn:focus-visible {
    outline: 2px solid #7a5a44;
    outline-offset: 2px;
}

.cart-back-btn[hidden] {
    display: none;
}

/* ── Screens container ───────────────────────────────────── */

.cart-screens {
    flex: 1;
    position: relative;
    overflow: hidden;
    /* height is managed by flex; screens position absolutely within */
}

.cart-screen {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform 0.48s cubic-bezier(0.76, 0, 0.24, 1),
                opacity   0.48s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform, opacity;
}

.cart-screen::-webkit-scrollbar {
    width: 3px;
}

.cart-screen::-webkit-scrollbar-track {
    background: transparent;
}

.cart-screen::-webkit-scrollbar-thumb {
    background: rgba(122, 90, 68, 0.28);
    border-radius: 2px;
}

/* Bag screen — visible by default */
.screen-bag {
    transform: translateX(0);
    opacity: 1;
}

/* Checkout screen — off-screen right by default */
.screen-checkout {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

/* When panel switches to checkout step */
.cart-sidebar-panel.is-checkout .screen-bag {
    transform: translateX(-48px);
    opacity: 0;
    pointer-events: none;
}

.cart-sidebar-panel.is-checkout .screen-checkout {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

/* Disable transitions during instant reset (e.g. on sidebar open) */
.cart-sidebar-panel.no-transition .cart-screen {
    transition: none !important;
}

/* Checkout footer */
.cart-sidebar-foot-co {
    flex-shrink: 0;
    padding: 0 32px 36px;
    background: #ffffff;
}

.cart-sidebar-foot-co[hidden] {
    display: none;
}

.csf-order-total-row {
    padding-top: 22px;
}

/* ── Checkout form ───────────────────────────────────────── */

.csf-intro {
    padding: 24px 32px 0;
}

.csf-intro-text {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    color: #9a8a7e;
    letter-spacing: 0.03em;
    line-height: 1.75;
    margin: 0;
}

.csf-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px 32px 28px;
}

.csf-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.csf-field:last-of-type {
    margin-bottom: 0;
}

.csf-label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: #2f261f;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.csf-optional {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #b4a49a;
    text-transform: none;
}

/* Shared input / select / textarea style */
.csf-input {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: #2f261f;
    background: #ffffff;
    border: none;
    border-bottom: 1px solid rgba(47, 38, 31, 0.2);
    padding: 10px 0;
    width: 100%;
    outline: none;
    transition: border-color 0.25s ease;
    letter-spacing: 0.02em;
    line-height: 1.5;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.csf-input::placeholder {
    color: #c4b8b2;
    font-style: italic;
    font-weight: 300;
}

.csf-input:focus {
    border-bottom-color: #7a5a44;
}

.csf-input.is-invalid {
    border-bottom-color: #c0614a;
}

/* Select wrapper (for custom arrow) */
.csf-select-wrap {
    position: relative;
}

.csf-select {
    cursor: pointer;
    padding-right: 20px;
    color: #2f261f;
}

.csf-select option {
    color: #2f261f;
    font-style: normal;
}

.csf-select option[value=""][disabled] {
    color: #c4b8b2;
}

.csf-select-arrow {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #9a8a7e;
    transition: transform 0.2s ease;
}

.csf-select:focus + .csf-select-arrow {
    color: #7a5a44;
}

/* Textarea */
.csf-textarea {
    resize: none;
    line-height: 1.65;
}

/* Inline error */
.csf-error {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 300;
    color: #c0614a;
    letter-spacing: 0.04em;
    line-height: 1.4;
    min-height: 0;
    display: block;
}

/* Global form error */
.csf-global-error {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    color: #c0614a;
    letter-spacing: 0.04em;
    line-height: 1.6;
    border: 1px solid rgba(192, 97, 74, 0.28);
    padding: 10px 14px;
    margin-top: 12px;
}

.csf-global-error[hidden] {
    display: none;
}

/* Place order button loading state */
.csf-place-btn.is-loading {
    opacity: 0.6;
    pointer-events: none;
    letter-spacing: 0.18em;
}

/* ── Success state ───────────────────────────────────────── */

.csf-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 40px 40px;
    gap: 14px;
}

.csf-success[hidden] {
    display: none;
}

.csf-success-icon {
    color: #7a5a44;
    margin-bottom: 8px;
}

.csf-success-title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.16em;
    color: #2f261f;
    text-transform: uppercase;
    margin: 0;
}

.csf-success-sub {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    color: #9a8a7e;
    letter-spacing: 0.03em;
    line-height: 1.7;
    margin: 0;
    max-width: 260px;
}

.csf-success-id {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    color: #b4a49a;
    letter-spacing: 0.04em;
    margin: 4px 0 0;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 480px) {
    .cart-sidebar-panel {
        width: 100vw;
    }

    .cart-sidebar-head {
        padding: 24px 20px 18px;
    }

    .cart-item {
        padding: 18px 20px;
    }

    .cart-item-remove {
        right: 16px;
    }

    .cart-sidebar-foot,
    .cart-sidebar-foot-co {
        padding: 0 20px 28px;
    }

    .csf-form {
        padding: 16px 20px 24px;
    }

    .csf-intro {
        padding: 20px 20px 0;
    }
}

/* ============================================================
   THANK-YOU / ORDER CONFIRMATION PAGE
   ============================================================ */

.thank-you-page .ty-main {
    padding: 140px 50px 100px;
    background: #ffffff;
    max-width: 1040px;
    margin: 0 auto;
}

/* ── Error state ─────────────────────────────────────────── */
.ty-error-wrap,
.ty-pending-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    gap: 20px;
}

.ty-error-icon {
    color: rgba(192, 97, 74, 0.7);
    margin-bottom: 4px;
}

.ty-error-msg {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: rgba(47, 38, 31, 0.75);
    line-height: 1.7;
    max-width: 400px;
}

/* ── Pending state ───────────────────────────────────────── */
.ty-pending-icon {
    color: rgba(122, 90, 68, 0.55);
    margin-bottom: 4px;
}

.ty-pending-title {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: #2f261f;
    text-transform: uppercase;
    margin: 0;
}

.ty-pending-sub {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: rgba(47, 38, 31, 0.7);
    line-height: 1.75;
    margin: 0;
    max-width: 420px;
}

.ty-pending-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

/* ── Shared button styles ────────────────────────────────── */
.ty-btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2f261f;
    color: #ffffff;
    border: 1px solid #2f261f;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.ty-btn-primary:hover {
    background: #7a5a44;
    border-color: #7a5a44;
}

.ty-btn-ghost {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    color: #9a8a7e;
    border: 1px solid rgba(47, 38, 31, 0.2);
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.22s ease, color 0.22s ease;
}

.ty-btn-ghost:hover {
    border-color: rgba(47, 38, 31, 0.45);
    color: #2f261f;
}

/* ── Top two-column layout ───────────────────────────────── */
.ty-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 64px;
}

/* ── Left column ─────────────────────────────────────────── */
.ty-checkmark {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(47, 38, 31, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #7a5a44;
}

.ty-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.ty-label-line {
    width: 20px;
    height: 1px;
    background: #7a5a44;
    flex-shrink: 0;
}

.ty-label-text {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.24em;
    color: #7a5a44;
    text-transform: uppercase;
}

.ty-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 52px;
    line-height: 1.1;
    color: #2f261f;
    margin-bottom: 22px;
}

.ty-heading em {
    font-style: italic;
}

.ty-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(47, 38, 31, 0.68);
    max-width: 360px;
    margin-bottom: 32px;
}

.ty-desc strong {
    font-weight: 400;
    color: #2f261f;
}

.ty-left .ty-btn-primary {
    margin-bottom: 12px;
}

/* ── Right column: order card ────────────────────────────── */
.ty-card {
    background: #2f261f;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.ty-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 28px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ty-card-title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
}

.ty-card-badge {
    font-family: var(--font-sans);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.2em;
    border: 1px solid rgba(184, 148, 90, 0.55);
    color: #c9a97a;
    padding: 4px 10px;
}

.ty-card-meta {
    padding: 0 28px;
}

.ty-card-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    gap: 12px;
}

.ty-card-label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
    flex-shrink: 0;
}

.ty-card-value {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    text-align: right;
}

.ty-card-mono {
    font-size: 11px;
    letter-spacing: 0.08em;
}

.ty-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 4px 0;
}

/* ── Item list inside card ───────────────────────────────── */
.ty-items {
    list-style: none;
    padding: 8px 28px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ty-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ty-item:last-child {
    border-bottom: none;
}

.ty-item-img {
    width: 44px;
    height: 54px;
    flex-shrink: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.ty-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ty-item-info {
    flex: 1;
    min-width: 0;
}

.ty-item-name {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 3px;
    line-height: 1.4;
}

.ty-item-details {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 2px;
}

.ty-item-qty {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.06em;
    margin: 0;
}

.ty-item-price {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

/* ── Card total ──────────────────────────────────────────── */
.ty-card-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px 28px;
}

.ty-card-total-label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
}

.ty-card-total-amount {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.01em;
}

/* ── Concierge band ──────────────────────────────────────── */
.ty-concierge {
    border: 1px solid rgba(47, 38, 31, 0.12);
    padding: 40px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.ty-concierge-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.ty-concierge-label span {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: #7a5a44;
    text-transform: uppercase;
}

.ty-concierge-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 26px;
    color: #2f261f;
    margin-bottom: 12px;
    line-height: 1.2;
}

.ty-concierge-heading em {
    font-style: italic;
}

.ty-concierge-desc {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(47, 38, 31, 0.62);
    max-width: 400px;
}

.ty-concierge-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
}

.ty-concierge-phone {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    color: #2f261f;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.ty-concierge-hours {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: rgba(47, 38, 31, 0.5);
    text-transform: uppercase;
}

.ty-concierge-email {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    color: #7a5a44;
    letter-spacing: 0.04em;
    text-decoration: none;
    margin-top: 2px;
    transition: opacity 0.2s;
}

.ty-concierge-email:hover {
    opacity: 0.7;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 820px) {
    .thank-you-page .ty-main {
        padding: 110px 24px 80px;
    }

    .ty-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ty-heading {
        font-size: 40px;
    }

    .ty-concierge {
        grid-template-columns: 1fr;
        padding: 32px 28px;
        gap: 28px;
    }

    .ty-concierge-right {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .thank-you-page .ty-main {
        padding: 90px 16px 60px;
    }

    .ty-heading {
        font-size: 34px;
    }

    .ty-top {
        margin-bottom: 40px;
    }

    .ty-card-head,
    .ty-card-meta,
    .ty-items,
    .ty-card-total {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ty-concierge-phone {
        font-size: 24px;
    }
}
