/* ==========================================================
   GLOBAL RESET & BASE
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
:is(img,video) { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 500; line-height: 1.1; }
.theme-page { display: none; }
.theme-page.active { display: block; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 3.8s !important; transition-duration: 0.01ms !important; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================
   HEADER
   ========================================================== */
:root {
  --hdr-bg: rgba(10,10,10,0.7);
  --hdr-fg: #fff;
  --hdr-accent: #C9A87C;
  --hdr-h: 64px;
}
body[data-theme="fashion"]   { --hdr-bg: rgba(10,10,10,0.72);   --hdr-fg:#F7F3EE; --hdr-accent:#C9A87C; }
body[data-theme="beauty"]    { --hdr-bg: rgba(255,246,242,0.82);--hdr-fg:#2B1A1F; --hdr-accent:#C6785C; }
body[data-theme="tech"]      { --hdr-bg: rgba(0,0,0,0.65);      --hdr-fg:#F5F5F7; --hdr-accent:#2997FF; }
body[data-theme="home"]      { --hdr-bg: rgba(245,239,230,0.85);--hdr-fg:#3B3A36; --hdr-accent:#B97452; }
body[data-theme="food"]      { --hdr-bg: rgba(255,248,238,0.85);--hdr-fg:#241C15; --hdr-accent:#E85D3D; }
body[data-theme="pet"]       { --hdr-bg: rgba(255,249,240,0.85);--hdr-fg:#2B2620; --hdr-accent:#FF8C42; }
body[data-theme="wellness"]  { --hdr-bg: rgba(244,247,242,0.85);--hdr-fg:#1F2E28; --hdr-accent:#5C8770; }
body[data-theme="jewelry"]   { --hdr-bg: rgba(11,11,12,0.72);   --hdr-fg:#F8F6F1; --hdr-accent:#C9A24B; }

#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  color: var(--hdr-fg);
  transition: color 0.5s ease, padding 0.3s ease;
  border-bottom: 1px solid color-mix(in srgb, var(--hdr-fg) 12%, transparent);
}
#site-header::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: var(--hdr-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition: background 0.5s ease;
}
#site-header.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.header-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  padding: 16px 28px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; letter-spacing: 0.2px; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--hdr-accent); color: #fff; font-family: 'Fraunces', serif; font-size: 15px;
}
#nav-toggle { display: none; color: var(--hdr-fg); font-size: 18px; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 50%; position: relative; z-index: 620; }
#nav-toggle:hover { background: color-mix(in srgb, var(--hdr-fg) 10%, transparent); }

#nav-scrim { display: none; }

#industry-nav { display: flex; align-items: center; gap: 2px; flex: 1; overflow-x: auto; scrollbar-width: none; }
#industry-nav::-webkit-scrollbar { display: none; }
.nav-item {
  display: flex; align-items: center; gap: 7px;
  color: color-mix(in srgb, var(--hdr-fg) 72%, transparent);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.1px;
  padding: 8px 12px; border-radius: 20px; white-space: nowrap;
  transition: all 0.25s ease;
}
.nav-item i { font-size: 11px; opacity: 0.8; }
.nav-item:hover { color: var(--hdr-fg); background: color-mix(in srgb, var(--hdr-fg) 10%, transparent); }
.nav-item.active {
  color: #fff; background: var(--hdr-accent);
}

.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
#contact-btn {
  color: var(--hdr-fg); font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--hdr-fg) 35%, transparent);
  transition: all 0.25s ease;
}
#contact-btn:hover, #contact-btn.active { background: var(--hdr-fg); color: var(--hdr-bg); }
#lang-btn {
  display: flex; align-items: center; gap: 6px;
  color: var(--hdr-fg); font-size: 12.5px; font-weight: 600;
  padding: 8px 12px; border-radius: 20px;
  background: color-mix(in srgb, var(--hdr-fg) 10%, transparent);
  transition: background 0.2s ease;
}
#lang-btn:hover { background: color-mix(in srgb, var(--hdr-fg) 18%, transparent); }
.lang-flag { font-size: 13px; }

@media (max-width: 980px) {
  #nav-toggle { display: flex; }
  #nav-scrim {
    display: block; position: fixed; inset: 0; z-index: 590;
    background: rgba(0,0,0,0.35); opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease;
  }
  body.nav-open #nav-scrim { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
  #industry-nav {
    position: fixed; top: var(--hdr-h, 64px); left: 0; right: 0; bottom: 0; z-index: 600;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--hdr-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 18px; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.nav-open #industry-nav,
  #industry-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-item { padding: 14px 16px; font-size: 15px; border-radius: 12px; }
  .nav-item i { font-size: 15px; width: 20px; }
  .brand-word { display: none; }
  .header-right { margin-left: auto; }
}

/* ==========================================================
   FOOTER
   ========================================================== */

/* ==========================================================
   LANGUAGE SWITCH — MASCOT OVERLAY
   ========================================================== */
#lang-overlay {
  position: fixed; inset: 0; z-index: 3000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  background: rgba(12,12,14,0.94);
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s ease;
}
#lang-overlay.show { opacity: 1; pointer-events: auto; }
body.lang-locked { overflow: hidden; }
#lang-overlay-text { color: #f4f0e8; font-size: 14px; letter-spacing: 0.3px; font-weight: 500; }

#mascot #mascot-arm-right { transition: transform 0.2s ease; }
#mascot.working #mascot-arm-right { animation: hammerSwing 0.5s ease-in-out infinite; }
#mascot.working #mascot-legs { animation: legShift 0.9s ease-in-out infinite; }
#mascot.working #mascot-sparks { animation: sparkPop 0.5s ease-in-out infinite; }
@keyframes hammerSwing {
  0%   { transform: rotate(0deg); }
  40%  { transform: rotate(-55deg); }
  60%  { transform: rotate(-55deg); }
  100% { transform: rotate(0deg); }
}
@keyframes legShift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes sparkPop {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  55% { opacity: 1; transform: scale(1.1); }
}

/* ==========================================================
   SHARED SECTION UTILITIES
   ========================================================== */
.theme-page section { position: relative; }

/* ==========================================================================
   1. FASHION & APPAREL — Editorial Maison
   Palette: ink #0A0A0A / bone #F7F3EE / champagne #C9A87C / oxblood #7A1E2B
   Type: Fraunces italic display + Inter body
   ========================================================================== */
