/* ==========================================================================
   Bright Blue Trading Corporation — Light Theme
   Hero uses a clean light background; product showcase sections
   and the footer keep a dark photographic treatment for contrast.
   ========================================================================== */
:root{
  --bg: #faf7f2;
  --bg-2: #f1ebe0;
  --panel: #ffffff;
  --panel-2: #f6f0e6;
  --ink: #1c1c24;
  --ink-soft: #24252d;
  --line: rgba(20,18,30,0.10);
  --gold: #d9a94e;
  --gold-light: #f0cf8e;
  --gold-ink: #9c721a;
  --blue: #5b82ff;
  --blue-2: #2149c4;

  --bg-photo: #05070d;
  --ink-on-photo: #c7cbe0;

  --mx3: #ff4d42;
  --landfloro: #4f8bff;
  --ansaf: #ff8a3d;
  --tilfa: #4caf7d;
  --kenzaniya: #e2554f;

  --radius: 26px;
  --radius-sm: 16px;
  --ease: cubic-bezier(.16,.84,.32,1);
  --shadow-lg: 0 50px 110px -30px rgba(20,16,10,.18);
  --shadow-md: 0 24px 60px -20px rgba(20,16,10,.16);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
body{
  margin:0;
  font-family:'Manrope', system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3{
  font-family:'Fraunces', Georgia, serif;
  line-height:1.08;
  margin:0 0 .5em;
  letter-spacing:-0.01em;
  color: var(--ink);
}
p{ margin:0 0 1em; color: var(--ink-soft); line-height:1.75; }
button{ font-family:inherit; cursor:pointer; }

.section-wrap{ max-width:1240px; margin:0 auto; padding: 0 32px; }
.eyebrow{
  font-size:.78rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color: var(--gold-ink); margin-bottom:14px; display:block;
}
.hero-content .eyebrow{ color: var(--gold-ink); }
.eyebrow.center, h2.center, .section-lede.center{ text-align:center; }
.section-lede{ max-width:520px; margin: -8px auto 10px; color: var(--ink-soft); }
h2{ font-size: clamp(1.9rem, 3.4vw, 3rem); }

.noscript-banner{
  display:none; position:relative; z-index:1001; background:#2a2308; color:#f0cf8e; text-align:center;
  font-size:.85rem; font-weight:600; padding:12px 20px;
}
.noscript-banner a{ color:#fff; text-decoration:underline; }

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

.grain-overlay{
  position:fixed; inset:0; pointer-events:none; z-index:9998; opacity:.05; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ================= PRELOADER ================= */
.preloader{
  position:fixed; inset:0; z-index:10000; background: var(--bg);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
.preloader.done{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader-inner{ text-align:center; }
.preloader-word{
  font-family:'Fraunces', Georgia, serif; font-weight:600; font-size:clamp(2rem,6vw,3.6rem);
  letter-spacing:.16em; color: var(--ink); line-height:1.18; text-transform:uppercase;
  opacity:0; transform:translateY(16px); animation: preloaderIn .8s var(--ease) forwards;
}
.preloader-word:nth-child(2){ animation-delay:.14s; color: var(--gold-ink); }
@keyframes preloaderIn{ to{ opacity:1; transform:translateY(0); } }
.preloader-pct{
  margin-top:24px; font-size:.72rem; font-weight:700; letter-spacing:.24em; color: var(--ink-soft);
  font-variant-numeric: tabular-nums; opacity:0; animation: preloaderIn .8s var(--ease) .3s forwards;
}
@media (prefers-reduced-motion: reduce){
  .preloader-word, .preloader-pct{ animation:none; opacity:1; transform:none; }
}

/* ================= TICKER ================= */
.ticker{
  overflow:hidden; background: var(--gold); border-top:1px solid rgba(0,0,0,.12); border-bottom:1px solid rgba(0,0,0,.12);
  padding:15px 0;
}
.ticker-track{
  display:flex; width:max-content; gap:48px; animation: tickerscroll 24s linear infinite;
}
.ticker-track span{
  font-family:'Fraunces', Georgia, serif; font-weight:600; font-size:1.02rem; color:#14110a; white-space:nowrap;
}
.ticker-track span::after{ content:"•"; margin-left:48px; opacity:.55; }
@keyframes tickerscroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
@media (prefers-reduced-motion: reduce){ .ticker-track{ animation:none; } }

/* ================= TRUST ROW (hero) ================= */
.trust-row{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:28px; }
.trust-chip{
  font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding:8px 16px; border-radius:99px; border:1px solid var(--line); color: var(--ink-soft);
  background: rgba(255,255,255,.55); backdrop-filter: blur(6px);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.trust-chip:hover{
  transform: translateY(-2px); border-color: rgba(217,169,78,.5);
  box-shadow: 0 10px 22px -12px rgba(217,169,78,.45);
}
.trust-chip::before{ content:"●"; font-size:.5em; margin-right:7px; color: var(--gold-light); vertical-align:middle; }

/* ================= NAV ================= */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index:1000;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 20px 0;
}
.site-header.scrolled{
  background: rgba(250,247,242,0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 8px 30px rgba(20,16,10,.12);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav-wrap{
  width:100%; padding:0 20px 0 16px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand-mark{ display:flex; align-items:center; gap:14px; }
.brand-mark img{ width:60px; height:60px; border-radius:50%; object-fit:cover; box-shadow:0 6px 24px rgba(0,0,0,.15); }
.brand-text{ font-family:'Fraunces',serif; font-weight:600; font-size:1.28rem; color: var(--ink); line-height:1.1; display:flex; flex-direction:column; transition: color .35s var(--ease); }
.brand-text small{ font-family:'Manrope',sans-serif; font-size:.62rem; letter-spacing:.16em; font-weight:700; color: var(--gold-ink); }
.main-nav{ display:flex; align-items:center; gap:30px; }
.main-nav a{ font-size:.92rem; font-weight:600; color: var(--ink); position:relative; padding:4px 0; transition: color .35s var(--ease); }
.main-nav a:not(.nav-cta)::after{
  content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--gold); transition:width .3s var(--ease);
}
.main-nav a:not(.nav-cta):hover::after{ width:100%; }
.site-header.scrolled .brand-text{ color: var(--ink); }
.site-header.scrolled .brand-text small{ color: var(--gold-ink); }
.site-header.scrolled .main-nav a{ color: var(--ink); }
.nav-cta{
  background: linear-gradient(135deg, var(--gold), #b8892a); color:#12100a !important; padding:10px 20px; border-radius:99px;
  font-size:.85rem; font-weight:700; transition: transform .3s var(--ease), box-shadow .3s;
}
.nav-cta:hover{ transform: translateY(-2px); box-shadow: 0 10px 26px -8px rgba(217,169,78,.6); }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; }
.nav-toggle span{ width:24px; height:2px; background: var(--ink); transition: background .35s var(--ease); }

/* ================= BUTTONS ================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; padding:15px 30px; border-radius:99px;
  font-weight:700; font-size:.92rem; letter-spacing:.01em; border:1px solid transparent; transition: all .35s var(--ease);
}
.btn-primary{ background: linear-gradient(135deg, var(--gold), #b8892a); color:#12100a; box-shadow: 0 18px 40px -12px rgba(217,169,78,.5); }
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 24px 50px -12px rgba(217,169,78,.65); }
.btn-ghost{ border-color: var(--line); color: var(--ink); }
.btn-ghost:hover{ border-color: var(--ink); background: rgba(20,18,30,.05); }

/* ================= HERO ================= */
.hero{
  position:relative; min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding: 140px 24px 60px; overflow:hidden;
  background:
    radial-gradient(900px 600px at 15% 0%, rgba(91,130,255,.10), transparent 55%),
    radial-gradient(800px 560px at 100% 30%, rgba(217,169,78,.14), transparent 50%),
    var(--bg) !important;
}
.hero-glow{
  position:absolute; top:50%; left:50%; width:900px; height:900px; margin:-450px 0 0 -450px;
  background: radial-gradient(circle, rgba(217,169,78,.10), transparent 65%);
  animation: pulseglow 8s ease-in-out infinite;
}
@keyframes pulseglow{ 0%,100%{ opacity:.7; transform:scale(1);} 50%{ opacity:1; transform:scale(1.08);} }

.hero-content{ position:relative; z-index:2; text-align:center; max-width:1180px; width:100%; margin:0 auto; }
.hero-content .eyebrow{
  display:inline-flex; align-items:center; gap:9px; margin-bottom:24px;
  padding:9px 20px 9px 16px; border-radius:99px;
  background: rgba(255,255,255,.62); backdrop-filter: blur(6px);
  border:1px solid rgba(217,169,78,.4);
  box-shadow: 0 10px 28px -14px rgba(217,169,78,.55);
  color: var(--gold-ink); text-shadow:none;
}
.hero-content .eyebrow::before{
  content:"✦"; font-size:.85em; color: var(--gold);
  animation: sparkle 3.2s ease-in-out infinite;
}
@keyframes sparkle{ 0%,100%{ opacity:.55; transform:scale(.85) rotate(0deg);} 50%{ opacity:1; transform:scale(1.05) rotate(20deg);} }

/* ---- Hero Title (Image 2 Crest Style - Enlarged) ---- */
.bbtc-hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  width: 100%;
}
.title-top-flourish,
.title-bottom-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
  margin: 12px 0;
}
.flourish-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d9a94e 25%, #d9a94e 75%, transparent);
}
.title-top-flourish .flourish-icon {
  width: 220px;
  height: auto;
  flex-shrink: 0;
}
.title-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.05;
  margin: 16px 0 20px;
}
.title-line-1 {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 7.8vw, 6.2rem);
  color: #013d27;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.title-line-2 {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4.2vw, 3.4rem);
  color: #013d27;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 10px;
}
.flourish-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.flourish-stars svg {
  display: block;
  width: 22px;
  height: 22px;
}

/* ================= REVEAL & TITLE ANIMATIONS ================= */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 0.84, 0.32, 1), transform 0.85s cubic-bezier(0.16, 0.84, 0.32, 1);
  will-change: opacity, transform;
}
.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up[data-delay="1"] { transition-delay: 0.1s; }
.reveal-up[data-delay="2"] { transition-delay: 0.25s; }
.reveal-up[data-delay="3"] { transition-delay: 0.4s; }
.reveal-up[data-delay="4"] { transition-delay: 0.55s; }

/* ---- Hero Crest Staggered Entrance ---- */
.bbtc-hero-title .title-top-flourish .flourish-line,
.bbtc-hero-title .title-bottom-flourish .flourish-line {
  transform-origin: center;
  transform: scaleX(0);
  opacity: 0;
}
.bbtc-hero-title.in-view .title-top-flourish .flourish-line {
  animation: lineExpand 1.1s cubic-bezier(0.16, 0.84, 0.32, 1) 0.15s forwards;
}
.bbtc-hero-title .flourish-icon {
  opacity: 0;
  transform: scale(0.7) translateY(8px);
}
.bbtc-hero-title.in-view .flourish-icon {
  animation: crestPop 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s forwards;
}
/* ---- Letter-by-Letter Staggered Character Reveal ---- */
.split-letters {
  display: inline-block;
  perspective: 500px;
}
.split-letters .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px) rotateX(-85deg);
  will-change: opacity, transform, filter;
}
.split-letters .char.space {
  width: 0.28em;
}

