/* ─── Reset & Tokens ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:    #0e0c0a;
  --cream:  #f5ede0;
  --muted:  #9a8d7e;
  --panel:  rgba(255,252,245,0.06);
  --border: rgba(255,255,255,0.08);
  --red:    #c0392b;
  --gold:   #c8893a;
  --r:      28px;

  --f-serif: 'Fraunces', Georgia, serif;
  --f-sans:  'Inter', ui-sans-serif, system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* ─── Nav ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  background: rgba(14,12,10,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-name {
  font-weight: 800; font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.seal-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--red);
  color: #fff;
  font-size: 12px; font-weight: 700;
  border-radius: 7px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.nav-shop {
  font-size: 13px; font-weight: 700;
  color: var(--cream);
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
}
.nav-shop:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

/* ─── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, #c0392b44 0%, transparent 70%);
}
.orb-2 {
  width: 500px; height: 500px;
  top: 10%; right: -100px;
  background: radial-gradient(circle, #c8893a33 0%, transparent 70%);
  animation: drift 12s ease-in-out infinite alternate;
}
.orb-3 {
  width: 700px; height: 400px;
  bottom: -100px; left: 20%;
  background: radial-gradient(circle, #3a5c8822 0%, transparent 70%);
}

@keyframes drift {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-40px) scale(1.08); }
}

.hero-content { position: relative; z-index: 1; max-width: 820px; }

.eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.headline {
  font-family: var(--f-serif);
  font-size: clamp(52px, 10vw, 110px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.headline em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, #f5ede0 0%, #c8893a 50%, #c0392b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: rgba(245,237,224,0.6);
  max-width: 560px;
  margin: 0 auto 44px;
}

.hero-cta {
  display: flex; align-items: center; gap: 20px;
  justify-content: center; flex-wrap: wrap;
}

.btn-main {
  display: inline-flex; align-items: center;
  padding: 16px 32px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 800; font-size: 15px;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.hero-seal {
  font-size: 28px; font-weight: 700;
  color: var(--red);
  opacity: 0.75;
  font-family: serif;
  letter-spacing: 0.05em;
}

.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,237,224,0.25);
  animation: fade-bob 2.4s ease-in-out infinite;
}
@keyframes fade-bob {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.7; transform: translateX(-50%) translateY(-5px); }
}

/* ─── Collections ────────────────────────────────── */
.collections {
  padding: clamp(80px, 12vw, 140px) clamp(16px, 4vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}

.section-header { margin-bottom: 56px; }

.label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  display: block; margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--f-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
}

.col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.col-card {
  display: flex; flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.3s, border-color 0.3s;
}
.col-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.18);
}
.col-card--mid { transform: translateY(24px); }
.col-card--mid:hover { transform: translateY(16px); }

.col-visual {
  position: relative;
  height: 240px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.fusion-visual {
  background: linear-gradient(145deg, #e8813a 0%, #e85a30 40%, #c0392b 100%);
}
.fanart-visual {
  background: linear-gradient(145deg, #5b6ef0 0%, #8b3bcc 50%, #c03088 100%);
}
.ink-visual {
  background: linear-gradient(145deg, #2a2520 0%, #1a1510 60%, #0e0c0a 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.col-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.col-emoji {
  font-size: 72px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
  position: relative; z-index: 1;
  transition: transform 0.3s;
}
.col-card:hover .col-emoji { transform: scale(1.1); }

.ink-char {
  font-size: 96px;
  font-family: serif; font-weight: 700;
  color: rgba(245,237,224,0.9);
  text-shadow: 0 0 60px rgba(192,57,43,0.6), 0 4px 12px rgba(0,0,0,0.6);
  letter-spacing: 0;
}

.col-info { padding: 26px 26px 30px; }

.col-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.col-info h3 {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 12px;
}

.col-info p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245,237,224,0.55);
  margin-bottom: 20px;
}

.col-arrow {
  font-size: 13px; font-weight: 700;
  color: var(--gold);
}

/* ─── Products band ──────────────────────────────── */
.products-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.products-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}

.products-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.products-scroll {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.products-scroll span {
  font-size: 15px; font-weight: 600;
  color: rgba(245,237,224,0.55);
}
.dot { color: rgba(245,237,224,0.2); }

/* ─── Quote CTA ──────────────────────────────────── */
.quote-cta {
  position: relative;
  padding: clamp(100px, 16vw, 180px) 24px;
  text-align: center;
  overflow: hidden;
}

.quote-bg { position: absolute; inset: 0; pointer-events: none; }

.orb-dark-1 {
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(192,57,43,0.15) 0%, transparent 65%);
  animation: pulse 6s ease-in-out infinite alternate;
}
.orb-dark-2 {
  width: 400px; height: 400px;
  top: 20%; right: 10%;
  background: radial-gradient(circle, rgba(200,137,58,0.1) 0%, transparent 65%);
}

@keyframes pulse {
  from { opacity: 0.6; transform: translate(-50%, -50%) scale(0.95); }
  to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
}

.quote-inner {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}

.quote-text {
  font-family: var(--f-serif);
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(245,237,224,0.8);
  margin-bottom: 48px;
}
.quote-text strong {
  font-weight: 700;
  font-style: normal;
  color: var(--cream);
}

.btn-light {
  display: inline-block;
  padding: 16px 36px;
  border: 1.5px solid rgba(245,237,224,0.3);
  border-radius: 999px;
  font-weight: 800; font-size: 15px;
  color: var(--cream);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245,237,224,0.6);
  transform: translateY(-2px);
}

.quote-seal {
  margin-top: 48px;
  font-size: 22px; font-weight: 700;
  color: var(--red);
  opacity: 0.5;
  font-family: serif;
  letter-spacing: 0.06em;
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px clamp(16px, 4vw, 48px);
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}

.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 15px;
}

.footer-seal-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--red);
  color: #fff;
  font-size: 11px; font-weight: 700;
  border-radius: 5px;
}

.footer-copy { font-size: 12px; color: var(--muted); }

.footer-link {
  font-size: 13px; font-weight: 700;
  color: var(--gold);
  transition: opacity 0.2s;
}
.footer-link:hover { opacity: 0.7; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .col-grid {
    grid-template-columns: 1fr;
    max-width: 480px; margin: 0 auto;
  }
  .col-card--mid { transform: none; }
  .col-card--mid:hover { transform: translateY(-8px); }
}

@media (max-width: 600px) {
  .nav { padding: 12px 16px; }
  .nav-shop { display: none; }
  .hero { padding: 100px 16px 60px; }
  .footer { flex-direction: column; text-align: center; padding: 24px 16px; }
}
