/* ============================================================
   LUXE BOX — SHARED STYLESHEET
   ============================================================ */

/* 1. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--cream); color: var(--ink); font-family: var(--body); font-weight: 300; overflow-x: hidden; cursor: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* 2. CSS VARIABLES */
:root {
  --cream: #f5f0e8;
  --cream2: #ede8de;
  --cream3: #e5dfd3;
  --ink: #0f0e0c;
  --ink2: #2a2722;
  --muted: #7a7469;
  --muted2: #b0a89a;
  --accent: #c0392b;
  --accent2: #a93224;
  --serif: 'Playfair Display', Georgia, serif;
  --display: 'Syne', sans-serif;
  --body: 'DM Sans', sans-serif;
  --banner-h: 36px;
  --nav-h: 80px;
}

/* 3. TYPOGRAPHY */
h1, h2, h3, h4 { font-weight: inherit; line-height: 1.1; }
p { line-height: 1.8; }

/* 4. CUSTOM CURSOR */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, background .3s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1px solid rgba(15,14,12,.3);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  mix-blend-mode: multiply;
}
@media (hover: none) {
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* 5. NAV */
nav {
  position: fixed; top: var(--banner-h); left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--cream);
  transition: height .4s, box-shadow .4s;
}
nav.scrolled {
  height: 64px;
  box-shadow: 0 1px 0 rgba(15,14,12,.1);
}
.nav-logo {
  font-family: var(--display); font-size: 1.1rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; flex-shrink: 0;
  z-index: 10; display: flex; align-items: center;
}
.nav-logo-img {
  height: 40px; width: auto; max-width: 160px;
  object-fit: contain; display: block;
  transition: opacity .3s;
}
.nav-logo:hover .nav-logo-img { opacity: .75; }
nav.scrolled .nav-logo-img { height: 32px; }
.nav-center { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: .1rem; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: var(--body); font-size: .83rem;
  color: var(--muted); text-decoration: none;
  padding: .4rem .75rem;
  display: flex; align-items: center; gap: .3rem;
  transition: color .3s; white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--ink); }
.nav-comma { color: var(--muted2); }
.nav-arrow { font-size: .65rem; transition: transform .3s; }
.nav-links > li.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + .5rem); left: 0;
  background: var(--cream);
  border: 1px solid rgba(15,14,12,.1);
  min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 200;
}
.nav-links > li.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block; padding: .75rem 1.25rem;
  font-size: .82rem; color: var(--muted);
  text-decoration: none; border-bottom: 1px solid rgba(15,14,12,.06);
  transition: color .2s, background .2s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--ink); background: var(--cream2); }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-cta {
  font-family: var(--display); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1.5px solid var(--ink); padding-bottom: 1px;
  transition: color .3s, border-color .3s; white-space: nowrap;
}
.nav-cta:hover { color: var(--accent); border-color: var(--accent); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 600; position: relative; flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .25s, width .35s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 85vw);
  background: var(--ink2);
  z-index: 550;
  padding: calc(var(--banner-h) + var(--nav-h) + 1.5rem) 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu ul li { border-bottom: 1px solid rgba(245,240,232,.07); }
