/* =============================================
   THE ROYAL CHEMTECH — STYLES
   ============================================= */

/* === RESET & ROOT === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:        #F5F0E8;
    --bg-alt:    #EDE6D9;
    --dark:      #1C1916;
    --text:      #2C2820;
    --muted:     #7A6F64;
    --accent:    #C49A5A;
    --accent-dk: #9A7240;
    --cream:     #FAF6F0;
    --border:    #DDD5C4;

    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'Jost', system-ui, sans-serif;

    --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in:  cubic-bezier(0.55, 0, 1, 0.45);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.is-loading { overflow: hidden; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: var(--sans); }

/* === CUSTOM CURSOR === */
.cursor {
    position: fixed; top: 0; left: 0; z-index: 9999;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, opacity 0.3s;
    mix-blend-mode: multiply;
}
.cursor-follower {
    position: fixed; top: 0; left: 0; z-index: 9998;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--accent);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.35s var(--ease), width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0.5;
}
.cursor.is-hover { transform: translate(-50%, -50%) scale(3); opacity: 0.3; }
.cursor-follower.is-hover { width: 60px; height: 60px; opacity: 0.2; }

/* === PRELOADER === */
.preloader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }
.preloader-logo {
    font-family: var(--serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.3em;
    opacity: 0;
    animation: fadeIn 0.6s 0.2s forwards;
}
.preloader-bar-wrap {
    width: 200px; height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 24px auto;
    overflow: hidden;
}
.preloader-bar {
    height: 100%;
    background: var(--accent);
    width: 0;
    transition: width 1.8s var(--ease);
}
.preloader-sub {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    color: var(--muted);
    opacity: 0;
    animation: fadeIn 0.6s 0.4s forwards;
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }

/* === HEADER === */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 clamp(20px, 4vw, 64px);
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s;
}
/* Inner pages always have solid header (no hero behind it) */
.inner-page .header {
    background: rgba(245, 240, 232, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}
.inner-page .header .logo-name,
.inner-page .header .logo-sub { color: var(--dark); }
.inner-page .header .nav-link { color: var(--muted); }
.inner-page .header .nav-link:hover { color: var(--text); }
.inner-page .header .nav-enquire { border-color: var(--border); color: var(--text); }
.inner-page .header .burger span { background: var(--dark); }
.header.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
    padding-top: 0; padding-bottom: 0;
}
.header-inner {
    display: flex; align-items: center;
    height: 80px;
    gap: 32px;
}
.logo {
    display: flex; flex-direction: column;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-name {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 1;
    color: var(--cream);
    transition: color 0.4s;
}
.header.scrolled .logo-name { color: var(--dark); }
.logo-sub {
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    color: rgba(250,246,240,0.6);
    text-transform: uppercase;
    transition: color 0.4s;
}
.header.scrolled .logo-sub { color: var(--muted); }

.nav { display: flex; align-items: center; gap: 36px; margin-left: auto; }
.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250,246,240,0.8);
    transition: color 0.3s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--cream); }
.header.scrolled .nav-link { color: var(--muted); }
.header.scrolled .nav-link:hover { color: var(--text); }

.nav-enquire {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid rgba(250,246,240,0.5);
    color: var(--cream);
    border-radius: 2px;
    transition: all 0.3s;
    white-space: nowrap;
}
.nav-enquire:hover { background: var(--accent); border-color: var(--accent); color: white; }
.header.scrolled .nav-enquire { border-color: var(--border); color: var(--text); }
.header.scrolled .nav-enquire:hover { background: var(--accent); border-color: var(--accent); color: white; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: all 0.3s; }
.header.scrolled .burger span { background: var(--dark); }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.burger.active span:nth-child(2) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 24px clamp(20px, 4vw, 64px) 32px;
    background: var(--cream);
    border-top: 1px solid var(--border);
    gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    letter-spacing: 0.05em;
}
.mobile-cta {
    margin-top: 12px;
    background: var(--dark);
    color: var(--cream);
    text-align: center;
    padding: 14px;
    border-radius: 2px;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    border-bottom: none;
}