#page-fashion {
  --fs-ink:#0A0A0A; --fs-bone:#F7F3EE; --fs-gold:#C9A87C; --fs-oxblood:#7A1E2B;
  background: var(--fs-bone); color: var(--fs-ink); font-family: 'Inter', sans-serif;
}
#page-fashion h1, #page-fashion h2 { font-family: 'Fraunces', serif; font-weight: 400; }

.fs-hero { position: relative; height: 100vh; min-height: 620px; display: flex; align-items: flex-end; overflow: hidden; }
.fs-hero-media { position: absolute; inset: 0; overflow: hidden; }
.fs-hero-media :is(img,video) { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%) contrast(1.05); animation: fsKenBurns 20s ease-in-out infinite alternate; }
.fs-hero::after { content:''; position:absolute; inset:0; background: linear-gradient(0deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.05) 55%); }
.fs-hero-frame { position: relative; z-index: 2; padding: 0 6vw 8vw; color: #F7F3EE; max-width: 720px; }
.fs-eyebrow { display:block; font-size:12px; letter-spacing:3px; text-transform:uppercase; color: var(--fs-gold); margin-bottom:18px; font-weight:600; }
.fs-hero h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); font-style: italic; line-height: 1.02; margin-bottom: 22px; opacity: 0; animation: fsRise 0.9s 0.15s cubic-bezier(.16,1,.3,1) forwards; }
.fs-hero-sub { font-size: 15px; line-height: 1.7; max-width: 480px; color: rgba(247,243,238,0.82); margin-bottom: 30px; opacity: 0; animation: fsRise 0.9s 0.32s cubic-bezier(.16,1,.3,1) forwards; }
.fs-eyebrow { opacity: 0; animation: fsRise 0.9s 0.02s cubic-bezier(.16,1,.3,1) forwards; }
.fs-hero .fs-cta { opacity: 0; animation: fsRise 0.9s 0.48s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes fsRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fsKenBurns { from { transform: scale(1); } to { transform: scale(1.08); } }
.fs-cta { padding: 15px 34px; background: var(--fs-bone); color: var(--fs-ink); font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; transition: all 0.3s ease; }
.fs-cta:hover { background: var(--fs-gold); }
.fs-cta.outline { background: transparent; border: 1px solid var(--fs-ink); color: var(--fs-ink); }
.fs-cta.outline:hover { background: var(--fs-ink); color: var(--fs-bone); }

.fs-marquee { background: var(--fs-ink); color: var(--fs-bone); overflow: hidden; padding: 14px 0; white-space: nowrap; }
.fs-marquee-track { display: inline-block; font-family:'Fraunces',serif; font-style: italic; font-size: 15px; letter-spacing: 2px; animation: fsScroll 2s linear infinite; }
@keyframes fsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.fs-editorial { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 0; padding: 110px 0; max-width: 1400px; margin: 0 auto; }
.fs-editorial.reverse { direction: rtl; }
.fs-editorial.reverse > * { direction: ltr; }
.fs-ed-img { overflow: hidden; height: 560px; }
.fs-ed-img :is(img,video) { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.fs-ed-img:hover :is(img,video) { transform: scale(1.05); }
.fs-ed-copy { padding: 0 8vw; }
.fs-num { display: block; font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; color: var(--fs-gold); margin-bottom: 14px; }
.fs-editorial h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-style: italic; margin-bottom: 20px; }
.fs-editorial p { font-size: 15px; line-height: 1.8; max-width: 420px; color: #3d3833; }

.fs-grid-asym { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 300px); gap: 4px; padding: 0 4px; max-width: 1500px; margin: 0 auto; }
.fs-ga-big { grid-column: 1 / 3; grid-row: 1 / 3; overflow: hidden; }
.fs-ga-small { grid-column: span 1; grid-row: 1; overflow: hidden; }
.fs-ga-wide { grid-column: 3 / 5; grid-row: 2; overflow: hidden; }
.fs-grid-asym :is(img,video) { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.16,1,.3,1), filter 0.5s ease; }
.fs-grid-asym > div:hover :is(img,video) { transform: scale(1.06); filter: saturate(1.08); }

.fs-strip { padding: 110px 0; background: var(--fs-ink); }
.fs-strip-track { display: flex; gap: 24px; padding: 0 6vw; overflow-x: auto; scrollbar-width: none; }
.fs-strip-track::-webkit-scrollbar { display: none; }
.fs-strip-item { flex: 0 0 260px; }
.fs-strip-item :is(img,video) { width: 260px; height: 360px; object-fit: cover; margin-bottom: 14px; transition: transform 0.5s ease; }
.fs-strip-item:hover :is(img,video) { transform: translateY(-6px); }
.fs-strip-item span { color: var(--fs-bone); font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; }

.fs-closing { text-align: center; padding: 150px 6vw; }
.fs-closing h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-style: italic; margin-bottom: 34px; }

@media (max-width: 860px) {
  .fs-editorial, .fs-editorial.reverse { grid-template-columns: 1fr; direction: ltr; }
  .fs-ed-img { height: 380px; }
  .fs-ed-copy { padding: 32px 6vw 0; }
  .fs-grid-asym { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,220px); }
  .fs-ga-big { grid-column: 1/3; grid-row: 1; }
  .fs-ga-wide { grid-column: 1/3; grid-row: 3; }
}

/* ==========================================================================
   2. BEAUTY & COSMETICS — premium beauty brand
   Palette: blush cream #FFF6F2 / deep plum #2B1A1F / rose #E8A0A0 / terracotta #C6785C / gold #D4AF37
   Type: Fraunces (soft serif) display + Jost body
   ========================================================================== */
#page-beauty {
  --bt-cream:#FFF6F2; --bt-plum:#2B1A1F; --bt-rose:#E8A0A0; --bt-clay:#C6785C; --bt-gold:#D4AF37;
  background: var(--bt-cream); color: var(--bt-plum); font-family: 'Jost', sans-serif;
}
#page-beauty h1, #page-beauty h2, #page-beauty blockquote { font-family: 'Fraunces', serif; font-weight: 400; }