.bbtc-hero-title.in-view .title-line-1 .char {
  animation: charReveal 0.5s cubic-bezier(0.16, 0.84, 0.32, 1) forwards;
  animation-delay: calc(0.35s + var(--char-i) * 0.048s);
}

.bbtc-hero-title.in-view .title-line-2 .char {
  animation: charReveal 0.45s cubic-bezier(0.16, 0.84, 0.32, 1) forwards;
  animation-delay: calc(0.92s + var(--char-i) * 0.032s);
}

.bbtc-hero-title:hover .title-line-1 .char {
  text-shadow: 0 4px 18px rgba(1, 61, 39, 0.2);
}

.bbtc-hero-title.in-view .title-bottom-flourish .flourish-line {
  animation: lineExpand 1.1s cubic-bezier(0.16, 0.84, 0.32, 1) 1.55s forwards;
}
.bbtc-hero-title .flourish-stars svg {
  opacity: 0;
  transform: scale(0) rotate(-45deg);
}
.bbtc-hero-title.in-view .flourish-stars svg {
  animation: starPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.bbtc-hero-title.in-view .flourish-stars svg:nth-child(1) { animation-delay: 1.62s; }
.bbtc-hero-title.in-view .flourish-stars svg:nth-child(2) { animation-delay: 1.70s; }
.bbtc-hero-title.in-view .flourish-stars svg:nth-child(3) { animation-delay: 1.78s; }
.bbtc-hero-title.in-view .flourish-stars svg:nth-child(4) { animation-delay: 1.86s; }
.bbtc-hero-title.in-view .flourish-stars svg:nth-child(5) { animation-delay: 1.94s; }

@keyframes lineExpand {
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes crestPop {
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes charReveal {
  0% {
    opacity: 0;
    transform: translateY(22px) rotateX(-85deg) scale(0.92);
    filter: blur(5px);
  }
  60% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
    filter: blur(0);
  }
}

@keyframes starPop {
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.hero-sub{
  font-size:1.14rem; max-width:560px; margin:0 auto 32px; color: var(--ink-soft); line-height:1.8;
}
.hero-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

.scroll-cue{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:8px; font-size:.7rem; letter-spacing:.14em;
  text-transform:uppercase; color: var(--ink-soft); font-weight:700;
}
.scroll-cue span{ width:1px; height:34px; background: linear-gradient(var(--gold), transparent); animation: scrollcue 2s ease-in-out infinite; }
@keyframes scrollcue{ 0%{ transform: scaleY(0); transform-origin:top;} 50%{ transform: scaleY(1); transform-origin:top;} 51%{ transform-origin:bottom;} 100%{ transform: scaleY(0); transform-origin:bottom;} }

/* ================= COLLECTION INTRO ================= */
.collection-intro{ padding: 130px 32px 40px; text-align:center; }

/* ================= BRAND STRIP (sliding logos) ================= */
.brand-strip{
  overflow:hidden; padding: 10px 0 60px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brand-strip-track{
  display:flex; align-items:center; width:max-content; gap:40px;
  animation: brandstripscroll 34s linear infinite;
}
.brand-strip:hover .brand-strip-track{ animation-play-state: paused; }
.brand-strip-item{
  flex:0 0 auto; width:280px; height:170px; display:flex; align-items:center; justify-content:center;
  background: var(--panel); border:1px solid var(--line); border-radius: var(--radius-sm);
  padding:26px 32px; transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.brand-strip-item:hover{ transform: translateY(-4px); border-color: rgba(217,169,78,.35); }
.brand-strip-item img{
  max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain;
  filter: grayscale(.25); opacity:.85; transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.brand-strip-item:hover img{ filter:grayscale(0); opacity:1; }
@keyframes brandstripscroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
@media (prefers-reduced-motion: reduce){ .brand-strip-track{ animation:none; } }
@media (max-width:860px){
  .brand-strip-item{ width:220px; height:135px; padding:20px 24px; }
  .brand-strip-track{ gap:28px; }
}
@media (max-width:540px){
  .brand-strip-item{ width:160px; height:100px; padding:14px 18px; }
  .brand-strip-track{ gap:18px; }
}

/* ================= PRODUCT SECTIONS ================= */
.pstage-section{
  position:relative; padding: 90px 32px; overflow:hidden;
  border-top: 1px solid rgba(255,255,255,.09);
}
.pstage-section:nth-child(even){ background: linear-gradient(180deg, transparent, rgba(255,255,255,.02), transparent); }

/* ---- MX-3 dedicated product layout ---- */
#p-mx3-trio{
  background:
    linear-gradient(180deg, var(--bg-photo) 0%, rgba(5,7,13,.75) 35%, rgba(5,7,13,.9) 100%),
    url("../assets/mx3 backgroung.jpeg") center 35% / cover no-repeat;
}
#p-mx3-trio .stage3d-card {
  width: min(720px, 95vw);
  height: min(640px, 66vh);
}
#p-mx3-trio .stage3d-card img {
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}
#p-mx3-trio .stage3d-card::before {
  opacity: 0.12; /* subtle lighting glow behind */
}

/* ---- Landfloro dedicated product layout ---- */
#p-landfloro-duo{
  background:
    linear-gradient(180deg, var(--bg-photo) 0%, rgba(5,7,13,.75) 35%, rgba(5,7,13,.9) 100%),
    url("../assets/land bg.jpeg") center 35% / cover no-repeat;
}
#p-landfloro-duo .stage3d-card{
  width: min(700px, 92vw);
  height: min(640px, 64vh);
}