.mobile-menu ul li a {
  display: block; padding: 1.1rem 0;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 400;
  color: rgba(245,240,232,.75); text-decoration: none;
  transition: color .3s;
}
.mobile-menu ul li a:hover { color: var(--cream); }
.mobile-menu ul li a.mobile-cta {
  font-family: var(--display); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-top: 1.5rem;
  border-bottom: none; padding-top: 2rem;
}
.mobile-menu ul li.mobile-sep { border-bottom: 1px solid rgba(245,240,232,.15); margin: 1rem 0; }
.menu-overlay {
  position: fixed; inset: 0; background: rgba(15,14,12,.5);
  z-index: 540; opacity: 0; visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
.menu-overlay.open { opacity: 1; visibility: visible; }

/* 6. TOP BANNER */
.site-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 510;
  background: var(--ink); color: var(--cream);
  text-align: center; padding: .55rem 1rem;
  font-family: var(--display); font-size: .68rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.site-banner a { color: var(--accent); text-decoration: none; }
.page-start { padding-top: calc(var(--banner-h) + var(--nav-h)); }

/* 7. BUTTONS */
.btn-bold {
  background: var(--ink); color: var(--cream);
  font-family: var(--display); font-size: .73rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1rem 2.2rem; border: none;
  text-decoration: none; display: inline-block; cursor: pointer;
  transition: background .3s, transform .2s;
}
.btn-bold:hover { background: var(--accent); transform: translateY(-2px); }
.btn-bold.accent { background: var(--accent); }
.btn-bold.accent:hover { background: var(--accent2); }

.btn-outline {
  background: transparent; color: var(--ink);
  font-family: var(--display); font-size: .73rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .95rem 2.2rem; border: 1.5px solid var(--ink);
  text-decoration: none; display: inline-block; cursor: pointer;
  transition: background .3s, color .3s, transform .2s;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

.btn-link {
  font-family: var(--display); font-size: .73rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: color .3s; background: none; border: none; cursor: pointer;
}
.btn-link::after { content: '→'; transition: transform .3s; }
.btn-link:hover { color: var(--ink); }
.btn-link:hover::after { transform: translateX(5px); }
.btn-link.dark { color: rgba(245,240,232,.6); }
.btn-link.dark:hover { color: var(--cream); }

.btn-inv {
  background: var(--cream); color: var(--accent);
  font-family: var(--display); font-size: .73rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1rem 2.2rem; border: none;
  text-decoration: none; display: inline-block; cursor: pointer;
  transition: background .3s, color .3s, transform .2s;
}
.btn-inv:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

.btn-ghost-light {
  background: transparent; color: var(--cream);
  font-family: var(--display); font-size: .73rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .95rem 2.2rem; border: 1px solid rgba(245,240,232,.4);
  text-decoration: none; display: inline-block; cursor: pointer;
  transition: border-color .3s, transform .2s;
}
.btn-ghost-light:hover { border-color: var(--cream); transform: translateY(-2px); }

/* 8. TICKER */
.ticker-wrap {
  border-top: 1px solid rgba(15,14,12,.12);
  border-bottom: 1px solid rgba(15,14,12,.12);
  padding: .9rem 0; overflow: hidden;
  background: var(--ink);
}
.ticker-inner { display: flex; white-space: nowrap; animation: ticker 28s linear infinite; }
.ticker-item {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 3rem;
  font-family: var(--display); font-size: .68rem;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream2); flex-shrink: 0;
}
.ticker-sep { color: var(--accent); }

/* 9. REVEAL ANIMATIONS */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; } .d6 { transition-delay: .6s; }

/* 10. SECTION STRUCTURE */
.s-wrap {
  padding: 8rem 5vw;
  display: grid; grid-template-columns: 220px 1fr;
  gap: 5rem; align-items: start;
}
.s-num {
  font-family: var(--display); font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted2); position: sticky; top: 5rem;
}
.s-num-big {
  display: block; font-family: var(--serif); font-size: 5rem;
  font-weight: 900; line-height: 1;
  color: rgba(15,14,12,.05); margin-bottom: .4rem;
}
.s-num-label { display: block; line-height: 1.5; }

