/* ============ VISIONE — Brand Tokens ============ */
:root{
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --panel: #151515;
  --line: rgba(255,255,255,.08);
  --lime: #aee520;
  --lime-dim: #7fae19;
  --gray-shape: #6f6f6f;
  --gray-shape-dark: #3c3c3c;
  --text: #f5f5f5;
  --text-muted: #b3b3b3;
  --text-faint: #7a7a7a;
  --radius: 18px;
  --wrap: 1180px;
  --ff: 'Poppins', system-ui, -apple-system, Segoe UI, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--ff);
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 32px;position:relative;z-index:2;}

h1,h2,h3,h4{ font-family:var(--ff); font-weight:800; margin:0; letter-spacing:-.01em; }
p{margin:0;}

.eyebrow{
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
  font-weight:700;
  color:var(--lime);
  margin-bottom:14px;
}
.section-title{
  font-size:clamp(28px,4vw,44px);
  margin-bottom:22px;
}
.lede{
  color:var(--text-muted);
  font-size:18px;
  max-width:640px;
  margin-bottom:8px;
}
.lede--wide{ max-width:820px; }

/* ============ Logo Mark (pinwheel) ============ */
.logo-mark{
  width:28px;
  height:28px;
  display:inline-block;
  flex-shrink:0;
}
.logo-mark--hero{ width:84px; height:84px; margin-bottom:28px; }
.logo-mark--footer{ width:56px; height:56px; margin-bottom:18px; }
.logo-mark--tiny{ width:20px; height:20px; }

