/** Shopify CDN: Minification failed

Line 1520:13 Expected identifier but found whitespace
Line 1520:20 Unexpected ";"

**/
/* ============================================================
   SHYFOY Theme — Global Stylesheet
   Version 2.0 | shopify theme — synced 2026-05-19
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --ivory:    #FAF8F4;
  --cream:    #F4F0E8;
  --linen:    #EDE8DC;
  --sand:     #D9D2C3;
  --taupe:    #B8B0A2;
  --stone:    #8C8479;
  --charcoal: #3D3A35;
  --ink:      #1E1C18;
  --bronze:   #9A7248;
  --copper:   #C4955A;
  --blush:    #E8DDD2;
  --display:  'Cormorant Garamond', serif;
  --serif:    'Libre Baskerville', serif;
  --sans:     'Jost', sans-serif;
}

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── ANNOUNCEMENT BAR ── */
.topbar {
  background: var(--ink);
  color: rgba(250,248,244,0.65);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 20px;
}
.topbar span { color: var(--copper); }

/* ── NAVIGATION ── */
nav#navbar {
  position: fixed;
  top: 35px; left: 0; right: 0;
  z-index: 200;
  padding: 0 56px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s ease;
}
nav#navbar.scrolled {
  top: 0;
  background: rgba(250,248,244,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--linen);
  height: 60px;
}
.nav-logo {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--ivory);
  transition: color 0.35s;
}
nav#navbar.scrolled .nav-logo { color: var(--ink); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links li { position: relative; }
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(250,248,244,0.8);
  transition: color 0.3s;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
nav#navbar.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a:hover { color: var(--copper) !important; }

/* ── Dropdown arrow indicator ── */
.nav-links .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 3.5px solid currentColor;
  margin-left: 5px;
  transition: transform 0.25s ease;
}
.nav-links .has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

/* ── Dropdown Menu ── */
.has-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 14px;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(250,248,244,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--linen);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 12px 40px rgba(30,28,24,0.08);
  z-index: 300;
}
.nav-links .has-dropdown:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--stone) !important;
  padding: 7px 24px;
  transition: color 0.2s, padding-left 0.2s;
  font-weight: 400;
}
.nav-dropdown a:hover {
  color: var(--copper) !important;
  padding-left: 28px;
}

/* Non-hero pages: nav always solid (nav#navbar.nav-solid to beat nav#navbar top:35px) */
nav#navbar.nav-solid { top: 0; background: rgba(250,248,244,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--linen); height: 60px; }
nav#navbar.nav-solid .nav-logo { color: var(--ink); }
nav#navbar.nav-solid .nav-links a { color: var(--charcoal); }
nav#navbar.nav-solid .nav-icons svg { stroke: var(--charcoal); }

.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icons svg {
  width: 19px; height: 19px;
  stroke: rgba(250,248,244,0.8);
  fill: none;
  transition: stroke 0.3s;
  cursor: pointer;
  stroke-width: 1.5;
}
nav#navbar.scrolled .nav-icons svg { stroke: var(--charcoal); }
.nav-icons svg:hover { stroke: var(--copper) !important; }
.nav-icons a { display: inline-flex; align-items: center; }
.nav-cart-count { position: relative; }
.nav-cart-count::after {
  content: attr(data-count);
  position: absolute;
  top: -8px; right: -8px;
  background: var(--copper);
  color: white;
  font-size: 0.5rem;
  font-weight: 600;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  line-height: 15px;
  text-align: center;
}

/* ── TICKER ── */
.ticker {
  background: var(--ink);
  border-top: 1px solid rgba(250,248,244,0.06);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  flex-shrink: 0;
  padding: 0 40px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(250,248,244,0.38);
  display: flex; align-items: center; gap: 18px;
}
.ticker-dot { width: 3px; height: 3px; background: var(--copper); border-radius: 50%; flex-shrink: 0; opacity: 0.6; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── NUMBERS STRIP ── */
.numbers-strip {
  background: var(--charcoal);
  padding: 56px 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.num-item { padding: 0 40px; border-right: 1px solid rgba(250,248,244,0.07); text-align: center; }
.num-item:first-child { padding-left: 0; }
.num-item:last-child { border-right: none; padding-right: 0; }
.num-value { font-family: var(--display); font-size: clamp(2.8rem,4vw,4.2rem); font-weight: 300; color: var(--ivory); line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.num-value span { color: var(--copper); font-size: 0.6em; }
.num-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,248,244,0.35); }

/* ── SECTION HEADERS ── */
.sec-eyebrow { font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--copper); margin-bottom: 10px; }
.sec-title { font-family: var(--display); font-size: clamp(2rem,2.8vw,3rem); font-weight: 300; line-height: 1.05; color: var(--ink); letter-spacing: -0.01em; }
.sec-title em { font-style: italic; }
.view-all {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--stone); border-bottom: 1px solid var(--sand); padding-bottom: 2px;
  transition: all 0.3s;
}
.view-all:hover { color: var(--bronze); border-color: var(--bronze); }
.view-all svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── PAGE HEADER (for inner pages) ── */
.page-hero {
  background: var(--cream);
  padding: 120px 72px 64px;
  border-bottom: 1px solid var(--linen);
}
.page-hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--copper); margin-bottom: 12px; display: flex; align-items: center; gap: 14px; }
.page-hero-eyebrow::before { content: ''; display: block; width: 22px; height: 1px; background: var(--copper); opacity: 0.5; }
.page-hero h1 { font-family: var(--display); font-size: clamp(2.8rem,5vw,5.5rem); font-weight: 300; line-height: 1.0; color: var(--ink); letter-spacing: -0.015em; margin-bottom: 12px; }
.page-hero h1 em { font-style: italic; color: var(--bronze); }
.page-hero-sub { font-size: 0.9rem; color: var(--stone); line-height: 1.8; max-width: 520px; margin-top: 18px; font-weight: 300; }

/* ── PRODUCT CARD (shared across pages) ── */
.pc {
  position: relative;
  cursor: pointer;
  background: white;
  border: 1px solid var(--linen);
  transition: box-shadow 0.4s, border-color 0.4s;
}
.pc:hover { box-shadow: 0 8px 32px rgba(30,28,24,0.09); border-color: var(--sand); }
.pc-img-wrap {
  position: relative;
  width: 100%; padding-top: 110%;
  overflow: hidden; background: var(--cream);
}
.pc-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.pc:hover .pc-img-wrap img { transform: scale(1.05); }
.pc-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.5rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  padding: 4px 10px; z-index: 2;
}
.pc-badge.new { background: var(--copper); color: var(--ivory); }
.pc-badge.sale { background: var(--ink); color: var(--ivory); }
.pc-badge.best { background: rgba(250,248,244,0.94); color: var(--ink); border: 1px solid var(--linen); }
.pc-wish {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(250,248,244,0.88); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all 0.3s; z-index: 2;
}
.pc:hover .pc-wish { opacity: 1; }
.pc-wish:hover { background: var(--blush); border-color: var(--copper); }
.pc-wish svg { width: 13px; height: 13px; stroke: var(--stone); fill: none; stroke-width: 1.5; }
.pc-info { padding: 16px 16px 0; }
.pc-cat { font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); font-weight: 500; margin-bottom: 5px; }
.pc-name { font-family: var(--display); font-size: 1.05rem; font-weight: 400; color: var(--ink); line-height: 1.2; margin-bottom: 8px; }
.pc-price-row { display: flex; align-items: baseline; gap: 10px; padding-top: 10px; border-top: 1px solid var(--linen); margin-top: 4px; }
.pc-price { font-family: var(--sans); font-size: 1.2rem; color: var(--bronze); font-weight: 600; letter-spacing: 0.01em; }
.pc-price-was { font-size: 0.88rem; color: var(--taupe); text-decoration: line-through; }
.pc-actions { padding: 10px 16px 14px; display: flex; gap: 8px; opacity: 0; transform: translateY(4px); transition: all 0.3s; }
.pc:hover .pc-actions { opacity: 1; transform: translateY(0); }
.btn-atc {
  flex: 1; background: var(--ink); color: var(--ivory);
  font-size: 0.57rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500; padding: 9px 16px; transition: background 0.3s; font-family: var(--sans);
}
.btn-atc:hover { background: var(--bronze); }
.btn-quick { width: 34px; border: 1px solid var(--linen); background: white; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.btn-quick:hover { border-color: var(--copper); }
.btn-quick svg { width: 11px; height: 11px; stroke: var(--stone); fill: none; stroke-width: 2; }

/* ── FILTER BAR ── */
.filter-bar { display: flex; gap: 0; margin-bottom: 36px; border-bottom: 1px solid var(--linen); }
.ftab {
  font-size: 0.63rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--taupe); padding: 12px 20px; cursor: pointer; transition: all 0.25s;
  font-family: var(--sans); font-weight: 400; position: relative; border: none; background: none;
}
.ftab::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 1.5px; background: var(--copper); transform: scaleX(0); transition: transform 0.25s; }
.ftab:hover { color: var(--charcoal); }
.ftab:hover::after { transform: scaleX(1); }
.ftab.active { color: var(--ink); font-weight: 500; }
.ftab.active::after { transform: scaleX(1); }

