/* =============================================
   SYMMET DESIGN SYSTEM — CSS
   Colors: #FCFBF1 bone | #1B2538 navy | #405B72 slate | #F3F0E4 cream
   Fonts: Neue Machina (display) | Forum (serif body) | Space Grotesk (UI)
============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #FCFBF1;
  color: #1B2538;
  font-family: 'Forum', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: #405B72; text-decoration: none; }
a:hover { color: #1B2538; }
::selection { background: #405B72; color: #FCFBF1; }
input, button, textarea { font-family: inherit; }
input:focus { outline: none; }
input::placeholder { color: rgba(27,37,56,.4); }
img { display: block; max-width: 100%; }

/* ---- CUSTOM FONTS ---- */
@font-face {
  font-family: 'Neue Machina';
  src: url('assets/fonts/NeueMachina-Ultrabold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Forum Local';
  src: url('assets/fonts/Forum-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

/* ---- ANIMATIONS ---- */
@keyframes symMarkIn {
  0%   { opacity: 0; transform: scale(.9); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes symKicker {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes symPageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes symDrawerIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes symScrimIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes symToast {
  0%   { opacity: 0; transform: translate(-50%, 12px); }
  12%  { opacity: 1; transform: translate(-50%, 0); }
  88%  { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}
@keyframes symHeroText {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- SPLASH ---- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #FCFBF1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .7s ease, visibility .7s ease;
}
.splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.splash video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splash-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
}
.splash-mark {
  width: min(38vw, 360px);
  height: auto;
  animation: symMarkIn 1.6s cubic-bezier(.22,.61,.36,1) both;
}
.splash-wordmark {
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .42em;
  text-transform: lowercase;
  color: #1B2538;
  padding-left: .42em;
  opacity: 0;
  animation: symKicker .9s ease 1s both;
}
.skip-btn {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 2;
  background: rgba(27,37,56,.45);
  color: #FCFBF1;
  border: none;
  border-radius: 9999px;
  padding: 10px 20px;
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: .02em;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .3s ease;
}
.skip-btn:hover { background: rgba(27,37,56,.75); }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 16px;
}
.nav-pill {
  position: relative;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(252,251,241,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(27,37,56,.1);
  border-radius: 9999px;
  padding: 8px 8px 8px 12px;
  box-shadow: 0 8px 32px rgba(27,37,56,.16);
  transition: padding .4s ease, box-shadow .4s ease;
  max-width: calc(100vw - 32px);
  overflow: hidden;
}
.nav-pill.scrolled {
  padding: 6px 6px 6px 10px;
  box-shadow: 0 14px 48px rgba(27,37,56,.14);
}
.nav-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: rgba(27,37,56,.08);
  border-radius: 9999px;
}
.nav-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: #405B72;
  transition: width .1s linear;
  border-radius: 9999px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 8px 2px 4px;
  text-decoration: none;
}
.nav-mark { width: 34px; height: auto; }
.nav-name {
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .02em;
  color: #1B2538;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 4px;
}
.nav-link {
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1B2538;
  padding: 9px 15px;
  border-radius: 9999px;
  transition: background .25s ease;
  text-decoration: none;
}
.nav-link:hover { background: rgba(27,37,56,.06); }
.nav-actions { display: flex; align-items: center; gap: 6px; }
.nav-icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  border: 1px solid rgba(27,37,56,.14);
  background: #FCFBF1;
  color: #1B2538;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .3s ease;
}
.nav-icon-btn:hover { transform: scale(1.05); }
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #1B2538;
  color: #FCFBF1;
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  border-radius: 9999px;
  min-width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #FCFBF1;
}

/* ---- DRAWER ---- */
.scrim {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(27,37,56,.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.scrim.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  width: 400px;
  max-width: 100vw;
  background: #FCFBF1;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
  box-shadow: -20px 0 60px rgba(27,37,56,.1);
}
.drawer.open { transform: translateX(0); }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(27,37,56,.1);
}
.drawer-title {
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.drawer-close {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(27,37,56,.07);
  border-radius: 9999px;
  font-size: 20px;
  line-height: 1;
  color: #1B2538;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease;
}
.drawer-close:hover { background: rgba(27,37,56,.14); }
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}
.cart-empty { display: flex; flex-direction: column; align-items: center; margin: auto; }
.drawer-footer {
  border-top: 1px solid rgba(27,37,56,.1);
  padding: 20px 28px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.cart-total-amt {
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #405B72;
}
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(27,37,56,.08);
}
.cart-item-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: #F3F0E4;
  border: 1px solid rgba(27,37,56,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  overflow: hidden;
}
.cart-item-thumb img { width: 56%; opacity: .2; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 3px;
}
.cart-item-meta { font-size: 13px; color: rgba(27,37,56,.55); }
.cart-item-price {
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #405B72;
}
.cart-item-remove {
  background: none;
  border: none;
  color: rgba(27,37,56,.4);
  cursor: pointer;
  font-size: 18px;
  padding: 2px 4px;
  transition: color .25s;
}
.cart-item-remove:hover { color: #1B2538; }

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translate(-50%, 12px);
  z-index: 400;
  background: #1B2538;
  color: #FCFBF1;
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 9999px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(27,37,56,.2);
}
.toast.show { animation: symToast 2.8s ease both; }

/* ---- PAGES ---- */
.page {
  display: none;
  animation: symPageIn .5s ease both;
}
.page.active { display: block; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px,6vw,80px);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.visible {
  animation: revealUp .8s cubic-bezier(.22,.61,.36,1) both;
  animation-delay: calc(var(--stagger, 0) * 90ms);
}

/* ---- PARALLAX ---- */
.parallax-img {
  transform: scale(1.15);
  will-change: transform;
}

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #405B72;
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -.015em;
  color: #1B2538;
  margin: 0 0 28px;
}
.body-text {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
  color: rgba(27,37,56,.78);
  max-width: 46ch;
  margin: 0 0 20px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  background: #405B72;
  color: #FCFBF1;
  border: none;
  border-radius: 9999px;
  padding: 15px 30px;
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .18s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
  box-shadow: 0 10px 26px rgba(27,37,56,.12);
  white-space: nowrap;
}
.btn-primary:hover { box-shadow: 0 14px 32px rgba(27,37,56,.18); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(27,37,56,.28);
  color: #1B2538;
  border-radius: 9999px;
  padding: 14px 28px;
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .3s ease, transform .18s cubic-bezier(.22,.61,.36,1);
}
.btn-outline:hover { background: #1B2538; color: #FCFBF1; }
.btn-bone {
  background: #FCFBF1;
  color: #1B2538;
  border: none;
  border-radius: 9999px;
  padding: 15px 30px;
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .18s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.btn-bone:hover { box-shadow: 0 14px 32px rgba(0,0,0,.25); }
.btn-bone-sm {
  background: #FCFBF1;
  color: #1B2538;
  border: none;
  border-radius: 9999px;
  padding: 13px 26px;
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .18s cubic-bezier(.22,.61,.36,1);
  white-space: nowrap;
}
.text-link {
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: #405B72;
}
.text-link:hover { color: #1B2538; }
.flex-1 { flex: 1; }
.w-full { width: 100%; }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  width: 100%;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(252,251,241,.08) 0%, rgba(252,251,241,0) 32%, rgba(252,251,241,.35) 100%);
}
.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 clamp(20px,6vw,96px) clamp(40px,7vh,84px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-title {
  margin: 0;
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 8.5vw, 132px);
  line-height: .94;
  letter-spacing: -.02em;
  color: #1B2538;
  opacity: 0;
  animation: symHeroText 1s cubic-bezier(.22,.61,.36,1) .5s both;
}
.hero-sub {
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0;
  animation: symHeroText 1s cubic-bezier(.22,.61,.36,1) .8s both;
}
.hero-italic {
  font-family: 'Forum Local', Forum, serif;
  font-size: clamp(18px, 2vw, 26px);
  color: #405B72;
  font-style: italic;
}
.hero-rule { flex: 1; max-width: 120px; height: 1px; background: rgba(27,37,56,.3); }
.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: symHeroText 1s ease 1.4s both;
}
.hero-scroll-label {
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(27,37,56,.55);
}
.hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(180deg,rgba(27,37,56,.4),transparent); }