/* Cream-2 bg variant */
.bg-cream2 { background: var(--cream2); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-accent { background: var(--accent); color: var(--cream); }

/* 11. HERO - HOMEPAGE */
.hero {
  min-height: 100vh; padding: calc(var(--banner-h) + var(--nav-h) + 0.5rem) 5vw 8vh;
  display: grid; grid-template-columns: 1.1fr .9fr;
  align-items: end; gap: 5rem; position: relative;
}
.hero-eyebrow {
  font-family: var(--body); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 2rem; margin-top: 0;
  opacity: 0; animation: fadeIn .6s .2s forwards;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(3.5rem, 7.5vw, 7.5rem);
  font-weight: 900; line-height: .95; letter-spacing: -.02em;
  margin-bottom: 2.5rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: block; opacity: 0; transform: translateY(110%);
  animation: wordUp .9s cubic-bezier(.16,1,.3,1) forwards;
}
.l1 span { animation-delay: .3s; }
.l2 span { animation-delay: .45s; }
.l3 span { animation-delay: .6s; }
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1rem; line-height: 1.85; color: var(--muted);
  max-width: 400px; margin-bottom: 3rem;
  opacity: 0; animation: fadeIn .7s 1.1s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  opacity: 0; animation: fadeIn .7s 1.3s forwards;
}
/* Hero right mosaic */
.hero-right {
  opacity: 0; animation: fadeIn .9s .5s forwards;
  display: flex; flex-direction: column; gap: .7rem;
}
.hero-mosaic {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-auto-rows: 170px; gap: .7rem;
}
.h-img {
  background: var(--cream2); border: 1px solid rgba(15,14,12,.08);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: .82rem;
  color: var(--muted2); text-align: center; padding: 1rem;
  position: relative; overflow: hidden; transition: transform .4s;
}
.h-img:hover { transform: scale(.98); }
.h-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.h-img-1 { grid-column: 1 / -1; grid-row: 1; height: 220px; }
.h-img { height: 170px; }
.hero-stat-row {
  display: flex; gap: 3rem; padding-top: 1rem;
  border-top: 1px solid rgba(15,14,12,.1);
}
.h-stat-num {
  font-family: var(--serif); font-size: 2rem;
  font-weight: 900; color: var(--ink); line-height: 1;
}
.h-stat-label {
  font-family: var(--display); font-size: .62rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted2); margin-top: .3rem;
}

/* 12. PAGE HERO (inner pages) */
.page-hero {
  padding: calc(var(--banner-h) + var(--nav-h) + 3rem) 5vw 4rem;
  border-bottom: 1px solid rgba(15,14,12,.1);
}
.page-hero-eyebrow {
  font-family: var(--display); font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted2); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.page-hero-eyebrow a {
  color: var(--muted2); text-decoration: none; transition: color .3s;
}
.page-hero-eyebrow a:hover { color: var(--ink); }
.page-hero-eyebrow .sep { opacity: .5; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900; line-height: 1; letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero-desc {
  font-size: 1rem; color: var(--muted); line-height: 1.9;
  max-width: 600px;
}

/* 13. PRODUCT GRID */
.products-section { padding: 6rem 5vw; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--cream);
  border: 1px solid rgba(15,14,12,.1);
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.product-card:hover {
  border-color: rgba(15,14,12,.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15,14,12,.08);
}
.product-card-img {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: var(--cream2);
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  font-size: .85rem; color: var(--muted2); text-align: center; padding: 1rem;
}
.product-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-card-tag {
  font-family: var(--display); font-size: .62rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .6rem;
}
.product-card h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  margin-bottom: .7rem; line-height: 1.2;
}
.product-card p {
  font-size: .85rem; color: var(--muted); line-height: 1.8;
  flex: 1; margin-bottom: 1.2rem;
}
.product-card-cta {
  font-family: var(--display); font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: .4rem;
  transition: color .3s;
}
.product-card:hover .product-card-cta { color: var(--accent); }
.product-card-cta::after { content: '→'; transition: transform .3s; }
.product-card:hover .product-card-cta::after { transform: translateX(4px); }