/* ── ROOM CARD ── */
.room-card { flex-shrink: 0; width: 340px; position: relative; overflow: hidden; cursor: pointer; }
.room-card-img { width: 100%; height: 420px; position: relative; overflow: hidden; background: var(--charcoal); background-size: cover; background-position: center; background-repeat: no-repeat; transition: transform 0.9s cubic-bezier(0.4,0,0.2,1); }
.room-card:hover .room-card-img { transform: scale(1.06); }
.room-card-img noscript { display: none; }
.room-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,14,0.62) 0%, transparent 55%); transition: background 0.4s; }
.room-card:hover .room-card-overlay { background: linear-gradient(to top, rgba(20,18,14,0.76) 0%, rgba(20,18,14,0.08) 65%); }
.room-card-info { position: absolute; bottom: 24px; left: 24px; right: 24px; }
.room-card-tag { font-size: 0.54rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,248,244,0.6); margin-bottom: 6px; }
.room-card-name { font-family: var(--display); font-size: 1.5rem; font-weight: 300; color: var(--ivory); line-height: 1.15; margin-bottom: 6px; }
.room-card-count { font-size: 0.7rem; color: rgba(250,248,244,0.5); }
.room-card-arrow { position: absolute; bottom: 24px; right: 24px; width: 36px; height: 36px; border: 1px solid rgba(250,248,244,0.25); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateX(-6px); transition: all 0.35s; }
.room-card-arrow svg { width: 12px; height: 12px; stroke: var(--ivory); fill: none; stroke-width: 2; }
.room-card:hover .room-card-arrow { opacity: 1; transform: translateX(0); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); padding: 80px 72px; border-top: 1px solid var(--linen); }
.testimonials-head { text-align: center; margin-bottom: 56px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--ivory); border: 1px solid var(--linen); padding: 32px 28px; transition: box-shadow 0.3s; }
.review-card:hover { box-shadow: 0 6px 24px rgba(30,28,24,0.06); }
.review-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star-icon { width: 10px; height: 10px; fill: var(--copper); }
.review-text { font-family: var(--display); font-size: 1.05rem; font-style: italic; font-weight: 300; line-height: 1.65; color: var(--charcoal); margin-bottom: 24px; }
.review-sep { width: 32px; height: 1px; background: var(--copper); opacity: 0.35; margin-bottom: 16px; }
.review-author { font-size: 0.72rem; font-weight: 500; color: var(--charcoal); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.review-loc { font-size: 0.68rem; color: var(--taupe); }
.review-card-feature { background: var(--charcoal); border-color: var(--charcoal); }
.review-card-feature .review-text,
.review-card-feature .review-author { color: var(--ivory); }
.review-card-feature .review-loc { color: rgba(250,248,244,0.4); }

/* ── NEWSLETTER ── */
.newsletter { background: var(--ink); position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, var(--copper) 30%, var(--copper) 70%, transparent); }
.newsletter::after { content: 'S'; position: absolute; right: -60px; top: 50%; transform: translateY(-50%); font-family: var(--display); font-size: 40rem; font-weight: 300; color: rgba(196,149,90,0.04); line-height: 1; pointer-events: none; letter-spacing: -0.05em; }
.newsletter-inner { padding: 88px 72px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.nl-eyebrow { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--copper); margin-bottom: 16px; }
.nl-title { font-family: var(--display); font-size: clamp(2rem,3vw,3.6rem); font-weight: 300; line-height: 1.06; color: var(--ivory); letter-spacing: -0.01em; }
.nl-title em { font-style: italic; color: var(--copper); }
.nl-body { font-size: 0.88rem; line-height: 1.85; color: rgba(250,248,244,0.42); font-weight: 300; margin-top: 20px; max-width: 440px; }
.nl-form { display: flex; flex-direction: column; gap: 12px; }
.nl-input { background: rgba(250,248,244,0.05); border: 1px solid rgba(250,248,244,0.1); padding: 14px 20px; font-size: 0.88rem; color: var(--ivory); outline: none; font-family: var(--sans); font-weight: 300; transition: border-color 0.3s; }
.nl-input::placeholder { color: rgba(250,248,244,0.28); }
.nl-input:focus { border-color: var(--copper); }
.nl-btn { background: var(--copper); color: var(--ivory); padding: 14px 36px; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; align-self: flex-start; transition: all 0.3s; border: none; cursor: pointer; font-family: var(--sans); }
.nl-btn:hover { background: var(--bronze); }
.nl-fine { font-size: 0.66rem; color: rgba(250,248,244,0.24); }

/* ── FOOTER ── */
footer { background: var(--charcoal); padding: 72px 72px 36px; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--copper) 25%, var(--copper) 75%, transparent); opacity: 0.3; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(250,248,244,0.06); }
.ft-logo { font-family: var(--display); font-size: 1.8rem; font-weight: 400; letter-spacing: 0.26em; color: var(--ivory); margin-bottom: 14px; }
.ft-tagline { font-size: 0.82rem; line-height: 1.8; color: rgba(250,248,244,0.35); font-weight: 300; margin-bottom: 28px; max-width: 280px; }
.ft-socials { display: flex; gap: 8px; }
.ft-social-link { width: 34px; height: 34px; border: 1px solid rgba(250,248,244,0.1); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.ft-social-link:hover { border-color: var(--copper); background: rgba(196,149,90,0.12); }
.ft-social-link svg { width: 14px; height: 14px; stroke: rgba(250,248,244,0.4); fill: none; stroke-width: 1.5; }
.ft-social-link:hover svg { stroke: var(--copper); }
.ft-col h4 { font-family: var(--display); font-size: 0.9rem; font-weight: 400; color: var(--ivory); margin-bottom: 16px; letter-spacing: 0.06em; }
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: 9px; }
.ft-col a { font-size: 0.8rem; color: rgba(250,248,244,0.38); font-weight: 300; transition: color 0.3s; }
.ft-col a:hover { color: var(--copper); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.ft-copy { font-size: 0.72rem; color: rgba(250,248,244,0.2); }
.ft-payments { display: flex; gap: 6px; }
.pay-chip { border: 1px solid rgba(250,248,244,0.08); padding: 3px 9px; font-size: 0.58rem; letter-spacing: 0.04em; color: rgba(250,248,244,0.25); font-weight: 500; }

/* ── CURSOR ── */
.cursor-dot { position: fixed; width: 5px; height: 5px; background: var(--copper); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); opacity: 0; transition: opacity 0.3s; display: none; }
.cursor-ring { position: fixed; width: 30px; height: 30px; border: 1px solid rgba(196,149,90,0.5); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); opacity: 0; transition: opacity 0.3s, width 0.35s cubic-bezier(0.4,0,0.2,1), height 0.35s cubic-bezier(0.4,0,0.2,1); display: none; }
@media (pointer: fine) {
  .cursor-dot, .cursor-ring { display: block; }
}

/* ── BREADCRUMBS ── */
.breadcrumb { padding: 14px 72px; font-size: 0.7rem; color: var(--taupe); display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--linen); background: var(--ivory); overflow-x: auto; white-space: nowrap; }
.breadcrumb a { color: var(--taupe); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--bronze); }
.breadcrumb-sep { color: var(--sand); }
.breadcrumb-current { color: var(--ink); font-weight: 500; }