.bt-hero { position: relative; height: 108vh; min-height: 680px; display: flex; align-items: center; overflow: hidden; }
.bt-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: btDrift 24s ease-in-out infinite alternate; }
@keyframes btDrift { from { transform: scale(1.02) translateX(0); } to { transform: scale(1.1) translateX(-1.5%); } }
.bt-hero::after { content:''; position:absolute; inset:0; background: linear-gradient(100deg, rgba(43,26,31,0.55) 0%, rgba(43,26,31,0.08) 55%); }
.bt-hero-overlay { position: relative; z-index: 2; padding: 0 7vw; max-width: 640px; color: #fff; }
.bt-kicker { display:inline-block; font-size:12px; letter-spacing:3px; text-transform:uppercase; padding: 6px 16px; border: 1px solid rgba(255,255,255,0.5); border-radius: 30px; margin-bottom: 22px; }
.bt-hero h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); line-height: 1.08; margin-bottom: 22px; }
.bt-hero p { font-size: 15.5px; line-height: 1.7; max-width: 440px; margin-bottom: 32px; color: rgba(255,255,255,0.9); }
.bt-cta { padding: 16px 36px; background: var(--bt-clay); color: #fff; font-size: 13px; letter-spacing: 0.6px; border-radius: 40px; font-weight: 500; transition: all 0.3s ease; }
.bt-cta:hover { background: var(--bt-plum); transform: translateY(-2px); }

.bt-stat-strip { display: flex; justify-content: center; gap: 90px; padding: 60px 6vw; background: #fff; flex-wrap: wrap; text-align: center; }
.bt-stat-strip strong { display: block; font-family: 'Fraunces', serif; font-size: 2.4rem; color: var(--bt-clay); }
.bt-stat-strip span { font-size: 12.5px; letter-spacing: 0.5px; color: #8a7570; text-transform: uppercase; }

.bt-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.bt-split-copy { padding: 10vh 7vw; }
.bt-eyebrow { display: block; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--bt-clay); margin-bottom: 16px; font-weight: 500; }
.bt-split h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 20px; }
.bt-split p { font-size: 15px; line-height: 1.85; color: #5a4a46; max-width: 420px; margin-bottom: 22px; }
.bt-link { color: var(--bt-plum); font-weight: 600; font-size: 13.5px; border-bottom: 1px solid var(--bt-clay); padding-bottom: 2px; }
.bt-split-img { overflow: hidden; }
.bt-split-img :is(img,video) { width: 100%; height: 92vh; max-height: 720px; object-fit: cover; transition: transform 0.8s ease; }
.bt-split-img:hover :is(img,video) { transform: scale(1.04); }

.bt-mosaic { display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(2, 260px); gap: 6px; padding: 6px; max-width: 1500px; margin: 0 auto; }
.bt-mosaic-hero { grid-column: 1 / 4; grid-row: 1 / 3; overflow: hidden; }
.bt-mosaic-col { grid-column: 4 / 5; grid-row: 1 / 3; display: flex; flex-direction: column; gap: 6px; }
.bt-mosaic-sm { flex: 1; overflow: hidden; }
.bt-mosaic-tall { grid-column: 5 / 6; grid-row: 1 / 3; overflow: hidden; }
.bt-mosaic-wide { grid-column: 6 / 7; grid-row: 1 / 3; overflow: hidden; }
.bt-mosaic :is(img,video) { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bt-mosaic > div:hover :is(img,video) { transform: scale(1.06); }

.bt-shades { padding: 110px 6vw; text-align: center; }
.bt-shades h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 50px; }
.bt-shade-row { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; }
.bt-shade { width: 150px; transition: transform 0.35s ease; }
.bt-shade:hover { transform: translateY(-8px); }
.bt-shade :is(img,video) { width: 150px; height: 190px; object-fit: cover; border-radius: 100px 100px 12px 12px; border: 3px solid var(--sc); margin-bottom: 12px; box-shadow: 0 0 0 0 var(--sc); transition: box-shadow 0.35s ease; }
.bt-shade:hover :is(img,video) { box-shadow: 0 8px 26px -6px var(--sc); }
.bt-shade span { font-size: 13.5px; font-weight: 500; }

.bt-editorial { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; background: var(--bt-plum); color: #fff; }
.bt-ed-img { height: 100%; overflow: hidden; }
.bt-ed-img :is(img,video) { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.bt-ed-copy { padding: 8vh 7vw; }
.bt-editorial .bt-eyebrow { color: var(--bt-rose); }
.bt-editorial h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: 20px; }
.bt-editorial p { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.78); max-width: 440px; }

.bt-gallery { position: relative; padding: 6px; }
.bt-gallery .carousel-track { gap: 6px; }
.bt-gallery .carousel-track :is(img,video) { flex: 0 0 calc((100% - 12px) / 3); width: calc((100% - 12px) / 3); height: 320px; object-fit: cover; transition: opacity 0.4s ease; }
.bt-gallery .carousel-track :is(img,video):hover { opacity: 0.85; }

.bt-testimonial { position: relative; padding: 150px 6vw; text-align: center; overflow: hidden; }
.bt-test-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); }
.bt-testimonial blockquote { position: relative; z-index: 2; font-size: clamp(1.4rem, 2.6vw, 2.1rem); color: #fff; max-width: 780px; margin: 0 auto 22px; line-height: 1.4; }
.bt-testimonial cite { position: relative; z-index: 2; color: rgba(255,255,255,0.7); font-style: normal; font-size: 13px; letter-spacing: 0.5px; }

.bt-closing { text-align: center; padding: 140px 6vw; background: linear-gradient(180deg, #FFF6F2, #FCE9E2); }
.bt-closing h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 34px; }

@media (max-width: 900px) {
  .bt-split, .bt-editorial { grid-template-columns: 1fr; }
  .bt-mosaic { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(4, 200px); }
  .bt-mosaic-hero { grid-column: 1/3; grid-row: 1/3; }
  .bt-mosaic-col { grid-column: 1/2; grid-row: 3/4; flex-direction: row; }
  .bt-mosaic-tall { grid-column: 2/3; grid-row: 3/5; }
  .bt-mosaic-wide { grid-column: 1/2; grid-row: 4/5; }
  .bt-gallery .carousel-track :is(img,video) { flex-basis: calc((100% - 6px) / 2); width: calc((100% - 6px) / 2); }
}

/* ==========================================================================
   3. ELECTRONICS & TECHNOLOGY — Apple x Cuberto
   Palette: near-black #000 / #0A0A0A / grey #F5F5F7 / electric blue #2997FF
   Type: Inter Tight display (huge, tight tracking) + Inter body
   ========================================================================== */
#page-tech {
  --tc-bg:#000; --tc-panel:#0d0d0f; --tc-grey:#F5F5F7; --tc-blue:#2997FF;
  background: var(--tc-bg); color: var(--tc-grey); font-family: 'Inter', sans-serif;
}
#page-tech h1, #page-tech h2, #page-tech h3 { font-family: 'Inter Tight', sans-serif; letter-spacing: -0.03em; }

.tc-hero { padding: 170px 6vw 0; text-align: center; }
.tc-hero-label { font-size: 12px; letter-spacing: 3px; color: var(--tc-blue); font-weight: 700; margin-bottom: 18px; }
.tc-hero h1 { font-size: clamp(2.6rem, 8vw, 6.4rem); font-weight: 700; line-height: 0.98; margin-bottom: 20px; }
.tc-hero-sub { font-size: 17px; color: #a1a1a6; max-width: 560px; margin: 0 auto 50px; line-height: 1.6; }
.tc-hero-media { border-radius: 28px 28px 0 0; overflow: hidden; max-width: 1300px; margin: 0 auto; position: relative; }
.tc-hero-media :is(img,video) { width: 100%; height: 62vh; object-fit: cover; filter: brightness(0.92); }
.tc-hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(41,151,255,0.18) 50%, transparent 60%);
  background-size: 100% 300%;
  animation: tcScan 5s linear infinite;
  mix-blend-mode: screen; pointer-events: none;
}
@keyframes tcScan { 0% { background-position: 0 0; } 100% { background-position: 0 100%; } }

