/* ============================================================
   SILKSLIDE — STYLESHEET v2
   Modern DTC brand aesthetic. Mobile-first. No frameworks.
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --black:     #111111;
  --charcoal:  #1C1C1C;
  --gold:      #C6A975;
  --gold-lt:   #D4BC8E;
  --gold-pale: rgba(198,169,117,0.12);
  --white:     #FFFFFF;
  --off-white: #F7F7F7;
  --light:     #EFEFEF;
  --muted:     #888888;
  --border:    #E5E5E5;
  --border-dark: rgba(255,255,255,0.1);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  --transition: 0.2s ease;
  --transition-md: 0.35s ease;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select { font-family: inherit; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ---- Typography ---- */
h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
}
p { line-height: 1.7; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.text-white { color: var(--white); }

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 10px 20px;
  overflow: hidden;
  white-space: nowrap;
}
.announcement-bar a { color: var(--gold); text-decoration: underline; margin-left: 4px; }

/* Ticker/marquee */
.ticker-wrap {
  overflow: hidden;
  width: 100%;
}
.ticker {
  display: inline-flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  padding: 0 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker { animation: none; }
}

/* ---- Navigation ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .nav-inner { padding: 0 40px; } }

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--black);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  color: var(--charcoal);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 20px 1.5rem;
  gap: 0;
}
.mobile-menu.open { display: flex; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-menu a {
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn-primary { margin-top: 1rem; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--black);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-lt);
  box-shadow: 0 6px 20px rgba(198,169,117,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  box-shadow: none;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: none;
}

.btn-lg {
  font-size: 1rem;
  padding: 1.1rem 2.5rem;
}

.btn-full { width: 100%; }

/* ---- Hero ---- */
.hero {
  background: var(--black);
  min-height: 95svh;
  min-height: 95vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1fr 1fr; min-height: 85vh; }
}

.hero-content {
  padding: 5rem 20px 3rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) { .hero-content { padding: 5rem 40px 5rem; } }
@media (min-width: 900px) { .hero-content { padding: 5rem 40px 5rem 60px; max-width: 640px; } }

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.hero-trust-item svg {
  width: 14px; height: 14px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 320px;
  overflow: hidden;
}
@media (max-width: 899px) {
  .hero-visual { margin: 0 20px 3rem; border-radius: var(--radius-lg); min-height: 260px; }
}
@media (min-width: 900px) { .hero-visual { min-height: 100%; border-radius: 0; } }

.hero-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  min-height: 320px;
}
.hero-half {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: #2a2a2a;
  overflow: hidden;
}
.hero-half:first-child { border-right: 1px solid rgba(255,255,255,0.08); }
.hero-half img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.hero-half-label {
  position: relative;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: var(--white);
  width: fit-content;
}
.hero-half-label.after { background: var(--gold); color: var(--black); }

/* ---- Trust Strip ---- */
.trust-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
@media (min-width: 768px) { .trust-strip-inner { padding: 0 40px; } }
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  padding: 14px 1.25rem;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.trust-strip-item:last-child { border-right: none; }
.trust-strip-item svg {
  width: 16px; height: 16px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---- Section Layouts ---- */
.section { padding: 5rem 20px; }
@media (min-width: 768px) { .section { padding: 6rem 40px; } }

.section-dark { background: var(--black); color: var(--white); }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .eyebrow::before { background: var(--gold); }
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.6); }

.section-light { background: var(--white); }
.section-gray { background: var(--off-white); }

.section-header {
  max-width: 680px;
  margin-bottom: 3rem;
}
.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header.centered .eyebrow { justify-content: center; }
.section-header.centered .eyebrow::before { display: none; }
.section-header.centered::after {
  display: block;
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 0;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1rem; color: var(--muted); line-height: 1.7; }
.section-dark .section-header p { color: rgba(255,255,255,0.55); }

/* ---- Problem Section ---- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 640px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }

.problem-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background var(--transition);
}
.problem-card:hover { background: var(--off-white); }

.problem-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.25rem;
}
.problem-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.problem-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ---- Fix / Feature Cards ---- */
.fix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .fix-grid { grid-template-columns: 1fr 1fr; } }

.fix-card {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.fix-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.fix-card .eyebrow { color: rgba(198,169,117,0.7); margin-bottom: 0.75rem; }
.fix-card .eyebrow::before { background: rgba(198,169,117,0.4); }
.fix-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.fix-card p { color: rgba(255,255,255,0.55); font-size: 0.95rem; }

/* ---- How It Works ---- */
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 640px) { .hiw-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.hiw-step { display: flex; flex-direction: column; gap: 1rem; }

.hiw-step-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.hiw-step-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hiw-step-img-wrap .placeholder-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--muted);
}