/* 14. PRODUCT LIST ROWS (dark bg, homepage) */
.product-list-dark { background: var(--ink); color: var(--cream); padding: 8rem 5vw; }
.product-list-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; flex-wrap: wrap; gap: 2rem; }
.product-list-h { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 900; line-height: 1; letter-spacing: -.02em; }
.product-list-h em { font-style: italic; color: var(--accent); }
.product-list-sub { font-size: .88rem; color: rgba(245,240,232,.45); max-width: 260px; line-height: 1.7; }
.p-rows { display: flex; flex-direction: column; }
.p-row {
  display: grid; grid-template-columns: 55px 1fr auto auto;
  align-items: center; gap: 2.5rem;
  padding: 1.8rem 0; border-bottom: 1px solid rgba(245,240,232,.07);
  cursor: pointer; text-decoration: none; color: var(--cream);
  transition: padding-left .4s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.p-row::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 0; height: 1px; background: var(--accent);
  transform: translateY(-50%);
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.p-row:hover { padding-left: .8rem; }
.p-row:hover::before { width: 1.2rem; }
.p-row:first-child { border-top: 1px solid rgba(245,240,232,.07); }
.p-n { font-family: var(--serif); font-size: .8rem; font-style: italic; color: rgba(245,240,232,.2); }
.p-name { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 700; transition: color .3s; }
.p-row:hover .p-name { color: var(--accent); }
.p-badges { display: flex; gap: .4rem; flex-wrap: wrap; }
.p-badge {
  font-family: var(--display); font-size: .58rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(245,240,232,.35); border: 1px solid rgba(245,240,232,.1);
  padding: .28rem .65rem;
}
.p-arr { font-size: 1.1rem; color: rgba(245,240,232,.18); transition: color .3s, transform .3s; }
.p-row:hover .p-arr { color: var(--accent); transform: translateX(6px); }

/* 15. WHY/FEATURES */
.why-list { display: flex; flex-direction: column; }
.why-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; padding: 2.8rem 0;
  border-bottom: 1px solid rgba(15,14,12,.1);
  align-items: start;
}
.why-item:first-child { border-top: 1px solid rgba(15,14,12,.1); }
.why-left-col { display: flex; align-items: baseline; gap: 1.2rem; }
.why-n { font-family: var(--display); font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--muted2); flex-shrink: 0; }
.why-title { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; line-height: 1.2; }
.why-body { font-size: .87rem; color: var(--muted); line-height: 1.9; }

/* 16. PROCESS */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(15,14,12,.12);
  margin-top: 4rem;
}
.pstep {
  padding: 2.8rem; border-right: 1px solid rgba(15,14,12,.12);
  position: relative; transition: background .35s, color .35s;
}
.pstep:last-child { border-right: none; }
.pstep:hover { background: var(--ink); color: var(--cream); }
.pstep:hover .pstep-body { color: rgba(245,240,232,.45); }
.pstep-n { font-family: var(--serif); font-size: 4.5rem; font-weight: 900; line-height: 1; color: rgba(15,14,12,.07); margin-bottom: 1.5rem; transition: color .35s; }
.pstep:hover .pstep-n { color: rgba(245,240,232,.07); }
.pstep-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.pstep-body { font-size: .82rem; color: var(--muted); line-height: 1.8; transition: color .35s; }