/* ── UTILITY ── */
.page-wrap { padding-top: 80px; position: relative; } /* offset for fixed nav */
.container { max-width: 1400px; margin: 0 auto; padding: 0 72px; }
.btn-primary { display: inline-flex; align-items: center; gap: 12px; background: var(--ink); color: var(--ivory); padding: 14px 36px; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; transition: all 0.3s; border: none; cursor: pointer; font-family: var(--sans); }
.btn-primary:hover { background: var(--bronze); }
.btn-secondary { display: inline-flex; align-items: center; gap: 12px; background: transparent; color: var(--ink); padding: 13px 35px; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; transition: all 0.3s; border: 1px solid var(--sand); cursor: pointer; font-family: var(--sans); }
.btn-secondary:hover { border-color: var(--bronze); color: var(--bronze); }

/* ══ HERO (Homepage) ══ */
.hero { position: relative; height: 100svh; min-height: 600px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--charcoal); background-size: cover; background-position: center 30%; background-repeat: no-repeat; transform: scale(1.04); transition: transform 12s ease; }
.hero-bg noscript { display: none; }
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,14,0.80) 0%, rgba(20,18,14,0.35) 45%, rgba(20,18,14,0.10) 75%, transparent 100%); }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20,18,14,0.35) 0%, transparent 30%); z-index: 1; }
.hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 0 72px 72px; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; }
.hero-text { max-width: 640px; }
.hero-overline { display: flex; align-items: center; gap: 16px; font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--copper); margin-bottom: 20px; }
.hero-overline::before { content: ''; display: block; width: 32px; height: 1px; background: var(--copper); }
.hero-title { font-family: var(--display); font-size: clamp(3.5rem,6vw,7rem); font-weight: 300; line-height: 0.96; color: var(--ivory); letter-spacing: -0.01em; margin-bottom: 28px; }
.hero-title em { font-style: italic; color: var(--copper); }
.hero-cta-row { display: flex; align-items: center; gap: 32px; }
.btn-hero { display: inline-flex; align-items: center; gap: 14px; background: var(--copper); color: var(--ivory); padding: 15px 38px; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; transition: all 0.3s; }
.btn-hero:hover { background: var(--bronze); }
.btn-ghost { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400; color: rgba(250,248,244,0.7); border-bottom: 1px solid rgba(250,248,244,0.3); padding-bottom: 3px; transition: all 0.3s; }
.btn-ghost:hover { color: var(--ivory); border-color: var(--ivory); }
.hero-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 24px; }
.hero-scroll-hint { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,248,244,0.45); }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(250,248,244,0.4), transparent); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
.hero-badge { background: rgba(250,248,244,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(250,248,244,0.15); padding: 16px 20px; text-align: right; }
.hero-badge-label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); margin-bottom: 4px; }
.hero-badge-name { font-family: var(--display); font-size: 1.05rem; font-weight: 400; color: var(--ivory); margin-bottom: 2px; }
.hero-badge-price { font-size: 0.82rem; color: rgba(250,248,244,0.55); }

/* ══ SHOWCASE (Featured Collection) ══ */
.showcase { background: var(--ivory); padding: 80px 64px; }
.showcase-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.pc.pc-feature { grid-column: span 2; }
.pc.pc-feature .pc-img-wrap { padding-top: 55%; }
.pc.pc-feature .pc-name { font-size: 1.3rem; }

/* ══ ROOM INSPIRATIONS ══ */
.rooms { background: var(--ivory); padding: 80px 0 80px 72px; overflow: hidden; }
.rooms-head { display: flex; align-items: flex-end; justify-content: space-between; padding-right: 72px; margin-bottom: 40px; }
.rooms-scroll { display: flex; gap: 20px; overflow-x: auto; padding-right: 72px; padding-bottom: 4px; scrollbar-width: none; -ms-overflow-style: none; }
.rooms-scroll::-webkit-scrollbar { display: none; }

/* ══ BRAND STATEMENT ══ */
.brand-statement { background: var(--cream); padding: 96px 72px; text-align: center; border-top: 1px solid var(--linen); border-bottom: 1px solid var(--linen); }
.bs-overline { font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--copper); margin-bottom: 28px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.bs-overline::before, .bs-overline::after { content: ''; display: block; width: 40px; height: 1px; background: var(--copper); opacity: 0.4; }
.bs-headline { font-family: var(--display); font-size: clamp(2.6rem,4vw,5rem); font-weight: 300; line-height: 1.06; color: var(--ink); letter-spacing: -0.015em; max-width: 760px; margin: 0 auto 28px; }
.bs-headline em { font-style: italic; color: var(--bronze); }
.bs-body { font-size: 1rem; line-height: 1.9; color: var(--stone); font-weight: 300; max-width: 520px; margin: 0 auto; }

/* ══ PROMO BANNER ══ */
.promo { background: var(--ink); position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.promo-left { padding: 72px 80px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.promo-left::before { content: '30'; position: absolute; top: 50%; left: -20px; transform: translateY(-50%); font-family: var(--display); font-size: 22rem; font-weight: 300; color: rgba(196,149,90,0.05); line-height: 1; pointer-events: none; z-index: -1; letter-spacing: -0.04em; }
.promo-tag { display: inline-flex; align-items: center; gap: 12px; font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--copper); margin-bottom: 24px; }
.promo-tag::before { content: ''; display: block; width: 22px; height: 1px; background: var(--copper); }
.promo-title { font-family: var(--display); font-size: clamp(2.6rem,4vw,5rem); font-weight: 300; line-height: 1.0; color: var(--ivory); letter-spacing: -0.015em; margin-bottom: 24px; }
.promo-title em { font-style: italic; color: var(--copper); }
.promo-desc { font-size: 0.9rem; line-height: 1.8; color: rgba(250,248,244,0.5); font-weight: 300; max-width: 380px; margin-bottom: 40px; }
.btn-promo { display: inline-flex; align-items: center; gap: 14px; background: var(--copper); color: var(--ivory); padding: 14px 36px; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; transition: all 0.3s; align-self: flex-start; }
.btn-promo:hover { background: var(--bronze); }
.promo-right { position: relative; overflow: hidden; }
.promo-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 12s ease; }
.promo:hover .promo-right img { transform: scale(1.04); }
.promo-right::before { content: ''; position: absolute; inset: 0; background: rgba(20,18,14,0.18); z-index: 1; }

/* ══ CRAFTSMANSHIP ══ */
.craft { background: var(--ivory); padding: 96px 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.craft-visual { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.craft-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 12s ease; }
.craft:hover .craft-visual img { transform: scale(1.04); }
.craft-visual::before { content: ''; position: absolute; top: -16px; left: -16px; width: 100%; height: 100%; border: 1px solid var(--copper); opacity: 0.18; z-index: -1; }
.craft-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 28px 24px; background: linear-gradient(to top, rgba(20,18,14,0.58) 0%, transparent 100%); }
.craft-caption-label { font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,248,244,0.55); margin-bottom: 5px; }
.craft-caption-text { font-family: var(--display); font-size: 1rem; font-style: italic; font-weight: 300; color: var(--ivory); }
.craft-eyebrow { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--copper); margin-bottom: 16px; display: flex; align-items: center; gap: 14px; }
.craft-eyebrow::before { content: ''; display: block; width: 22px; height: 1px; background: var(--copper); opacity: 0.5; }
.craft-headline { font-family: var(--display); font-size: clamp(2rem,3vw,3.4rem); font-weight: 300; line-height: 1.08; color: var(--ink); margin-bottom: 24px; letter-spacing: -0.01em; }
.craft-headline em { font-style: italic; color: var(--bronze); }
.craft-para { font-size: 0.9rem; line-height: 1.9; color: var(--stone); font-weight: 300; margin-bottom: 16px; }
.craft-features { margin-top: 32px; list-style: none; display: flex; flex-direction: column; gap: 0; }
.craft-features li { display: flex; align-items: flex-start; gap: 18px; font-size: 0.85rem; color: var(--charcoal); font-weight: 300; line-height: 1.6; padding: 14px 0; border-bottom: 1px solid var(--linen); }
.craft-features li:first-child { border-top: 1px solid var(--linen); }
.craft-features li::before { content: ''; display: block; width: 18px; height: 1px; background: var(--copper); margin-top: 11px; flex-shrink: 0; }