.hiw-step-num {
  position: absolute; top: 12px; left: 12px;
  width: 32px; height: 32px;
  background: var(--black); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  z-index: 1;
}

.hiw-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--black); }
.hiw-step p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

.hiw-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--gold); font-size: 0.875rem; font-weight: 600;
  transition: gap var(--transition);
}
.hiw-link:hover { gap: 0.6rem; }

/* ---- Pricing Cards ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: box-shadow var(--transition-md), transform var(--transition-md), border-color var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.pricing-card.featured {
  border-color: var(--black);
  border-width: 2px;
}

.pricing-badge {
  position: absolute; top: -13px; left: 1.5rem;
  background: var(--black); color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
}

.pricing-name { font-size: 1rem; font-weight: 700; color: var(--black); }
.pricing-clips { font-size: 0.8rem; color: var(--muted); }

.pricing-price {
  display: flex; align-items: baseline; gap: 2px;
}
.pricing-price .currency { font-size: 1.25rem; font-weight: 600; color: var(--black); }
.pricing-price .amount { font-size: 2.75rem; font-weight: 700; color: var(--black); line-height: 1; }

.pricing-use { font-size: 0.875rem; color: var(--muted); line-height: 1.6; flex: 1; }
.pricing-note {
  font-size: 0.75rem; color: var(--muted);
  text-align: center; margin-top: 1.5rem;
  letter-spacing: 0.02em;
}

/* ---- Review Cards ---- */
.review-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow var(--transition-md);
}
.review-card:hover { box-shadow: var(--shadow-md); }

.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 14px; height: 14px; fill: var(--gold); }
.review-text { font-size: 0.9rem; color: var(--charcoal); line-height: 1.75; flex: 1; }
.review-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--muted);
  flex-shrink: 0; overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-size: 0.825rem; font-weight: 700; color: var(--black); }
.review-location { font-size: 0.75rem; color: var(--muted); }

.stars-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem;
}
.stars-header .stars { display: flex; gap: 3px; }
.stars-header .stars svg { width: 18px; height: 18px; fill: var(--gold); }
.stars-header span { font-size: 0.875rem; color: var(--muted); }

/* ---- Final CTA ---- */
.section-cta {
  background: var(--black);
  text-align: center;
  padding: 6rem 20px;
}
@media (min-width: 768px) { .section-cta { padding: 8rem 40px; } }
.section-cta h2 { color: var(--white); margin-bottom: 1rem; }
.section-cta p { color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto 2rem; }
.section-cta .cta-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

.trust-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem 2rem; margin-top: 2.5rem;
}
.trust-badge {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.4); letter-spacing: 0.04em;
}
.trust-badge svg {
  width: 14px; height: 14px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---- Footer ---- */
.site-footer {
  background: #0A0A0A;
  color: rgba(255,255,255,0.45);
  padding: 5rem 20px 2rem;
}
@media (min-width: 768px) { .site-footer { padding: 5rem 40px 2rem; } }

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 1.75fr 1fr 1fr; } }

.footer-logo {
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: -0.04em; color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.8rem; line-height: 1.7; max-width: 280px; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.footer-social a:hover { border-color: var(--gold); background: var(--gold-pale); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); }

.footer-col h4 {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: flex-start; padding-top: 2rem;
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 5rem 20px 4rem;
  text-align: center;
}
@media (min-width: 768px) { .page-hero { padding: 6rem 40px 5rem; } }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.hiw-full-steps { max-width: 800px; margin: 0 auto; }
.hiw-full-step {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
@media (min-width: 640px) {
  .hiw-full-step { grid-template-columns: 1fr 1fr; }
  .hiw-full-step:nth-child(even) .hiw-step-text { order: -1; }
}
.hiw-full-step:last-child { border-bottom: none; }

.hiw-step-media {
  width: 100%; aspect-ratio: 4/3;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--muted);
  overflow: hidden; position: relative;
}
.hiw-step-media img { width: 100%; height: 100%; object-fit: cover; }

.step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--black); color: var(--white);
  font-size: 1.1rem; font-weight: 700; border-radius: 50%;
  margin-bottom: 1rem;
}
.hiw-step-text h3 { font-size: 1.5rem; font-weight: 700; color: var(--black); margin-bottom: 0.75rem; }
.hiw-step-text p { color: var(--muted); font-size: 0.95rem; }
.hiw-step-text p + p { margin-top: 0.75rem; }