/* ============ Header / Nav ============ */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:18px 0;
  background:rgba(10,10,10,0);
  border-bottom:1px solid transparent;
  transition:background .3s ease, border-color .3s ease, padding .3s ease;
}
.site-header.scrolled{
  background:rgba(10,10,10,.88);
  backdrop-filter:blur(10px);
  border-color:var(--line);
  padding:12px 0;
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand-word{
  font-size:20px; font-weight:800; letter-spacing:.02em; color:var(--text);
}
.brand-word em{ color:var(--lime); font-style:normal; }
.brand--small .brand-word{ font-size:16px; }

.main-nav{ display:flex; align-items:center; gap:30px; }
.main-nav a{
  font-size:14px; font-weight:600; color:var(--text-muted);
  transition:color .2s ease;
}
.main-nav a:hover{ color:var(--text); }
.main-nav a.is-active:not(.nav-cta){ color:var(--lime); }
.nav-cta.is-active{ box-shadow:0 0 0 2px var(--bg), 0 0 0 4px var(--lime); }
.nav-cta{
  background:var(--lime);
  color:#0a0a0a !important;
  padding:10px 20px;
  border-radius:999px;
  font-weight:700 !important;
}
.nav-cta:hover{ color:#0a0a0a !important; opacity:.9; }

.nav-toggle{
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:8px;
}
.nav-toggle span{ width:24px; height:2px; background:var(--text); border-radius:2px; }

/* ============ Hero ============ */
.hero{
  position:relative;
  min-height:100vh;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  overflow:hidden;
  background:var(--bg);
}
.hero-shapes{ position:absolute; inset:0; z-index:0; }
.shape{ position:absolute; }
.shape-gray{
  width:60vw; height:120vh; left:-18vw; top:-10vh;
  background:linear-gradient(160deg,#7c7c7c,#3a3a3a 60%,#1a1a1a);
  clip-path:polygon(20% 0%, 55% 8%, 78% 0%, 65% 30%, 90% 45%, 60% 55%, 70% 85%, 35% 68%, 18% 100%, 22% 60%, 0% 48%, 25% 32%);
  opacity:.5;
}
.shape-lime{
  width:22vw; height:120vh; right:-4vw; top:-10vh;
  background:linear-gradient(160deg,#c6f34a,var(--lime) 60%,#7fae19);
}
.shape-outline{
  width:280px; height:280px;
  border:1.5px solid rgba(255,255,255,.14);
  clip-path:polygon(50% 0%, 90% 20%, 100% 60%, 65% 100%, 25% 90%, 0% 55%, 15% 15%);
  right:8%; top:12%;
}
.hero-inner{ display:flex; flex-direction:column; align-items:center; }
.hero-title{
  font-size:clamp(52px,10vw,110px);
  line-height:1;
  color:var(--text);
}
.hero-title em{ font-style:normal; color:var(--lime); }
.hero-tagline{
  margin-top:18px;
  font-size:clamp(14px,1.6vw,18px);
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text-muted);
  font-weight:500;
}
.hero-actions{ display:flex; gap:16px; margin-top:40px; flex-wrap:wrap; justify-content:center; }

.btn{
  display:inline-block;
  padding:14px 30px;
  border-radius:999px;
  font-weight:700;
  font-size:15px;
  transition:transform .2s ease, opacity .2s ease, background .2s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-lime{ background:var(--lime); color:#0a0a0a; }
.btn-lime:hover{ opacity:.92; }
.btn-ghost{ border:1.5px solid rgba(255,255,255,.25); color:var(--text); }
.btn-ghost:hover{ border-color:var(--lime); color:var(--lime); }

.scroll-cue{
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
  width:24px; height:38px; border:2px solid rgba(255,255,255,.3); border-radius:14px;
}
.scroll-cue span{
  position:absolute; top:6px; left:50%; transform:translateX(-50%);
  width:4px; height:8px; background:var(--lime); border-radius:2px;
  animation:scrollcue 1.6s infinite;
}
@keyframes scrollcue{
  0%{ opacity:1; top:6px; }
  70%{ opacity:0; top:20px; }
  100%{ opacity:0; top:6px; }
}

/* ============ Generic section ============ */
.section{ position:relative; padding:120px 0; }
.section + .section{ border-top:1px solid var(--line); }

/* ============ About ============ */
.about{ background:var(--bg-soft); overflow:hidden; }
.about-media{
  position:absolute; inset:0; z-index:0; opacity:.5;
  background:
    radial-gradient(circle at 15% 20%, rgba(174,229,32,.10), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,.06), transparent 45%);
}
.quote-cards{
  display:grid; grid-template-columns:1fr 1fr; gap:26px; margin-top:50px;
}
.quote-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px;
  color:var(--text-muted);
  font-size:16px;
}
.quote-card--offset{ transform:translateY(28px); }

/* ============ Logo grids (brands / channels) ============ */
.brands{ background:var(--bg); }
.distribution{ background:var(--bg-soft); }
.logo-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:44px;
}
.logo-grid--channels{ grid-template-columns:repeat(4,1fr); }
.logo-chip{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:14px;
  padding:26px 18px;
  text-align:center;
  font-weight:700;
  font-size:15px;
  color:var(--text);
  transition:border-color .2s ease, transform .2s ease, color .2s ease;
}
.logo-chip:hover{
  border-color:var(--lime);
  color:var(--lime);
  transform:translateY(-3px);
}
.logo-chip--link{
  display:flex; align-items:center; justify-content:center; gap:8px;
  cursor:pointer;
}
.logo-chip-arrow{
  opacity:0; transform:translateX(-4px);
  transition:opacity .2s ease, transform .2s ease;
}
.logo-chip--link:hover .logo-chip-arrow{ opacity:1; transform:translateX(0); }

/* ============ Products ============ */
.products{ background:var(--bg); }
.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:44px;
}
.product-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  min-height:180px;
  display:flex; flex-direction:column; justify-content:flex-end;
  gap:14px;
  transition:border-color .2s ease, transform .2s ease;
}
.product-card:hover{ border-color:var(--lime); transform:translateY(-4px); }
.product-card--wide{ grid-column:span 2; min-height:220px; }
.product-card h3{ font-size:19px; }
.product-icon{
  width:44px; height:44px;
  border-radius:12px;
  background:rgba(174,229,32,.12);
  position:relative;
}
.product-icon::after{
  content:"";
  position:absolute; inset:12px;
  background:var(--lime);
  clip-path:polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}