/* 17. TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(245,240,232,.05); }
.t-card { background: var(--ink); padding: 3rem; transition: background .35s; }
.t-card:hover { background: rgba(245,240,232,.03); }
.t-q { font-family: var(--serif); font-size: 5rem; font-weight: 900; font-style: italic; line-height: .7; color: var(--accent); display: block; margin-bottom: 2rem; }
.t-text { font-family: var(--serif); font-size: 1rem; font-style: italic; line-height: 1.9; color: rgba(245,240,232,.65); margin-bottom: 2.5rem; }
.t-author { display: flex; align-items: center; gap: 1rem; }
.t-av { width: 2.4rem; height: 2.4rem; border-radius: 50%; background: rgba(245,240,232,.07); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: .72rem; font-weight: 700; color: var(--cream2); flex-shrink: 0; }
.t-name { font-family: var(--display); font-size: .75rem; font-weight: 700; letter-spacing: .04em; margin-bottom: .15rem; }
.t-co { font-size: .73rem; color: rgba(245,240,232,.3); }
.t-stars { display: flex; gap: 2px; margin-top: .6rem; }
.t-star { color: var(--accent); font-size: .68rem; }

/* 18. STATEMENT SECTION */
.s-statement { padding: 8rem 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }
.stmt-big { font-family: var(--serif); font-size: clamp(2rem,4.5vw,4.2rem); font-weight: 900; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 3rem; }
.stmt-big em { font-style: italic; color: var(--accent); }
.stmt-body { font-size: .93rem; line-height: 1.9; color: var(--muted); margin-bottom: 2rem; }
.stmt-list { display: flex; flex-direction: column; margin-bottom: 3rem; }
.sl-row { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(15,14,12,.1); font-family: var(--display); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); transition: color .3s; }
.sl-row:first-child { border-top: 1px solid rgba(15,14,12,.1); }
.sl-row:hover { color: var(--ink); }
.sl-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* 19. CTA SECTION */
.s-cta { background: var(--accent); color: var(--cream); padding: 10rem 5vw; text-align: center; position: relative; overflow: hidden; }
.cta-ghost { position: absolute; font-family: var(--serif); font-size: 22vw; font-weight: 900; color: rgba(245,240,232,.06); top: 50%; left: 50%; transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none; letter-spacing: -.04em; line-height: 1; }
.cta-ey { font-family: var(--display); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 2rem; opacity: .7; }
.cta-h { font-family: var(--serif); font-size: clamp(2.5rem,6vw,6.5rem); font-weight: 900; line-height: 1; letter-spacing: -.02em; margin-bottom: 2rem; position: relative; }
.cta-sub { font-size: 1rem; opacity: .75; max-width: 420px; margin: 0 auto 3.5rem; line-height: 1.8; position: relative; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* 20. TAGS */
.tags-wrap { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 3rem; }
.tag {
  font-family: var(--display); font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid rgba(15,14,12,.14); padding: .55rem 1.1rem;
  color: var(--muted); transition: border-color .3s, color .3s; cursor: default;
}
.tag:hover { border-color: var(--accent); color: var(--accent); }

/* 21. SECTION HEADLINES */
.s-headline {
  font-family: var(--serif); font-size: clamp(2rem,4vw,3.8rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -.01em; margin-bottom: 3rem;
}
.s-headline em { font-style: italic; color: var(--accent); }
.s-headline.uppercase { text-transform: uppercase; }
.s-intro { font-size: .93rem; color: var(--muted); line-height: 1.9; max-width: 500px; margin-bottom: 4rem; }

/* 22. FOOTER */
footer { background: var(--ink2); color: var(--cream); padding: 6rem 5vw 3rem; }
.footer-inner {}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(245,240,232,.07); margin-bottom: 2.5rem; }
.footer-logo { font-family: var(--display); font-size: 1.2rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-tagline { font-size: .83rem; color: rgba(245,240,232,.38); line-height: 1.8; max-width: 260px; margin-bottom: 1.5rem; margin-top: 0; }
.footer-social { font-family: var(--display); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); text-decoration: none; transition: opacity .3s; }
.footer-social:hover { opacity: .7; }
.footer-col-h { font-family: var(--display); font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(245,240,232,.28); margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { font-size: .83rem; color: rgba(245,240,232,.55); text-decoration: none; transition: color .3s; }
.footer-links a:hover { color: var(--cream); }
.footer-links .note { font-size: .75rem; color: rgba(245,240,232,.25); cursor: default; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-family: var(--display); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(245,240,232,.2); flex-wrap: wrap; gap: 1rem; }

/* 23. FORMS */
.form-section { padding: 6rem 5vw; }
.form-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 8rem; align-items: start; }
.form-info {}
.form-info-title { font-family: var(--serif); font-size: clamp(2rem,4vw,3.5rem); font-weight: 900; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 1.5rem; }
.form-info-title em { font-style: italic; color: var(--accent); }
.form-info-desc { font-size: .93rem; color: var(--muted); line-height: 1.9; margin-bottom: 3rem; }
.form-contact-items { display: flex; flex-direction: column; gap: 0; }
.fci { display: flex; flex-direction: column; padding: 1.5rem 0; border-bottom: 1px solid rgba(15,14,12,.1); }
.fci:first-child { border-top: 1px solid rgba(15,14,12,.1); }
.fci-label { font-family: var(--display); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--muted2); margin-bottom: .4rem; }
.fci-value { font-size: .93rem; color: var(--ink); }
.fci-value a { color: var(--ink); text-decoration: none; transition: color .3s; }
.fci-value a:hover { color: var(--accent); }
.fci-note { font-size: .78rem; color: var(--muted2); margin-top: .2rem; }