/* ══ COLLECTION PAGE ══ */
.coll-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 20px 72px; border-bottom: 1px solid var(--linen); background: var(--ivory); }
.coll-count { font-size: 0.75rem; color: var(--taupe); letter-spacing: 0.08em; }
.coll-sort { display: flex; align-items: center; gap: 12px; }
.coll-sort-label { font-size: 0.7rem; color: var(--stone); text-transform: uppercase; letter-spacing: 0.12em; }
.coll-sort-select-wrap { position: relative; }
.coll-sort-select { appearance: none; background: transparent; border: 1px solid var(--linen); padding: 7px 32px 7px 12px; font-size: 0.75rem; font-family: var(--sans); color: var(--charcoal); cursor: pointer; outline: none; }
.coll-sort-select:focus { border-color: var(--copper); }
.coll-sort-select-wrap::after { content: '▾'; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-size: 0.65rem; color: var(--taupe); pointer-events: none; }
.coll-section { display: grid; grid-template-columns: 240px 1fr; gap: 0; padding: 0 72px; margin-top: 0; align-items: start; background: var(--ivory); }
.coll-filters { padding: 40px 40px 40px 0; border-right: 1px solid var(--linen); position: sticky; top: 80px; }
.coll-filter-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.coll-filter-head span { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: var(--ink); }
.coll-filter-clear { font-size: 0.65rem; color: var(--taupe); transition: color 0.2s; }
.coll-filter-clear:hover { color: var(--bronze); }
.coll-filter-group { border-bottom: 1px solid var(--linen); padding: 18px 0; }
.coll-filter-group-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); font-weight: 400; padding: 0; background: none; border: none; cursor: pointer; }
.coll-filter-options { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.coll-filter-check { display: flex; align-items: center; gap: 9px; font-size: 0.8rem; color: var(--stone); cursor: pointer; }
.coll-filter-check input { accent-color: var(--copper); }
.coll-filter-count { color: var(--taupe); font-size: 0.72rem; margin-left: auto; }
.coll-price-range { display: flex; align-items: center; gap: 8px; }
.coll-price-input { width: 72px; border: 1px solid var(--linen); padding: 6px 8px; font-size: 0.78rem; font-family: var(--sans); color: var(--charcoal); outline: none; }
.coll-price-input:focus { border-color: var(--copper); }
.coll-products { padding: 40px 0 40px 40px; }
.coll-grid { grid-template-columns: repeat(3, 1fr); }
.coll-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--linen); }
.page-link { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--stone); padding: 8px 14px; border: 1px solid var(--linen); transition: all 0.2s; }
.page-link:hover { border-color: var(--copper); color: var(--bronze); }
.page-current { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.coll-empty { text-align: center; padding: 80px 40px; color: var(--stone); }
.coll-empty p { font-size: 0.95rem; margin-bottom: 20px; }
.coll-empty a { color: var(--copper); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }

/* ══ PRODUCT DETAIL PAGE ══ */
.product-main { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 80vh; background: var(--ivory); }
.product-gallery { display: grid; grid-template-columns: 72px 1fr; gap: 12px; padding: 40px 32px 40px 72px; align-items: start; position: sticky; top: 60px; height: calc(100vh - 60px); overflow: hidden; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 10px; }
.g-thumb { width: 64px; height: 64px; overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: border-color 0.25s; flex-shrink: 0; background: var(--cream); }
.g-thumb.active { border-color: var(--copper); }
.g-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--cream); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s; }
.gallery-main img.hidden { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.gallery-main img.visible { position: relative; opacity: 1; }
.gallery-badge { position: absolute; top: 16px; left: 16px; background: var(--copper); color: var(--ivory); font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; padding: 5px 12px; }
.gallery-zoom { position: absolute; bottom: 16px; right: 16px; width: 36px; height: 36px; background: rgba(250,248,244,0.88); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.gallery-zoom svg { width: 14px; height: 14px; stroke: var(--stone); fill: none; stroke-width: 1.5; }
.product-info { padding: 40px 72px 64px 48px; border-left: 1px solid var(--linen); }

/* Sibling subcategory tabs (Next.co.uk style) */
.sibling-nav { margin-bottom: 22px; }
.sibling-nav-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 10px; font-weight: 500; }
.sibling-nav-row { display: flex; flex-wrap: wrap; gap: 0; border-bottom: 1px solid var(--sand); }
.sibling-tab { position: relative; padding: 10px 20px; font-size: 0.78rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--taupe); cursor: pointer; transition: all 0.25s; border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; font-family: var(--sans); background: none; border-top: none; border-left: none; border-right: none; max-width: 220px; overflow: hidden; text-overflow: ellipsis; }
.sibling-tab:hover { color: var(--copper); border-bottom-color: var(--sand); }
.sibling-tab.active { color: var(--ink); font-weight: 600; border-bottom-color: var(--copper); }
.sibling-tab.loading { opacity: 0.4; pointer-events: none; }