/* === HERO === */
.hero {
    position: relative;
    height: 100svh; min-height: 600px;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    transform-origin: center;
    will-change: transform;
}
.hero-bg img {
    width: 100%; height: 110%;
    object-fit: cover;
    transform-origin: center bottom;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(28, 25, 22, 0.72) 0%,
        rgba(28, 25, 22, 0.4) 60%,
        rgba(28, 25, 22, 0.2) 100%
    );
}
.hero-content {
    position: relative; z-index: 2;
    padding: 0 clamp(20px, 6vw, 100px);
    padding-top: 80px;
    max-width: 900px;
}
.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 1.8s forwards;
}
.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 0.95;
    color: var(--cream);
    margin-bottom: 28px;
    display: block;
}
.hero-line {
    display: block;
    opacity: 0;
    animation: revealLine 0.9s var(--ease-out) forwards;
}
.hero-line:nth-child(1) { animation-delay: 1.9s; }
.hero-line:nth-child(2) { animation-delay: 2.1s; }
.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
}
@keyframes revealLine {
    from { opacity: 0; transform: translateY(60px) skewY(3deg); }
    to   { opacity: 1; transform: translateY(0) skewY(0); }
}
.hero-desc {
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    font-weight: 300;
    color: rgba(250,246,240,0.8);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s 2.3s forwards;
}
.hero-actions {
    display: flex; flex-wrap: wrap; gap: 14px;
    opacity: 0;
    animation: fadeUp 0.8s 2.5s forwards;
}

.hero-scroll {
    position: absolute; bottom: 40px; left: clamp(20px, 6vw, 100px);
    z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    opacity: 0;
    animation: fadeIn 1s 3s forwards;
}
.hero-scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    animation: scrollPulse 2s 3.2s infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.15); }
}
.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(250,246,240,0.6);
    writing-mode: vertical-rl;
}

.hero-counter {
    position: absolute; bottom: 40px; right: clamp(20px, 6vw, 100px);
    z-index: 2;
    display: flex; align-items: center; gap: 32px;
    opacity: 0;
    animation: fadeIn 1s 3s forwards;
}
.hero-counter-item { text-align: center; }
.hero-num {
    display: block;
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
}
.hero-label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(250,246,240,0.5);
    margin-top: 4px;
}
.hero-counter-divider { width: 1px; height: 36px; background: rgba(250,246,240,0.2); }

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.35s var(--ease);
    cursor: pointer;
    white-space: nowrap;
}
.btn-cream {
    background: var(--cream);
    color: var(--dark);
}
.btn-cream:hover { background: var(--accent); color: white; }
.btn-outline-cream {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(250,246,240,0.5);
}
.btn-outline-cream:hover { background: rgba(250,246,240,0.12); border-color: var(--cream); }
.btn-dark {
    background: var(--dark);
    color: var(--cream);
}
.btn-dark:hover { background: var(--accent); }
.btn-full { width: 100%; }
.mt-24 { margin-top: 24px; }

/* === TICKER === */
.ticker-wrap {
    background: var(--dark);
    overflow: hidden;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.ticker { display: flex; white-space: nowrap; }
.ticker-track {
    display: flex; align-items: center; gap: 28px;
    animation: ticker 30s linear infinite;
    flex-shrink: 0;
    padding-right: 28px;
}
.ticker-track span {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,246,240,0.55);
    flex-shrink: 0;
}
.ticker-track .dot { color: var(--accent); font-size: 1.2rem; line-height: 1; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === SECTION HELPERS === */
.container { max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px); }
.eyebrow {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
}
.section-title em { font-style: italic; color: var(--accent); }
.section-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
    max-width: 520px;
    margin-top: 16px;
}
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 16px auto 0; }
.lead-text {
    font-family: var(--serif);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 300;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
}
.body-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

/* === STORY === */
.story {
    padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 64px);
    background: var(--cream);
    overflow: hidden;
}
.story-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}
.story-visual { position: relative; }
.story-img-frame {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 2px;
}
.story-img-frame img { transition: transform 0.8s var(--ease); }
.story-img-frame:hover img { transform: scale(1.04); }
.story-badge {
    position: absolute; bottom: -24px; right: -24px;
    width: 120px; height: 120px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 12px;
}
.badge-num {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: white;
    line-height: 1;
}
.badge-txt {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
    margin-top: 4px;
}
.story-secondary-img {
    position: absolute; top: 40%; right: -40px;
    width: 42%;
    aspect-ratio: 3/4;
    border: 5px solid var(--cream);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(28,25,22,0.15);
}

