/* =========================================================
   50 STATES VINYL FLOORING — v2 Stylesheet
   Light luxury: warm white + ivory + gold + deep ink accents.
   Inspired by editorial flooring/store sites (Auropan-style).
   ========================================================= */

:root {
  /* Backgrounds */
  --bg:           #fbf8f1;     /* warm ivory base */
  --bg-2:         #ffffff;     /* card / surface */
  --bg-3:         #f3eee2;     /* paper / panel */
  --bg-4:         #ebe4d3;     /* sand */
  --bg-dark:      #0e0e10;     /* deep ink — used sparingly for footer / dark accent */
  --bg-dark-2:    #15151a;
  --bg-dark-3:    #1c1c22;

  /* Lines */
  --line:         #e6dec9;
  --line-dark:    #2a2a31;

  /* Ink */
  --ink:          #14141a;     /* near-black headings */
  --ink-2:        #2c2c33;     /* body */
  --muted:        #6e6a62;     /* secondary text */
  --muted-2:      #9a948a;
  --muted-on-dark:#b3aea6;

  /* Gold */
  --gold:         #c69b4f;     /* primary brand gold (deeper for light bg readability) */
  --gold-2:       #d4af6a;     /* highlight */
  --gold-soft:    #a47a3b;     /* deep gold */
  --gold-grad:    linear-gradient(135deg, #e7c98a 0%, #c69b4f 45%, #8e6826 90%);

  --white:        #ffffff;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Playfair Display', 'Times New Roman', serif;
  --font-sans:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container:    1320px;
  --gutter:       clamp(16px, 3vw, 40px);
  --radius-s:     6px;
  --radius:       14px;
  --radius-l:     24px;

  /* Motion */
  --ease:         cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset & base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg,video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { cursor: pointer; font-family: inherit; }
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

::selection { background: var(--gold); color: #fff; }

h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.005em;
  color: var(--ink);
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
p  { margin: 0 0 1em; color: var(--ink-2); }

em.gold { font-style: italic; color: var(--gold-soft); }

/* ---------- Utilities ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--wide { max-width: 1480px; margin: 0 auto; padding: 0 var(--gutter); }
.section   { padding: clamp(64px, 8vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(40px, 5vw, 70px) 0; }
.section--paper { background: var(--bg-3); }
.section--sand  { background: var(--bg-4); }
.section--dark  { background: var(--bg-dark); color: #e9e3d4; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #c5beae; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--gold);
  display: inline-block;
}
.section--dark .eyebrow { color: var(--gold-2); }

.lead {
  font-size: 1.13rem;
  color: var(--muted);
  max-width: 60ch;
  font-weight: 300;
}
.section--dark .lead { color: var(--muted-on-dark); }

.divider-gold {
  width: 60px; height: 2px; background: var(--gold-grad);
  margin: 0 0 26px; border-radius: 2px;
}

.center { text-align:center; }
.center .divider-gold { margin-left:auto; margin-right:auto; }

.tag {
  display:inline-block;
  padding: 5px 12px;
  background: rgba(198,155,79,.1);
  color: var(--gold-soft);
  border:1px solid rgba(198,155,79,.3);
  border-radius: 999px;
  font-size:.7rem;
  letter-spacing:.22em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
  --b-bg: var(--ink);
  --b-fg: #fff;
  --b-bd: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--b-bg);
  color: var(--b-fg);
  border: 1px solid var(--b-bd);
  border-radius: 999px;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(20,20,26,.45); }
.btn:hover::after{ transform: translateX(120%); }
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--gold        { --b-bg: var(--gold); --b-fg: #14141a; --b-bd: var(--gold); }
.btn--gold:hover  { --b-bg: var(--gold-soft); --b-bd: var(--gold-soft); --b-fg:#fff; }
.btn--ghost-light { --b-bg: transparent; --b-fg: var(--ink); --b-bd: var(--ink); }
.btn--ghost-dark  { --b-bg: transparent; --b-fg: #fff; --b-bd: rgba(255,255,255,.5); }
.btn--ghost-dark:hover { --b-bd: var(--gold); --b-fg: var(--gold); box-shadow:none; }
.btn--gold-outline{ --b-bg: transparent; --b-fg: var(--gold-soft); --b-bd: var(--gold-soft); }
.btn--gold-outline:hover { --b-bg: var(--gold-soft); --b-fg: #fff; }

/* ---------- Topbar (sits above dark header — visually continuous) ---------- */
.topbar {
  background: #08080a;
  color: #c5bea8;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 9px 0;
  position: relative;
  z-index: 60;
  border-bottom: 1px solid #1c1c22;
}
.topbar__inner { display:flex; justify-content:space-between; align-items:center; gap: 30px; }
.topbar a { color: var(--gold-2); }
.topbar a:hover { color: #fff; }
@media (max-width: 720px){
  .topbar__inner { justify-content: center; text-align:center; }
}

/* ---------- Header / Nav (dark band so the gold logo reads) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,14,16,.94);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid #1c1c22;
  transition: background .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(8,8,10,.98);
  box-shadow: 0 8px 24px -18px rgba(0,0,0,.55);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  transition: padding .3s var(--ease);
}
.is-scrolled .nav { padding: 12px 0; }

.nav__brand { justify-self: flex-start; display:flex; align-items:center; }
.nav__brand img {
  height: 128px;            /* logo larger */
  width: auto;
  transition: height .3s var(--ease);
}
.is-scrolled .nav__brand img { height: 64px; }

.nav__list {
  display:flex; gap: 38px; list-style: none; padding:0; margin:0;
  justify-self: center;
}
.nav__list a {
  position: relative;
  color: #e9e3d4;
  font-size: .8rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 2px;
}
.nav__list a::after {
  content:""; position:absolute; left:50%; bottom:-2px; width:0; height:1.5px;
  background: var(--gold-2);
  transition: width .35s var(--ease), left .35s var(--ease);
}
.nav__list a:hover, .nav__list a.is-active { color: var(--gold-2); }
.nav__list a:hover::after, .nav__list a.is-active::after { width:100%; left:0; }

.nav__cta { justify-self: flex-end; display:flex; align-items:center; gap: 18px; }
.nav__phone {
  font-family: var(--font-sans);
  font-weight:600;
  letter-spacing:.05em;
  font-size:.95rem;
  color: #fff;
  border-left: 1px solid #2a2a31;
  padding-left: 18px;
}
.nav__phone span {
  display:block; font-size:.62rem; color: #a59f93; letter-spacing:.28em;
  text-transform:uppercase; font-weight:600;
}
.nav__toggle {
  display:none; background:none; border:none; padding: 8px; color: #fff;
}
.nav__toggle span {
  display:block; width:26px; height:2px; background:currentColor; margin:5px 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

@media (max-width: 980px){
  .nav { grid-template-columns: 1fr auto; }
  .nav__list { display:none; }
  .nav__cta .nav__phone { display:none; }
  .nav__toggle { display: inline-block; }
  .nav__list.is-open {
    display:flex; flex-direction: column;
    position: fixed; inset: 110px 0 0 0;
    background: rgba(8,8,10,.98);
    padding: 36px var(--gutter);
    gap: 24px;
    border-top: 1px solid #1c1c22;
  }
  .nav__list.is-open a { font-size: 1.05rem; }
  .nav__brand img { height: 64px; }
  .is-scrolled .nav__brand img { height: 52px; }
}

/* ---------- HERO — image slideshow with caption panel ---------- */
.hero-v2 {
  background: var(--bg);
  padding: clamp(20px, 3vw, 32px) 0 clamp(40px, 5vw, 60px);
}
.hero-v2__grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
  min-height: clamp(480px, 70vh, 720px);
}
.hero-v2__slider {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: #2a241a;
}
.hero-v2__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.hero-v2__slide.is-active { opacity: 1; }
.hero-v2__slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.04); transition: transform 9s var(--ease);
}
.hero-v2__slide.is-active img { transform: scale(1); }

.hero-v2__dots {
  position: absolute; left: 28px; bottom: 28px;
  display:flex; gap: 8px; z-index: 2;
}
.hero-v2__dots button {
  width: 38px; height: 3px; padding: 0;
  background: rgba(255,255,255,.45); border: none; border-radius: 2px;
  transition: background .25s var(--ease), width .35s var(--ease);
}
.hero-v2__dots button.is-active { background: var(--gold); width: 60px; }

.hero-v2__panel {
  background: var(--bg-2);
  border-radius: var(--radius-l);
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero-v2__panel::after {
  content:""; position:absolute; top:0; right:0; width:140px; height:140px;
  background: var(--gold-grad); opacity: .07; border-radius: 50%; transform: translate(40%, -40%);
}
.hero-v2__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 14px;
}
.hero-v2__title em { font-style: italic; color: var(--gold-soft); }
.hero-v2__sub {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0 0 22px;
}
.hero-v2__cta { display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 28px; }
.hero-v2__meta {
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero-v2__meta div b {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--gold-soft); font-weight: 500;
  display:block; line-height: 1;
}
.hero-v2__meta div span {
  font-size: .68rem; letter-spacing:.22em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px; display: block;
}

@media (max-width: 980px){
  .hero-v2__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-v2__slider { aspect-ratio: 16/10; min-height: 320px; }
}

/* ---------- Tagline divider (replaces the marquee) ---------- */
.tagline {
  background: var(--bg);
  padding: clamp(36px, 5vw, 60px) 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tagline__inner {
  display:flex; align-items:center; justify-content:center; gap:24px;
}
.tagline__line { flex: 1; max-width: 180px; height:1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.tagline h2 {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 2.05rem);
  color: var(--ink);
  letter-spacing: .005em;
}
.tagline h2 em { color: var(--gold-soft); font-style: italic; }
.tagline__sub {
  margin-top: 12px;
  font-size: .76rem; letter-spacing: .42em; text-transform: uppercase; color: var(--muted);
}

/* ---------- Section heading ---------- */
.section-head {
  display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between;
  gap: 28px; margin-bottom: clamp(40px, 5vw, 70px);
}
.section-head__title { max-width: 38ch; margin: 0; }
.section-head__cta a {
  color: var(--gold-soft); font-weight: 600; letter-spacing:.22em;
  text-transform:uppercase; font-size:.78rem;
}
.section-head__cta a:hover { color: var(--ink); }

/* ---------- Swatches ---------- */
.swatches {
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}
.swatch {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.swatch__img { aspect-ratio: 1/1; overflow:hidden; }
.swatch__img img { width:100%; height:100%; object-fit:cover; transition: transform 1s var(--ease); }
.swatch__caption {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
}
.swatch__caption b {
  display:block; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink);
  font-weight: 500; line-height: 1.1;
}
.swatch__caption span {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
  margin-top: 4px; display: block;
}
.swatch:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 22px 40px -28px rgba(20,20,26,.35); }
.swatch:hover img { transform: scale(1.06); }

@media (max-width: 880px){ .swatches { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px){ .swatches { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Product cards ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2vw, 32px);
}
.product-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.product-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 28px 50px -28px rgba(20,20,26,.35); }
.product-card__media {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.product-card__media img {
  width:100%; height:100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__badge {
  position:absolute; top:14px; left:14px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 4px;
  font-size:.68rem; letter-spacing:.22em; text-transform:uppercase; font-weight:600;
  border: 1px solid rgba(198,155,79,.35);
}
.product-card__body { padding: 22px 22px 26px; }
.product-card__name {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); margin: 0 0 4px;
  font-weight: 500;
}
.product-card__meta {
  color: var(--muted); font-size:.74rem; letter-spacing:.22em; text-transform:uppercase;
  margin-bottom: 14px;
}
.product-card__row { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.product-card__price {
  color: var(--gold-soft); font-size: 1.4rem; font-family: var(--font-display); font-weight: 500;
}
.product-card__price small {
  font-size:.7rem; color:var(--muted); letter-spacing:.18em;
  text-transform:uppercase; margin-left: 6px;
}
.product-card__cta {
  display:inline-flex; align-items:center; gap:8px;
  font-size:.72rem; letter-spacing:.22em; text-transform:uppercase; color: var(--ink);
  border-bottom: 1px solid var(--gold); padding-bottom: 4px;
  font-weight: 600;
}
.product-card__cta:hover { color: var(--gold-soft); }

/* ---------- Image+text split ---------- */
.split { display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 80px); align-items:center; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__media {
  border-radius: var(--radius-l); overflow:hidden;
  aspect-ratio: 4/5; position:relative;
  background: var(--bg-3);
}
.split__media img { width:100%; height:100%; object-fit:cover; transition: transform 1.4s var(--ease); }
.split__media:hover img { transform: scale(1.04); }
.split__list { list-style:none; padding:0; margin: 18px 0 28px; display:grid; gap: 10px; }
.split__list li {
  display:flex; align-items:flex-start; gap:14px;
  font-size: .98rem;
  color: var(--ink-2);
}
.split__list li::before {
  content:"✓"; color: var(--gold); font-weight:700;
  flex-shrink:0; line-height:1.5;
}
.section--dark .split__list li { color: #cdc4af; }
@media (max-width: 920px){ .split { grid-template-columns: 1fr; } .split__media { aspect-ratio: 4/3; } }

/* ---------- Promo poster row (uses ad-spc.jpg / ad-125.jpg as-is, no overlay text) ---------- */
.posters {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
}
.poster {
  position: relative;
  background: #fff;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: block;
}
.poster img {
  width: 100%; height: auto; display: block;
  object-fit: contain;
  background: #fff;
}
.poster:hover { transform: translateY(-4px); box-shadow: 0 20px 38px -22px rgba(20,20,26,.3); }
@media (max-width: 760px){ .posters { grid-template-columns: 1fr; } }

/* ---------- Stats / Trust ---------- */
.stats {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding: 48px 0;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--gold-soft);
  line-height:1;
  font-weight: 500;
}
.stat__label {
  color: var(--muted); font-size:.72rem; letter-spacing:.28em;
  text-transform:uppercase; margin-top:10px; font-weight: 600;
}

/* ---------- Lookbook (gallery without overlay text — images speak for themselves) ---------- */
.lookbook {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.lookbook .item {
  position:relative;
  overflow:hidden;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--line);
}
.lookbook .item img { width:100%; height:100%; object-fit:cover; transition: transform 1s var(--ease); }
.lookbook .item:hover img { transform: scale(1.04); }
.lookbook .item--lg { grid-column: span 2; grid-row: span 2; }
@media (max-width: 920px){
  .lookbook { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .lookbook .item--lg { grid-column: span 2; grid-row: span 1; }
}

/* ---------- Features grid ---------- */
.features { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature {
  position: relative;
  padding: 34px 30px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.feature:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 22px 38px -22px rgba(20,20,26,.25);
}
.feature__icon {
  width: 52px; height: 52px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 50%;
  background: rgba(198,155,79,.12);
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.feature h3 { color: var(--ink); font-size: 1.25rem; margin-bottom: 8px; font-family: var(--font-display); font-weight: 500; }
.feature p { color: var(--muted); font-size: .94rem; margin:0; }

.section--dark .feature {
  background: var(--bg-dark-2); border-color: var(--line-dark);
}
.section--dark .feature h3 { color: #fff; }
.section--dark .feature p { color: #b3aea6; }

/* ---------- Testimonials ---------- */
.testimonials { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
}
.testimonial::before{
  content:"\201C"; position:absolute; top: -22px; left: 24px;
  font-family: var(--font-display); font-size: 5rem; color: var(--gold); line-height: 1;
}
.testimonial p { font-style: italic; color: var(--ink-2); font-size:1.02rem; line-height: 1.55; }
.testimonial__name {
  color: var(--gold-soft); font-weight:600; letter-spacing:.18em;
  text-transform:uppercase; font-size:.74rem;
}
.testimonial__loc { color: var(--muted); font-size:.78rem; }
.stars { color: var(--gold); letter-spacing:2px; margin-bottom: 14px; }

/* ---------- Promo strip (light) ---------- */
.promo-strip {
  background: var(--bg-dark);
  color: #f3eee2;
  padding: 38px 0;
}
.promo-strip__inner {
  display:flex; align-items:center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.promo-strip__price {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height:1;
  color: var(--gold);
  font-weight: 500;
}
.promo-strip__price small {
  font-size:.34em; letter-spacing:.22em; color: var(--muted-on-dark);
  margin-left: 12px; text-transform: uppercase;
}
.promo-strip__text strong {
  color:#fff; font-size:1.4rem; font-family:var(--font-display);
  display:block; margin-bottom:4px; font-weight: 500;
}
.promo-strip__text span {
  color: var(--muted-on-dark); font-size:.82rem; letter-spacing:.22em; text-transform:uppercase;
}

/* ---------- CTA banner (dark, with image) ---------- */
.cta-banner {
  position:relative;
  text-align:center;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  border-radius: var(--radius-l);
  overflow:hidden;
  isolation:isolate;
}
.cta-banner::before{
  content:""; position:absolute; inset:0; z-index:-2;
  background-image: var(--cta-img, url('../img/home/sample-1.jpg'));
  background-size: cover; background-position: center;
  filter: saturate(.95);
}
.cta-banner::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(180deg, rgba(8,8,10,.62), rgba(8,8,10,.82));
}
.cta-banner h2 { color:#fff; font-size: clamp(2rem, 4.5vw, 3.4rem); }
.cta-banner p  { color:#e9e3d4; max-width: 60ch; margin: 0 auto 28px; }

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  isolation: isolate;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--muted); max-width: 640px; margin: 0 auto; }
.crumbs {
  display:flex; gap:10px; justify-content:center;
  font-size:.72rem; letter-spacing:.26em; text-transform:uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.crumbs a { color: var(--gold-soft); font-weight: 600; }
.crumbs span { color: var(--muted-2); }

/* ---------- Pills filter ---------- */
.pills { display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-bottom: 40px; }
.pill {
  padding: 10px 22px;
  border:1px solid var(--line);
  border-radius: 999px;
  font-size:.74rem; letter-spacing:.22em; text-transform:uppercase; color: var(--ink-2);
  background: var(--bg-2);
  transition: all .25s var(--ease);
  font-weight: 600;
}
.pill:hover, .pill.is-active {
  border-color: var(--gold); color: var(--gold-soft);
  background: rgba(198,155,79,.08);
}

/* ---------- Specs list ---------- */
.specs { display:grid; gap: 0; margin: 22px 0; padding: 0; list-style: none; }
.specs li {
  display:flex; justify-content:space-between; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.specs li b { color: var(--ink); font-weight: 600; min-width: 140px; }
.specs li span { color: var(--muted); text-align: right; }

/* ---------- Forms ---------- */
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 720px){ .form-row { grid-template-columns: 1fr; } }
.field { position: relative; }
.field input, .field textarea, .field select {
  width:100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 16px 18px;
  font: inherit;
  border-radius: var(--radius-s);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(198,155,79,.12);
}
.field label {
  font-size:.72rem; color: var(--muted);
  letter-spacing:.22em; text-transform:uppercase;
  margin-bottom: 6px; display:block; font-weight: 600;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  color: #cdc4af;
  border-top: 1px solid #1a1a1f;
  padding-top: clamp(70px, 9vw, 110px);
}
.footer__map {
  text-align:center; padding: 30px 0 0;
}
.footer__map h2 {
  color:#fff; font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 0 0 6px; font-weight: 500;
}
.footer__map > p {
  color: #b3aea6; font-size:.78rem; letter-spacing:.26em;
  text-transform:uppercase; margin: 0 0 30px;
}
.footer__map img {
  max-width: 920px; margin: 0 auto;
  filter: brightness(1.7) contrast(.95);
}
.footer__legend { display:flex; justify-content:center; gap: 22px; margin-top: 18px; flex-wrap: wrap; }
.footer__legend span {
  display:flex; align-items:center; gap: 8px;
  font-size: .7rem; letter-spacing:.22em; text-transform:uppercase; color: #b3aea6;
}
.footer__legend i { width:14px; height:14px; border-radius:3px; }
.footer__legend i.l1{ background:#3a3a40; }
.footer__legend i.l2{ background:#5b5b62; }
.footer__legend i.l3{ background:#82828a; }
.footer__legend i.l4{ background:#bdbdc4; }

.footer__columns {
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 70px 0 50px;
  border-top: 1px solid #161619;
  margin-top: 40px;
}
@media (max-width: 920px){ .footer__columns { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px){ .footer__columns { grid-template-columns: 1fr; } }

.footer__brand img { height: 100px; margin-bottom: 14px; }
.footer__brand p { color: #b3aea6; font-size:.94rem; max-width: 320px; }
.footer__col h4 {
  color:#fff; font-size:.78rem; letter-spacing:.32em; text-transform:uppercase;
  font-family:var(--font-sans); font-weight:600; margin-bottom: 22px;
}
.footer__col ul { list-style:none; padding:0; margin:0; display:grid; gap: 10px; }
.footer__col a { color: #b3aea6; font-size: .92rem; }
.footer__col a:hover { color: var(--gold); }

.footer__contact li { display:flex; gap:10px; align-items:flex-start; }
.footer__contact svg { color: var(--gold); flex-shrink:0; margin-top: 3px; }

.footer__bottom {
  display:flex; flex-wrap: wrap; gap:20px; justify-content:space-between; align-items:center;
  border-top: 1px solid #161619;
  padding: 24px 0;
  font-size:.74rem;
  color: #6e6a62;
  letter-spacing:.18em;
  text-transform: uppercase;
}
.footer__social { display:flex; gap: 12px; }
.footer__social a {
  width: 38px; height: 38px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid #232328; border-radius: 50%;
  color: #b3aea6;
  transition: all .25s var(--ease);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Reveal animation ---------- */
/* Default: VISIBLE (graceful degradation if JS fails or page is printed). */
.reveal { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* Only hide when JS is enhancing the page (html.js is set immediately by main.js).
   This guarantees visibility for print, no-JS, and aggressive content blockers. */
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.is-in { opacity: 1; transform: translateY(0); }

.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* Print mode — never animate, always show content */
@media print {
  .reveal, .js .reveal { opacity: 1 !important; transform: none !important; }
}
/* Honor reduced-motion preference — also forces immediate visibility */
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Preloader (dark brand background + auto-hide failsafe at 1s) ---------- */
.preloader{
  position:fixed; inset:0; background: #0e0e10; z-index:9999;
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:24px;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
  animation: preloaderFailSafe 0s 1s forwards;
}
.preloader.is-hidden { opacity:0; visibility:hidden; pointer-events:none; }
@keyframes preloaderFailSafe {
  to { opacity:0; visibility:hidden; pointer-events:none; }
}
.preloader img { height: 96px; opacity:.95; animation: pulse 2s var(--ease) infinite; }
@keyframes pulse { 50% { transform: scale(1.04); opacity:.7; } }
.preloader__bar { width:200px; height:1px; background: rgba(212,175,106,.25); overflow:hidden; }
.preloader__bar i { display:block; width:30%; height:100%; background:var(--gold); animation: barSlide 1.4s var(--ease) infinite; }
@keyframes barSlide { 0%{transform:translateX(-100%)} 100%{transform:translateX(330%)} }

/* ---------- Misc helpers ---------- */
.flex-between {
  display:flex; justify-content:space-between; gap: 20px;
  flex-wrap:wrap; align-items:center;
}
.bg-paper { background: var(--bg-3); }
.bg-sand  { background: var(--bg-4); }

/* ---------- Real-life feature trio ---------- */
.deal-card { display:grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.deal {
  background: var(--bg-2);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.deal:hover { transform: translateY(-4px); box-shadow: 0 22px 38px -22px rgba(20,20,26,.25); }
.deal__media { aspect-ratio: 4/3; overflow: hidden; }
.deal__media img { width:100%; height:100%; object-fit: cover; transition: transform 1s var(--ease); }
.deal:hover img { transform: scale(1.04); }
.deal__body { padding: 26px 26px 30px; }
.deal h3 { color: var(--ink); font-size: 1.25rem; margin-bottom: 8px; font-weight: 500; }
.deal p  { color: var(--muted); font-size: .94rem; margin: 0; }
@media (max-width: 760px){ .deal-card { grid-template-columns: 1fr; } }


/* =========================================================
   RESPONSIVE LAYER — comprehensive PC / Tablet / Mobile
   Breakpoints used:
     >= 1280  = wide desktop (default)
     1024-1279 = standard desktop
     768-1023  = tablet landscape
     560-767   = tablet portrait / large phone
     <  560    = mobile
   ========================================================= */

/* iOS Safari viewport fix — use small viewport-height where supported */
@supports (height: 100svh) {
  .hero-v2 { padding-top: clamp(20px, 3vw, 32px); }
  .hero-v2__grid { min-height: clamp(480px, 70svh, 720px); }
}

/* Smooth horizontal-overflow guard */
html, body { max-width: 100%; }
img, video, iframe, svg { max-width: 100%; }
table { max-width: 100%; }

/* Make all anchors and buttons hit a 44px tap target on touch */
@media (hover: none) and (pointer: coarse) {
  .btn { padding: 16px 28px; min-height: 48px; }
  .nav__list a { padding: 10px 4px; }
  .pill { padding: 12px 22px; min-height: 44px; display:inline-flex; align-items:center; }
  .product-card__cta { padding: 8px 0; }
  .footer__social a { width: 44px; height: 44px; }
  .nav__toggle { padding: 12px; }
}

/* ---------- Tablet landscape (1024px and below) ---------- */
@media (max-width: 1024px) {
  :root { --container: 100%; }
  .container, .container--wide { padding: 0 28px; }

  /* Header tightens */
  .nav { padding: 14px 0; gap: 14px; }
  .nav__brand img { height: 72px; }
  .is-scrolled .nav__brand img { height: 58px; }
  .nav__list { gap: 26px; }
  .nav__list a { font-size: .76rem; letter-spacing: .22em; }
  .nav__phone { font-size: .88rem; padding-left: 14px; }

  /* Hero stacks for tablet */
  .hero-v2__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
  }
  .hero-v2__slider { aspect-ratio: 16/9; min-height: 360px; }
  .hero-v2__panel { padding: 36px; }
  .hero-v2__title { font-size: clamp(2rem, 4.5vw, 3rem); }
  .hero-v2__meta { grid-template-columns: repeat(3, 1fr); }

  /* Tagline */
  .tagline h2 { font-size: clamp(1.15rem, 2.6vw, 1.7rem); }
  .tagline__line { max-width: 100px; }

  /* Section padding */
  .section { padding: clamp(50px, 7vw, 90px) 0; }

  /* Splits become single column at 920 already; tighten gap here */
  .split { gap: clamp(24px, 4vw, 60px); }

  /* Product cards */
  .products-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

  /* Lookbook tile heights */
  .lookbook { grid-template-rows: 240px 240px; }

  /* CTA banner padding */
  .cta-banner { padding: clamp(60px, 10vw, 120px) 24px; }

  /* Hero meta */
  .hero-v2__meta div b { font-size: 1.3rem; }
  .hero-v2__meta div span { font-size: .62rem; }
}

/* ---------- Tablet portrait / large phone (768px and below) ---------- */
@media (max-width: 768px) {
  body { font-size: 15.5px; }

  .topbar { padding: 8px 0; }
  .topbar__inner { font-size: .68rem; gap: 14px; }

  /* Forms stack */
  .form-row { grid-template-columns: 1fr; }

  /* Products grid */
  .products-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
  .product-card__name { font-size: 1.3rem; }
  .product-card__price { font-size: 1.2rem; }

  /* Lookbook becomes simpler */
  .lookbook { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px 200px; }
  .lookbook .item--lg { grid-column: span 2; grid-row: span 1; }

  /* Section heads stack */
  .section-head { gap: 16px; align-items: flex-start; }
  .section-head__cta { margin-top: -10px; }

  /* Stats horizontal compact */
  .stats { padding: 36px 0; gap: 16px; }
  .stat__num { font-size: 2rem; }

  /* Specs list — multi-line on small */
  .specs li { flex-wrap: wrap; gap: 6px; }
  .specs li b { min-width: auto; }
  .specs li span { text-align: left; }

  /* Promo strip stacks */
  .promo-strip__inner { justify-content: center; text-align: center; flex-direction: column; gap: 16px; }
  .promo-strip__price { font-size: clamp(2.2rem, 8vw, 3.4rem); }

  /* Footer columns to two */
  .footer__columns { padding: 50px 0 36px; gap: 36px; }
  .footer__brand img { height: 80px; }

  /* Tagline divider — minimize lines */
  .tagline__line { max-width: 50px; }

  /* Page hero compact */
  .page-hero { padding: 80px 0 60px; }
  .page-hero h1 { font-size: clamp(2rem, 6vw, 3rem); }

  /* Posters single column already at 760 from base — confirm */
  .posters { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- Mobile (560px and below) ---------- */
@media (max-width: 560px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  h3 { font-size: clamp(1.1rem, 5vw, 1.4rem); }

  .container, .container--wide { padding: 0 18px; }

  /* Topbar — stack content; text smaller */
  .topbar__inner { flex-direction: column; gap: 4px; padding: 4px 0; font-size: .62rem; }

  /* Header — keep brand left, toggle right; phone label hides */
  .nav { padding: 10px 0; }
  .nav__brand img { height: 58px; }
  .is-scrolled .nav__brand img { height: 48px; }

  /* Hero panel */
  .hero-v2__panel { padding: 28px 22px; }
  .hero-v2__title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero-v2__sub { font-size: .96rem; }
  .hero-v2__meta { grid-template-columns: repeat(3, 1fr); gap: 10px; padding-top: 16px; }
  .hero-v2__meta div b { font-size: 1.05rem; }
  .hero-v2__meta div span { font-size: .56rem; letter-spacing: .18em; }
  .hero-v2__cta .btn { flex: 1; justify-content: center; }
  .hero-v2__dots { left: 16px; bottom: 16px; }

  /* Products — full width cards */
  .products-grid { grid-template-columns: 1fr; }

  /* Swatches — 2-up at this breakpoint */
  .swatches { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .swatch__caption { padding: 12px 14px; }
  .swatch__caption b { font-size: 1rem; }

  /* Lookbook */
  .lookbook { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .lookbook .item--lg { grid-column: auto; grid-row: auto; }

  /* Stats single column */
  .stats { grid-template-columns: 1fr 1fr; }
  .stats > div { padding: 8px 0; }

  /* Features / deals */
  .features { gap: 16px; }
  .feature { padding: 26px 22px; }
  .deal__body { padding: 22px 22px 26px; }

  /* Testimonials */
  .testimonial { padding: 30px 22px; }

  /* CTA */
  .cta-banner { padding: 60px 18px; border-radius: var(--radius); }
  .cta-banner h2 { font-size: clamp(1.5rem, 7vw, 2rem); }

  /* Section padding tighter */
  .section { padding: clamp(40px, 8vw, 70px) 0; }
  .section--tight { padding: clamp(28px, 5vw, 50px) 0; }

  /* Buttons — full width on mobile */
  .hero-v2__cta, .promo-strip__inner, .cta-banner > div {
    flex-direction: column !important;
    align-items: stretch;
  }
  .hero-v2__cta .btn,
  .cta-banner .btn,
  .promo-strip__inner .btn { width: 100%; justify-content: center; }

  /* Pills horizontal-scroll on tiny */
  .pills {
    flex-wrap: nowrap; overflow-x: auto;
    justify-content: flex-start;
    margin: 0 -18px 30px;
    padding: 0 18px 6px;
    scrollbar-width: none;
  }
  .pills::-webkit-scrollbar { display: none; }
  .pill { white-space: nowrap; flex-shrink: 0; }

  /* Footer single column already; tighten */
  .footer__columns { padding: 40px 0 30px; gap: 28px; }
  .footer__map img { width: 100%; }
  .footer__legend { gap: 12px; }
  .footer__legend span { font-size: .62rem; }
  .footer__bottom { flex-direction: column; gap: 14px; align-items: flex-start; padding: 18px 0; }

  /* Forms */
  .field input, .field textarea, .field select { padding: 14px 14px; font-size: 16px; /* iOS won't zoom */ }

  /* Promo strip wraps cleanly */
  .promo-strip__text strong { font-size: 1.15rem; }
  .promo-strip__text span { font-size: .72rem; }

  /* Reduce mobile menu top inset for shorter topbars */
  .nav__list.is-open { inset: 86px 0 0 0; }
}

/* ---------- Reduce motion respect ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-v2__media { transform: none !important; animation: none !important; }
}

/* ---------- Print friendly ---------- */
@media print {
  .topbar, .site-header, .footer, .preloader, .cta-banner, .hero-v2__dots, .promo-strip { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}


/* =========================================================
   RESPONSIVE LAYER — comprehensive PC / Tablet / Mobile
   Breakpoints used:
     >= 1280  = wide desktop (default)
     1024-1279 = standard desktop
     768-1023  = tablet landscape
     560-767   = tablet portrait / large phone
     <  560    = mobile
   ========================================================= */

/* iOS Safari viewport fix — use small viewport-height where supported */
@supports (height: 100svh) {
  .hero-v2 { padding-top: clamp(20px, 3vw, 32px); }
  .hero-v2__grid { min-height: clamp(480px, 70svh, 720px); }
}

/* Smooth horizontal-overflow guard */
html, body { max-width: 100%; }
img, video, iframe, svg { max-width: 100%; }
table { max-width: 100%; }

/* Make all anchors and buttons hit a 44px tap target on touch */
@media (hover: none) and (pointer: coarse) {
  .btn { padding: 16px 28px; min-height: 48px; }
  .nav__list a { padding: 10px 4px; }
  .pill { padding: 12px 22px; min-height: 44px; display:inline-flex; align-items:center; }
  .product-card__cta { padding: 8px 0; }
  .footer__social a { width: 44px; height: 44px; }
  .nav__toggle { padding: 12px; }
}

/* ---------- Tablet landscape (1024px and below) ---------- */
@media (max-width: 1024px) {
  :root { --container: 100%; }
  .container, .container--wide { padding: 0 28px; }

  /* Header tightens */
  .nav { padding: 14px 0; gap: 14px; }
  .nav__brand img { height: 72px; }
  .is-scrolled .nav__brand img { height: 58px; }
  .nav__list { gap: 26px; }
  .nav__list a { font-size: .76rem; letter-spacing: .22em; }
  .nav__phone { font-size: .88rem; padding-left: 14px; }

  /* Hero stacks for tablet */
  .hero-v2__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
  }
  .hero-v2__slider { aspect-ratio: 16/9; min-height: 360px; }
  .hero-v2__panel { padding: 36px; }
  .hero-v2__title { font-size: clamp(2rem, 4.5vw, 3rem); }
  .hero-v2__meta { grid-template-columns: repeat(3, 1fr); }

  /* Tagline */
  .tagline h2 { font-size: clamp(1.15rem, 2.6vw, 1.7rem); }
  .tagline__line { max-width: 100px; }

  /* Section padding */
  .section { padding: clamp(50px, 7vw, 90px) 0; }

  /* Splits become single column at 920 already; tighten gap here */
  .split { gap: clamp(24px, 4vw, 60px); }

  /* Product cards */
  .products-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

  /* Lookbook tile heights */
  .lookbook { grid-template-rows: 240px 240px; }

  /* CTA banner padding */
  .cta-banner { padding: clamp(60px, 10vw, 120px) 24px; }

  /* Hero meta */
  .hero-v2__meta div b { font-size: 1.3rem; }
  .hero-v2__meta div span { font-size: .62rem; }
}

/* ---------- Tablet portrait / large phone (768px and below) ---------- */
@media (max-width: 768px) {
  body { font-size: 15.5px; }

  .topbar { padding: 8px 0; }
  .topbar__inner { font-size: .68rem; gap: 14px; }

  /* Forms stack */
  .form-row { grid-template-columns: 1fr; }

  /* Products grid */
  .products-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
  .product-card__name { font-size: 1.3rem; }
  .product-card__price { font-size: 1.2rem; }

  /* Lookbook becomes simpler */
  .lookbook { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px 200px; }
  .lookbook .item--lg { grid-column: span 2; grid-row: span 1; }

  /* Section heads stack */
  .section-head { gap: 16px; align-items: flex-start; }
  .section-head__cta { margin-top: -10px; }

  /* Stats horizontal compact */
  .stats { padding: 36px 0; gap: 16px; }
  .stat__num { font-size: 2rem; }

  /* Specs list — multi-line on small */
  .specs li { flex-wrap: wrap; gap: 6px; }
  .specs li b { min-width: auto; }
  .specs li span { text-align: left; }

  /* Promo strip stacks */
  .promo-strip__inner { justify-content: center; text-align: center; flex-direction: column; gap: 16px; }
  .promo-strip__price { font-size: clamp(2.2rem, 8vw, 3.4rem); }

  /* Footer columns to two */
  .footer__columns { padding: 50px 0 36px; gap: 36px; }
  .footer__brand img { height: 80px; }

  /* Tagline divider — minimize lines */
  .tagline__line { max-width: 50px; }

  /* Page hero compact */
  .page-hero { padding: 80px 0 60px; }
  .page-hero h1 { font-size: clamp(2rem, 6vw, 3rem); }

  /* Posters single column already at 760 from base — confirm */
  .posters { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- Mobile (560px and below) ---------- */
@media (max-width: 560px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  h3 { font-size: clamp(1.1rem, 5vw, 1.4rem); }

  .container, .container--wide { padding: 0 18px; }

  .topbar__inner { flex-direction: column; gap: 4px; padding: 4px 0; font-size: .62rem; }

  .nav { padding: 10px 0; }
  .nav__brand img { height: 58px; }
  .is-scrolled .nav__brand img { height: 48px; }

  .hero-v2__panel { padding: 28px 22px; }
  .hero-v2__title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero-v2__sub { font-size: .96rem; }
  .hero-v2__meta { grid-template-columns: repeat(3, 1fr); gap: 10px; padding-top: 16px; }
  .hero-v2__meta div b { font-size: 1.05rem; }
  .hero-v2__meta div span { font-size: .56rem; letter-spacing: .18em; }
  .hero-v2__cta .btn { flex: 1; justify-content: center; }
  .hero-v2__dots { left: 16px; bottom: 16px; }

  .products-grid { grid-template-columns: 1fr; }

  .swatches { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .swatch__caption { padding: 12px 14px; }
  .swatch__caption b { font-size: 1rem; }

  .lookbook { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .lookbook .item--lg { grid-column: auto; grid-row: auto; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stats > div { padding: 8px 0; }

  .features { gap: 16px; }
  .feature { padding: 26px 22px; }
  .deal__body { padding: 22px 22px 26px; }

  .testimonial { padding: 30px 22px; }

  .cta-banner { padding: 60px 18px; border-radius: var(--radius); }
  .cta-banner h2 { font-size: clamp(1.5rem, 7vw, 2rem); }

  .section { padding: clamp(40px, 8vw, 70px) 0; }
  .section--tight { padding: clamp(28px, 5vw, 50px) 0; }

  .hero-v2__cta, .promo-strip__inner, .cta-banner > div {
    flex-direction: column !important;
    align-items: stretch;
  }
  .hero-v2__cta .btn,
  .cta-banner .btn,
  .promo-strip__inner .btn { width: 100%; justify-content: center; }

  .pills {
    flex-wrap: nowrap; overflow-x: auto;
    justify-content: flex-start;
    margin: 0 -18px 30px;
    padding: 0 18px 6px;
    scrollbar-width: none;
  }
  .pills::-webkit-scrollbar { display: none; }
  .pill { white-space: nowrap; flex-shrink: 0; }

  .footer__columns { padding: 40px 0 30px; gap: 28px; }
  .footer__map img { width: 100%; }
  .footer__legend { gap: 12px; }
  .footer__legend span { font-size: .62rem; }
  .footer__bottom { flex-direction: column; gap: 14px; align-items: flex-start; padding: 18px 0; }

  .field input, .field textarea, .field select { padding: 14px 14px; font-size: 16px; }

  .promo-strip__text strong { font-size: 1.15rem; }
  .promo-strip__text span { font-size: .72rem; }

  .nav__list.is-open { inset: 86px 0 0 0; }
}

/* ---------- Reduce motion respect ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-v2__media { transform: none !important; animation: none !important; }
}

/* ---------- Print friendly ---------- */
@media print {
  .topbar, .site-header, .footer, .preloader, .cta-banner, .hero-v2__dots, .promo-strip { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
al { padding: 30px 22px; }

  .cta-banner { padding: 60px 18px; border-radius: var(--radius); }
  .cta-banner h2 { font-size: clamp(1.5rem, 7vw, 2rem); }

  .section { padding: clamp(40px, 8vw, 70px) 0; }
  .section--tight { padding: clamp(28px, 5vw, 50px) 0; }

  .hero-v2__cta, .promo-strip__inner, .cta-banner > div {
    flex-direction: column !important;
    align-items: stretch;
  }
  .hero-v2__cta .btn,
  .cta-banner .btn,
  .promo-strip__inner .btn { width: 100%; justify-content: center; }

  .pills {
    flex-wrap: nowrap; overflow-x: auto;
    justify-content: flex-start;
    margin: 0 -18px 30px;
    padding: 0 18px 6px;
    scrollbar-width: none;
  }
  .pills::-webkit-scrollbar { display: none; }
  .pill { white-space: nowrap; flex-shrink: 0; }

  .footer__columns { padding: 40px 0 30px; gap: 28px; }
  .footer__map img { width: 100%; }
  .footer__legend { gap: 12px; }
  .footer__legend span { font-size: .62rem; }
  .footer__bottom { flex-direction: column; gap: 14px; align-items: flex-start; padding: 18px 0; }

  .field input, .field textarea, .field select { padding: 14px 14px; font-size: 16px; }

  .promo-strip__text strong { font-size: 1.15rem; }
  .promo-strip__text span { font-size: .72rem; }

  .nav__list.is-open { inset: 86px 0 0 0; }
}

/* ---------- Reduce motion respect ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-v2__media { transform: none !important; animation: none !important; }
}

/* ---------- Print friendly ---------- */
@media print {
  .topbar, .site-header, .footer, .preloader, .cta-banner, .hero-v2__dots, .promo-strip { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
tion: none !important; }
}

/* ---------- Print friendly ---------- */
@media print {
  .topbar, .site-header, .footer, .preloader, .cta-banner, .hero-v2__dots, .promo-strip { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}


/* ===== Homepage corrections: slider brightness, requested images, responsive fit ===== */
.hero-v2__slider{background:#f2eee7; min-width:0;}
.hero-v2__slide{z-index:0; opacity:0;}
.hero-v2__slide.is-active{z-index:1; opacity:1;}
.hero-v2__slide img{width:100%; height:100%; object-fit:contain; object-position:center center; background:#f2eee7; transform:none !important; filter:none !important; opacity:1 !important;}
.hero-v2__slide.is-active img{transform:none !important; filter:none !important; opacity:1 !important;}
.hero-v2__panel{min-width:0;}
.hero-v2__dots{z-index:3;}
.posters--single{grid-template-columns:minmax(0,1fr); max-width:1160px; margin:0 auto;}
.poster--single{background:#f7f1e8; padding:14px; border-radius:28px; box-shadow:0 22px 45px -28px rgba(29,23,14,.35);}
.poster--single img{width:100%; height:auto; border-radius:22px; display:block; background:#fff;}
.deal__media--install img{object-fit:contain !important; object-position:center center !important; background:#fff;}
@media (max-width:1100px){
  .hero-v2__grid{grid-template-columns:1fr; min-height:auto;}
  .hero-v2__slider{aspect-ratio:16/9; min-height:340px;}
}
@media (max-width:760px){
  .hero-v2__slider{aspect-ratio:4/3; min-height:280px;}
  .poster--single{padding:10px; border-radius:22px;}
  .poster--single img{border-radius:16px;}
}

/* ===== 2026-05 refinement pass: fuller premium slider, map fidelity, image fit ===== */
.hero-v2 {
  padding-top: clamp(22px, 3vw, 32px);
}
.hero-v2__grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, .9fr);
  gap: clamp(22px, 3vw, 34px);
  min-height: clamp(520px, 66vh, 740px);
}
.hero-v2__slider {
  min-height: clamp(430px, 52vw, 740px);
  background:
    radial-gradient(circle at top left, rgba(198,155,79,.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(135deg, #241d14 0%, #0d0d0f 48%, #1e170f 100%);
  border: 1px solid rgba(198,155,79,.22);
  box-shadow:
    0 28px 60px rgba(0,0,0,.18),
    0 12px 30px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.08);
  isolation: isolate;
}
.hero-v2__slider::before,
.hero-v2__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-v2__slider::before {
  background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 24%, transparent 72%, rgba(0,0,0,.22));
}
.hero-v2__slider::after {
  inset: auto 6% -28px 6%;
  height: 44px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.30) 0%, rgba(0,0,0,0) 72%);
  filter: blur(10px);
  z-index: 0;
}
.hero-v2__slide {
  z-index: 0;
  opacity: 0;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transform: scale(1.02);
}
.hero-v2__slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}
.hero-v2__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.08), transparent 24%, transparent 78%, rgba(0,0,0,.12));
  pointer-events: none;
}
.hero-v2__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
  background: transparent !important;
  transform: scale(1.03) !important;
  filter: none !important;
  opacity: 1 !important;
  transition: transform 7s var(--ease);
}
.hero-v2__slide.is-active img {
  transform: scale(1) !important;
}
.hero-v2__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(10,10,12,.42);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 4;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  transition: transform .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease), opacity .28s var(--ease);
  opacity: .94;
}
.hero-v2__arrow span {
  font-size: 2rem;
  line-height: 1;
  margin-top: -2px;
}
.hero-v2__arrow:hover {
  background: rgba(198,155,79,.88);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-50%) scale(1.06);
}
.hero-v2__arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.hero-v2__arrow--prev { left: 18px; }
.hero-v2__arrow--next { right: 18px; }
.hero-v2__dots {
  left: 28px;
  bottom: 24px;
  z-index: 4;
  gap: 10px;
}
.hero-v2__dots button {
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.34);
}
.hero-v2__dots button.is-active {
  width: 62px;
  background: linear-gradient(90deg, var(--gold), #f5d69a);
}
.hero-v2__panel {
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  min-width: 0;
}
.deal__media--install img {
  object-fit: cover !important;
  object-position: center center !important;
  background: #fff !important;
}
.split__media--feature {
  background: #121215;
  border: 1px solid rgba(198,155,79,.18);
  box-shadow: 0 18px 38px rgba(0,0,0,.10);
}
.split__media--feature img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}
.footer__map img {
  display: block;
  width: min(1100px, 95vw);
  max-width: 100%;
  margin: 0 auto;
  filter: none !important;
}
.footer__legend { display: none !important; }

@media (max-width: 1100px) {
  .hero-v2__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-v2__slider {
    min-height: clamp(360px, 60vw, 620px);
  }
}
@media (max-width: 720px) {
  .hero-v2__slider {
    min-height: 300px;
  }
  .hero-v2__arrow {
    width: 44px;
    height: 44px;
  }
  .hero-v2__arrow--prev { left: 12px; }
  .hero-v2__arrow--next { right: 12px; }
  .hero-v2__dots { left: 16px; bottom: 16px; }
}


/* ===== 2026-05 final hero slide 4 fit fix ===== */
.hero-v2__slider{aspect-ratio:16/9 !important; min-height:auto !important;}
.hero-v2__slide img{object-fit:cover !important; object-position:center center !important;}
@media (max-width:1100px){
  .hero-v2__slider{aspect-ratio:16/9 !important; min-height:auto !important;}
}
@media (max-width:760px){
  .hero-v2__slider{aspect-ratio:16/9 !important; min-height:auto !important;}
}

/* ===== 2026-05-09 hero panel placement fix: panel below slider ===== */
.hero-v2 {
  padding-bottom: clamp(34px, 4vw, 56px);
}
.hero-v2__grid {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: clamp(14px, 2vw, 24px) !important;
  align-items: stretch;
  min-height: auto !important;
  max-width: 1480px;
  margin: 0 auto;
}
.hero-v2__slider {
  width: 100%;
  aspect-ratio: 16 / 9 !important;
  min-height: auto !important;
  border-radius: var(--radius-l) var(--radius-l) 20px 20px;
}
.hero-v2__panel {
  width: 100%;
  aspect-ratio: 32 / 9;
  min-height: 0;
  max-height: none;
  padding: clamp(28px, 3.4vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(270px, .78fr);
  grid-template-rows: auto auto 1fr auto;
  column-gap: clamp(28px, 4vw, 68px);
  row-gap: clamp(8px, 1.2vw, 18px);
  align-items: center;
  align-content: center;
  border-radius: 20px 20px var(--radius-l) var(--radius-l);
}
.hero-v2__panel > * {
  position: relative;
  z-index: 1;
}
.hero-v2__panel .eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}
.hero-v2__title {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-size: clamp(2.25rem, 4.1vw, 3.7rem);
}
.hero-v2__sub {
  grid-column: 1;
  grid-row: 3;
  max-width: 760px;
  margin: 0;
}
.hero-v2__cta {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}
.hero-v2__cta .btn {
  width: 100%;
  justify-content: center;
}
.hero-v2__meta {
  grid-column: 1 / -1;
  grid-row: 4;
  margin-top: clamp(8px, 1.5vw, 20px);
  padding-top: clamp(16px, 1.8vw, 24px);
}

@media (max-width: 900px) {
  .hero-v2__panel {
    aspect-ratio: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
    padding: 32px 26px;
  }
  .hero-v2__title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .hero-v2__sub {
    max-width: none;
  }
  .hero-v2__cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-v2__cta .btn {
    flex: 1 1 240px;
  }
  .hero-v2__meta {
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  .hero-v2 {
    padding-top: 16px;
  }
  .hero-v2__grid {
    gap: 12px !important;
  }
  .hero-v2__panel {
    padding: 26px 20px;
    border-radius: 18px;
  }
  .hero-v2__title {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }
  .hero-v2__sub {
    font-size: .94rem;
  }
  .hero-v2__meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