/* ---- ANSAF dedicated product layout ---- */
#p-ansaf-carwash{
  background:
    linear-gradient(180deg, var(--bg-photo) 0%, rgba(5,7,13,.75) 35%, rgba(5,7,13,.9) 100%),
    url("../assets/ansafbg.jpeg") center 40% / cover no-repeat;
}

/* ---- Tilfa Valley premium tea layout ---- */
#p-tilfa-tea{
  background:
    linear-gradient(180deg, var(--bg-photo) 0%, rgba(5,7,13,.75) 35%, rgba(5,7,13,.9) 100%),
    url("../assets/tilfavalley-tea-hero.jpg") center 35% / cover no-repeat;
}
#p-tilfa-tea .stage3d-card {
  width: min(740px, 95vw);
  height: min(720px, 75vh);
}
#p-tilfa-tea .stage3d-card img {
  transform: scale(1.15);
}

/* ---- Kenzaniya pink salt layout ---- */
#p-kenzaniya-pinksalt{
  background:
    linear-gradient(180deg, var(--bg-photo) 0%, rgba(5,7,13,.75) 35%, rgba(5,7,13,.9) 100%),
    url("../assets/pink bg.jpeg") center 35% / cover no-repeat;
}

/* ---- Kenzaniya seed mix layout ---- */
#p-kenzaniya-seedmix{
  background:
    linear-gradient(180deg, var(--bg-photo) 0%, rgba(5,7,13,.75) 35%, rgba(5,7,13,.9) 100%),
    url("../assets/sweet bg.jpeg") center 35% / cover no-repeat;
}

