/* Google Fonts loaded via <link> in HTML for faster LCP */

/* ── Design Tokens ── */
:root {
  --bg-primary:    #EDE4DD;
  --bg-secondary:  #E2D8D0;
  --bg-card:       #D9CFC6;
  --accent:        #FF2400;
  --accent-light:  #FF4422;
  --text-primary:  #0D0B09;
  --text-secondary:#3D3730;
  --text-muted:    #5C5450;
  --border:        rgba(0,0,0,0.12);
  --shadow:        0 2px 16px rgba(0,0,0,0.06);
  --radius:        2px;
  --font-serif:    'Lora', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;
  --ease:          0.3s ease;
  --max-w:         1320px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem,  4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 500; }
p  { color: var(--text-secondary); }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.tag {
  display: inline-block;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,36,0,0.08);
  border: 1px solid rgba(255,36,0,0.2);
  padding: 0.25rem 0.7rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; transition: var(--ease);
}
.btn-primary  { background: var(--text-primary); color: var(--bg-primary); }
.btn-primary:hover { background: var(--text-secondary); transform: translateY(-1px); }
.btn-outline  { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--text-primary); }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: var(--bg-primary);
  border-bottom: 2px solid var(--text-primary);
  transition: padding var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  padding: 0.875rem 2.5rem;
  box-shadow: 0 2px 32px rgba(0,0,0,0.1);
}
.nav-logo { line-height: 1; }
.nav-logo-img {
  height: 52px; width: auto;
  filter: none;
  transition: opacity var(--ease);
}
.nav-logo:hover .nav-logo-img { opacity: 0.65; }
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-links a {
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; color: var(--text-secondary); transition: color var(--ease);
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transition: transform var(--ease);
  transform-origin: left;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text-primary); font-weight: 700; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; z-index: 201;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); transition: var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #E8DDD5 0%, #EDE4DD 45%, #E2D8D0 100%);
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center right;
  opacity: 0.1; mix-blend-mode: multiply;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  padding: 8rem 2.5rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--text-muted);
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8;
  max-width: 440px; margin-bottom: 3rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image-frame {
  position: absolute; top: 24px; left: -24px; right: 24px; bottom: -24px;
  border: 1px solid var(--border); pointer-events: none; z-index: 0;
}
.hero-image img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  position: relative; z-index: 1;
}
.hero-image-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--bg-card);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--text-muted); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; z-index: 1;
}
.hero-image-placeholder::before { content: '◈'; font-size: 4rem; opacity: 0.2; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 2.5rem;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); z-index: 1;
}
.hero-scroll-line {
  width: 40px; height: 1px; background: var(--text-muted);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { width: 40px; }
  50% { width: 20px; }
}

/* ── Story ── */
.story { background: var(--bg-secondary); }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.story-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1rem;
}
.story-text h2 { margin-bottom: 1.5rem; }
.story-text p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.4rem; }
.story-image { position: relative; }
.story-image img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.story-image-placeholder {
  width: 100%; aspect-ratio: 2/3;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 5rem; opacity: 0.25;
}
.story-frame {
  position: absolute; top: -20px; left: 20px; right: -20px; bottom: 20px;
  border: 1px solid var(--border); z-index: -1; pointer-events: none;
}
.story-stats {
  display: flex; gap: 3rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-sans); font-size: 2.5rem; color: var(--text-primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 0.3rem;
}

/* ── Featured Products ── */
.featured { background: var(--bg-primary); }
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem;
}
.section-header a {
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem;
  transition: var(--ease);
}
.section-header a:hover { gap: 0.75rem; color: var(--text-primary); }
.section-header a::after { content: '→'; }

/* ── Product Card ── */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.product-card { background: transparent; overflow: hidden; position: relative; cursor: pointer; }
.product-card-image {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
  background: var(--bg-card);
}
.product-card-image a { display: block; width: 100%; height: 100%; }
.product-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-badge { position: absolute; top: 0.875rem; left: 0.875rem; z-index: 1; }
.product-card-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(160deg, var(--bg-card) 0%, #C8BFB6 100%);
  color: var(--text-muted); font-size: 2.5rem;
}

/* Buy overlay on image hover */
.card-buy-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(13,11,9,0.8));
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #EDE4DD;
  text-align: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.product-card:hover .card-buy-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Card body */