/* Form fields */
.form-wrap { background: var(--cream2); padding: 3rem; }
.form-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-group label { font-family: var(--display); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream); border: 1px solid rgba(15,14,12,.15);
  padding: .85rem 1rem; font-size: .9rem; font-family: var(--body);
  color: var(--ink); outline: none;
  transition: border-color .3s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ink); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7469' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-required { color: var(--accent); }
.form-submit { width: 100%; padding: 1.1rem; font-size: .78rem; margin-top: .5rem; }
.form-success { background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.2); padding: 2rem; text-align: center; }
.form-success-icon { font-size: 2rem; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: .8rem; }
.form-success p { font-size: .9rem; color: var(--muted); }
.form-error { background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.3); padding: 1rem 1.2rem; font-size: .85rem; color: var(--accent); margin-top: 1rem; display: none; }

/* Checkbox group */
.checkbox-group { display: flex; flex-direction: column; gap: .6rem; }
.checkbox-item { display: flex; align-items: center; gap: .75rem; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; flex-shrink: 0; }
.checkbox-item span { font-size: .88rem; color: var(--muted); }

/* 24. FAQ */
.faq-section { padding: 8rem 5vw; }
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; margin-top: 4rem; }
.faq-list {}
.faq-item { border-bottom: 1px solid rgba(15,14,12,.1); overflow: hidden; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; cursor: pointer;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
  transition: color .3s; gap: 1rem;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 1.5rem; height: 1.5rem; flex-shrink: 0;
  border: 1px solid rgba(15,14,12,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--accent);
  transition: transform .35s, background .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(192,57,43,.08); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s cubic-bezier(.16,1,.3,1);
  font-size: .88rem; color: var(--muted); line-height: 1.9;
}
.faq-a-inner { padding-bottom: 1.5rem; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-aside { padding: 3rem; border: 1px solid rgba(15,14,12,.12); background: var(--cream2); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; align-self: start; }
.faq-aside-title { font-family: var(--serif); font-size: 2rem; font-weight: 300; margin-bottom: 1rem; line-height: 1.3; }
.faq-aside-title em { font-style: italic; color: var(--accent); font-weight: 400; }
.faq-aside-text { font-size: .88rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }

/* 25. ABOUT PAGE */
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(15,14,12,.1); margin-top: 4rem; }
.av-item { background: var(--cream); padding: 2.5rem; transition: background .3s; }
.av-item:hover { background: var(--cream2); }
.av-num { font-family: var(--serif); font-size: 3rem; font-weight: 900; color: rgba(15,14,12,.06); line-height: 1; margin-bottom: 1.2rem; }
.av-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; margin-bottom: .8rem; }
.av-body { font-size: .87rem; color: var(--muted); line-height: 1.9; }

/* 26. ALL PRODUCTS PAGE */
.products-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  font-family: var(--display); font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid rgba(15,14,12,.15); padding: .55rem 1.2rem;
  background: none; color: var(--muted); cursor: pointer;
  transition: border-color .3s, color .3s, background .3s;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--ink); color: var(--ink); background: var(--ink); color: var(--cream); }