/* === SCROLL SHOWCASE === */
.showcase-wrapper {
    height: 350vh;
    position: relative;
}
.showcase-sticky {
    position: sticky; top: 0;
    height: 100vh;
    background: var(--dark);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    overflow: hidden;
    padding: 80px clamp(20px, 4vw, 64px) 40px;
}
.showcase-label {
    text-align: center;
    margin-bottom: 40px;
    z-index: 2;
    position: relative;
}
.showcase-label .eyebrow { color: rgba(196,154,90,0.8); }
.showcase-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
}
.showcase-title em { font-style: italic; color: var(--accent); }

.showcase-stage {
    display: flex; gap: clamp(16px, 2.5vw, 32px);
    align-items: flex-end;
    width: 100%; max-width: 1100px;
    height: 55vh;
    position: relative;
    z-index: 2;
}
.showcase-piece {
    flex: 1; display: flex; flex-direction: column;
    will-change: transform;
    transition: transform 0s; /* JS handles this */
}
.sp-left  { transform: translateX(-120%) translateY(30px); }
.sp-center { transform: translateY(120%); flex: 1.3; }
.sp-right { transform: translateX(120%) translateY(30px); }

.sp-img {
    flex: 1;
    overflow: hidden;
    border-radius: 2px;
}
.sp-img img { transition: transform 0.6s var(--ease); }
.showcase-piece:hover .sp-img img { transform: scale(1.05); }
.sp-info {
    padding: 16px 0 0;
}
.sp-cat {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(196,154,90,0.7);
    display: block;
    margin-bottom: 6px;
}
.showcase-piece h3 {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 10px;
}
.sp-enquire {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    transition: letter-spacing 0.3s;
}
.sp-enquire:hover { letter-spacing: 0.25em; }

.showcase-progress-wrap {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: rgba(255,255,255,0.08);
    z-index: 3;
}
.showcase-progress {
    height: 100%;
    background: var(--accent);
    width: 0;
    transition: width 0.05s linear;
}
.showcase-hint {
    position: absolute; bottom: 20px; right: clamp(20px, 4vw, 64px);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,246,240,0.3);
    z-index: 3;
}

/* === COLLECTIONS === */
.collection {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--bg);
}
.collection-outdoor { background: var(--bg-alt); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.5vw, 36px);
}
.product-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.pc-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 2px;
    background: var(--bg-alt);
}
.pc-img-wrap img { transition: transform 0.7s var(--ease); }
.product-card:hover .pc-img-wrap img { transform: scale(1.06); }

.pc-overlay {
    position: absolute; inset: 0;
    background: rgba(28, 25, 22, 0.45);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.product-card:hover .pc-overlay { opacity: 1; }
.pc-btn {
    padding: 11px 28px;
    border: 1px solid rgba(250,246,240,0.7);
    color: var(--cream);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s;
    transform: translateY(10px);
    transition: transform 0.4s var(--ease-out), background 0.3s, border-color 0.3s;
}
.product-card:hover .pc-btn { transform: translateY(0); }
.pc-btn:hover { background: var(--accent); border-color: var(--accent); }

.pc-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--accent);
    color: white;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}
.pc-info { padding: 20px 0 0; }
.pc-cat {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}
.pc-name {
    font-family: var(--serif);
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 8px;
}
.pc-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px;
}
.pc-link {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-weight: 400;
    transition: letter-spacing 0.3s;
}
.pc-link:hover { letter-spacing: 0.18em; }

.collection-cta {
    text-align: center;
    margin-top: clamp(48px, 6vw, 72px);
}

/* === PARALLAX BAND === */
.parallax-band {
    position: relative;
    height: clamp(320px, 45vw, 560px);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.pb-bg {
    position: absolute; inset: -20% 0;
    will-change: transform;
}
.pb-bg img { height: 140%; object-fit: cover; }
.pb-overlay {
    position: absolute; inset: 0;
    background: rgba(28,25,22,0.65);
}
.pb-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 0 clamp(20px, 8vw, 120px);
    max-width: 900px;
}
.pb-content blockquote {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.4;
    margin-bottom: 20px;
}
.pb-content cite {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
}