.product-category { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--copper); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.product-category::before { content: ''; display: block; width: 20px; height: 1px; background: var(--copper); }
.product-title { font-family: var(--display); font-size: clamp(2rem,3vw,3.2rem); font-weight: 300; line-height: 1.05; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 16px; }
.product-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.stars { display: flex; gap: 2px; }
.star { width: 12px; height: 12px; fill: var(--copper); }
.rating-num { font-size: 0.7rem; font-weight: 500; color: var(--charcoal); }
.rating-count { font-size: 0.65rem; color: var(--taupe); border-bottom: 1px dotted var(--sand); }
.product-price-block { display: flex; align-items: baseline; gap: 14px; padding: 20px 0; border-top: 1px solid var(--linen); border-bottom: 1px solid var(--linen); margin-bottom: 28px; }
.product-price { font-size: 2rem; font-weight: 600; color: var(--bronze); letter-spacing: -0.01em; }
.product-price-was { font-size: 1.1rem; color: var(--taupe); text-decoration: line-through; }
.product-price-save { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; background: rgba(154,114,72,0.1); color: var(--bronze); padding: 4px 10px; }
.variant-group { margin-bottom: 24px; }
.variant-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 12px; display: flex; justify-content: space-between; }
.variant-label span { color: var(--ink); font-weight: 500; }
.variant-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.vopt { padding: 8px 18px; border: 1px solid var(--linen); font-size: 0.68rem; color: var(--charcoal); cursor: pointer; transition: all 0.25s; background: none; font-family: var(--sans); }
.vopt:hover { border-color: var(--copper); color: var(--copper); }
.vopt.active { border-color: var(--copper); background: rgba(196,149,90,0.07); color: var(--copper); font-weight: 500; }
.vopt.disabled { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.atc-row { display: flex; gap: 12px; margin-bottom: 20px; }
.qty-ctrl { display: flex; align-items: center; border: 1px solid var(--linen); }
.qty-btn { width: 40px; height: 48px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--stone); transition: all 0.25s; cursor: pointer; background: none; border: none; }
.qty-btn:hover { background: var(--cream); color: var(--ink); }
.qty-num { width: 44px; text-align: center; font-size: 0.9rem; border: none; outline: none; font-family: var(--sans); background: transparent; }
.btn-main-atc { flex: 1; background: var(--ink); color: var(--ivory); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; padding: 14px 28px; transition: background 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; border: none; cursor: pointer; }
.btn-main-atc:hover { background: var(--bronze); }
.btn-main-atc svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.btn-wishlist { width: 48px; height: 48px; border: 1px solid var(--linen); display: flex; align-items: center; justify-content: center; transition: all 0.3s; background: none; cursor: pointer; }
.btn-wishlist:hover { border-color: var(--copper); }
.btn-wishlist svg { width: 16px; height: 16px; stroke: var(--stone); fill: none; stroke-width: 1.5; }
.trust-badges { display: flex; gap: 0; border: 1px solid var(--linen); margin-bottom: 32px; }
.trust-item { flex: 1; padding: 14px 12px; border-right: 1px solid var(--linen); text-align: center; }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.2rem; margin-bottom: 5px; }
.trust-label { font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); line-height: 1.4; }
.accordion-item { border-bottom: 1px solid var(--linen); }
.accordion-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; cursor: pointer; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal); background: none; border: none; width: 100%; font-family: var(--sans); }
.accordion-head svg { width: 10px; height: 10px; stroke: var(--stone); fill: none; stroke-width: 2; transition: transform 0.3s; }
.accordion-head.open svg { transform: rotate(180deg); }
.accordion-body { padding: 0 0 20px; font-size: 0.82rem; line-height: 1.9; color: var(--stone); display: none; }
.accordion-body.open { display: block; }
.pdp-related { padding: 72px 72px 80px; border-top: 1px solid var(--linen); background: var(--ivory); }
.pdp-related-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.pdp-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.view-all { display: flex; align-items: center; gap: 8px; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); border-bottom: 1px solid var(--sand); padding-bottom: 2px; transition: all 0.3s; }
.view-all:hover { color: var(--bronze); border-color: var(--bronze); }
.view-all svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Related Product Card (Next.co.uk style — always-visible ATC) */
.rpc { position: relative; background: white; border: 1px solid var(--linen); transition: box-shadow 0.35s, border-color 0.35s; display: flex; flex-direction: column; }
.rpc:hover { box-shadow: 0 6px 28px rgba(30,28,24,0.08); border-color: var(--sand); }
.rpc-img-link { display: block; }
.rpc-img-wrap { position: relative; width: 100%; padding-top: 110%; overflow: hidden; background: var(--cream); }
.rpc-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.rpc:hover .rpc-img-wrap img { transform: scale(1.04); }
.rpc-badge { position: absolute; top: 10px; left: 10px; font-size: 0.52rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; padding: 4px 10px; z-index: 2; }
.rpc-badge.new { background: var(--copper); color: var(--ivory); }
.rpc-badge.sale { background: var(--ink); color: var(--ivory); }
.rpc-info { padding: 14px 16px 0; flex: 1; }
.rpc-cat { font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); font-weight: 500; margin-bottom: 5px; }
.rpc-name { font-family: var(--display); font-size: 1.05rem; font-weight: 400; color: var(--ink); margin-bottom: 8px; line-height: 1.15; }
.rpc-price-row { display: flex; align-items: baseline; gap: 10px; padding-top: 10px; border-top: 1px solid var(--linen); }
.rpc-price { font-size: 1.15rem; color: var(--bronze); font-weight: 600; }
.rpc-price-was { font-size: 0.85rem; color: var(--taupe); text-decoration: line-through; }
.rpc-actions { padding: 10px 16px 14px; }
.btn-rpc-atc { width: 100%; background: var(--ink); color: var(--ivory); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; padding: 10px 16px; transition: background 0.3s, opacity 0.3s; border: none; cursor: pointer; font-family: var(--sans); display: block; text-align: center; }
.btn-rpc-atc:hover { background: var(--bronze); }
.btn-rpc-atc.loading { opacity: 0.6; pointer-events: none; }
.btn-rpc-atc.added { background: var(--copper); }
.btn-rpc-atc.sold-out { background: var(--linen); color: var(--taupe); cursor: default; font-size: 0.58rem; }

/* ══ RESPONSIVE ══ */

/* ── 1024px ── */
@media (max-width: 1024px) {
  .container { padding: 0 48px; }
  nav#navbar { padding: 0 48px; }
  .hero-content { padding: 0 48px 56px; }
  .showcase { padding: 64px 48px; }
  .rooms { padding: 64px 0 64px 48px; }
  .rooms-head { padding-right: 48px; }
  .brand-statement { padding: 80px 48px; }
  .promo-left { padding: 56px 48px; }
  .craft { padding: 80px 48px; gap: 56px; }
  .testimonials { padding: 64px 48px; }
  .newsletter-inner { padding: 72px 48px; gap: 48px; }
  footer { padding: 60px 48px 32px; }
  .footer-grid { gap: 32px; }
  .numbers-strip { padding: 48px; }
  .page-hero { padding: 100px 48px 56px; }
  .breadcrumb { padding: 14px 48px; }
}