/* 27. KEYFRAMES */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes wordUp { from { opacity:0; transform: translateY(110%); } to { opacity:1; transform: translateY(0); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* 29. INSTAGRAM CAROUSEL */
.ig-section {
  padding: 7rem 5vw;
  background: var(--cream2);
  border-top: 1px solid rgba(15,14,12,.08);
}
.ig-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem;
}
.ig-header-left { display: flex; flex-direction: column; gap: .5rem; }
.ig-handle {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--display); font-size: 1.1rem; font-weight: 800;
  letter-spacing: .04em; color: var(--ink); text-decoration: none;
  transition: color .3s;
}
.ig-handle:hover { color: var(--accent); }
.ig-icon { display: flex; color: var(--accent); }
.ig-widget-wrap {
  width: 100%;
  min-height: 300px;
}
.ig-widget-wrap iframe {
  display: block;
  min-height: 300px;
}
.ig-label {
  font-family: var(--display); font-size: .65rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--muted2);
}
.ig-track-wrap {
  position: relative; overflow: hidden;
}
.ig-track {
  display: flex; gap: 1rem;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.ig-item {
  flex: 0 0 calc(20% - .8rem);
  text-decoration: none;
}
.ig-img-wrap {
  position: relative; aspect-ratio: 1 / 1;
  overflow: hidden; background: var(--cream3);
}
.ig-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
  display: block;
}
.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(15,14,12,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); opacity: 0;
  transition: opacity .3s;
}
.ig-item:hover .ig-img-wrap img { transform: scale(1.05); }
.ig-item:hover .ig-overlay { opacity: 1; }
.ig-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.5rem; height: 2.5rem;
  background: var(--cream); border: 1px solid rgba(15,14,12,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: background .3s, color .3s;
  color: var(--ink);
}
.ig-arrow:hover { background: var(--ink); color: var(--cream); }
.ig-arrow-prev { left: .5rem; }
.ig-arrow-next { right: .5rem; }
.ig-arrow.hidden { opacity: 0; pointer-events: none; }
.ig-dots {
  display: flex; gap: .5rem; justify-content: center; margin-top: 1.5rem;
}
.ig-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(15,14,12,.18); border: none; cursor: pointer;
  transition: background .3s, transform .3s; padding: 0;
}
.ig-dot.active { background: var(--ink); transform: scale(1.4); }
@media (max-width: 900px) {
  .ig-item { flex: 0 0 calc(33.33% - .7rem); }
}
@media (max-width: 600px) {
  .ig-item { flex: 0 0 calc(50% - .5rem); }
  .ig-arrow { display: none; }
}

/* 30. PRODUCT DETAIL PAGE */
.product-detail { padding: 5rem 5vw; }
.pd-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.pd-gallery { position: sticky; top: calc(var(--banner-h) + var(--nav-h) + 2rem); }
.pd-main-img {
  aspect-ratio: 1 / 1; background: var(--cream2);
  overflow: hidden; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumbs { display: flex; gap: .6rem; flex-wrap: wrap; }
.pd-thumb {
  width: 72px; height: 72px; background: var(--cream2);
  border: 2px solid transparent; cursor: pointer;
  overflow: hidden; transition: border-color .2s;
  flex-shrink: 0;
}
.pd-thumb.active { border-color: var(--ink); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-info {}
.pd-breadcrumb {
  font-family: var(--display); font-size: .65rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--muted2);
  margin-bottom: 1.5rem; display: flex; gap: .5rem; align-items: center;
}
.pd-breadcrumb a { color: var(--muted2); text-decoration: none; transition: color .3s; }
.pd-breadcrumb a:hover { color: var(--ink); }
.pd-title {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 1rem;
}
.pd-title em { font-style: italic; color: var(--accent); }
.pd-tagline {
  font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem;
  font-style: italic;
}
.pd-desc { font-size: .93rem; color: var(--muted); line-height: 1.9; margin-bottom: 2.5rem; }
.pd-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 2.5rem;
}
.pd-feature {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
}
.pd-feature::before { content: '✦'; color: var(--accent); font-size: .6rem; flex-shrink: 0; }
.pd-actions { display: flex; flex-direction: column; gap: 1rem; }
.pd-actions .btn-bold { text-align: center; }
.pd-actions .btn-outline { text-align: center; }
.pd-sections { padding: 5rem 5vw; background: var(--cream2); }
.pd-section { max-width: 860px; margin: 0 auto; }
.pd-section + .pd-section { margin-top: 4rem; padding-top: 4rem; border-top: 1px solid rgba(15,14,12,.1); }
.pd-section-title {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 700; margin-bottom: 1.2rem;
}
.pd-section-title em { font-style: italic; color: var(--accent); }
.pd-section p { font-size: .93rem; color: var(--muted); line-height: 1.9; }
@media (max-width: 900px) {
  .pd-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pd-gallery { position: static; }
}