/* === VIDEO === */
.video-section {
    padding: clamp(80px, 10vw, 130px) clamp(20px, 4vw, 64px);
    background: var(--cream);
    text-align: center;
}
.vs-content { margin-bottom: 48px; }
.vs-frame {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(28,25,22,0.2);
    background: var(--dark);
}
.vs-cover {
    position: absolute; inset: 0; z-index: 2;
    cursor: pointer;
    transition: opacity 0.5s;
}
.vs-cover.hidden { opacity: 0; pointer-events: none; }
.vs-cover img { transition: transform 0.8s var(--ease); }
.vs-cover:hover img { transform: scale(1.03); }
.vs-cover::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(28,25,22,0.35);
}
.vs-play-btn {
    position: absolute; inset: 0; z-index: 3;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; background: none; border: none;
}
.vs-play-icon {
    width: 76px; height: 76px; border-radius: 50%;
    background: rgba(196,154,90,0.9);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s, background 0.3s;
    position: relative; z-index: 2;
}
.vs-play-icon svg { width: 28px; height: 28px; fill: white; margin-left: 4px; }
.vs-play-btn:hover .vs-play-icon { transform: scale(1.1); background: var(--accent); }
.vs-ripple {
    position: absolute;
    width: 76px; height: 76px; border-radius: 50%;
    border: 2px solid rgba(196,154,90,0.5);
    animation: ripple 2s infinite;
}
@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}
.vs-label {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(250,246,240,0.7);
    z-index: 3;
    white-space: nowrap;
}
.vs-iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: none;
}
.vs-note {
    margin-top: 20px;
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    opacity: 0.7;
}

/* === FEATURES === */
.features {
    padding: clamp(80px, 10vw, 130px) 0;
    background: var(--bg);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 3vw, 48px);
    margin-top: 0;
}
.feature-card {
    padding: 40px 32px;
    background: var(--cream);
    border-radius: 2px;
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(28,25,22,0.1); }
.fc-icon {
    width: 48px; height: 48px;
    color: var(--accent);
    margin-bottom: 24px;
}
.fc-icon svg { width: 100%; height: 100%; }
.feature-card h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.2;
}
.feature-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
}

/* === GALLERY === */
.gallery {
    padding: clamp(80px, 10vw, 130px) 0;
    background: var(--bg-alt);
}
.gallery-header {
    padding: 0 clamp(20px, 4vw, 64px);
    margin-bottom: 48px;
    max-width: 1320px; margin-left: auto; margin-right: auto;
    margin-bottom: 48px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 8px;
    padding: 0 clamp(20px, 4vw, 64px);
    max-width: 1320px; margin: 0 auto;
}
.gallery-item {
    overflow: hidden;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    background: var(--bg);
}
.gallery-item img { height: 100%; transition: transform 0.7s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gi-caption {
    position: absolute; inset: 0;
    background: rgba(28,25,22,0.5);
    display: flex; align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}
.gallery-item:hover .gi-caption { opacity: 1; }
.gi-caption span {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
}
.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }

/* === CONTACT === */
.contact {
    padding: clamp(80px, 10vw, 130px) clamp(20px, 4vw, 64px);
    background: var(--dark);
}
.contact-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(48px, 7vw, 100px);
    align-items: start;
}
.contact .eyebrow { color: var(--accent); }
.contact .section-title { color: var(--cream); }
.contact .section-title em { color: var(--accent); }

.contact-lead {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(250,246,240,0.65);
    line-height: 1.8;
    margin-top: 16px;
    margin-bottom: 40px;
}
.contact-items { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border: 1px solid rgba(196,154,90,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-text { display: flex; flex-direction: column; gap: 4px; }
.ci-text strong {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--cream);
}
.ci-text span {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(250,246,240,0.55);
    line-height: 1.6;
}
.contact-hours {
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    background: rgba(255,255,255,0.03);
}
.contact-hours strong {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
.contact-hours p {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(250,246,240,0.55);
    line-height: 1.7;
}

/* FORM */
.enquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,246,240,0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    padding: 14px 16px;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--cream);
    transition: border-color 0.3s, background 0.3s;
    outline: none;
    -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,246,240,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.07);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 130px; }

#submitBtn { margin-top: 4px; position: relative; overflow: hidden; }
#submitBtn::after {
    content: '';
    position: absolute; bottom: 0; left: -100%; width: 100%; height: 2px;
    background: var(--accent);
    transition: left 0.4s var(--ease);
}
#submitBtn:hover::after { left: 0; }