/* ---- MX-3 value pack layout ---- */
#p-rafasi-clothwash{
  background:
    linear-gradient(180deg, var(--bg-photo) 0%, rgba(5,7,13,.75) 35%, rgba(5,7,13,.9) 100%),
    url("../assets/clothwash.jpeg") center 35% / cover no-repeat;
}

/* ---- Tilfa Valley herbal tea layout ---- */
#p-tilfa-herbal{
  background:
    linear-gradient(180deg, var(--bg-photo) 0%, rgba(5,7,13,.75) 35%, rgba(5,7,13,.9) 100%),
    url("../assets/tilfavalley-herbaltea-hero.jpg") center 35% / cover no-repeat;
}

/* ---- Kenzaniya sharkara powder layout ---- */
#p-kenzaniya-sharkara{
  background:
    linear-gradient(180deg, var(--bg-photo) 0%, rgba(5,7,13,.75) 35%, rgba(5,7,13,.9) 100%),
    url("../assets/marayoor.jpeg") center 35% / cover no-repeat;
}

/* ---- Kenzaniya ghee layout ---- */
#p-kenzaniya-ghee{
  background:
    linear-gradient(180deg, var(--bg-photo) 0%, rgba(5,7,13,.75) 35%, rgba(5,7,13,.9) 100%),
    url("../assets/gheee.jpeg") center 35% / cover no-repeat;
}
.pstage-glow{
  position:absolute; top:50%; left:50%; width:1100px; height:700px; margin:-350px 0 0 -550px;
  border-radius:50%; filter: blur(120px); opacity:.16; pointer-events:none; z-index:0;
}
.pstage-inner{
  position:relative; z-index:1; max-width:1260px; margin:0 auto; display:grid; grid-template-columns: 1.2fr .8fr;
  gap:60px; align-items:center;
}
.pstage-section.flip .pstage-inner{ direction: rtl; }
.pstage-section.flip .pstage-inner > *{ direction: ltr; }