/* Per-category silhouettes */
.product-icon[data-icon="comforter"]::after{ clip-path:polygon(0% 30%, 100% 30%, 100% 100%, 0% 100%, 0% 60%, 12% 60%, 12% 45%, 0% 45%); }
.product-icon[data-icon="bag"]::after{ clip-path:polygon(30% 0%, 70% 0%, 70% 22%, 92% 22%, 100% 100%, 0% 100%, 8% 22%, 30% 22%); }
.product-icon[data-icon="curtain"]::after{ clip-path:polygon(0% 0%, 100% 0%, 100% 12%, 88% 12%, 88% 100%, 64% 100%, 64% 12%, 36% 12%, 36% 100%, 12% 100%, 12% 12%, 0% 12%); }
.product-icon[data-icon="valance"]::after{ clip-path:polygon(0% 0%, 100% 0%, 100% 40%, 83% 70%, 66% 40%, 50% 70%, 34% 40%, 17% 70%, 0% 40%); }
.product-icon[data-icon="pillow"]::after{ clip-path:polygon(8% 25%, 50% 32%, 92% 25%, 100% 50%, 92% 75%, 50% 68%, 8% 75%, 0% 50%); }
.product-icon[data-icon="sheets"]::after{ clip-path:polygon(0% 20%, 100% 20%, 100% 40%, 0% 40%, 0% 50%, 100% 50%, 100% 70%, 0% 70%, 0% 80%, 100% 80%, 100% 100%, 0% 100%); }
.product-icon[data-icon="duvet"]::after{ clip-path:polygon(0% 15%, 100% 15%, 100% 100%, 0% 100%, 0% 70%, 20% 70%, 20% 45%, 0% 45%); }
.product-link{
  font-size:14px; font-weight:700; color:var(--lime);
  display:inline-flex; align-items:center; gap:6px;
}
.product-link span{ transition:transform .2s ease; }
.product-card:hover .product-link span{ transform:translateX(4px); }