.form-note {
    font-size: 0.72rem;
    color: rgba(250,246,240,0.3);
    letter-spacing: 0.05em;
    text-align: center;
}
.form-success {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(196,154,90,0.3);
    border-radius: 2px;
    background: rgba(196,154,90,0.05);
}
.fs-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.form-success h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 8px;
}
.form-success p { font-size: 0.9rem; color: rgba(250,246,240,0.6); font-weight: 300; }
.form-error {
    padding: 16px;
    border: 1px solid rgba(220,80,80,0.3);
    border-radius: 2px;
    background: rgba(220,80,80,0.05);
}
.form-error p { font-size: 0.85rem; color: rgba(220,150,150,0.9); font-weight: 300; }

/* === FOOTER === */
.footer { background: #100E0B; }
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(32px, 4vw, 64px);
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 64px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    max-width: 1320px; margin: 0 auto;
}
.footer-logo {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--cream);
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(250,246,240,0.4);
    line-height: 1.7;
    margin-bottom: 28px;
}
.footer-social { display: flex; gap: 14px; }
.social-icon {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(250,246,240,0.4);
    transition: all 0.3s;
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { border-color: var(--accent); color: var(--accent); }

.footer-col h4 {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(250,246,240,0.4);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(250,246,240,0.55);
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px clamp(20px, 4vw, 64px);
    max-width: 1320px; margin: 0 auto;
}
.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(250,246,240,0.25);
    font-weight: 300;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
    font-size: 0.72rem;
    color: rgba(250,246,240,0.25);
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }

/* === SCROLL REVEAL ANIMATIONS === */
.reveal-up, .reveal-fade, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    transition-delay: var(--d, 0s);
}
.reveal-up    { transform: translateY(48px); }
.reveal-fade  { transform: none; }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.visible,
.reveal-fade.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .story-secondary-img { display: none; }
}

@media (max-width: 768px) {
    .nav, .nav-enquire { display: none; }
    .burger { display: flex; }
    .header-inner { gap: 0; }

    .story-grid { grid-template-columns: 1fr; }
    .story-visual { max-width: 400px; }

    .showcase-stage { flex-direction: column; height: auto; }
    .showcase-wrapper { height: auto; }
    .showcase-sticky { position: relative; height: auto; min-height: 100vh; }

    .products-grid { grid-template-columns: repeat(2, 1fr); }

    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gi-tall { grid-row: span 1; }
    .gi-wide { grid-column: span 2; }

    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; }
    .hero-counter { display: none; }
    .hero-scroll { display: none; }

    .features-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gi-wide { grid-column: span 1; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .story-badge { width: 90px; height: 90px; }
    .badge-num { font-size: 1.6rem; }
}

/* =============================================
   TRC — ADDITIONAL COMPONENT STYLES
   ============================================= */

/* === PRELOADER EMBLEM === */
.preloader-emblem {
    font-family: var(--serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.3em;
    opacity: 0;
    animation: fadeIn 0.6s 0.2s forwards;
}

/* === PRELOADER LOGO IMAGE === */
.preloader-emblem img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    opacity: 0;
    animation: fadeIn 0.6s 0.2s forwards;
    /* Teal logo is visible directly on dark preloader bg */
}

/* === TRC LOGO === */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    flex-direction: row; /* override column from base */
}
.logo-img {
    width: 88px;
    height: 60px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}
.logo-divider {
    width: 1px;
    height: 32px;
    background: rgba(250,246,240,0.25);
    flex-shrink: 0;
    transition: background 0.4s;
}
.header.scrolled .logo-divider { background: var(--border); }
.logo-full {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.logo-name {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--cream);
    line-height: 1;
    transition: color 0.4s;
}
.header.scrolled .logo-name { color: var(--dark); }
.logo-sub {
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    color: rgba(250,246,240,0.5);
    text-transform: uppercase;
    transition: color 0.4s;
}
.header.scrolled .logo-sub { color: var(--muted); }

/* === NAV DROPDOWN === */
.nav-item-dropdown {
    position: relative;
}
.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-chevron {
    width: 10px; height: 7px;
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
}
.nav-item-dropdown:hover .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    min-width: 200px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(28,25,22,0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.3s var(--ease), visibility 0.3s, transform 0.3s var(--ease);
    z-index: 9999;
    will-change: transform;
    isolation: isolate;
}
.nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--text);
    transition: color 0.2s, background 0.2s, padding-left 0.2s;
}
.dropdown-link:hover {
    color: var(--accent);
    background: rgba(196,154,90,0.06);
    padding-left: 28px;
}