/* ── 768px (Tablet) ── */
@media (max-width: 768px) {
  /* Nav */
  .container { padding: 0 24px; }
  nav#navbar { padding: 0 24px; height: 60px; top: 0; }
  nav#navbar.scrolled { height: 56px; top: 0; }
  .topbar { display: none; } /* hide topbar on tablet+ */
  .nav-logo { font-size: 1.3rem; letter-spacing: 0.2em; }
  .nav-links { display: none; }
  .nav-icons { gap: 14px; }
  .nav-icons svg { width: 20px; height: 20px; }
  .page-wrap { padding-top: 60px; }
  .breadcrumb { padding: 12px 24px; font-size: 0.65rem; }

  /* Hero */
  .hero { height: 100svh; min-height: 580px; }
  .hero-content { padding: 0 24px 40px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-text { max-width: 100%; }
  .hero-title { font-size: clamp(2.6rem, 9vw, 4.5rem); margin-bottom: 20px; }
  .hero-cta-row { flex-wrap: wrap; gap: 16px; }
  .hero-meta { display: none; }
  .hero-badge { display: none; }

  /* Ticker */
  .ticker-item { padding: 0 20px; font-size: 0.6rem; }

  /* Numbers strip */
  .numbers-strip { grid-template-columns: repeat(2, 1fr); padding: 36px 24px; gap: 24px; }
  .num-item { padding: 0 12px; border-right: none; }
  .num-item:first-child { padding-left: 12px; }
  .num-item:last-child { padding-right: 12px; }
  .num-item:nth-child(odd) { border-right: 1px solid rgba(250,248,244,0.07); }
  .num-value { font-size: clamp(2rem, 7vw, 3rem); }

  /* Showcase */
  .showcase { padding: 48px 24px; }
  .showcase-head { flex-direction: column; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pc.pc-feature { grid-column: span 2; }
  .pc.pc-feature .pc-img-wrap { padding-top: 55%; }
  .pc-actions { opacity: 1 !important; transform: none !important; }

  /* Filter bar */
  .filter-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 20px; }
  .ftab { white-space: nowrap; padding: 10px 14px; font-size: 0.6rem; }

  /* Brand statement */
  .brand-statement { padding: 56px 24px; }
  .bs-headline { font-size: clamp(1.8rem, 6vw, 3rem); }
  .bs-body { font-size: 0.9rem; }

  /* Rooms */
  .rooms { padding: 48px 0 48px 24px; }
  .rooms-head { padding-right: 24px; margin-bottom: 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .rooms-scroll { padding-right: 24px; gap: 14px; }
  .room-card { width: 260px; flex-shrink: 0; }
  .room-card-img { height: 320px; }

  /* Promo */
  .promo { grid-template-columns: 1fr; min-height: auto; }
  .promo-left { padding: 48px 24px; }
  .promo-left::before { display: none; }
  .promo-title { font-size: clamp(2rem, 7vw, 3.2rem); }
  .promo-right { min-height: 260px; }
  .promo-right img { height: 260px; object-fit: cover; }

  /* Craft */
  .craft { grid-template-columns: 1fr; padding: 48px 24px; gap: 32px; }
  .craft-visual { aspect-ratio: 16/9; }
  .craft-visual::before { display: none; }
  .craft-headline { font-size: clamp(1.8rem, 5vw, 2.6rem); }

  /* Testimonials */
  .testimonials { padding: 48px 24px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Newsletter */
  .newsletter-inner { grid-template-columns: 1fr; padding: 56px 24px; gap: 36px; }
  .nl-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .newsletter::after { font-size: 16rem; right: -20px; }
  .nl-btn { align-self: stretch; text-align: center; justify-content: center; }

  /* Footer */
  footer { padding: 48px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  /* Page hero */
  .page-hero { padding: 80px 24px 40px; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3.8rem); }

  /* Collection page */
  .coll-toolbar { padding: 14px 24px; flex-wrap: wrap; gap: 10px; }
  .coll-section { padding: 0 24px; grid-template-columns: 1fr; }
  .coll-filters { display: none; }
  .coll-products { padding: 24px 0; }
  .coll-grid { grid-template-columns: repeat(2, 1fr); }

  /* Product page */
  .product-main { grid-template-columns: 1fr; min-height: auto; }
  .product-gallery { position: static; grid-template-columns: 1fr; padding: 0 24px; height: auto; gap: 0; }
  .gallery-thumbs { flex-direction: row; order: 2; padding: 12px 24px; }
  .g-thumb { width: 56px; height: 56px; }
  .gallery-main { aspect-ratio: 4/3; }
  .product-info { padding: 32px 24px; border-left: none; }
  .product-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .product-price { font-size: 1.6rem; }
  .pdp-related { padding: 48px 24px; }
  .pdp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-related-head { flex-direction: column; gap: 12px; align-items: flex-start; }
  .rpc-name { font-size: 0.95rem; }
  .rpc-price { font-size: 1.05rem; }
  .sibling-nav { margin-bottom: 22px; }
  .sibling-tab { padding: 8px 14px; font-size: 0.7rem; max-width: 160px; }
}

/* ── 480px (Mobile) ── */
@media (max-width: 480px) {
  /* Nav */
  nav#navbar { padding: 0 16px; }
  .nav-logo { font-size: 1.15rem; letter-spacing: 0.16em; }
  .nav-icons { gap: 12px; }
  .nav-icons svg { width: 19px; height: 19px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 16px 32px; }
  .hero-overline { font-size: 0.6rem; margin-bottom: 14px; }
  .hero-title { font-size: clamp(2.2rem, 11vw, 3.5rem); margin-bottom: 20px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-hero { padding: 14px 24px; font-size: 0.62rem; justify-content: center; }
  .btn-ghost { font-size: 0.62rem; text-align: center; }

  /* Numbers */
  .numbers-strip { padding: 28px 16px; gap: 16px; }
  .num-value { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .num-label { font-size: 0.54rem; }

  /* Showcase */
  .showcase { padding: 36px 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pc.pc-feature { grid-column: span 2; }
  .pc.pc-feature .pc-img-wrap { padding-top: 65%; }
  .pc-img-wrap { padding-top: 120%; }
  .pc-info { padding: 10px 10px 0; }
  .pc-name { font-size: 0.85rem; }
  .pc-price { font-size: 0.95rem; }
  .pc-actions { padding: 8px 10px 10px; gap: 6px; }
  .btn-atc { font-size: 0.5rem; padding: 8px 10px; }
  .btn-quick { width: 30px; height: 30px; }
  .filter-bar { margin-bottom: 16px; }
  .ftab { padding: 8px 10px; font-size: 0.55rem; }
  .sec-title { font-size: clamp(1.5rem, 7vw, 2.2rem); }

  /* Brand statement */
  .brand-statement { padding: 44px 16px; }
  .bs-headline { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .bs-body { font-size: 0.88rem; }

  /* Rooms */
  .rooms { padding: 36px 0 36px 16px; }
  .rooms-head { padding-right: 16px; margin-bottom: 20px; }
  .rooms-scroll { padding-right: 16px; gap: 12px; }
  .room-card { width: 220px; }
  .room-card-img { height: 270px; }
  .room-card-name { font-size: 1.1rem; }
  .room-card-info { bottom: 16px; left: 16px; right: 16px; }

  /* Promo */
  .promo-left { padding: 36px 16px; }
  .promo-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .promo-desc { font-size: 0.84rem; margin-bottom: 28px; }
  .promo-right { min-height: 200px; }
  .promo-right img { height: 200px; }

  /* Craft */
  .craft { padding: 36px 16px; gap: 28px; }
  .craft-visual { aspect-ratio: 4/3; }
  .craft-headline { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .craft-para { font-size: 0.86rem; }
  .craft-features li { font-size: 0.82rem; padding: 12px 0; gap: 14px; }

  /* Testimonials */
  .testimonials { padding: 36px 16px; }
  .review-card { padding: 24px 18px; }
  .review-text { font-size: 0.92rem; }

  /* Newsletter */
  .newsletter-inner { padding: 44px 16px; gap: 28px; }
  .nl-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .nl-body { font-size: 0.84rem; }
  .nl-input { padding: 12px 16px; }
  .nl-btn { padding: 13px 24px; }
  .newsletter::after { font-size: 8rem; }

  /* Footer */
  footer { padding: 36px 16px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 24px; }
  .ft-logo { font-size: 1.3rem; }
  .ft-copy { font-size: 0.65rem; }
  .ft-payments { flex-wrap: wrap; gap: 4px; }
  .pay-chip { font-size: 0.54rem; padding: 3px 8px; }

  /* Page hero */
  .page-hero { padding: 70px 16px 36px; }
  .page-hero h1 { font-size: clamp(1.8rem, 9vw, 3rem); }
  .page-hero-sub { font-size: 0.84rem; }
  .breadcrumb { padding: 10px 16px; font-size: 0.62rem; }

  /* Collection page */
  .coll-toolbar { padding: 12px 16px; }
  .coll-section { padding: 0 16px; }
  .coll-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .coll-pagination { margin-top: 36px; }

  /* Product page */
  .product-main { min-height: auto; }
  .product-gallery { padding: 0 16px; }
  .gallery-thumbs { gap: 6px; padding: 10px 16px; }
  .g-thumb { width: 48px; height: 48px; }
  .product-info { padding: 24px 16px; }
  .product-title { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .product-price { font-size: 1.4rem; }
  .atc-row { flex-wrap: wrap; }
  .btn-main-atc { min-width: 180px; }
  .trust-badges { flex-wrap: wrap; }
  .trust-item { flex: 0 0 50%; border-bottom: 1px solid var(--linen); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
  .pdp-related { padding: 36px 16px; }
  .pdp-related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .rpc-name { font-size: 0.88rem; }
  .rpc-price { font-size: 0.95rem; }
  .btn-rpc-atc { font-size: 0.55rem; padding: 8px 10px; }
  .rpc-info { padding: 10px 12px 0; }
  .rpc-actions { padding: 8px 12px 12px; }
  .sibling-nav { margin-bottom: 18px; }
  .sibling-tab { padding: 6px 10px; font-size: 0.62rem; letter-spacing: 0.06em; max-width: 120px; }

  /* Ticker */
  .ticker-item { padding: 0 14px; font-size: 0.55rem; }

  /* Cursor off on touch */
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ── 360px (Small phone) ── */
@media (max-width: 360px) {
  .product-grid { grid-template-columns: 1fr; }
  .pc.pc-feature { grid-column: span 1; }
  .room-card { width: 190px; }
  .room-card-img { height: 240px; }
  .hero-title { font-size: 2.2rem; }
  .nav-logo { font-size: 1rem; }
}

/* ============================================================
   CART PAGE — v2.11
   ============================================================ */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 56px; padding: 56px 72px; background: var(--ivory); align-items: start; }
.cart-items { display: flex; flex-direction: column; }
.cart-item { display: grid; grid-template-columns: 100px 1fr auto auto; gap: 24px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--linen); }
.cart-item:first-child { border-top: 1px solid var(--linen); }
.cart-item-img { width: 100px; height: 112px; overflow: hidden; border: 1px solid var(--linen); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { display: flex; flex-direction: column; gap: 6px; }
.cart-item-type { font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); font-weight: 500; }
.cart-item-title { font-family: var(--display); font-size: 1.05rem; color: var(--ink); font-weight: 400; }
.cart-item-title:hover { color: var(--bronze); }
.cart-item-variant { font-size: 0.78rem; color: var(--taupe); }
.cart-item-price-row { display: flex; align-items: baseline; gap: 8px; }
.cart-item-price { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--bronze); }
.cart-item-price-was { font-size: 0.82rem; color: var(--taupe); text-decoration: line-through; }
.cart-item-qty { display: flex; align-items: center; border: 1px solid var(--linen); width: fit-content; }
.cart-qty-input { width: 44px; height: 36px; text-align: center; border: none; border-left: 1px solid var(--linen); border-right: 1px solid var(--linen); font-size: 0.9rem; font-family: var(--sans); color: var(--ink); outline: none; }
.cart-item-qty .qty-btn { width: 36px; height: 36px; font-size: 0.9rem; }
.cart-item-line-total { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.cart-item-remove { color: var(--taupe); transition: color 0.2s; }
.cart-item-remove:hover { color: var(--copper); }
.cart-summary-inner { background: var(--cream); border: 1px solid var(--linen); padding: 36px 32px; position: sticky; top: 80px; }
.cart-summary-title { font-family: var(--display); font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: 24px; letter-spacing: 0.02em; }
.cart-summary-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--stone); }
.cart-discount { color: var(--copper); }
.cart-shipping-note { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--stone); padding: 12px 0; border-top: 1px solid var(--linen); border-bottom: 1px solid var(--linen); margin-bottom: 20px; }
.cart-shipping-note strong { color: var(--bronze); }
.cart-summary-total { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 600; color: var(--ink); padding-top: 16px; border-top: 1px solid var(--linen); margin-bottom: 24px; }
.cart-checkout-btn { width: 100%; justify-content: center; padding: 16px; margin-bottom: 10px; }
.cart-update-btn { width: 100%; justify-content: center; padding: 14px; margin-bottom: 20px; }
.cart-trust { display: flex; flex-direction: column; gap: 10px; }
.cart-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--taupe); }
.cart-empty { text-align: center; padding: 120px 72px; background: var(--ivory); }
.cart-empty-title { font-family: var(--display); font-size: 2.2rem; font-weight: 300; color: var(--ink); margin: 24px 0 12px; }
.cart-empty-sub { font-size: 0.9rem; color: var(--stone); margin-bottom: 36px; }
.cart-empty .btn-primary { display: inline-flex; }

/* ============================================================
   ABOUT PAGE — v2.11
   ============================================================ */
.about-mission { padding: 0 72px; background: var(--ivory); }
.about-mission-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 80px 0; border-bottom: 1px solid var(--linen); }
.about-mission-title { font-family: var(--display); font-size: clamp(2rem,3vw,3.4rem); font-weight: 300; line-height: 1.08; color: var(--ink); margin-bottom: 24px; letter-spacing: -0.01em; }
.about-mission-title em { font-style: italic; color: var(--bronze); }
.about-mission-para { font-size: 0.9rem; line-height: 1.9; color: var(--stone); font-weight: 300; margin-bottom: 16px; }
.about-mission-image { aspect-ratio: 3/4; overflow: hidden; }
.about-mission-image img { width: 100%; height: 100%; object-fit: cover; }
.about-numbers { background: var(--charcoal); padding: 56px 72px; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.about-values { padding: 80px 72px; background: var(--ivory); }
.about-values-head { text-align: center; margin-bottom: 56px; }
.about-values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.about-value-card { padding: 36px 28px; border: 1px solid var(--linen); background: white; transition: box-shadow 0.3s; }
.about-value-card:hover { box-shadow: 0 8px 32px rgba(30,28,24,0.07); }
.about-value-icon { margin-bottom: 20px; }
.about-value-title { font-family: var(--display); font-size: 1.2rem; font-weight: 400; color: var(--ink); margin-bottom: 12px; }
.about-value-desc { font-size: 0.85rem; line-height: 1.75; color: var(--stone); font-weight: 300; }
.about-craft { padding: 0 72px; background: var(--ivory); border-top: 1px solid var(--linen); }
.about-craft-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; }
.about-craft-image { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about-craft-image img { width: 100%; height: 100%; object-fit: cover; }
.about-craft-image::before { content: ''; position: absolute; top: -16px; left: -16px; width: 100%; height: 100%; border: 1px solid var(--copper); opacity: 0.18; z-index: -1; }
.about-craft-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px; background: linear-gradient(to top, rgba(20,18,14,0.58), transparent); font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,248,244,0.55); }
.about-cta { background: var(--cream); border-top: 1px solid var(--linen); }
.about-cta-inner { text-align: center; padding: 96px 72px; max-width: 640px; margin: 0 auto; }
.about-cta-title { font-family: var(--display); font-size: clamp(2.4rem,4vw,4rem); font-weight: 300; line-height: 1.06; color: var(--ink); margin-bottom: 20px; }
.about-cta-title em { font-style: italic; color: var(--bronze); }
.about-cta-sub { font-size: 0.9rem; line-height: 1.85; color: var(--stone); font-weight: 300; margin-bottom: 36px; }
.about-cta-btns { display: flex; gap: 16px; justify-content: center; }

/* ============================================================
   SEARCH RESULTS PAGE — v2.11
   ============================================================ */
.search-section { padding: 56px 72px 80px; background: var(--ivory); }
.search-bar { display: flex; gap: 0; max-width: 640px; margin: 0 auto 40px; }
.search-input { flex: 1; border: 1px solid var(--linen); border-right: none; padding: 14px 20px; font-size: 0.9rem; font-family: var(--sans); color: var(--ink); outline: none; background: white; }
.search-input:focus { border-color: var(--copper); }
.search-input::placeholder { color: var(--taupe); }
.search-btn { background: var(--ink); color: var(--ivory); padding: 0 20px; border: none; cursor: pointer; display: flex; align-items: center; transition: background 0.3s; }
.search-btn:hover { background: var(--bronze); }
.search-count { font-size: 0.8rem; color: var(--taupe); margin-bottom: 32px; text-align: center; }
.search-grid { grid-template-columns: repeat(4,1fr); }
.search-empty { text-align: center; padding: 60px 0; color: var(--stone); font-size: 0.9rem; }

/* ============================================================
   PAGE DEFAULT (Generic Content Pages) — v2.11
   ============================================================ */
.page-content { max-width: 820px; margin: 0 auto; padding: 56px 72px 80px; background: var(--ivory); }
.page-content h2 { font-family: var(--display); font-size: 1.8rem; font-weight: 300; color: var(--ink); margin: 40px 0 16px; }
.page-content h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 400; color: var(--charcoal); margin: 32px 0 12px; }
.page-content p { font-size: 0.9rem; line-height: 1.9; color: var(--stone); font-weight: 300; margin-bottom: 16px; }
.page-content ul { padding-left: 20px; margin-bottom: 16px; }
.page-content li { font-size: 0.9rem; line-height: 1.8; color: var(--stone); margin-bottom: 6px; }
.page-content img { max-width: 100%; height: auto; margin: 24px 0; }

/* ============================================================
   LIST COLLECTIONS PAGE — v2.11
   ============================================================ */
.lc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; padding: 56px 72px 80px; background: var(--ivory); }
.lc-card { background: white; border: 1px solid var(--linen); overflow: hidden; transition: box-shadow 0.3s, border-color 0.3s; }
.lc-card:hover { box-shadow: 0 8px 32px rgba(30,28,24,0.08); border-color: var(--sand); }
.lc-card-img { width: 100%; aspect-ratio: 3/2; overflow: hidden; }
.lc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.4,0,0.2,1); }
.lc-card:hover .lc-card-img img { transform: scale(1.05); }
.lc-card-info { padding: 20px; }
.lc-card-title { font-family: var(--display); font-size: 1.2rem; font-weight: 400; color: var(--ink); margin-bottom: 4px; }
.lc-card-count { font-size: 0.75rem; color: var(--taupe); }