/* ============ Kids & Adult ============ */
.kids-adult{ background:var(--bg-soft); }
.kids-adult-inner{
  display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center;
}
.kids-adult-copy p{ color:var(--text-muted); margin-bottom:16px; font-size:16px; }
.kids-adult-tiles{
  display:grid; grid-template-columns:1fr 1fr; gap:16px;
}
.tile{ aspect-ratio:1; border-radius:var(--radius); }
.tile--lime{ background:linear-gradient(150deg,#c6f34a,var(--lime)); }
.tile--gray{ background:linear-gradient(150deg,#6f6f6f,#2c2c2c); }
.tile--outline{ border:1.5px solid var(--line); background:var(--panel); }
.tile--dark{ background:#1c1c1c; border:1px solid var(--line); }

/* ============ A+ Content approach ============ */
.content-approach{ background:var(--bg); }
.content-approach-inner{
  display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:center;
}
.content-approach-copy p{ color:var(--text-muted); margin-bottom:16px; font-size:16px; }
.mockup{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}
.mockup-bar{
  display:flex; gap:6px; padding:14px 16px; border-bottom:1px solid var(--line);
}
.mockup-bar span{ width:10px; height:10px; border-radius:50%; background:#3a3a3a; }
.mockup-bar span:nth-child(1){ background:#d97757; }
.mockup-bar span:nth-child(2){ background:#e0c341; }
.mockup-bar span:nth-child(3){ background:var(--lime); }
.mockup-body{ padding:28px; display:flex; flex-direction:column; gap:14px; }
.mockup-line{ height:12px; border-radius:6px; background:#252525; }
.mockup-line--title{ width:60%; height:20px; background:#2f2f2f; }
.mockup-line--short{ width:40%; }
.mockup-btn{ width:130px; height:36px; border-radius:999px; background:var(--lime); margin-top:8px; }

/* ============ Accessories ============ */
.accessories{ background:var(--bg-soft); }
.accessories-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:44px; }
.accessory-card{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--radius);
  padding:32px;
}
.accessory-card h3{ font-size:20px; margin-bottom:14px; color:var(--lime); }
.accessory-card p{ color:var(--text-muted); font-size:16px; }

/* ============ Values ============ */
.values{ background:var(--bg); position:relative; overflow:hidden; }
.values-bg{
  position:absolute; top:0; right:0; width:38%; height:100%;
  background:linear-gradient(180deg,var(--lime),#7fae19);
  opacity:.9;
  clip-path:polygon(30% 0%,100% 0%,100% 100%,0% 100%);
  z-index:0;
}
.values-list{ display:flex; flex-direction:column; gap:18px; margin-top:44px; max-width:760px; }
.value-item{
  display:flex; gap:24px; align-items:flex-start;
  background:rgba(174,229,32,.06);
  border:1px solid rgba(174,229,32,.25);
  border-radius:var(--radius);
  padding:26px 30px;
}
.value-num{
  font-size:34px; font-weight:800; color:var(--lime); line-height:1;
  flex-shrink:0;
}
.value-body h3{ font-size:19px; color:var(--text); margin-bottom:10px; }
.value-body p{ color:var(--text-muted); font-size:16px; }

/* ============ Why Us ============ */
.why-us{ background:var(--bg-soft); }
.why-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:44px;
}
.why-card{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--radius);
  padding:30px; transition:border-color .2s ease, transform .2s ease;
}
.why-card:hover{ border-color:var(--lime); transform:translateY(-4px); }
.why-num{ font-size:13px; font-weight:800; color:var(--text-faint); letter-spacing:.1em; }
.why-card h3{ font-size:19px; margin:10px 0 12px; }
.why-card p{ color:var(--text-muted); font-size:15px; }

/* ============ Locations ============ */
.locations{ background:var(--bg); }
.location-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:44px;
}
.location-card{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px;
}
.location-pin{
  display:inline-block; width:14px; height:14px; border-radius:50% 50% 50% 0;
  background:var(--lime); transform:rotate(-45deg); margin-bottom:18px;
}
.location-card h3{ font-size:18px; margin-bottom:8px; }
.location-card p{ color:var(--text-muted); font-size:14px; }

/* ============ Contact / Footer ============ */
.contact{ background:var(--bg-soft); text-align:center; padding-bottom:60px; }
.contact .logo-mark--footer{ margin-left:auto; margin-right:auto; }
.contact .section-title{ margin-bottom:44px; }
.contact-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px; text-align:left;
}
.contact-card{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px;
}
.contact-card h4{
  font-size:12px; text-transform:uppercase; letter-spacing:.14em; color:var(--lime);
  margin-bottom:10px; font-weight:700;
}
.contact-card p{ color:var(--text-muted); font-size:15px; margin-bottom:4px; }
.contact-card a{ font-size:15px; font-weight:600; color:var(--text); }
.contact-card a:hover{ color:var(--lime); }

.footer-bottom{
  margin-top:70px; padding-top:30px; border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px;
  text-align:left;
}
.footer-bottom p{ color:var(--text-faint); font-size:13px; }

/* ============ Reveal animation (progressive enhancement only) ============ */
.js .section .wrap > *{
  opacity:0; transform:translateY(24px);
}
.js .section.is-visible .wrap > *{
  opacity:1; transform:translateY(0);
  transition:opacity .7s ease, transform .7s ease;
}
.section.is-visible .wrap > *:nth-child(2){ transition-delay:.05s; }
.section.is-visible .wrap > *:nth-child(3){ transition-delay:.1s; }
.section.is-visible .wrap > *:nth-child(4){ transition-delay:.15s; }
.hero .hero-inner > *{ opacity:1; transform:none; }

/* ============ Page transitions (cross-document) ============ */
/* Same-origin navigations (index <-> brand pages) fade/slide instead of
   hard-cutting. Native in Chrome 126+ / Safari 18.2+; the @supports
   fallback gives older browsers a simple fade-in on arrival. */
@view-transition { navigation: auto; }

@media (prefers-reduced-motion: no-preference){
  ::view-transition-old(root){ animation: pt-leave .22s ease both; }
  ::view-transition-new(root){ animation: pt-enter .45s ease both; }
  @keyframes pt-leave{ to{ opacity:0; transform:translateY(-12px); } }
  @keyframes pt-enter{ from{ opacity:0; transform:translateY(16px); } }

  @supports not (view-transition-name: root){
    /* opacity only — a transform on body would unanchor the fixed header */
    body{ animation: page-fade .45s ease both; }
    @keyframes page-fade{ from{ opacity:0; } }
  }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
  .js .section .wrap > *{ opacity:1; transform:none; }
}

/* ============ Responsive ============ */
@media (max-width: 980px){
  .main-nav{
    position:fixed; top:0; right:0; height:100vh; width:78vw; max-width:320px;
    background:var(--bg-soft); border-left:1px solid var(--line);
    flex-direction:column; align-items:flex-start; justify-content:center;
    gap:26px; padding:40px;
    transform:translateX(100%); transition:transform .3s ease;
  }
  .main-nav.open{ transform:translateX(0); }
  .nav-toggle{ display:flex; }
  body.nav-open{ overflow:hidden; }
  .quote-cards, .accessories-grid{ grid-template-columns:1fr; }
  .quote-card--offset{ transform:none; }
  .logo-grid{ grid-template-columns:repeat(2,1fr); }
  .product-grid{ grid-template-columns:repeat(2,1fr); }
  .product-card--wide{ grid-column:span 2; }
  .kids-adult-inner, .content-approach-inner{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .location-grid{ grid-template-columns:repeat(2,1fr); }
  .contact-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 600px){
  .section{ padding:80px 0; }
  .wrap{ padding:0 20px; }
  .logo-grid, .product-grid, .why-grid, .location-grid, .contact-grid{ grid-template-columns:1fr; }
  .product-card--wide{ grid-column:span 1; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
}