.tc-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #1c1c1e; padding: 1px; margin-top: 1px; }
.tc-spec-item { background: var(--tc-panel); padding: 50px 34px; transition: background 0.3s ease; }
.tc-spec-item:hover { background: #131316; }
.tc-spec-item i { font-size: 22px; color: var(--tc-blue); margin-bottom: 22px; display: block; transition: transform 0.3s ease, filter 0.3s ease; }
.tc-spec-item:hover i { transform: scale(1.15); filter: drop-shadow(0 0 10px rgba(41,151,255,0.6)); }
.tc-spec-item h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.tc-spec-item p { font-size: 13.5px; color: #9c9ca3; line-height: 1.6; }

.tc-bento { display: grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: repeat(2, 320px); gap: 2px; padding: 2px; background: #1c1c1e; }
.tc-bento-a { grid-row: 1 / 3; position: relative; overflow: hidden; }
.tc-bento-a :is(img,video), .tc-bento-b :is(img,video), .tc-bento-c :is(img,video) { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; transition: transform 0.6s ease, opacity 0.4s ease; }
.tc-bento-a, .tc-bento-b, .tc-bento-c { position: relative; background: var(--tc-panel); overflow: hidden; }
.tc-bento-a:hover :is(img,video), .tc-bento-b:hover :is(img,video), .tc-bento-c:hover :is(img,video) { transform: scale(1.05); opacity: 0.95; }
.tc-bento-copy { position: absolute; left: 34px; bottom: 34px; z-index: 2; max-width: 320px; }
.tc-bento-copy h3 { font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.tc-bento-copy p { font-size: 13.5px; color: #d5d5d8; }
.tc-bento-b h4, .tc-bento-c h4 { position: absolute; left: 26px; bottom: 24px; z-index: 2; font-size: 17px; font-weight: 600; }

.tc-bigstat { text-align: center; padding: 150px 6vw; }
.tc-bigstat h2 span { font-family: 'Inter Tight', sans-serif; font-size: clamp(4rem, 14vw, 11rem); font-weight: 800; background: linear-gradient(180deg, #fff, #6b6b70); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.01em; }
.tc-bigstat p { color: #8e8e93; font-size: 14px; margin-top: 10px; }

.tc-showcase { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; background: var(--tc-panel); }
.tc-showcase-text { padding: 8vh 6vw; }
.tc-eyebrow { display: block; color: var(--tc-blue); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.tc-showcase h2 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); font-weight: 600; margin-bottom: 18px; }
.tc-showcase p { font-size: 15px; color: #a1a1a6; line-height: 1.7; max-width: 420px; margin-bottom: 20px; }
.tc-link { color: var(--tc-blue); font-weight: 600; font-size: 14px; }
.tc-showcase-img { overflow: hidden; }
.tc-showcase-img :is(img,video) { width: 100%; height: 70vh; max-height: 560px; object-fit: cover; transition: transform 0.6s ease; }
.tc-showcase-img:hover :is(img,video) { transform: scale(1.04); }

.tc-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: #1c1c1e; padding: 2px; }
.tc-strip :is(img,video) { width: 100%; height: 280px; object-fit: cover; filter: grayscale(30%); transition: filter 0.4s ease; }
.tc-strip :is(img,video):hover { filter: grayscale(0%); }

.tc-closing { text-align: center; padding: 170px 6vw; }
.tc-closing h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; margin-bottom: 36px; }
.tc-cta { padding: 17px 40px; background: var(--tc-blue); color: #fff; border-radius: 30px; font-size: 14px; font-weight: 600; transition: all 0.3s ease; }
.tc-cta:hover { background: #1c7ed6; transform: translateY(-2px); }

@media (max-width: 900px) {
  .tc-specs { grid-template-columns: repeat(2,1fr); }
  .tc-bento { grid-template-columns: 1fr; grid-template-rows: 280px 220px 220px; }
  .tc-bento-a { grid-row: 1; }
  .tc-showcase { grid-template-columns: 1fr; }
  .tc-strip { grid-template-columns: repeat(2,1fr); }
}

/* ==========================================================================
   4. HOME & DECOR
   Palette: linen #F5EFE6 / charcoal #3B3A36 / terracotta #B97452 / sage #7C8B6F
   Type: Fraunces display + Work Sans body
   ========================================================================== */
#page-home {
  --hm-linen:#F5EFE6; --hm-char:#3B3A36; --hm-terra:#B97452; --hm-sage:#7C8B6F;
  background: var(--hm-linen); color: var(--hm-char); font-family: 'Work Sans', sans-serif;
}
#page-home h1, #page-home h2 { font-family: 'Fraunces', serif; font-weight: 400; }

.hm-hero { display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; min-height: 92vh; }
.hm-hero-copy { padding: 6vh 6vw; }
.hm-eyebrow { display: block; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--hm-terra); margin-bottom: 18px; font-weight: 600; }
.hm-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); line-height: 1.12; margin-bottom: 22px; }
.hm-hero-sub { font-size: 15.5px; line-height: 1.75; color: #6b665e; max-width: 420px; margin-bottom: 30px; }
.hm-cta { padding: 15px 32px; background: var(--hm-char); color: var(--hm-linen); font-size: 13px; font-weight: 500; border-radius: 2px; transition: all 0.3s ease; }
.hm-cta:hover { background: var(--hm-terra); }
.hm-cta.outline { background: transparent; border: 1px solid var(--hm-char); color: var(--hm-char); }
.hm-cta.outline:hover { background: var(--hm-char); color: var(--hm-linen); }
.hm-hero-img { height: 92vh; overflow: hidden; }
.hm-hero-img :is(img,video) { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.hm-hero:hover .hm-hero-img :is(img,video) { transform: scale(1.06); }

.hm-tour { padding: 10px 0 100px; }
.hm-tour-track { display: flex; gap: 20px; overflow-x: auto; padding: 0 6vw; scrollbar-width: none; }
.hm-tour-track::-webkit-scrollbar { display: none; }
.hm-tour-item { flex: 0 0 360px; overflow: hidden; }
.hm-tour-item :is(img,video) { width: 360px; height: 440px; object-fit: cover; margin-bottom: 16px; transition: transform 0.6s ease; }
.hm-tour-item:hover :is(img,video) { transform: scale(1.04); }
.hm-tour-item h4 { font-family: 'Fraunces', serif; font-size: 18px; }

.hm-texture-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; background: #EDE4D3; }
.hm-tex-img { overflow: hidden; }
.hm-tex-img :is(img,video) { width: 100%; height: 78vh; max-height: 620px; object-fit: cover; }
.hm-tex-copy { padding: 6vh 7vw; }
.hm-num { display: block; font-family: 'Fraunces', serif; font-size: 14px; color: var(--hm-terra); margin-bottom: 14px; }
.hm-tex-copy h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.hm-tex-copy p { font-size: 15px; line-height: 1.8; color: #5f5a52; max-width: 420px; }

.hm-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: repeat(3, 220px); gap: 8px; padding: 100px 6vw; max-width: 1400px; margin: 0 auto; }
.hm-g-big { grid-row: 1 / 4; overflow: hidden; }
.hm-g-sm { overflow: hidden; }
.hm-grid :is(img,video) { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hm-grid > div:hover :is(img,video) { transform: scale(1.05); }

.hm-closing { text-align: center; padding: 140px 6vw; background: var(--hm-char); color: var(--hm-linen); }
.hm-closing h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 34px; }
.hm-closing .hm-cta.outline { border-color: var(--hm-linen); color: var(--hm-linen); }
.hm-closing .hm-cta.outline:hover { background: var(--hm-linen); color: var(--hm-char); }

@media (max-width: 900px) {
  .hm-hero, .hm-texture-split, .hm-grid { grid-template-columns: 1fr; }
  .hm-hero-img, .hm-tex-img :is(img,video) { height: 46vh; }
  .hm-grid { grid-template-rows: 220px 220px 220px 220px; }
  .hm-g-big { grid-row: 1 / 3; }
}

/* ==========================================================================
   5. FOOD & BEVERAGE
   Palette: cream #FFF8EE / espresso #241C15 / tomato #E85D3D / honey #D9A441
   Type: Bricolage Grotesque display + DM Sans body
   ========================================================================== */
#page-food {
  --fd-cream:#FFF8EE; --fd-esp:#241C15; --fd-tom:#E85D3D; --fd-honey:#D9A441;
  background: var(--fd-cream); color: var(--fd-esp); font-family: 'DM Sans', sans-serif;
}
#page-food h1, #page-food h2, #page-food h4 { font-family: 'Bricolage Grotesque', sans-serif; }

.fd-hero { position: relative; padding: 150px 6vw 90px; overflow: hidden; }
.fd-blob { position: absolute; top: -120px; right: -100px; width: 520px; height: 520px; background: var(--fd-honey); border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%; opacity: 0.35; z-index: 0; animation: fdBlob 12s ease-in-out infinite; }
@keyframes fdBlob {
  0%, 100% { border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%; transform: rotate(0deg) scale(1); }
  50% { border-radius: 60% 40% 45% 55% / 45% 55% 45% 55%; transform: rotate(12deg) scale(1.05); }
}
.fd-hero-copy { position: relative; z-index: 2; max-width: 640px; }
.fd-badge { display: inline-block; background: var(--fd-tom); color: #fff; font-size: 12px; font-weight: 700; padding: 7px 16px; border-radius: 30px; margin-bottom: 22px; }
.fd-hero h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 800; line-height: 1.03; margin-bottom: 22px; }
.fd-hero-sub { font-size: 16px; line-height: 1.7; color: #5c4f42; max-width: 460px; margin-bottom: 30px; }
.fd-cta { padding: 16px 34px; background: var(--fd-tom); color: #fff; font-size: 14px; font-weight: 700; border-radius: 40px; transition: all 0.3s ease; }
.fd-cta:hover { background: #c9492e; transform: translateY(-2px); }
.fd-hero-img { position: relative; z-index: 1; width: 100%; height: 52vh; min-height: 340px; object-fit: cover; border-radius: 32px; margin-top: 50px; }

.fd-menu { padding: 20px 6vw 110px; }
.fd-menu h2 { text-align: center; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 50px; }
.fd-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1300px; margin: 0 auto; }
.fd-menu-card { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(36,28,21,0.08); transition: transform 0.35s cubic-bezier(.34,1.56,.64,1); }
.fd-menu-card:hover { transform: translateY(-8px) scale(1.015); }
.fd-menu-card :is(img,video) { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.fd-menu-card:hover :is(img,video) { transform: scale(1.08); }
.fd-menu-card h4 { padding: 22px 22px 6px; font-size: 18px; font-weight: 700; }
.fd-menu-card p { padding: 0 22px 24px; font-size: 13.5px; color: #7a6e60; line-height: 1.6; }

.fd-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; background: var(--fd-esp); color: var(--fd-cream); }
.fd-split-img { overflow: hidden; }
.fd-split-img :is(img,video) { width: 100%; height: 80vh; max-height: 620px; object-fit: cover; }
.fd-split-copy { padding: 6vh 7vw; }
.fd-eyebrow { display: block; color: var(--fd-honey); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.fd-split h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.fd-split p { font-size: 15px; line-height: 1.8; color: rgba(255,248,238,0.78); max-width: 440px; }

.fd-gallery { position: relative; padding: 90px 6vw; }
.fd-gallery .carousel-track { gap: 10px; }
.fd-gallery .carousel-track :is(img,video) { flex: 0 0 calc((100% - 30px) / 4); width: calc((100% - 30px) / 4); height: 240px; object-fit: cover; border-radius: 20px; transition: transform 0.4s ease; }
.fd-gallery .carousel-track :is(img,video):hover { transform: scale(1.03) rotate(-0.6deg); }

.fd-closing { text-align: center; padding: 140px 6vw; }
.fd-closing h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; margin-bottom: 34px; }

@media (max-width: 900px) {
  .fd-menu-grid { grid-template-columns: repeat(2,1fr); }
  .fd-gallery .carousel-track :is(img,video) { flex-basis: calc((100% - 10px) / 2); width: calc((100% - 10px) / 2); }
  .fd-split { grid-template-columns: 1fr; }
}

/* ==========================================================================
   6. PET
   Palette: cream #FFF9F0 / ink #2B2620 / orange #FF8C42 / green #4E9F3D / yellow #FFD23F
   Type: Fredoka display + Nunito body
   ========================================================================== */
#page-pet {
  --pt-cream:#FFF9F0; --pt-ink:#2B2620; --pt-orange:#FF8C42; --pt-green:#4E9F3D; --pt-yellow:#FFD23F;
  background: var(--pt-cream); color: var(--pt-ink); font-family: 'Nunito', sans-serif;
}
#page-pet h1, #page-pet h2, #page-pet h4 { font-family: 'Fredoka', sans-serif; }

.pt-hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 20px; padding: 150px 6vw 90px; max-width: 1400px; margin: 0 auto; }
.pt-eyebrow { display: inline-block; background: var(--pt-yellow); padding: 8px 18px; border-radius: 30px; font-size: 13px; font-weight: 700; margin-bottom: 22px; animation: ptBob 2.4s ease-in-out infinite; }
@keyframes ptBob { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-4px) rotate(1deg); } }
.pt-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; line-height: 1.12; margin-bottom: 22px; }
.pt-hero-sub { font-size: 16px; line-height: 1.7; color: #5a5045; max-width: 440px; margin-bottom: 30px; }
.pt-cta { padding: 16px 34px; background: var(--pt-orange); color: #fff; font-size: 14.5px; font-weight: 700; border-radius: 40px; box-shadow: 0 10px 26px rgba(255,140,66,0.35); transition: all 0.25s ease; }
.pt-cta:hover { transform: translateY(-3px) rotate(-1deg); }
.pt-hero-img { overflow: hidden; border-radius: 40px; }
.pt-hero-img :is(img,video) { width: 100%; height: 56vh; min-height: 340px; object-fit: cover; border-radius: 40px; transition: transform 0.5s ease; }
.pt-hero-img:hover :is(img,video) { transform: scale(1.05) rotate(1deg); }

.pt-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding: 20px 6vw 100px; max-width: 1300px; margin: 0 auto; }
.pt-card { background: #fff; border-radius: 28px; overflow: hidden; box-shadow: 0 16px 40px rgba(43,38,32,0.08); transition: transform 0.3s ease; }
.pt-card:hover { transform: translateY(-6px) rotate(0.5deg); }
.pt-card :is(img,video) { width: 100%; height: 200px; object-fit: cover; }
.pt-card h4 { padding: 22px 22px 6px; font-size: 18px; }
.pt-card p { padding: 0 22px 24px; font-size: 13.5px; color: #7a6f60; line-height: 1.6; }

.pt-gallery { position: relative; padding: 20px 6vw 100px; }
.pt-gallery .carousel-track { gap: 14px; }
.pt-gallery .carousel-track :is(img,video) { flex: 0 0 calc((100% - 28px) / 3); width: calc((100% - 28px) / 3); height: 490px; object-fit: cover; border-radius: 30px; transition: transform 0.4s ease; }
.pt-gallery .carousel-track :is(img,video):hover { transform: scale(1.03) rotate(-1deg); }

.pt-closing { text-align: center; padding: 130px 6vw; background: var(--pt-green); color: #fff; border-radius: 60px 60px 0 0; }
.pt-closing h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 600; margin-bottom: 34px; }
.pt-closing .pt-cta { background: #fff; color: var(--pt-green); }

@media (max-width: 900px) {
  .pt-hero, .pt-cards { grid-template-columns: 1fr; }
  .pt-gallery .carousel-track :is(img,video) { flex-basis: 100%; width: 100%; }
}

/* ==========================================================================
   7. HEALTH & WELLNESS
   Palette: mist #F4F7F2 / deep forest #1F2E28 / sage #7FA694 / sand #C9B79C
   Type: Fraunces (light) display + Inter body
   ========================================================================== */
#page-wellness {
  --wl-mist:#F4F7F2; --wl-forest:#1F2E28; --wl-sage:#7FA694; --wl-sand:#C9B79C;
  background: var(--wl-mist); color: var(--wl-forest); font-family: 'Inter', sans-serif;
}
#page-wellness h1, #page-wellness h2 { font-family: 'Fraunces', serif; font-weight: 300; }

.wl-hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 94vh; }
.wl-hero-img { overflow: hidden; }
.wl-hero-img :is(img,video) { width: 100%; height: 94vh; object-fit: cover; animation: wlBreathe 10s ease-in-out infinite; }
@keyframes wlBreathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.035); } }
.wl-hero-copy { padding: 6vh 7vw; }
.wl-eyebrow { display: block; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--wl-sage); margin-bottom: 20px; font-weight: 600; }
.wl-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); line-height: 1.2; margin-bottom: 24px; }
.wl-hero-sub { font-size: 15.5px; line-height: 1.85; color: #4c5b53; max-width: 420px; margin-bottom: 34px; }
.wl-cta { padding: 15px 34px; background: var(--wl-forest); color: var(--wl-mist); font-size: 13px; font-weight: 500; border-radius: 40px; transition: all 0.3s ease; }
.wl-cta:hover { background: var(--wl-sage); }

.wl-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #e2e8e1; }
.wl-pillar { background: var(--wl-mist); padding: 80px 40px; text-align: center; }
.wl-pillar i { font-size: 24px; color: var(--wl-sage); margin-bottom: 22px; display: block; animation: wlBreathe 6s ease-in-out infinite; }
.wl-pillar h4 { font-family: 'Fraunces', serif; font-size: 20px; margin-bottom: 12px; }
.wl-pillar p { font-size: 13.5px; color: #6b7a72; line-height: 1.7; max-width: 260px; margin: 0 auto; }

.wl-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; background: #fff; }
.wl-split-copy { padding: 6vh 7vw; }
.wl-num { display: block; font-family: 'Fraunces', serif; font-style: italic; color: var(--wl-sage); font-size: 14px; margin-bottom: 16px; }
.wl-split h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.wl-split p { font-size: 15px; line-height: 1.9; color: #5a6b62; max-width: 420px; }
.wl-split-img { overflow: hidden; }
.wl-split-img :is(img,video) { width: 100%; height: 80vh; max-height: 600px; object-fit: cover; }

.wl-gallery { position: relative; }
.wl-gallery .carousel-track { gap: 3px; }
.wl-gallery .carousel-track :is(img,video) { flex: 0 0 calc((100% - 6px) / 3); width: calc((100% - 6px) / 3); height: 380px; object-fit: cover; transition: opacity 1s ease; }

.wl-closing { text-align: center; padding: 150px 6vw; background: var(--wl-forest); color: var(--wl-mist); }
.wl-closing h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 36px; }
.wl-closing .wl-cta { background: var(--wl-mist); color: var(--wl-forest); }

@media (max-width: 900px) {
  .wl-hero, .wl-split { grid-template-columns: 1fr; }
  .wl-hero-img :is(img,video) { height: 46vh; }
  .wl-pillars { grid-template-columns: 1fr; }
  .wl-gallery .carousel-track :is(img,video) { flex-basis: 100%; width: 100%; }
}

/* ==========================================================================
   8. JEWELRY & LUXURY
   Palette: onyx #0B0B0C / ivory #F8F6F1 / gold #C9A24B / bronze #6E6153
   Type: Cormorant Garamond display + Jost body — ultra minimal, generous space
   ========================================================================== */
#page-jewelry {
  --jw-onyx:#0B0B0C; --jw-ivory:#F8F6F1; --jw-gold:#C9A24B; --jw-bronze:#6E6153;
  background: var(--jw-onyx); color: var(--jw-ivory); font-family: 'Jost', sans-serif;
}
#page-jewelry h1, #page-jewelry h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }

.jw-hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.jw-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; animation: jwKenBurns 26s ease-in-out infinite alternate; }
@keyframes jwKenBurns { from { transform: scale(1); } to { transform: scale(1.1); } }
.jw-hero::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,11,12,0.3), rgba(11,11,12,0.92)); }
.jw-hero::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(201,162,75,0.16), transparent);
  animation: jwShimmer 6s ease-in-out infinite; z-index: 1; pointer-events: none;
}
@keyframes jwShimmer { 0% { left: -60%; } 100% { left: 130%; } }
.jw-hero-copy { position: relative; z-index: 2; }
.jw-eyebrow { display: block; font-size: 12px; letter-spacing: 5px; text-transform: uppercase; color: var(--jw-gold); margin-bottom: 26px; }
.jw-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.15; margin-bottom: 40px; }
.jw-cta { padding: 15px 40px; border: 1px solid var(--jw-gold); color: var(--jw-gold); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; transition: all 0.35s ease; }
.jw-cta:hover { background: var(--jw-gold); color: var(--jw-onyx); }