.product-card-body { padding: 0.75rem 0 1.25rem; display: block; }
.product-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.35rem;
}
.product-card-cat-group { display: flex; align-items: center; gap: 0.45rem; }
.product-dot {
  display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent); flex-shrink: 0;
}
.product-card-cat {
  font-size: 0.67rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}
.product-card-price {
  display: flex; align-items: baseline; gap: 0.35rem; flex-shrink: 0;
}
.price-now { font-size: 0.88rem; color: var(--text-secondary); font-weight: 600; }
.price-was { font-size: 0.75rem; color: var(--text-muted); text-decoration: line-through; }
.product-card-name {
  font-family: var(--font-sans);
  font-size: 0.95rem; font-weight: 600;
  color: var(--text-primary); line-height: 1.35;
}
/* Product detail discount */
.product-info-price { margin-bottom: 0.35rem; }
.product-info-price-original {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.95rem; color: var(--text-muted);
  text-decoration: line-through; margin-bottom: 1.75rem;
}
.product-info-discount {
  text-decoration: none; font-style: normal;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); background: rgba(255,36,0,0.08);
  padding: 0.2rem 0.55rem; font-weight: 600;
}

/* Legacy selectors — hidden when new card structure is used */
.product-card-desc { display: none; }
.product-card-cta  { display: none; }
.product-card-footer { display: none; }

/* ── Empty / Loading states ── */
.loading-grid { display: flex; justify-content: center; padding: 4rem; }
.spinner {
  width: 32px; height: 32px;
  border: 2px solid var(--border); border-top-color: var(--text-secondary);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.empty-state { text-align: center; padding: 5rem 2rem; color: var(--text-muted); }
.empty-state-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }
.empty-state h3 { font-family: var(--font-serif); font-size: 1.75rem; margin-bottom: 0.5rem; color: var(--text-primary); }

/* ── Shop Page Filters ── */
.shop-hero {
  padding: 7rem 0 3.5rem;
  background: var(--bg-secondary);
  text-align: center;
}
.shop-hero h1 { margin-bottom: 1rem; }
.shop-hero p { max-width: 480px; margin: 0 auto; }
.filters-bar { padding: 2rem 0; border-bottom: 1px solid var(--border); margin-bottom: 3rem; }
.filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; background: transparent; border: 1px solid rgba(0,0,0,0.2);
  color: var(--text-secondary); transition: var(--ease);
  font-family: var(--font-sans);
}
.filter-btn:hover { border-color: var(--text-primary); color: var(--text-primary); }
.filter-btn.active { background: var(--text-primary); border-color: var(--text-primary); color: var(--bg-primary); }

/* ── Craft Section ── */
.craft { background: var(--bg-secondary); text-align: center; }
.craft-quote {
  font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400; font-style: italic;
  max-width: 820px; margin: 0 auto 1.5rem; line-height: 1.55;
}
.craft-cite {
  font-family: var(--font-sans); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
}
.craft-divider {
  width: 60px; height: 1px; background: var(--border);
  margin: 3rem auto;
}
.craft-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; text-align: left; margin-top: 4rem;
}
.craft-step { background: var(--bg-card); padding: 2.25rem; position: relative; }
.craft-step-num {
  font-family: var(--font-sans); font-size: 5rem; font-weight: 300;
  color: rgba(255,36,0,0.14); position: absolute;
  top: 1rem; right: 1.5rem; line-height: 1; pointer-events: none;
}
.craft-step h4 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.craft-step p { font-size: 0.875rem; line-height: 1.65; }