/* Compatibility ---- */
.compat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; max-width: 680px; margin: 2.5rem auto 0;
}
.compat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.compat-card.yes { border-top: 3px solid var(--gold); }
.compat-card h3 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.compat-card.yes h3 { color: var(--gold); }
.compat-card.no h3 { color: var(--muted); }
.compat-list { display: flex; flex-direction: column; gap: 0.5rem; }
.compat-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; color: var(--charcoal); line-height: 1.5;
}
.compat-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.compat-item.yes svg { stroke: var(--gold); }
.compat-item.no svg { stroke: var(--muted); }

/* ---- FAQ ---- */
.faq-section { background: var(--off-white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 0; text-align: left;
  font-size: 1rem; font-weight: 600; color: var(--black);
  background: none; border: none; cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background var(--transition), border-color var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--charcoal); fill: none; stroke-width: 2.5; stroke-linecap: round; transition: stroke var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--black); border-color: var(--black); }
.faq-item.open .faq-icon svg { stroke: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding-bottom: 1.25rem; font-size: 0.925rem; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-hero {
  background: var(--off-white);
  padding: 3rem 20px 2.5rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .shop-hero { padding: 3.5rem 40px 3rem; } }
.shop-hero h1 { color: var(--black); margin-bottom: 0.5rem; }
.shop-hero p { color: var(--muted); }

.shop-main { padding: 3rem 20px 4rem; }
@media (min-width: 768px) { .shop-main { padding: 4rem 40px 5rem; } }
.shop-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 900px) { .shop-grid { grid-template-columns: 1fr 1fr; } }

.product-gallery {}
.product-main-img {
  width: 100%; aspect-ratio: 1;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--muted);
  margin-bottom: 0.75rem;
  border: 1.5px solid var(--border);
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 0.5rem; }
.product-thumb {
  width: 70px; height: 70px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  overflow: hidden; cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--muted);
  transition: border-color var(--transition);
}
.product-thumb:hover, .product-thumb.active { border-color: var(--black); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-details {}
.product-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.5rem;
}
.product-details h1 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 0.75rem; }

.product-rating {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem;
}
.product-rating .stars { display: flex; gap: 2px; }
.product-rating .stars svg { width: 13px; height: 13px; fill: var(--gold); }
.product-rating span { font-size: 0.8rem; color: var(--muted); }

.product-price-display {
  font-size: 2.25rem; font-weight: 700; color: var(--black);
  margin-bottom: 0.25rem; line-height: 1;
}
.product-shipping { font-size: 0.775rem; color: var(--muted); }

.selector-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--black); margin-bottom: 0.6rem;
}
.selector-group { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.selector-btn {
  padding: 0.6rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.825rem; font-weight: 600; color: var(--charcoal);
  background: var(--white); cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  text-align: center; line-height: 1.4;
}
.selector-btn:hover { border-color: var(--black); }
.selector-btn.active { border-color: var(--black); background: var(--black); color: var(--white); }

.quantity-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.qty-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.qty-control {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: var(--radius-pill); overflow: hidden;
}
.qty-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--black);
  background: var(--white); border: none; cursor: pointer;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--off-white); }
.qty-input {
  width: 44px; text-align: center; font-size: 0.95rem; font-weight: 600;
  border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border);
  padding: 0.25rem; background: var(--white); color: var(--black);
}

.add-to-cart-btn {
  width: 100%;
  background: var(--black); color: var(--white);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 1.1rem; border-radius: var(--radius-pill); border: none; cursor: pointer;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
  margin-bottom: 0.75rem;
}
.add-to-cart-btn:hover { background: var(--charcoal); transform: translateY(-1px); }
.add-to-cart-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.product-features { margin-top: 1.75rem; border-top: 1px solid var(--border); padding-top: 1.75rem; }
.product-features h3 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--black); margin-bottom: 1rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: var(--charcoal); line-height: 1.5;
}
.feature-list li::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C6A975' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