.jw-spotlight { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 130px 0; max-width: 1400px; margin: 0 auto; gap: 60px; }
.jw-spotlight.reverse { direction: rtl; }
.jw-spotlight.reverse > * { direction: ltr; }
.jw-spot-img { overflow: hidden; }
.jw-spot-img :is(img,video) { width: 100%; height: 74vh; max-height: 560px; object-fit: cover; transition: transform 0.8s ease; }
.jw-spot-img:hover :is(img,video) { transform: scale(1.03); }
.jw-num { display: block; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 20px; color: var(--jw-gold); margin-bottom: 20px; }
.jw-spot-copy { padding: 0 6vw; }
.jw-spot-copy h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 24px; }
.jw-spot-copy p { font-size: 15px; line-height: 1.9; color: rgba(248,246,241,0.65); max-width: 400px; }

.jw-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #232323; }
.jw-strip :is(img,video) { width: 100%; height: 420px; object-fit: cover; opacity: 0.9; transition: opacity 0.4s ease, transform 0.6s ease; }
.jw-strip :is(img,video):hover { opacity: 1; transform: scale(1.03); }

.jw-closing { text-align: center; padding: 180px 6vw; }
.jw-closing h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 44px; }

@media (max-width: 900px) {
  .jw-spotlight, .jw-spotlight.reverse { grid-template-columns: 1fr; direction: ltr; }
  .jw-spot-copy { padding: 30px 6vw 0; }
  .jw-strip { grid-template-columns: 1fr; }
}