/* ---- 3D stage — the product itself floats; no card/rectangle box around it ---- */
.stage3d{ perspective: 1800px; display:flex; justify-content:center; }
.stage3d-pos{ position:relative; display:flex; align-items:flex-end; justify-content:center; }
.stage3d-shadow{
  position:absolute; left:50%; bottom:-2%; width:52%; height:34px;
  background: radial-gradient(ellipse, rgba(0,0,0,.6), transparent 72%);
  filter: blur(16px); transform: translateX(-50%); transition: transform .1s linear;
}
.stage3d-card{
  position:relative; width:min(700px, 92vw); height:min(640px, 64vh);
  display:flex; align-items:center; justify-content:center;
  transform-style: preserve-3d; cursor: grab; touch-action: pan-y;
}
.stage3d-card.grabbing{ cursor: grabbing; }
.stage3d-card::before{
  content:""; position:absolute; z-index:0; inset:8%; border-radius:50%; pointer-events:none;
  background: radial-gradient(circle at var(--sweep-x, 50%) 50%, color-mix(in srgb, var(--accent, var(--gold)) 55%, transparent), transparent 70%);
  filter: blur(46px); opacity:.85;
}
.stage3d-card img{
  position:relative; z-index:1; max-width:100%; max-height:100%; width:auto; height:auto;
  object-fit:contain; user-select:none; -webkit-user-drag:none; pointer-events:none;
  filter: drop-shadow(0 46px 42px rgba(0,0,0,.55)) drop-shadow(0 10px 12px rgba(0,0,0,.4));
}
/* ---- product text panel ---- */
.pstage-copy{ position:relative; z-index:1; }
.pstage-brand{
  display:inline-flex; align-items:center; gap:8px; font-size:.74rem; font-weight:800; letter-spacing:.12em;
  text-transform:uppercase; padding:7px 16px; border-radius:99px; margin-bottom:18px; border:1px solid;
}
.pstage-copy h3{ font-size: clamp(1.7rem, 2.6vw, 2.5rem); color:#fff; margin-bottom:16px; }
.pstage-copy p{ font-size:1.02rem; max-width:460px; color: var(--ink-on-photo); }
.pstage-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.pstage-tag{
  font-size:.78rem; font-weight:700; padding:8px 16px; border-radius:99px; background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.16); color: var(--ink-on-photo);
}
.pstage-tag::before{ content:"●"; font-size:.5em; margin-right:7px; opacity:.6; vertical-align:middle; }
.pstage-quote{
  font-family:'Fraunces',serif; font-style:italic; font-size:.98rem; color:#e4e6f0; line-height:1.6;
  border-left:2px solid var(--accent, var(--gold)); padding-left:16px; max-width:460px;
}

/* ================= VALUES ================= */
.values-strip{ padding: 90px 32px 10px; }
.values-inner{ max-width:1240px; margin:0 auto; }
.values-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:20px; }
.value-card{
  background: var(--panel); border:1px solid var(--line); border-radius: var(--radius-sm);
  padding:34px 26px; text-align:center; transition: all .35s var(--ease);
}
.value-card:hover{ background: var(--panel-2); transform: translateY(-4px); border-color: rgba(217,169,78,.35); }
.value-card h3{ font-size:1.15rem; color: var(--ink); margin-bottom:18px; }
.value-card a{
  display:inline-block; font-size:.7rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
  color: var(--gold-ink); border-bottom:1px solid rgba(217,169,78,.4); padding-bottom:3px;
}
@media (max-width:860px){ .values-grid{ grid-template-columns:1fr; } }