/* ── Deals ── */
.deals { background: var(--bg-secondary); }
.deals-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
  margin-top: 3rem;
}
.deal-card {
  background: var(--bg-card); padding: 2.25rem;
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.deal-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
}
.deal-tag {
  font-size: 0.69rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.deal-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.deal-card p { font-size: 0.9rem; margin-bottom: 1.5rem; }
.deal-code {
  display: inline-flex; align-items: center; gap: 0.875rem;
  background: rgba(255,36,0,0.05);
  border: 1px dashed rgba(255,36,0,0.3);
  padding: 0.625rem 1.25rem; margin-bottom: 1.5rem;
  cursor: pointer; transition: var(--ease);
}
.deal-code:hover { background: rgba(255,36,0,0.09); }
.deal-code span {
  font-family: monospace; font-size: 1.15rem;
  letter-spacing: 0.1em; color: var(--accent);
}
.deal-code small {
  font-size: 0.69rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted);
}
.deal-footer { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.deal-expiry { font-size: 0.75rem; color: var(--text-muted); }

/* ── Platforms ── */
.platforms { background: var(--bg-primary); }
.platforms-intro { text-align: center; margin-bottom: 3rem; }
.platforms-intro h2 { margin-bottom: 1rem; }
.platforms-intro p { max-width: 460px; margin: 0 auto; }
.platforms-row { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
.platform-btn {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid var(--border); background: transparent;
  font-size: 0.82rem; letter-spacing: 0.06em;
  color: var(--text-secondary); transition: var(--ease);
  font-family: var(--font-sans);
}
.platform-btn:hover {
  border-color: var(--text-primary); color: var(--text-primary);
  transform: translateY(-2px);
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.25rem;
  font-size: 0.78rem; letter-spacing: 0.04em; color: var(--text-muted);
}
.breadcrumb-link {
  color: var(--text-muted); transition: color var(--ease);
}
.breadcrumb-link:hover { color: var(--accent); }
.breadcrumb-sep { margin: 0 0.35rem; opacity: 0.5; }
.breadcrumb-current { color: var(--text-secondary); font-weight: 500; }

/* ── Product Detail Page ── */
.product-page { padding-top: 5rem; }
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.gallery-main { margin-bottom: 0.75rem; }
.gallery-main img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.gallery-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--bg-card) 0%, #C8BFB6 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 5rem; opacity: 0.5;
}
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.gallery-thumb {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  cursor: pointer; opacity: 0.45; transition: opacity var(--ease);
  border: 1px solid transparent;
}
.gallery-thumb:hover { opacity: 0.75; }
.gallery-thumb.active { opacity: 1; border-color: var(--text-primary); }
.product-info-cat {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.875rem;
}
.product-info h1 { font-size: clamp(1.75rem, 3vw, 2.75rem); margin-bottom: 1rem; }
.product-info-price {
  font-family: var(--font-sans); font-size: 2.25rem; font-weight: 600; color: var(--text-primary);
  margin-bottom: 1.75rem;
}
.product-info-desc {
  color: var(--text-secondary); font-size: 1rem; line-height: 1.8;
  margin-bottom: 2rem;
}
.product-buy-links { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2.5rem; }
.product-buy-links .btn { justify-content: center; text-align: center; }
.product-meta { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.product-meta-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.product-meta-row .label {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}
.related { background: var(--bg-secondary); }

/* ── About Page ── */
.about-hero {
  padding: 7rem 0 4.5rem; background: var(--bg-secondary); text-align: center;
}
.about-hero h1 { margin-bottom: 1.25rem; }
.about-hero p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; line-height: 1.8; }
.about-section { padding: 5rem 0; }
.about-section:nth-child(even) { background: var(--bg-secondary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { line-height: 1.85; font-size: 1.05rem; margin-bottom: 1.25rem; }
.about-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--bg-card) 0%, #C8BFB6 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 5rem; opacity: 0.5;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.value-card { background: var(--bg-card); padding: 2rem; border-top: 2px solid var(--border); }
.value-card h4 { color: var(--text-primary); margin-bottom: 0.75rem; }
.value-card p { font-size: 0.9rem; line-height: 1.65; }

/* ── About contact ── */
.about-contact-email {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--accent);
  transition: opacity var(--ease);
}
.about-contact-email:hover { opacity: 0.7; }