/* ==========================================================================
   3D PRODUCT VIEWERS (model-viewer) — shared across all industry pages
   Each theme block above defines its own accent variable (--fs-gold,
   --bt-clay, --tc-blue, --hm-terra, --fd-tom, --pt-orange, --wl-sage,
   --jw-gold). The .pv-section here reads whichever is active by nesting
   under each #page-X, so one ruleset styles all eight viewers on-brand.
   ========================================================================== */
.pv-section { padding: 90px 6vw 110px; text-align: center; }
.pv-head { max-width: 560px; margin: 0 auto 40px; }
.pv-eyebrow { display: block; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; opacity: 0.75; }
.pv-head h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 14px; }
.pv-head p { font-size: 14.5px; line-height: 1.7; opacity: 0.72; }

.pv-stage { position: relative; max-width: 900px; margin: 0 auto; border-radius: 24px; overflow: hidden; background: rgba(127,127,127,0.06); }
.pv-model { width: 100%; height: 58vh; min-height: 380px; max-height: 620px; --poster-color: transparent; }
.pv-poster { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; height: 100%; font-size: 13px; opacity: 0.6; }
.pv-poster i { font-size: 26px; animation: pvSpin 1.4s linear infinite; }
@keyframes pvSpin { to { transform: rotate(360deg); } }
.pv-fallback { padding: 60px 20px; font-size: 13.5px; opacity: 0.65; max-width: 360px; margin: 0 auto; }