/* ============================================================
   RESPONSIVE — 768px additions for newly migrated pages
   ============================================================ */
@media (max-width: 768px) {
  /* Cart */
  .cart-layout { grid-template-columns: 1fr; padding: 32px 20px; gap: 32px; }
  .cart-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .cart-item-line-total { display: none; }
  .cart-summary-inner { position: static; padding: 24px 20px; }
  .cart-empty { padding: 80px 20px; }

  /* About */
  .about-mission { padding: 0 20px; }
  .about-mission-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .about-numbers { grid-template-columns: repeat(2,1fr); padding: 40px 20px; gap: 1px; }
  .about-values { padding: 48px 20px; }
  .about-values-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .about-craft { padding: 0 20px; }
  .about-craft-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .about-cta-inner { padding: 64px 20px; }
  .about-cta-btns { flex-direction: column; align-items: center; }

  /* Search */
  .search-section { padding: 32px 20px 56px; }
  .search-grid { grid-template-columns: repeat(2,1fr); }

  /* Page default */
  .page-content { padding: 32px 20px 56px; }

  /* List collections */
  .lc-grid { grid-template-columns: repeat(2,1fr); gap: 16px; padding: 32px 20px 56px; }
}

@media (max-width: 480px) {
  /* Cart */
  .cart-item { grid-template-columns: 72px 1fr; gap: 12px; }
  .cart-item-img { width: 72px; height: 80px; }
  .cart-item-title { font-size: 0.9rem; }

  /* About */
  .about-numbers { grid-template-columns: 1fr 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }

  /* Search */
  .search-grid { grid-template-columns: 1fr 1fr; }

  /* List collections */
  .lc-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ============================================================
   SHYFOY B2B — Trade & Commercial Page Styles
   ============================================================ */

/* ════ B2B Hero ════ */
.b2b-hero {
  padding: 100px 72px 110px;
  text-align: center;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.b2b-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% -20%, rgba(196,149,90,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 90%, rgba(154,114,72,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.b2b-hero > * { position: relative; z-index: 1; }
.b2b-hero-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}
.b2b-hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ivory);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.b2b-hero h1 em {
  font-style: italic;
  color: var(--copper);
}
.b2b-hero-sub {
  font-size: 1.05rem;
  color: rgba(250,248,244,0.55);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.b2b-hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  border: 1px solid rgba(196,149,90,0.5);
  color: var(--copper);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.35s;
  font-weight: 500;
}
.b2b-hero .btn:hover {
  background: var(--copper);
  color: var(--ink);
  border-color: var(--copper);
}
.b2b-hero .btn svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  transition: transform 0.3s;
}
.b2b-hero .btn:hover svg { transform: translateX(4px); }

/* ════ B2B Stats Bar ════ */
.b2b-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--linen);
}
.b2b-stat {
  text-align: center;
  padding: 48px 20px;
  border-right: 1px solid var(--linen);
}
.b2b-stat:last-child { border-right: none; }
.b2b-stat-num {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.b2b-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  max-width: 140px;
  margin: 0 auto;
}
.b2b-stat-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 12px;
  stroke: var(--copper);
  opacity: 0.6;
}