/* ================= GROUP COMPANIES ================= */
.group-band{ padding:110px 0; background: var(--bg-2); border-top:1px solid var(--line); }
.group-lede{ max-width:640px; margin:0 auto 50px; text-align:center; color:var(--ink-soft); }
.group-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.group-card{ background: var(--panel); border:1px solid var(--line); border-radius: var(--radius-sm); padding:32px 30px; }
.group-card h3{ font-size:1.1rem; color: var(--ink); margin-bottom:14px; font-family:'Fraunces',serif; }
.group-card p{ font-size:.86rem; margin:0 0 4px; color: var(--ink-soft); }
.group-card .g-label{
  display:block; font-size:.66rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  color: var(--gold-ink); margin-top:14px; margin-bottom:3px;
}
.group-card a{ color: var(--ink); text-decoration:underline; text-decoration-color: rgba(20,18,30,.25); }
#collaborators .group-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
#collaborators .group-card {
  flex: 1 1 340px;
  max-width: 380px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
#collaborators .group-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 169, 78, 0.4);
  box-shadow: 0 12px 30px rgba(20, 16, 10, 0.08);
}
@media (max-width:860px){ .group-grid{ grid-template-columns:1fr; } }

/* ================= BRAND STORIES SLIDER ================= */
.brand-stories-section {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.stories-header {
  margin-bottom: 45px;
  text-align: center;
}
.stories-sub {
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.brand-story-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.b-tab {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 2px 8px rgba(20, 16, 10, 0.04);
}
.b-tab img {
  height: 22px;
  width: auto;
  object-fit: contain;
  filter: opacity(0.85);
  transition: transform 0.25s var(--ease);
}
.b-tab:hover {
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  background: var(--panel);
  box-shadow: 0 6px 16px rgba(217, 169, 78, 0.15);
}
.b-tab.active {
  border-color: var(--gold-ink);
  background: var(--panel);
  color: var(--gold-ink);
  box-shadow: 0 6px 20px rgba(217, 169, 78, 0.22);
}
.b-tab.active img {
  filter: none;
  transform: scale(1.08);
}

.story-slider-wrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.story-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(20, 16, 10, 0.12);
  transition: all 0.25s var(--ease);
}
.story-arrow.prev { left: -24px; }
.story-arrow.next { right: -24px; }
.story-arrow:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-50%) scale(1.08);
}

.story-slides-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.story-slides-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.story-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 50px 56px;
}

.story-card-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.story-brand-logo {
  max-height: 54px;
  width: auto;
  object-fit: contain;
  padding: 8px 16px;
  background: var(--panel-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.story-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, var(--gold-ink));
  background: rgba(217, 169, 78, 0.12);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 6px;
}
.story-card-title h3 {
  font-size: 1.8rem;
  margin: 0;
}

.story-card-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.story-card-body p.story-lead {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.75;
}
.story-quote {
  margin: 28px 0 10px;
  padding: 20px 24px;
  border-left: 4px solid var(--gold-ink);
  background: var(--panel-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.12rem;
  color: var(--ink);
  line-height: 1.6;
}

.story-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.story-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--line);
  border: none;
  padding: 0;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.story-dot.active {
  width: 28px;
  background: var(--gold-ink);
}

.brand-strip-item {
  cursor: pointer;
  user-select: none;
}

@media (max-width: 860px) {
  .story-arrow.prev { left: 10px; }
  .story-arrow.next { right: 10px; }
  .story-slide { padding: 36px 24px; }
  .story-card-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .story-card-title h3 { font-size: 1.4rem; }
  .brand-stories-section { padding: 80px 0; }
}

@media (max-width: 540px) {
  .b-tab span { display: none; }
  .b-tab { padding: 8px 12px; }
  .b-tab img { height: 18px; }
  .story-slide { padding: 28px 18px; }
  .story-arrow { width: 38px; height: 38px; }
  .story-arrow.prev { left: 4px; }
  .story-arrow.next { right: 4px; }
  .brand-stories-section { padding: 60px 0; }
}

/* ================= STORY ================= */
.story{ padding: 130px 0; background: var(--bg-2); border-top:1px solid var(--line); }
.story-grid{ display:grid; grid-template-columns: .85fr 1.15fr; gap:70px; align-items:flex-start; }
.story-media{ position:relative; }

/* ---- Founder portrait (left column) ---- */
.founder-portrait{ margin:0; }
.founder-portrait img{
  width:100%; height:auto; display:block;
  border-radius: var(--radius); object-fit:cover; object-position: top center;
  box-shadow: var(--shadow-lg);
  border:1px solid var(--line);
}
.founder-portrait figcaption{
  margin-top:14px; font-size:.78rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  color: var(--ink-soft); text-align:center;
}

.story-copy p{ font-size:1.02rem; }
.story-copy h2 em{ font-style:italic; color: var(--gold-ink); }
.story-copy strong{ color: var(--ink); font-weight:700; }