.pv-controls { position: absolute; right: 16px; bottom: 16px; display: flex; flex-direction: column; gap: 8px; z-index: 5; }
.pv-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,20,20,0.55); color: #fff; font-size: 14px;
  backdrop-filter: blur(6px); transition: transform 0.2s ease, background 0.2s ease;
}
.pv-btn:hover { transform: scale(1.08); background: rgba(20,20,20,0.8); }
.pv-btn-toggle[aria-pressed="false"] { opacity: 0.45; }

.pv-hotspot {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 2px solid rgba(0,0,0,0.5);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.18);
  animation: pvPulse 1.8s ease-in-out infinite;
}
.pv-hotspot span { display: block; }
@keyframes pvPulse { 0%,100% { box-shadow: 0 0 0 6px rgba(255,255,255,0.18); } 50% { box-shadow: 0 0 0 10px rgba(255,255,255,0.06); } }

.pv-ingredient-panel {
  position: absolute; left: 16px; bottom: 16px; z-index: 5;
  max-width: 260px; padding: 16px 18px; border-radius: 16px;
  background: rgba(20,20,20,0.85); color: #fff; text-align: left;
  backdrop-filter: blur(8px);
}
.pv-ingredient-panel h4 { font-size: 15px; margin-bottom: 6px; }
.pv-ingredient-panel p { font-size: 12.5px; line-height: 1.6; opacity: 0.85; }
.pv-panel-close { position: absolute; top: 8px; right: 8px; width: 22px; height: 22px; color: rgba(255,255,255,0.7); font-size: 11px; }
.pv-note { max-width: 560px; margin: 22px auto 0; font-size: 12px; opacity: 0.5; }
.pv-note code { font-family: monospace; }