/* === MOBILE NAV SUB-ITEMS === */
.mobile-sub {
    font-size: 0.9rem !important;
    padding: 8px 0 8px 16px !important;
    color: var(--muted) !important;
    border-bottom: 1px solid rgba(221,213,196,0.5) !important;
    letter-spacing: 0.03em;
}

/* === HERO BADGE TEXT === */
.hero-badge-text {
    position: absolute;
    bottom: 40px;
    right: clamp(20px, 6vw, 100px);
    z-index: 2;
    text-align: right;
    opacity: 0;
    animation: fadeIn 1s 3.2s forwards;
}
.hb-line {
    display: block;
    font-family: var(--serif);
    font-size: clamp(0.85rem, 1.3vw, 1.05rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(250,246,240,0.45);
    line-height: 1.5;
}

/* === PRODUCT CATEGORIES === */
.product-category {
    margin-bottom: clamp(64px, 8vw, 100px);
    scroll-margin-top: 100px;
}
.product-category:last-of-type { margin-bottom: 0; }

.category-label {
    margin-bottom: 36px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}
.cat-title {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
}
.cat-title em { font-style: italic; color: var(--accent); }
.cat-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    max-width: 360px;
    text-align: right;
}

/* === VISION / MISSION INLINE === */
.vision-mission-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 8px;
}
.vm-item {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--bg);
}
.vm-item strong {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 500;
}
.vm-item p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

/* === DRIVES US SECTION === */
.drives-us {
    margin-top: clamp(56px, 7vw, 88px);
    border-top: 1px solid var(--border);
    padding-top: clamp(40px, 5vw, 64px);
}
.du-heading {
    margin-bottom: 36px;
}
.du-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 48px;
}
.du-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.du-num {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    opacity: 0.6;
    flex-shrink: 0;
    line-height: 1.1;
    margin-top: 2px;
}
.du-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}
.du-item p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
}

/* === FEATURES GRID — 6 items (3 cols) === */
.features-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* === FOOTER LOGO === */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.fl-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}
.fl-circle {
    width: 96px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fl-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.fl-name {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,246,240,0.5);
    line-height: 1.6;
}

/* === MID-BAND === */
.mid-band {
    margin: clamp(48px, 6vw, 80px) 0;
}

/* ===================================================
   INNER PAGE STYLES (collections + category pages)
   =================================================== */

