/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream:      #FAF7F2;
  --cream-dark: #F0EAE0;
  --cognac:     #2C1810;
  --ember:      #D4440C;
  --ember-dark: #A33508;
  --amber:      #F4C26B;
  --text:       #1C0F09;
  --text-muted: #6B5344;
  --text-light: rgba(28,15,9,0.6);
  --divider:    rgba(44,24,16,0.12);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }

/* ─── Navbar ─── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--divider);
  backdrop-filter: blur(8px);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo svg { flex-shrink: 0; }
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--cognac);
  letter-spacing: -0.02em;
}
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.cart-nav-link {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--cognac);
  color: white;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(44,24,16,0.25);
}
.cart-nav-link:hover { background: #3d2014; transform: translateY(-1px); }
.cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 18px; height: 18px;
  background: var(--ember);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 0 4px;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 1px 4px rgba(212,68,12,0.5);
}
.nav-cta {
  background: var(--ember);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 9px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(212,68,12,0.3);
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--ember-dark); transform: translateY(-1px); }

/* ─── Hero ─── */
.hero {
  min-height: calc(100vh - 73px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 64px;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream-dark);
  border: 1px solid var(--divider);
  color: var(--ember);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
  margin-bottom: 32px;
  width: fit-content;
  letter-spacing: 0.01em;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ember);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  color: var(--cognac);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--ember);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--ember);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(212,68,12,0.35);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--ember-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,68,12,0.4);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--divider);
  border-radius: 100px;
  padding: 13px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--cognac); background: rgba(44,24,16,0.04); }
.hero-note {
  margin-top: 28px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.hero-note::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}

/* Hero right panel — visual */
.hero-right {
  position: relative;
  background: var(--cognac);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-right-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(244,194,107,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(212,68,12,0.15) 0%, transparent 50%);
}
.hero-products {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 60px 40px;
  max-width: 500px;
}
.hero-product-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s;
}
.hero-product-card:hover {
  transform: translateY(-6px) scale(1.03);
  background: rgba(255,255,255,0.12);
}
.hpc-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 8px;
}
.hpc-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.hpc-icon { display: flex; justify-content: center; margin-bottom: 8px; }
.hero-product-card:nth-child(2) { transform: translateY(20px); }
.hero-product-card:nth-child(3) { transform: translateY(-10px); }
.hero-product-card:nth-child(4) { transform: translateY(10px); }
.hero-product-card:nth-child(2):hover { transform: translateY(14px) scale(1.03); }
.hero-product-card:nth-child(3):hover { transform: translateY(-16px) scale(1.03); }