/* ════ B2B Section Common ════ */
.b2b-section {
  padding: 100px 72px;
}
.b2b-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.b2b-section-header .sec-eyebrow { justify-content: center; }
.b2b-section-header h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}
.b2b-section-header h2 em {
  font-style: italic;
  color: var(--bronze);
}
.b2b-section-header p {
  font-size: 0.95rem;
  color: var(--stone);
  max-width: 480px;
  margin: 16px auto 0;
  line-height: 1.8;
  font-weight: 300;
}

/* ════ B2B Personas ════ */
.b2b-personas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.b2b-persona {
  text-align: center;
  padding: 56px 32px 44px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.4s ease;
}
.b2b-persona:hover { transform: translateY(-4px); }
.b2b-persona-icon {
  width: 52px; height: 52px;
  margin: 0 auto 24px;
  stroke: var(--bronze);
  opacity: 0.7;
}
.b2b-persona h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.b2b-persona p {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.8;
  font-weight: 300;
}

/* ════ B2B Benefits ════ */
.b2b-benefits-bg {
  background: var(--cream);
}
.b2b-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.b2b-benefits-img {
  aspect-ratio: 4/5;
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
}
.b2b-benefits-list { list-style: none; }
.b2b-benefit {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--linen);
}
.b2b-benefit:first-child { padding-top: 0; }
.b2b-benefit-num {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--copper);
  font-weight: 300;
  line-height: 1;
  min-width: 28px;
  text-align: right;
}
.b2b-benefit h4 {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 4px;
}
.b2b-benefit p {
  font-size: 0.84rem;
  color: var(--stone);
  line-height: 1.7;
  font-weight: 300;
}

/* ════ B2B How It Works ════ */
.b2b-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.b2b-step {
  text-align: center;
  position: relative;
}
.b2b-step::after {
  counter-increment: step;
  content: '0' counter(step);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--linen);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.b2b-step h4 {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.b2b-step p {
  font-size: 0.78rem;
  color: var(--stone);
  line-height: 1.6;
  font-weight: 300;
}

/* ════ B2B Atmosphere Image ════ */
.b2b-atmosphere {
  width: 100%;
  overflow: hidden;
}
.b2b-atmosphere img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 70vh;
}

/* ════ B2B Testimonials ════ */
.b2b-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.b2b-testimonial {
  background: var(--cream);
  padding: 40px 36px;
  border-radius: 2px;
}
.b2b-testimonial p:first-of-type {
  font-family: var(--serif);
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--charcoal);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
}
.b2b-testimonial-name {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.b2b-testimonial-role {
  font-size: 0.65rem;
  color: var(--stone);
  margin-top: 2px;
}

/* ════ B2B CTA + Contact Form ════ */
.b2b-cta {
  background: var(--ink);
  padding: 100px 72px;
  position: relative;
  overflow: hidden;
}
.b2b-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(196,149,90,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(154,114,72,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.b2b-cta > * { position: relative; z-index: 1; }
.b2b-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.b2b-cta-text .sec-eyebrow { color: var(--copper); }
.b2b-cta-text .sec-eyebrow::before { background: var(--copper); }
.b2b-cta-text h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 18px;
}
.b2b-cta-text h2 em {
  font-style: italic;
  color: var(--copper);
}
.b2b-cta-text p {
  font-size: 0.95rem;
  color: rgba(250,248,244,0.45);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}
.b2b-cta-trust {
  display: flex;
  gap: 32px;
}
.b2b-cta-trust-item {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}
.b2b-cta-trust-item svg {
  width: 14px; height: 14px;
  stroke: var(--copper);
  opacity: 0.4;
}

/* B2B Form */
.b2b-form {
  background: #FBF8F3;
  border: 1px solid #D4C8B8;
  padding: 48px 40px;
  border-radius: 2px;
}
.b2b-form-success { text-align: center; padding: 40px 20px; }
.b2b-form-group { margin-bottom: 18px; }
.b2b-form-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6B5E4F;
  margin-bottom: 8px;
}
.b2b-form-group input,
.b2b-form-group select,
.b2b-form-group textarea {
  width: 100% !important;
  padding: 14px 16px !important;
  background: #fff !important;
  border: none !important;
  box-shadow: 0 0 0 2px #666 !important;
  color: #2C2C2C !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 15px !important;
  outline: none !important;
  transition: box-shadow 0.3s;
  border-radius: 2px !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  box-sizing: border-box !important;
}
.b2b-form-group input:focus,
.b2b-form-group textarea:focus,
.b2b-form-group select:focus {
  outline: none !important;
  box-shadow: 0 0 0 2px #A67C52 !important;
  background: #fff !important;
}
.b2b-form-group select option { color: var(--ink); background: var(--ivory); }
.b2b-form-group textarea { resize: vertical; min-height: 120px; }
.b2b-form-group input::placeholder,
.b2b-form-group textarea::placeholder {
  color: #A89880;
}
.b2b-form .btn-submit {
  width: 100%;
  padding: 16px;
  background: #2C2C2C;
  color: #fff;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s;
  border-radius: 2px;
}
.b2b-form .btn-submit:hover {
  background: #A67C52;
  color: #fff;
}
.b2b-form .form-note {
  font-size: 12px;
  color: #A89880;
  margin-top: 12px;
  text-align: center;
}
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* ════ B2B Responsive ════ */
@media (max-width: 1024px) {
  .b2b-section, .b2b-hero, .b2b-cta { padding: 72px 48px; }
  .b2b-personas { grid-template-columns: 1fr; gap: 16px; }
  .b2b-benefits { grid-template-columns: 1fr; gap: 40px; }
  .b2b-testimonials { grid-template-columns: 1fr; }
  .b2b-cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .b2b-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .b2b-section, .b2b-hero, .b2b-cta { padding: 56px 24px; }
  .b2b-stats { grid-template-columns: repeat(2, 1fr); }
  .b2b-stat { border-right: none; border-bottom: 1px solid var(--linen); padding: 32px 12px; }
  .b2b-stat:nth-child(3), .b2b-stat:nth-child(4) { border-bottom: none; }
  .b2b-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