/* Page Banner */
.page-banner {
    position: relative;
    height: clamp(280px, 45vh, 520px);
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(40px, 6vw, 72px);
    overflow: hidden;
    margin-top: 72px; /* header height */
}
.page-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 6s ease;
}
.page-banner:hover .page-banner-bg { transform: scale(1); }
.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,25,22,0.82) 0%, rgba(28,25,22,0.35) 60%, rgba(28,25,22,0.1) 100%);
}
.page-banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    width: 100%;
}
.page-banner-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 12px;
    margin-top: 12px;
}
.page-banner-title em { color: var(--accent); font-style: italic; }
.page-banner-desc {
    font-family: var(--sans);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(250,246,240,0.7);
    font-weight: 300;
    max-width: 560px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250,246,240,0.55);
}
.breadcrumb a { color: rgba(250,246,240,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.bc-sep { color: rgba(250,246,240,0.3); }

/* Collections Listing Grid */
.collections-listing {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--bg);
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.cat-card {
    display: flex;
    flex-direction: column;
    background: var(--cream);
    border-radius: 2px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--border);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(28,25,22,0.14);
}
.cat-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-alt);
}
.cat-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.cat-card:hover .cat-card-img img { transform: scale(1.06); }
.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28,25,22,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.cat-card:hover .cat-card-overlay { opacity: 1; }
.cat-card-cta {
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    border: 1px solid rgba(250,246,240,0.6);
    padding: 10px 22px;
}
.cat-card-info {
    padding: 24px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cat-card-count {
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
.cat-card-title {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.2;
}
.cat-card-title em { color: var(--accent); font-style: italic; }
.cat-card-desc {
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}

/* Product Listing Section */
.product-listing-section {
    padding: clamp(48px, 7vw, 90px) 0;
    background: var(--bg);
}
.pl-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.pl-count {
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.pl-back {
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}
.pl-back:hover { opacity: 0.7; }

/* Inner CTA Strip */
.inner-cta-strip {
    background: var(--dark);
    padding: clamp(48px, 7vw, 80px) 0;
}
.inner-cta-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.ics-content h2 {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 8px;
}
.ics-content p {
    font-family: var(--sans);
    font-size: 0.9rem;
    color: rgba(250,246,240,0.6);
    font-weight: 300;
}
.inner-cta-strip .btn-cream {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Footer tagline on inner pages */
.footer-tagline {
    font-family: var(--sans);
    font-size: 0.82rem;
    color: rgba(250,246,240,0.45);
    font-weight: 300;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 220px;
}

/* === COLLECTION FILTER TABS === */
.collection-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 48px 0 64px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.tab-btn {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 10px 20px;
    cursor: pointer;
    transition: color 0.25s, border-color 0.25s, background 0.25s;
    white-space: nowrap;
}
.tab-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
}
.tab-btn.active {
    color: var(--cream);
    background: var(--dark);
    border-color: var(--dark);
}

/* === VISION & MISSION STANDALONE SECTION === */
.vm-section {
    padding: clamp(80px, 10vw, 130px) 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.vm-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-main.jpg') center/cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}
.vm-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.vm-section-header .eyebrow { color: var(--accent); }
.vm-section-header .section-title { color: var(--cream); }
.vm-section-header .section-title em { color: var(--accent); }

.vm-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 56px;
}
.vm-card {
    background: rgba(250,246,240,0.05);
    border: 1px solid rgba(196,154,90,0.25);
    border-radius: 2px;
    padding: 48px 40px;
    position: relative;
    transition: border-color 0.35s, background 0.35s;
}
.vm-card:hover {
    border-color: rgba(196,154,90,0.55);
    background: rgba(250,246,240,0.08);
}
.vm-card-icon {
    width: 44px; height: 44px;
    margin-bottom: 20px;
    color: var(--accent);
}
.vm-card-icon svg { width: 100%; height: 100%; }
.vm-card-label {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
.vm-card-title {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.2;
}
.vm-card-text {
    font-family: var(--sans);
    font-size: 0.95rem;
    color: rgba(250,246,240,0.65);
    line-height: 1.8;
    font-weight: 300;
}
.vm-cta {
    text-align: center;
}
.vm-cta .btn-dark {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
    font-size: 0.78rem;
    padding: 16px 40px;
    letter-spacing: 0.18em;
}
.vm-cta .btn-dark:hover {
    background: transparent;
    color: var(--accent);
}

/* === RESPONSIVE ADDITIONS === */
@media (max-width: 1024px) {
    .du-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .vision-mission-inline { grid-template-columns: 1fr; gap: 16px; }
    .category-label { flex-direction: column; align-items: flex-start; }
    .cat-desc { text-align: left; }
    .vm-cards { grid-template-columns: 1fr 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .inner-cta-strip .container { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .du-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero-badge-text { display: none; }
    .logo-full { display: none; }
    .logo-divider { display: none; }
    .header.scrolled .logo-full { display: flex; }
    .header.scrolled .logo-divider { display: block; }
    .vm-cards { grid-template-columns: 1fr; }
    .vm-card { padding: 36px 28px; }
    .collection-tabs { margin: 32px 0 48px; gap: 8px; }
    .tab-btn { padding: 9px 16px; font-size: 0.68rem; }
    .cat-grid { grid-template-columns: 1fr; gap: 20px; }
    .page-banner { margin-top: 60px; height: clamp(240px, 55vw, 360px); }
    .pl-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
    .vision-mission-inline { grid-template-columns: 1fr; }
    .du-grid { grid-template-columns: 1fr; }
    .collection-tabs { margin: 24px 0 36px; }
}

/* === TOUCH DEVICE FIXES === */
/* On phones/tablets (no hover), overlays are unreachable — show cta inline */
@media (hover: none) {
    /* Product card: overlay invisible on touch, pc-link already shows */
    .pc-overlay { display: none; }

    /* Cat card: show "Explore →" as text below title */
    .cat-card-overlay { display: none; }
    .cat-card-info::after {
        content: 'Explore Collection →';
        display: block;
        margin-top: 12px;
        font-size: 0.72rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--accent);
        font-family: var(--sans);
    }

    /* Larger touch targets for buttons/links */
    .pc-link { padding: 8px 0; display: inline-block; }
    .tab-btn { min-height: 44px; }
    .nav-enquire { min-height: 44px; display: flex; align-items: center; }
    .dropdown-link { padding: 12px 20px; }
    .mobile-nav-link { padding: 14px 0; min-height: 44px; display: flex; align-items: center; }
}

/* === MOBILE POLISH (< 480px) === */
@media (max-width: 480px) {
    /* Prevent section headings from overflowing */
    .section-title { font-size: clamp(1.4rem, 7vw, 2.2rem); }
    .hero-title { font-size: clamp(2rem, 10vw, 3.5rem); }

    /* Contact form spacing */
    .contact-info { padding: 32px 0 0; }
    .form-group label { font-size: 0.75rem; }

    /* Footer columns stack cleanly */
    .footer-top { gap: 32px; }
    .footer-col h4 { font-size: 0.7rem; }

    /* Prevent horizontal scroll from wide badges/pills */
    .pc-badge { font-size: 0.55rem; padding: 3px 8px; }
    .cat-card-count { font-size: 0.58rem; }

    /* Inner page banner tighter */
    .page-banner-title { font-size: clamp(2rem, 10vw, 3.5rem); }
    .breadcrumb { font-size: 0.65rem; gap: 6px; }

    /* Vision/Mission card tighter */
    .vm-card { padding: 28px 20px; }
    .vm-card-title { font-size: 1.4rem; }
}

/* Prevent any element from causing horizontal scroll */
section, .container, footer, header { max-width: 100%; overflow-x: hidden; }

/* =============================================
   MOBILE FIXES — comprehensive pass
   ============================================= */

/* 1. Showcase pieces stay off-screen on mobile because JS skips animation.
      Reset transforms so content is visible. */
@media (max-width: 768px) {
    .sp-left, .sp-center, .sp-right { transform: none !important; }
    .sp-center { flex: 1; }
    .showcase-sticky { min-height: unset; padding-bottom: 48px; }
    .showcase-stage { gap: 20px; }
    .showcase-hint { display: none; }
    .showcase-progress-wrap { display: none; }
    .showcase-piece { min-height: 180px; }
    .sp-img { aspect-ratio: 3/2; height: auto; }
    .sp-info { padding: 12px 0 0; }
    .showcase-piece h3 { font-size: clamp(1rem, 4vw, 1.3rem); }

    /* Story badge reposition */
    .story-badge { width: 88px; height: 88px; bottom: -10px; right: -6px; }
    .badge-num { font-size: 1.5rem; }
    .story-visual { margin: 0 auto; }

    /* Select dropdown custom arrow on iOS */
    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C49A5A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 40px;
    }
}

/* 2. Features grid: a bare (no-query) rule at line ~1479 overrides the
      768px media query. Force 1 column on small screens last. */
@media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr !important; }
}

/* 3. Additional 480px fixes */
@media (max-width: 480px) {
    /* Gallery items need a minimum height when stacked */
    .gallery-item { min-height: 200px; }
    .gallery-grid { grid-template-rows: none; }

    /* Products already 1-col but ensure no overflow */
    .products-grid { grid-template-columns: 1fr; }

    /* Footer links wrap on tiny screens */
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

    /* Inner CTA strip */
    .ics-content h2 { font-size: clamp(1.3rem, 6vw, 1.8rem); }
    .inner-cta-strip .container { text-align: center; }

    /* Hero: prevent any overflow on very small phones */
    .hero-eyebrow { margin-bottom: 14px; }
    .hero-desc { font-size: 0.9rem; }
    .hero-actions .btn { padding: 13px 24px; font-size: 0.7rem; }

    /* Contact info items on small screens */
    .ci-text span { font-size: 0.82rem; }

    /* Tab buttons: don't get too small */
    .tab-btn { font-size: 0.65rem; padding: 8px 12px; }

    /* Page banner title */
    .page-banner-title { font-size: clamp(1.8rem, 9vw, 3rem); }
}

/* ── MOBILE HIDE-ON-SCROLL HEADER ─── */
.header.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.35s ease, background 0.4s, box-shadow 0.4s, padding 0.4s;
}