/* ---- ABOUT SECTION ---- */
.about-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(80px,14vh,160px) clamp(20px,6vw,80px);
}
.about-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(27,37,56,.08);
  box-shadow: 0 30px 70px rgba(27,37,56,.08);
}
.about-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ---- CARDS SECTION ---- */
.cards-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px,6vw,80px) clamp(60px,10vh,120px);
}
.card {
  border: 1px solid rgba(27,37,56,.08);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.card-light { background: #F3F0E4; }
.card-dark { background: #1B2538; color: #FCFBF1; }
.card-bg-mark {
  position: absolute;
  right: -8%;
  bottom: -6%;
  width: 62%;
  height: auto;
  opacity: .1;
  pointer-events: none;
}
.card-title {
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 0 0 16px;
}
.card-body {
  font-size: 17px;
  line-height: 1.7;
  max-width: 40ch;
  margin: 0;
  color: rgba(27,37,56,.75);
}
.card-cta { align-self: flex-start; margin-top: 36px; }

/* ---- STEPS SECTION ---- */
.steps-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px,7vh,80px) clamp(20px,6vw,80px) clamp(70px,11vh,130px);
}
.steps-header { margin-bottom: clamp(36px,6vh,60px); max-width: 640px; }
.steps-grid { align-items: start; gap: clamp(20px,3vw,44px); }
.steps-list { display: flex; flex-direction: column; gap: 10px; }
.step-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  border: 1px solid rgba(27,37,56,.1);
  border-radius: 16px;
  padding: 20px 22px;
  background: transparent;
  color: #1B2538;
  transition: background .35s ease, transform .25s ease, box-shadow .35s ease;
  width: 100%;
}
.step-btn:hover { transform: translateX(4px); box-shadow: 0 14px 30px rgba(27,37,56,.1); }
.step-btn.active { background: #1B2538; color: #FCFBF1; }
.step-num {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Neue Machina', 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid rgba(27,37,56,.2);
  background: transparent;
  color: inherit;
  transition: all .35s ease;
}
.step-btn.active .step-num { background: rgba(252,251,241,.15); border-color: rgba(252,251,241,.3); }
.step-info { flex: 1; min-width: 0; }
.step-title { display: block; font-family: 'Neue Machina','Space Grotesk',sans-serif; font-weight: 600; font-size: 17px; letter-spacing: -.01em; }
.step-body { display: block; margin-top: 5px; font-size: 14px; line-height: 1.55; color: rgba(27,37,56,.6); }
.step-btn.active .step-body { color: rgba(252,251,241,.7); }
.steps-preview {
  position: sticky;
  top: 100px;
  background: #1B2538;
  color: #FCFBF1;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.steps-preview-img {
  position: relative;
  flex: 1;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.steps-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.steps-preview-grad { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(27,37,56,.35),rgba(27,37,56,.82)); }
.steps-mark { position: relative; width: 44%; opacity: .9; }
.steps-preview-body { padding: 26px 30px 30px; }
.steps-cap { font-family: 'Neue Machina','Space Grotesk',sans-serif; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(252,251,241,.6); margin-bottom: 12px; }
.steps-line { margin: 0 0 22px; font-family: 'Forum Local',Forum,serif; font-size: clamp(19px,1.8vw,25px); line-height: 1.4; color: #FCFBF1; }
.steps-bars { display: flex; gap: 6px; margin-bottom: 22px; }
.step-bar { flex: 1; height: 3px; border-radius: 9999px; background: rgba(252,251,241,.2); transition: background .35s ease; }
.step-bar.active { background: #FCFBF1; }

/* ---- ASSURANCE STRIP ---- */
.assurance-strip {
  position: relative;
  overflow: hidden;
  background: #1B2538;
  padding: clamp(28px,4vh,44px) 0;
  border-top: 1px solid rgba(252,251,241,.08);
  border-bottom: 1px solid rgba(252,251,241,.08);
}
.assurance-grid {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  animation: assuranceMarquee 34s linear infinite;
}
.assurance-strip:hover .assurance-grid { animation-play-state: paused; }
@keyframes assuranceMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.assurance-item {
  flex: 0 0 auto;
  width: clamp(240px, 22vw, 320px);
  margin-right: clamp(48px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.assurance-title { position: relative; z-index: 1; font-family: 'Neue Machina','Space Grotesk',sans-serif; font-weight: 600; font-size: 15px; color: #FCFBF1; }
.assurance-body { position: relative; z-index: 1; margin: 0; font-size: 14px; line-height: 1.55; color: rgba(252,251,241,.65); }

/* ---- TESTIMONIAL ---- */
.testimonial-section {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(70px,12vh,140px) clamp(20px,6vw,40px);
  text-align: center;
}
.testimonial-quote {
  margin: 0 0 26px;
  font-family: 'Forum Local',Forum,serif;
  font-size: clamp(22px,3vw,34px);
  line-height: 1.45;
  color: #1B2538;
  font-style: italic;
}
.testimonial-attr {
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  color: #405B72;
}

/* ---- FOOTER ---- */
.footer {
  position: relative;
  overflow: hidden;
  background: #1B2538;
  color: #FCFBF1;
}
.footer-bg-mark {
  position: absolute;
  right: -14%;
  top: 50%;
  transform: translateY(-50%);
  width: min(70vw, 780px);
  height: auto;
  opacity: .14;
  pointer-events: none;
}
.footer-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(70px,12vh,130px) clamp(20px,6vw,80px);
}
.footer-left { max-width: 520px; }
.footer-headline {
  margin: 0 0 40px;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 700;
  font-size: clamp(32px,5vw,64px);
  line-height: .98;
  letter-spacing: -.02em;
}
.footer-email-row { display: flex; gap: 8px; max-width: 440px; margin-bottom: 48px; }
.footer-input {
  flex: 1;
  background: rgba(252,251,241,.06);
  border: 1px solid rgba(252,251,241,.2);
  border-radius: 9999px;
  padding: 15px 22px;
  color: #FCFBF1;
  font-size: 15px;
}
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 64px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(252,251,241,.7);
}
.footer-col-label {
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(252,251,241,.45);
  margin-bottom: 8px;
}
.footer-bottom {
  position: relative;
  margin-top: clamp(60px,10vh,110px);
  padding-top: 26px;
  border-top: 1px solid rgba(252,251,241,.14);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(252,251,241,.5);
}
.footer-wordmark { font-family: 'Neue Machina','Space Grotesk',sans-serif; font-weight: 700; letter-spacing: .02em; color: #FCFBF1; }
.footer-bottom-right { display: flex; gap: 22px; align-items: center; }

/* ---- STORE ---- */
.store-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(96px,13vh,140px) clamp(20px,5vw,60px) 100px;
}
.store-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}
.store-title {
  margin: 0 0 18px;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 700;
  font-size: clamp(34px,5.5vw,72px);
  line-height: .96;
  letter-spacing: -.02em;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: clamp(16px,2.2vw,26px);
  margin-bottom: 60px;
}
.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #F3F0E4;
  border: 1px solid rgba(27,37,56,.08);
  border-radius: 20px;
  padding: clamp(26px,3vw,40px);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease;
}
.category-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 28px 56px rgba(27,37,56,.12); }
.category-card-bg { position: absolute; right: -10%; bottom: -8%; width: 56%; opacity: .1; pointer-events: none; }
.category-tag {
  position: relative;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  color: rgba(27,37,56,.4);
}
.category-count {
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-size: 13px;
  color: #405B72;
}
.category-name {
  margin: 0 0 10px;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 700;
  font-size: clamp(24px,2.6vw,34px);
  letter-spacing: -.01em;
}
.category-blurb { margin: 0 0 20px; font-size: 15px; line-height: 1.55; color: rgba(27,37,56,.65); max-width: 30ch; }
.category-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1B2538;
}