/* 31. POLICY PAGES */
.policy-content { padding: 5rem 5vw 8rem; max-width: 820px; }
.policy-content h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; margin: 2.5rem 0 1rem; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p, .policy-content li { font-size: .93rem; color: var(--muted); line-height: 1.9; margin-bottom: .8rem; }
.policy-content ul { padding-left: 1.5rem; list-style: disc; }
.policy-content a { color: var(--accent); text-decoration: none; }
.policy-content a:hover { text-decoration: underline; }

/* 32. BLOG PAGE */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; padding: 5rem 5vw; }
.blog-card { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; }
.blog-card-img { aspect-ratio: 16/9; background: var(--cream2); overflow: hidden; margin-bottom: 1.2rem; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-tag { font-family: var(--display); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.blog-card-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; line-height: 1.2; margin-bottom: .7rem; }
.blog-card-excerpt { font-size: .85rem; color: var(--muted); line-height: 1.8; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* PAYMENT LOGOS */
.payment-logos { display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; }
.pay-logo-img {
  height: 28px; width: auto; border-radius: 3px;
  opacity: .85; transition: opacity .2s;
}
.pay-logo-img:hover { opacity: 1; }
.pay-logo {
  background: rgba(245,240,232,.08); border: 1px solid rgba(245,240,232,.15);
  border-radius: 3px; padding: .35rem .7rem;
  font-family: var(--display); font-size: .58rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; color: rgba(245,240,232,.55);
  min-width: 44px; justify-content: center;
}

/* 28. RESPONSIVE */

/* Tablet */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .hero { grid-template-columns: 1fr; gap: 0; }
  .hero-right { display: none; }
  .s-statement { grid-template-columns: 1fr; gap: 4rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .pstep:nth-child(2) { border-right: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; gap: 4rem; }
  .faq-layout { grid-template-columns: 1fr; gap: 4rem; }
}

/* Small tablet */
@media (max-width: 900px) {
  .s-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .s-num { position: static; display: flex; align-items: center; gap: 1.5rem; }
  .s-num-big { display: none; }
  .why-item { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-values { grid-template-columns: 1fr; }
  .nav-center { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* Mobile */
@media (max-width: 700px) {
  :root { --nav-h: 64px; --banner-h: 32px; }
  nav { padding: 0 5vw; }
  .products-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .pstep { border-right: none; border-bottom: 1px solid rgba(15,14,12,.12); }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-tagline { max-width: 100%; }
  .s-wrap { padding: 5rem 5vw; }
  .page-hero { padding: calc(var(--banner-h) + var(--nav-h) + 2rem) 5vw 3rem; }
  .products-section { padding: 4rem 5vw; }
  .product-list-dark { padding: 5rem 5vw; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 2rem; }
  .form-layout { gap: 3rem; }
  .p-badges { display: none; }
  .p-row { grid-template-columns: 40px 1fr auto; gap: 1.5rem; }
  .s-statement { padding: 5rem 5vw; gap: 3rem; }
  .s-cta { padding: 6rem 5vw; }
  .hero { padding: calc(var(--banner-h) + var(--nav-h) + 1rem) 5vw 4vh; }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero-title { font-size: clamp(2.5rem, 13vw, 4rem); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}