/* ── Footer ── */
footer {
  background: var(--text-primary);
  padding: 0 0 2.5rem;
  border-top: 4px solid var(--accent);
}
footer .nav-logo-img { filter: none; height: 72px; }
.footer-statement {
  padding: 6.5rem 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0;
}
.footer-statement p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(240,234,214,0.75);
  line-height: 1.65;
  max-width: 820px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3.5rem;
  padding-top: 3.5rem;
}
.footer-brand .nav-logo { margin-bottom: 1.5rem; display: block; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.38); line-height: 1.75; max-width: 260px; }
.footer-email {
  display: inline-block; margin-top: 1rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em; transition: color var(--ease);
}
.footer-email:hover { color: rgba(255,255,255,1); }
.footer-col h5 {
  font-family: var(--font-sans); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; font-weight: 700;
}
.footer-col li { margin-bottom: 0.875rem; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color var(--ease); }
.footer-col a:hover { color: rgba(255,255,255,1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.28); }

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .craft-steps   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-content  { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-image    { display: none; }
  .product-detail-grid { gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: var(--bg-primary); flex-direction: column;
    justify-content: center; align-items: center; gap: 2.5rem;
  }
  .nav-links.open  { display: flex; }
  .nav-links a     { font-size: 1.1rem; letter-spacing: 0.15em; font-weight: 700; }
  .nav-toggle      { display: flex; }

  .story-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid       { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; }
  .deals-grid       { grid-template-columns: 1fr; }
  .products-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid      { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; gap: 1rem; text-align: center; }
  .story-stats      { gap: 2rem; }
}
@media (max-width: 480px) {
  .section  { padding: 4rem 0; }
  .craft-steps { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .btn      { padding: 0.75rem 1.5rem; }
}

/* ════════════════════════════════════════════
   HOMEPAGE — editorial product-forward layout
   ════════════════════════════════════════════ */

/* ── Home hero ── */
.home-hero {
  padding-top: 7.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.home-hero-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(4.5rem, 21.5vw, 26rem);
  letter-spacing: -0.01em;
  line-height: 0.88;
  color: var(--accent);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  padding: 0.25rem 2.5rem 0;
  display: block;
  width: 100%;
}
.home-hero-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 2.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.home-hero-bar-dot {
  font-size: 0.4rem;
  color: var(--accent);
  flex-shrink: 0;
}
.home-hero-bar-spacer { flex: 1; }
.home-hero-bar-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.home-hero-bar-link::after { content: '→'; }
.home-hero-bar-link:hover { color: var(--text-primary); }

/* ── Site intro bar ── */
.site-intro {
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.site-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}
.intro-filters {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.intro-filters .filter-btn {
  padding: 0.4rem 1rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  color: var(--text-secondary);
  transition: var(--ease);
  font-family: var(--font-sans);
}
.intro-filters .filter-btn:hover { border-color: var(--text-primary); color: var(--text-primary); }
.intro-filters .filter-btn.active {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
}

/* ── Homepage product grid ── */
.home-products {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 2.5rem 0;
}
.home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* ── View all bar ── */
.view-all-bar {
  padding: 2.5rem 0 1rem;
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 1.25rem;
}
.view-all-bar a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--ease);
}
.view-all-bar a:hover { color: var(--text-primary); }

/* ── Home empty state ── */
.home-empty {
  grid-column: 1 / -1;
  padding: 8rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.home-empty-mark { font-size: 3rem; color: var(--text-muted); opacity: 0.2; }
.home-empty-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; }
.home-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 6rem 0;
}

/* ── Brand note ── */
.brand-note {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2.5rem;
  border-top: 1px solid var(--border);
}
.brand-note-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.brand-note-label {
  display: block;
  font-size: 0.69rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.brand-note-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.brand-note-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.brand-note-link::after { content: '→'; transition: transform var(--ease); }
.brand-note-link:hover { color: var(--text-primary); }
.brand-note-link:hover::after { transform: translateX(4px); }
.brand-note-stats {
  display: flex;
  gap: 3rem;
  padding-left: 4rem;
  border-left: 1px solid var(--border);
}
.brand-stat-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 2.5rem;
  color: var(--text-primary);
  line-height: 1;
}
.brand-stat-label {
  display: block;
  font-size: 0.71rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* ── Home deals section ── */
.home-deals-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem 5rem;
}
.home-deals-inner {
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}
.home-deals-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

/* ── Homepage responsive ── */
@media (max-width: 1024px) {
  .home-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-note-body { grid-template-columns: 1fr; gap: 3rem; }
  .brand-note-stats { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 2rem; }
}
@media (max-width: 768px) {
  .home-hero { padding-top: 6.5rem; }
  .home-hero-title { padding: 0.25rem 0 0; }
  .home-hero-bar { padding: 0.75rem 1.25rem; gap: 0.625rem; }
  .home-hero-bar-spacer { display: none; }
  .site-intro { flex-direction: column; align-items: flex-start; padding-left: 1.25rem; padding-right: 1.25rem; }
  .home-grid { grid-template-columns: repeat(2, 1fr); }
  .home-products, .brand-note, .home-deals-section { padding-left: 1.25rem; padding-right: 1.25rem; }
}
@media (max-width: 480px) {
  .home-grid { grid-template-columns: 1fr; }
  .brand-note-stats { flex-wrap: wrap; gap: 1.5rem; }
}