/* ---- FEATURED ---- */
.featured-section { margin-top: clamp(60px,9vh,110px); }
.featured-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

/* ---- PRODUCTS GRID ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: clamp(16px,2.4vw,30px);
}
.product-card { cursor: pointer; }
.product-card-img {
  position: relative;
  aspect-ratio: 1;
  background: #F3F0E4;
  border: 1px solid rgba(27,37,56,.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease;
}
.product-card-img:hover { transform: translateY(-4px) scale(1.015); box-shadow: 0 24px 44px rgba(27,37,56,.1); }
.product-card-img img { width: 58%; opacity: .14; }
.product-cat-label {
  position: absolute;
  left: 16px;
  top: 15px;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(27,37,56,.4);
}
.quick-add {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: none;
  background: #1B2538;
  color: #FCFBF1;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(27,37,56,.2);
  transition: transform .25s ease;
}
.quick-add:hover { transform: scale(1.1); }
.product-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-top: 14px;
}
.product-card-name {
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.product-card-price {
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #405B72;
  white-space: nowrap;
}
.product-card-sub { font-size: 13px; color: rgba(27,37,56,.55); margin-top: 3px; }

/* ---- FILTERS ---- */
.store-grid-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.result-count { font-size: 15px; color: rgba(27,37,56,.6); }
.filter-bar {
  border-top: 1px solid rgba(27,37,56,.1);
  border-bottom: 1px solid rgba(27,37,56,.1);
  padding: 22px 0;
  margin: 8px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.filter-group { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.filter-label {
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(27,37,56,.5);
  width: 88px;
  flex: none;
}
.filter-options { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  border-radius: 9999px;
  padding: 8px 16px;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all .25s ease;
  border: 1px solid rgba(27,37,56,.18);
  background: transparent;
  color: #1B2538;
}
.filter-chip:hover, .filter-chip.active {
  background: #405B72;
  color: #FCFBF1;
  border-color: #405B72;
}
.active-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 28px; }
.active-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  padding: 7px 12px 7px 15px;
  background: #405B72;
  color: #FCFBF1;
  border: none;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
}
.clear-all-btn {
  background: transparent;
  border: none;
  color: #405B72;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 7px 8px;
}
.empty-state { text-align: center; padding: clamp(60px,12vh,120px) 20px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.empty-title { font-family: 'Neue Machina','Space Grotesk',sans-serif; font-weight: 600; font-size: 22px; margin-bottom: 8px; }

/* ---- PRODUCT DETAIL ---- */
.back-link { display: inline-block; margin-bottom: 28px; }
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px,5vw,72px);
  align-items: start;
}
.product-gallery {
  position: relative;
  aspect-ratio: 1;
  background: #F3F0E4;
  border: 1px solid rgba(27,37,56,.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-placeholder-mark { width: 56%; opacity: .16; }
.product-shot-label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(27,37,56,.4);
}
.product-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.product-thumb { flex: 1; height: 8px; border-radius: 9999px; background: rgba(27,37,56,.1); }
.product-thumb.active { background: #405B72; }
.product-info { }
.product-name {
  margin: 0 0 14px;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 700;
  font-size: clamp(32px,4.6vw,54px);
  line-height: 1;
  letter-spacing: -.02em;
}
.product-price {
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #405B72;
  margin-bottom: 26px;
}
.specs-accordion { border-top: 1px solid rgba(27,37,56,.12); }
.spec-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(27,37,56,.12);
  padding: 18px 2px;
  cursor: pointer;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #1B2538;
  text-align: left;
}
.spec-btn:hover { color: #405B72; }
.spec-sign { font-size: 20px; color: #405B72; }
.spec-body {
  margin: 0;
  padding: 2px 2px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(27,37,56,.68);
  border-bottom: 1px solid rgba(27,37,56,.12);
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 0;
}
.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(27,37,56,.16);
  border-radius: 9999px;
  padding: 4px;
}
.qty-btn {
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: #1B2538;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.qty-btn:hover { background: rgba(27,37,56,.07); }
.qty-val {
  min-width: 26px;
  text-align: center;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.related-section { margin-top: clamp(70px,11vh,120px); }

/* ---- STUDIO PAGE ---- */
.studio-page {
  position: relative;
  min-height: 100vh;
  background: #1B2538;
  color: #FCFBF1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.studio-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .24; filter: grayscale(.15); }
.studio-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center,rgba(27,37,56,.5),rgba(27,37,56,.9)); }
.studio-bg-mark { position: absolute; left: 50%; top: 44%; transform: translate(-50%,-50%); width: min(60vw,560px); opacity: .08; pointer-events: none; }
.studio-content {
  position: relative;
  text-align: center;
  padding: 40px clamp(20px,6vw,40px);
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.studio-title {
  margin: 0;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 700;
  font-size: clamp(34px,6vw,72px);
  line-height: 1;
  letter-spacing: -.02em;
}
.studio-body { margin: 0; font-size: clamp(16px,1.5vw,20px); line-height: 1.65; color: rgba(252,251,241,.75); max-width: 44ch; }
.studio-form { display: flex; gap: 8px; width: 100%; max-width: 420px; }
.studio-input {
  flex: 1;
  background: rgba(252,251,241,.08);
  border: 1px solid rgba(252,251,241,.25);
  border-radius: 9999px;
  padding: 15px 22px;
  color: #FCFBF1;
  font-size: 15px;
}
.studio-joined {
  background: rgba(252,251,241,.1);
  border: 1px solid rgba(252,251,241,.25);
  border-radius: 9999px;
  padding: 14px 26px;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-size: 15px;
}
.back-link-light { margin-top: 14px; color: rgba(252,251,241,.6); font-family: 'Neue Machina','Space Grotesk',sans-serif; font-size: 14px; }

/* ---- ABOUT PAGE ---- */
.about-hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(110px,16vh,180px) clamp(20px,6vw,40px) clamp(40px,6vh,70px);
  text-align: center;
}
.about-hero-title {
  margin: 0 auto 26px;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 700;
  font-size: clamp(34px,6vw,80px);
  line-height: .98;
  letter-spacing: -.02em;
  max-width: 16ch;
}
.about-hero-body { margin: 0 auto; font-size: clamp(17px,1.6vw,22px); line-height: 1.6; color: rgba(27,37,56,.72); max-width: 60ch; }
.about-full-img-wrap { border-radius: 22px; overflow: hidden; aspect-ratio: 16/9; border: 1px solid rgba(27,37,56,.08); box-shadow: 0 40px 90px rgba(27,37,56,.1); }
.about-full-img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-section { max-width: 1120px; margin: 0 auto; padding: clamp(70px,11vh,130px) clamp(20px,5vw,60px); }
.philosophy-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px,5vw,80px); align-items: start; }
.philosophy-label { position: sticky; top: 110px; }
.philosophy-quote { margin: 0 0 26px; font-family: 'Forum Local',Forum,serif; font-size: clamp(22px,2.6vw,32px); line-height: 1.4; color: #1B2538; }
.principles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2.4vw,28px); }
.principle-card { background: #F3F0E4; border: 1px solid rgba(27,37,56,.08); border-radius: 18px; padding: clamp(28px,3vw,40px); }
.principle-num { font-family: 'Neue Machina','Space Grotesk',sans-serif; font-size: 13px; color: #405B72; margin-bottom: 16px; }
.principle-title { margin: 0 0 12px; font-family: 'Neue Machina','Space Grotesk',sans-serif; font-weight: 600; font-size: 20px; letter-spacing: -.01em; }
.principle-body { margin: 0; font-size: 15px; line-height: 1.65; color: rgba(27,37,56,.68); }
.stats-strip { border-top: 1px solid rgba(27,37,56,.1); border-bottom: 1px solid rgba(27,37,56,.1); }
.stats-grid { max-width: 1280px; margin: 0 auto; padding: clamp(40px,6vh,60px) clamp(20px,5vw,60px); display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-num { font-family: 'Neue Machina','Space Grotesk',sans-serif; font-weight: 700; font-size: clamp(28px,3vw,40px); color: #1B2538; }
.stat-label { font-size: 14px; color: rgba(27,37,56,.6); margin-top: 6px; }

/* ---- CHECKOUT ---- */
.checkout-container { max-width: 1120px; margin: 0 auto; padding: 44px clamp(20px,5vw,60px) 100px; }
.checkout-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: clamp(30px,6vh,56px); }
.checkout-brand { display: flex; align-items: center; gap: 9px; }
.checkout-title {
  margin: 0 0 34px;
  font-family: 'Neue Machina','Space Grotesk',sans-serif;
  font-weight: 700;
  font-size: clamp(28px,3.6vw,42px);
  letter-spacing: -.02em;
}
.checkout-form-layout { display: grid; grid-template-columns: 1.3fr .85fr; gap: clamp(30px,5vw,64px); align-items: start; }
.checkout-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px; }
.field {
  border: 1px solid rgba(27,37,56,.16);
  border-radius: 9999px;
  padding: 15px 22px;
  font-size: 15px;
  background: #FCFBF1;
  color: #1B2538;
  width: 100%;
  transition: border-color .25s;
}
.field:focus { border-color: #405B72; }
.span-2 { grid-column: span 2; }
.order-summary { position: sticky; top: 30px; background: #F3F0E4; border: 1px solid rgba(27,37,56,.08); border-radius: 20px; padding: clamp(24px,3vw,34px); }
.summary-title { font-family: 'Neue Machina','Space Grotesk',sans-serif; font-weight: 600; font-size: 18px; margin-bottom: 20px; }
.summary-item { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 8px 0; color: rgba(27,37,56,.8); font-family: 'Neue Machina','Space Grotesk',sans-serif; }
.summary-row { border-top: 1px solid rgba(27,37,56,.14); margin-top: 14px; padding-top: 16px; display: flex; justify-content: space-between; font-size: 14px; color: rgba(27,37,56,.65); }
.summary-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 12px; }
.summary-total-label { font-family: 'Neue Machina','Space Grotesk',sans-serif; font-weight: 600; font-size: 16px; }
.summary-total-amt { font-family: 'Neue Machina','Space Grotesk',sans-serif; font-weight: 700; font-size: 22px; color: #405B72; }
.order-success { text-align: center; padding: clamp(50px,10vh,100px) 20px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.success-check { width: 66px; height: 66px; border-radius: 9999px; border: 1.5px solid #405B72; display: flex; align-items: center; justify-content: center; }
.success-title { margin: 0; font-family: 'Neue Machina','Space Grotesk',sans-serif; font-weight: 700; font-size: clamp(28px,4vw,44px); letter-spacing: -.02em; }

/* ---- PAGE FOOTER ROW ---- */
.page-footer-row {
  margin-top: 100px;
  padding-top: 30px;
  border-top: 1px solid rgba(27,37,56,.1);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(27,37,56,.55);
}

/* ---- RESPONSIVE ---- */
@media (max-width:900px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .checkout-form-layout { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width:760px) {
  .principles-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .assurance-grid { grid-template-columns: repeat(2,1fr); }
  .philosophy-grid { grid-template-columns: 1fr; }
}
@media (max-width:560px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .checkout-fields { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }
}