/* Per-theme accents for the viewer chrome */
#page-fashion  .pv-section { background: var(--fs-ink); color: var(--fs-bone); }
#page-fashion  .pv-btn { background: rgba(247,243,238,0.14); }
#page-fashion  .pv-btn:hover { background: var(--fs-gold); color: var(--fs-ink); }

#page-beauty   .pv-btn:hover { background: var(--bt-clay); }
#page-beauty   .pv-stage { background: rgba(198,120,92,0.08); }

#page-tech     .pv-section { background: var(--tc-panel); }
#page-tech     .pv-btn:hover { background: var(--tc-blue); }
#page-tech     .pv-stage { background: rgba(41,151,255,0.06); }

#page-home     .pv-btn:hover { background: var(--hm-terra); }
#page-home     .pv-stage { background: rgba(185,116,82,0.08); }

#page-food     .pv-section { background: var(--fd-esp); color: var(--fd-cream); }
#page-food     .pv-btn { background: rgba(255,248,238,0.14); }
#page-food     .pv-btn:hover { background: var(--fd-tom); }
#page-food     .pv-hotspot { border-color: var(--fd-tom); }

#page-pet      .pv-btn:hover { background: var(--pt-orange); }
#page-pet      .pv-stage { border-radius: 40px; background: rgba(255,140,66,0.08); }

#page-wellness .pv-btn:hover { background: var(--wl-sage); }
#page-wellness .pv-stage { background: rgba(127,166,148,0.08); }

#page-jewelry  .pv-btn:hover { background: var(--jw-gold); color: var(--jw-onyx); }
#page-jewelry  .pv-stage { background: rgba(201,162,75,0.06); }

@media (max-width: 640px) {
  .pv-model { height: 46vh; min-height: 300px; }
  .pv-ingredient-panel { left: 10px; right: 10px; max-width: none; bottom: 66px; }
}

/* ==========================================================================
   CONTACT PAGE — neutral chrome, inherits accent from --hdr-accent
   ========================================================================== */
#page-contact {
  background: #0f0f10; color: #f2f0ec; font-family: 'Inter', sans-serif; min-height: 100vh;
}
.ct-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px;
  max-width: 1300px; margin: 0 auto; padding: 170px 6vw 120px;
}
.ct-eyebrow { display: block; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--hdr-accent, #C9A87C); margin-bottom: 20px; font-weight: 600; }
.ct-info h1 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.2; margin-bottom: 22px; }
.ct-info p { font-size: 15px; line-height: 1.8; color: #b9b6b0; max-width: 440px; margin-bottom: 34px; }
.ct-detail { display: flex; align-items: center; gap: 14px; font-size: 14px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.ct-detail i { width: 20px; color: var(--hdr-accent, #C9A87C); }
.ct-socials { display: flex; gap: 14px; margin-top: 26px; }
.ct-socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; }
.ct-socials a:hover { background: var(--hdr-accent, #C9A87C); border-color: var(--hdr-accent, #C9A87C); color: #0f0f10; }

.ct-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 40px; display: flex; flex-direction: column; gap: 18px; }
.ct-field { display: flex; flex-direction: column; gap: 8px; }
.ct-field label { font-size: 12.5px; letter-spacing: 0.4px; color: #9a9790; }
.ct-field input, .ct-field select, .ct-field textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  padding: 13px 14px; color: #f2f0ec; font-size: 14px; font-family: inherit; outline: none;
  transition: border-color 0.2s ease;
}
.ct-field select option { background: #1a1a1b; }
.ct-field input:focus, .ct-field select:focus, .ct-field textarea:focus { border-color: var(--hdr-accent, #C9A87C); }
.ct-field textarea { resize: vertical; min-height: 110px; }
.ct-submit {
  margin-top: 6px; padding: 15px; background: var(--hdr-accent, #C9A87C); color: #14100c;
  font-size: 14px; font-weight: 700; border-radius: 10px; transition: opacity 0.2s ease;
}
.ct-submit:hover { opacity: 0.85; }
.ct-submit:disabled { opacity: 0.6; cursor: default; }
.ct-status { font-size: 13px; min-height: 18px; }
.ct-status.sending { color: #b9b6b0; }
.ct-status.success { color: #7FA694; }
.ct-status.error { color: #E85D3D; }

@media (max-width: 900px) {
  .ct-wrap { grid-template-columns: 1fr; padding-top: 130px; }
  .ct-form { padding: 26px; }
}
/* ==========================================================================
   IMAGE CAROUSEL — shared component for grid galleries
   (bt-gallery, fd-gallery, pt-gallery, wl-gallery)
   ========================================================================== */
.img-carousel { overflow: hidden; }
.img-carousel .carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.img-carousel .carousel-track::-webkit-scrollbar { display: none; }
.img-carousel .carousel-track > :is(img,video) { scroll-snap-align: start; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.25s ease, opacity 0.25s ease, transform 0.2s ease;
}
.carousel-btn:hover { background: rgba(0,0,0,0.8); transform: translateY(-50%) scale(1.06); }
.carousel-btn:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.carousel-btn.carousel-prev { left: 14px; }
.carousel-btn.carousel-next { right: 14px; }

@media (max-width: 640px) {
  .carousel-btn { width: 36px; height: 36px; font-size: 13px; }
  .carousel-btn.carousel-prev { left: 8px; }
  .carousel-btn.carousel-next { right: 8px; }
}

/* ==========================================================================
   CONTACT FORM — client-side validation states
   ========================================================================== */
.ct-field.has-error label { color: #E85D3D; }
.ct-field.has-error input,
.ct-field.has-error select,
.ct-field.has-error textarea { border-color: #E85D3D; }
.ct-field-error {
  display: block;
  font-size: 12px;
  color: #E85D3D;
  margin-top: 6px;
}