/* ================= CTA BAND ================= */
.cta-band{ padding:120px 0 90px; background: linear-gradient(180deg, var(--bg-2), var(--bg)); text-align:center; border-top:1px solid var(--line); }
.cta-band h2{ color: var(--ink); }
.cta-band p{ max-width:480px; margin:0 auto 40px; }
.cta-contacts{ display:flex; gap:18px; justify-content:center; flex-wrap:wrap; margin-bottom:60px; }
.cta-contact{
  background: var(--panel); border:1px solid var(--line); padding:18px 26px; border-radius:16px;
  min-width:200px; transition: all .35s var(--ease);
}
.cta-contact:hover{ background: var(--panel-2); transform: translateY(-4px); border-color: rgba(217,169,78,.4); }
.cta-contact strong{ display:block; font-family:'Fraunces',serif; font-size:1.05rem; margin-bottom:4px; color: var(--ink); }
.cta-contact span{ font-size:.75rem; color: var(--ink-soft); }
/* ================= BRANCH OFFICES ================= */
.offices-band {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.office-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 28px 26px;
  position: relative;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(20, 16, 10, 0.03);
}
.office-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 169, 78, 0.4);
  box-shadow: 0 12px 30px rgba(20, 16, 10, 0.08);
}
.office-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.office-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-ink);
  opacity: 0.85;
}
.loc-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-ink);
  background: rgba(217, 169, 78, 0.12);
  padding: 5px 12px;
  border-radius: 99px;
}
.loc-tag.intl {
  background: rgba(91, 130, 255, 0.12);
  color: var(--blue-2);
}
.loc-tag.hq {
  background: rgba(217, 169, 78, 0.2);
  color: var(--gold-ink);
  font-weight: 800;
}
.office-card h3 {
  font-size: 1.18rem;
  margin: 0 0 4px;
  color: var(--ink);
}
.office-entity {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-ink);
  margin-bottom: 12px;
}
.office-address {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ================= FOOTER ================= */
/* Kept dark intentionally — bookends the dark hero at the bottom of an
   otherwise light page. */
.site-footer{ background:#020306; color: rgba(255,255,255,.65); padding:80px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.09); }
.footer-brand img{ width:46px; height:46px; border-radius:50%; margin-bottom:14px; }
.footer-brand p{ color: rgba(255,255,255,.5); font-size:.85rem; }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{
  width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:flex;
  align-items:center; justify-content:center; font-size:.7rem; text-transform:uppercase; transition: all .3s;
}
.footer-social a:hover{ background: var(--gold); color: #12100a; border-color: var(--gold); }
.footer-col h4{ color:#fff; font-family:'Fraunces',serif; font-weight:600; margin-bottom:16px; font-size:1rem; }
.footer-col a, .footer-col span{ display:block; font-size:.86rem; margin-bottom:10px; color: rgba(255,255,255,.55); transition: color .3s; }
.footer-col a:hover{ color: var(--gold-light); }
.footer-address{ font-size:.85rem; color: rgba(255,255,255,.5); }
.footer-bottom{ text-align:center; padding:24px 0; font-size:.78rem; color: rgba(255,255,255,.35); }

/* ================= REVEAL ANIMATION ================= */
.reveal-up{ opacity:0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-up.in-view{ opacity:1; transform:none; }
.reveal-up[data-delay="1"]{ transition-delay:.08s; }
.reveal-up[data-delay="2"]{ transition-delay:.16s; }
.reveal-up[data-delay="3"]{ transition-delay:.24s; }

.pstage-reveal{
  opacity:0; transform: perspective(1200px) rotateX(10deg) translateY(50px) scale(.96);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.pstage-reveal.in-view{ opacity:1; transform:none; }

/* ================= RESPONSIVE ================= */

/* ---- Tablet (≤1080px) ---- */
@media (max-width: 1080px){
  .pstage-inner, .story-grid{ grid-template-columns:1fr; }
  .pstage-section.flip .pstage-inner{ direction: ltr; }
  .pstage-copy{ text-align:center; }
  .pstage-copy p{ margin-left:auto; margin-right:auto; }
  .pstage-tags{ justify-content:center; }
  .story-media{ max-width:420px; margin:0 auto; }
}

/* ---- Mobile nav + medium phones (≤860px) ---- */
@media (max-width: 860px){
  /* — Navigation — */
  .main-nav{
    position:fixed; top:0; right:0; height:100vh; width:80vw; max-width:320px;
    background: var(--bg-2);
    flex-direction:column; align-items:flex-start; justify-content:center;
    gap:24px; padding:60px 36px 40px;
    transform: translateX(110%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,.5);
    border-left:1px solid var(--line);
    z-index:1050;
  }
  .main-nav.open{ transform: translateX(0); }
  /* Slide-in panel is always an opaque light surface, unlike the transparent
     desktop nav sitting over the hero — link text stays dark ink here. */
  .main-nav a{ font-size:1.1rem; padding:8px 0; color: var(--ink); }
  .main-nav .nav-cta{
    padding: 13px 28px; font-size:.95rem; margin-top:10px;
  }
  .nav-toggle{
    display:flex; z-index:1100; padding:8px;
    border-radius:8px; border:1px solid var(--line);
    background: rgba(20,18,30,.05);
    transition: background .2s, border-color .2s;
  }
  .nav-toggle:hover{ background: rgba(20,18,30,.09); }
  .nav-toggle span{
    transition: transform .35s var(--ease), opacity .35s var(--ease);
  }

  /* — Values — */
  .values-grid{ grid-template-columns:1fr; }
  .values-strip{ padding: 60px 20px 10px; }

  /* — Group companies — */
  .group-grid{ grid-template-columns:1fr; }
  .group-band{ padding:80px 0; }


  /* — Offices — */
  .offices-grid{ grid-template-columns:1fr; }
  .offices-band{ padding:80px 0; }

  /* — Contact / CTA — */
  .loc-row{ grid-template-columns:1fr; }
  .cta-band{ padding:80px 0 60px; }
  .cta-contacts{ flex-direction:column; align-items:stretch; max-width:360px; margin-left:auto; margin-right:auto; }
  .cta-contact{ min-width:unset; text-align:left; }

  /* — Footer — */
  .footer-grid{ grid-template-columns:1fr 1fr; gap:30px; }

  /* — Product stage — */
  .pstage-section{ padding:60px 20px; }
  .pstage-inner{ gap:36px; }
  /* Cap card height to viewport WIDTH (not height) below desktop widths —
     otherwise vh-based sizing on tall/narrow screens makes product sections
     balloon far past one screen height. */
  .stage3d-card,
  #p-mx3-trio .stage3d-card,
  #p-landfloro-duo .stage3d-card{
    width: 86vw;
    height: min(460px, 58vw);
  }
  #p-tilfa-tea .stage3d-card{
    width: 90vw;
    height: min(540px, 70vw);
  }

  /* — Story — */
  .story{ padding:80px 0; }
}

/* ---- Small phones (≤540px) ---- */
@media (max-width: 540px){
  /* — Base spacing — */
  .section-wrap{ padding:0 18px; }
  .nav-wrap{ padding:0 14px 0 12px; }

  /* — Hero — */
  .hero{ padding:110px 18px 50px; min-height:95svh; }
  .hero-content h1{ font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-sub{ font-size:.96rem; }
  .hero-actions{ gap:12px; }
  .btn{ padding:13px 24px; font-size:.86rem; }
  .trust-row{ gap:8px; margin-top:20px; }

  /* — Collection intro — */
  .collection-intro{ padding:80px 18px 30px; }
  h2{ font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* — Product stages — */
  .pstage-section{ padding:50px 18px; }
  .stage3d-card,
  #p-mx3-trio .stage3d-card,
  #p-landfloro-duo .stage3d-card{
    width: 90vw;
    height: min(380px, 64vw);
  }
  #p-tilfa-tea .stage3d-card{
    width: 92vw;
    height: min(460px, 75vw);
  }
  .pstage-copy h3{ font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .pstage-copy p{ font-size:.94rem; }
  .pstage-tags{ gap:8px; }
  .pstage-tag{ font-size:.72rem; padding:7px 13px; }

  /* — Values — */
  .values-strip{ padding:50px 18px 10px; }
  .value-card{ padding:26px 20px; }


  /* — Story — */
  .story{ padding:60px 0; }
  .story-grid{ gap:36px; }
  .story-media{ max-width:360px; margin:0 auto; }
  .founder-portrait figcaption{ font-size:.72rem; }
  .story-copy p{ font-size:.95rem; }

  /* — Group companies — */
  .group-band{ padding:60px 0; }
  .group-card{ padding:24px 20px; }

  /* — CTA / Contact — */
  .cta-band{ padding:60px 0 50px; }
  .cta-band h2{ font-size: clamp(1.5rem, 7vw, 2rem); }
  .cta-contact{ padding:16px 20px; }
  .loc-card{ padding:18px 16px; }

  /* — Footer — */
  .footer-grid{ grid-template-columns:1fr; gap:24px; padding-bottom:36px; }
  .site-footer{ padding:60px 0 0; }

  /* — Nav toggle animation — */
  .nav-toggle.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2){ opacity:0; transform: scaleX(0); }
  .nav-toggle.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

/* ---- Very small phones (≤380px) ---- */
@media (max-width: 380px){
  .hero-content h1{ font-size:1.9rem; }
  .btn{ padding:12px 20px; font-size:.82rem; }
  .stage3d-card{ height: min(300px, 72vw); }
  .nav-wrap{ padding:0 10px 0 8px; }
  .section-wrap{ padding:0 14px; }
  .brand-mark img{ width:50px; height:50px; }
  .brand-text{ font-size:1.1rem; }
}