/* ─── Manifesto ─── */
.manifesto {
  padding: 96px 64px;
  background: var(--cream-dark);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ember);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.manifesto-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--cognac);
  margin-bottom: 24px;
  line-height: 1.2;
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 680px;
}
.manifesto-stats {
  display: flex; align-items: center; gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--divider);
}
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ember);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 6px;
}
.stat-divider {
  width: 1px; height: 48px;
  background: var(--divider);
}
.stat-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cognac);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  margin-left: auto;
  box-shadow: 0 2px 12px rgba(44,24,16,0.25);
  transition: background 0.2s, transform 0.15s;
}
.stat-cta:hover { background: #3d2014; transform: translateY(-1px); }

/* ─── Product Shelf ─── */
.productshelf {
  padding: 96px 64px;
}
.shelf-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap; gap: 8px;
}
.shelf-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--cognac);
}
.shelf-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ember);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.shelf-link:hover { gap: 10px; }
.shelf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
}
.shelf-item {
  background: white;
  border: 1px solid var(--divider);
  border-radius: 20px;
  padding: 28px;
  display: flex; gap: 20px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(44,24,16,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.shelf-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,24,16,0.12);
  border-color: rgba(212,68,12,0.3);
}
.shelf-item.si-coming {
  background: var(--cream-dark);
  cursor: default;
}
.shelf-item.si-coming:hover {
  transform: none;
  box-shadow: 0 2px 12px rgba(44,24,16,0.06);
  border-color: var(--divider);
}
.si-taco  { border-top: 3px solid #D4440C; }
.si-water { border-top: 3px solid #C77B3F; }
.si-hat   { border-top: 3px solid #7B6B4A; }
.si-ticket{ border-top: 3px solid #3D6B8C; }
.si-gift  { border-top: 3px solid var(--amber); }
.si-more  { border-top: 3px solid rgba(44,24,16,0.2); }
.si-visual { flex-shrink: 0; }
.si-info { flex: 1; min-width: 0; }
.si-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--cognac);
}
.si-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.si-footer-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.si-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ember);
}
.add-to-cart-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ember);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(212,68,12,0.3);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.add-to-cart-btn:hover:not(:disabled) {
  background: var(--ember-dark);
  transform: translateY(-2px);
}
.add-to-cart-btn:active:not(:disabled) { transform: translateY(0); }
.add-to-cart-btn:disabled {
  background: var(--cream-dark);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
}
.coming-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--divider);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}
.si-more-visual {
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-dark);
  border-radius: 16px;
  border: 1px solid var(--divider);
  flex-shrink: 0;
}
.more-ellipsis {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-muted);
  letter-spacing: 6px;
}

/* ─── Aesthetic block ─── */
.aesthetic {
  padding: 96px 64px;
  background: var(--cognac);
  color: white;
  position: relative;
  overflow: hidden;
}
.aesthetic::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(244,194,107,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(212,68,12,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.aesthetic-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.aesthetic-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.aesthetic-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}
.aesthetic-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 32px;
}
.aesthetic-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.aesthetic-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.aesthetic-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--ember);
  border-radius: 50%;
  flex-shrink: 0;
}
.aesthetic-glass {
  display: flex; flex-direction: column; gap: 14px;
  justify-content: center;
}
.glass-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 24px;
  transition: transform 0.3s ease, background 0.3s;
  backdrop-filter: blur(8px);
}
.glass-card:hover { transform: translateX(8px); background: rgba(255,255,255,0.1); }
.gc-inner { display: flex; align-items: center; gap: 16px; }
.gc-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.gc-lines { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.gc-line { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.12); }
.gc-line.short { max-width: 100px; }
.gc-line.medium { max-width: 180px; }
.gc-card-label {
  font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.gc-1 { transform: rotate(-0.8deg); }
.gc-2 { transform: rotate(0.5deg); }
.gc-3 { transform: rotate(-0.3deg); }

/* ─── Closing ─── */
.closing {
  padding: 96px 64px;
  background: var(--cream-dark);
  border-top: 1px solid var(--divider);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--cognac);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.closing-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ember);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212,68,12,0.35);
  transition: background 0.2s, transform 0.15s;
}
.closing-cta:hover { background: var(--ember-dark); transform: translateY(-2px); }

/* ─── Footer ─── */
.footer {
  padding: 40px 64px;
  background: var(--cognac);
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.8);
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { max-width: 100%; padding: 60px 40px; }
  .aesthetic-inner { grid-template-columns: 1fr; gap: 48px; }
  .navbar { padding: 18px 40px; }
  .manifesto, .productshelf, .aesthetic, .closing { padding: 72px 40px; }
  .footer { padding: 32px 40px; }
}
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero-left { padding: 48px 24px 40px; }
  .manifesto, .productshelf, .aesthetic, .closing { padding: 56px 24px; }
  .footer { padding: 28px 24px; }
  .shelf-header { flex-direction: column; align-items: flex-start; gap: 4px; }
  .shelf-grid { grid-template-columns: 1fr; }
  .manifesto-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat-divider { display: none; }
  .stat-cta { margin-left: 0; width: 100%; justify-content: center; }
  .si-footer-row { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}