.shop-below { padding: 4rem 20px; background: var(--white); }
@media (min-width: 768px) { .shop-below { padding: 5rem 40px; } }
.shop-below-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 768px) { .shop-below-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-content {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  max-width: 900px; margin: 0 auto;
  align-items: start;
}
@media (min-width: 640px) { .about-story-content { grid-template-columns: 1fr 1fr; } }

.about-founder-img {
  width: 100%; aspect-ratio: 3/4;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.8rem; overflow: hidden;
}
.about-founder-img img { width: 100%; height: 100%; object-fit: cover; }

.about-text { display: flex; flex-direction: column; gap: 1rem; }
.about-text .lede {
  font-size: 1.15rem; font-family: 'Lora', serif;
  font-style: italic; line-height: 1.7; color: var(--black);
  border-left: 3px solid var(--gold); padding-left: 1.25rem;
}
.about-text p { font-size: 0.95rem; color: var(--charcoal); line-height: 1.85; }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.08);
  max-width: 640px; margin: 3rem auto 0;
  border-radius: var(--radius-lg); overflow: hidden;
}
.about-stat {
  background: rgba(255,255,255,0.04);
  padding: 2rem; text-align: center;
}
.about-stat .num { font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.about-stat .desc { font-size: 0.775rem; color: rgba(255,255,255,0.45); margin-top: 0.25rem; }

.values-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; border: 1.5px solid var(--border);
  transition: box-shadow var(--transition-md);
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--black); }
.value-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 3rem; }
.mb-md { margin-bottom: 1.5rem; }

/* Scroll fade */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Nav-aware page padding */
.has-announcement body { padding-top: 0; }

/* ============================================================
   CART DRAWER
   ============================================================ */

/* Body lock when drawer open */
body.cart-open { overflow: hidden; }

/* Nav cart icon */
.cart-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  flex-shrink: 0;
}
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--gold);
  color: var(--black);
  font-size: .6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: inherit;
}

/* Overlay backdrop */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 500;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Drawer panel */
.cart-drawer {
  background: var(--white);
  width: 100%;
  max-width: 400px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: -4px 0 40px rgba(0,0,0,0.12);
}
.cart-overlay.open .cart-drawer {
  transform: translateX(0);
}

/* Header */
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer-title {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.cart-drawer-count {
  background: var(--black);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  padding: .35rem;
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.cart-close:hover { background: var(--off-white); }

/* Body */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Empty state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  color: var(--muted);
  text-align: center;
  font-size: .9rem;
}
.cart-empty-cta {
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: .75rem 2rem;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity var(--transition);
}
.cart-empty-cta:hover { opacity: .8; }

/* Line items */
.cart-line {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.cart-line:last-of-type { border-bottom: none; padding-bottom: 0; }
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-line-meta {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: .3rem;
}
.cart-line-price {
  font-size: .875rem;
  font-weight: 700;
  color: var(--black);
}
.cart-line-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: .25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: .2rem .4rem;
}
.cart-qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .95rem;
  color: var(--black);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  border-radius: 50%;
  transition: background var(--transition);
}
.cart-qty-btn:hover { background: var(--off-white); }
.cart-qty-num {
  font-size: .8rem;
  font-weight: 600;
  min-width: 18px;
  text-align: center;
}
.cart-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .25rem;
  border-radius: 4px;
  transition: color var(--transition);
}
.cart-remove:hover { color: var(--black); }

/* Footer */
.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex-shrink: 0;
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .95rem;
  font-weight: 600;
}
.cart-subtotal-amt { font-weight: 700; }
.cart-footer-note {
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
}
.cart-continue-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
  font-family: inherit;
  text-decoration: underline;
  padding: .25rem;
  transition: color var(--transition);
}
.cart-continue-btn:hover { color: var(--black); }

/* ============================================================
   CLIPS CANVAS (Three.js multi-clip visualiser)
   ============================================================ */

#clips-canvas {
  display: block;
  width: 100%;
  height: 480px;
  /* No background, no border — transparent over page */
}

@media (max-width: 480px) {
  #clips-canvas { height: 320px; }
}

/* ============================================================
   DEMO CANVAS (how-it-works Three.js demo)
   ============================================================ */

.demo-section .section-header { margin-bottom: 2rem; }

.demo-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

#demo-root {
  display: block;
  width: 100%;
  height: 560px;
  cursor: grab;
  touch-action: none;   /* let OrbitControls capture touch */
  background: linear-gradient(180deg, #f7f4ee 0%, #efeae0 100%);
  border-radius: 12px;
  overflow: hidden;
}
#demo-root:active { cursor: grabbing; }
#demo-root canvas { display: block; width: 100% !important; height: 100% !important; }

.demo-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(17, 17, 17, 0.82);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
}
.demo-hint.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 640px) {
  #demo-root { height: 380px; }
  .demo-hint { font-size: 0.72rem; padding: 0.45rem 0.85rem; }
}
