/* ─────────────────────────────────────────────
   Kinkari — Landing Page Styles
   ───────────────────────────────────────────── */

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dim:    #8a6f2e;
  --dark:        #0e0d0b;
  --dark-2:      #1a1814;
  --cream:       #F5F0E8;
  --cream-2:     #EDE7D9;
  --text:        #3d3328;
  --text-muted:  #9a8c7a;
  --font-serif:  'Cormorant Garant', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:  cubic-bezier(0.83, 0, 0.17, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: auto; /* lenis takes over */
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ─── CUSTOM CURSOR ──────────────────────────────────────── */
.cursor,
.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: opacity 0.3s;
}

.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s;
}

.cursor-follower.expanded {
  width: 64px;
  height: 64px;
  border-color: rgba(201, 168, 76, 0.7);
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: background 0.4s, padding 0.4s;
}

.nav.scrolled {
  background: rgba(14, 13, 11, 0.85);
  backdrop-filter: blur(12px);
  padding: 16px 48px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.3s, transform 0.3s;
}

.nav-cta:hover { background: var(--gold-light); }

/* ─── MAGNETIC BUTTON ────────────────────────────────────── */
.btn-magnetic {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}

/* ─── SECTION LABEL ──────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal-up {
  transform: translateY(40px);
}

.reveal-card {
  transform: translateY(60px);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #C9A84C 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation: orbDrift 12s ease-in-out infinite alternate;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #8a6f2e 0%, transparent 70%);
  bottom: -10%;
  left: 5%;
  animation: orbDrift 16s ease-in-out infinite alternate-reverse;
}

@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 14vw, 12rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 0.9;
  color: var(--cream);
  margin-bottom: 28px;
  overflow: hidden;
}

.hero-title-line {
  display: block;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-light) 50%, var(--cream) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 48px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 16px 36px;
  border-radius: 100px;
  transition: background 0.3s, gap 0.3s;
}

.hero-btn:hover { background: var(--gold-light); gap: 18px; }

.hero-btn-arrow {
  font-size: 1rem;
  transition: transform 0.3s;
}

.hero-btn:hover .hero-btn-arrow { transform: translate(2px, -2px); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

.scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.hero-float {
  position: absolute;
  font-size: 1.2rem;
  color: var(--gold-dim);
  opacity: 0.4;
  animation: floatDrift 8s ease-in-out infinite;
  z-index: 1;
}

.hero-float--1 { top: 20%; left: 8%;  animation-delay: 0s;   animation-duration: 7s;  }
.hero-float--2 { top: 65%; right: 7%; animation-delay: 2s;   animation-duration: 9s;  }
.hero-float--3 { bottom: 20%; left: 15%; animation-delay: 4s;  animation-duration: 6s;  }

@keyframes floatDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(15deg); }
}

/* ─── TICKER ─────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: 14px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tickerScroll 22s linear infinite;
  will-change: transform;
}

.ticker-track span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--dark);
  flex-shrink: 0;
}

.ticker-dot {
  opacity: 0.6;
  font-size: 0.7rem !important;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
  padding: 120px 48px;
  background: var(--dark-2);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

.about-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  animation: ringRotate 20s linear infinite;
}

.about-ring--outer { width: 360px; height: 360px; animation-duration: 30s; }
.about-ring--inner { width: 260px; height: 260px; animation-direction: reverse; animation-duration: 20s; border-style: dashed; }

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.about-portrait-frame {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.04);
  z-index: 2;
}

.about-portrait-inner {
  text-align: center;
  padding: 20px;
}

.about-portrait-svg {
  width: 100px;
  height: 100px;
  margin: 0 auto 8px;
  opacity: 0.7;
}

.about-portrait-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

.about-portrait-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 28px;
}

.about-heading em {
  color: var(--gold);
  font-style: italic;
}

.about-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 460px;
}

.about-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  margin-top: 12px;
  transition: border-color 0.3s, color 0.3s;
}

.about-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ─── PILLARS ────────────────────────────────────────────── */
.pillars {
  padding: 120px 48px;
  background: var(--dark);
  position: relative;
}

.pillars-header {
  text-align: center;
  margin-bottom: 72px;
}

.pillars-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}

.pillars-heading em { color: var(--gold); font-style: italic; }

.pillars-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  padding: 48px 36px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 2px;
  background: rgba(201, 168, 76, 0.02);
  transition: border-color 0.3s, background 0.3s, transform 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}

.pillar-card:hover { border-color: rgba(201, 168, 76, 0.3); background: rgba(201, 168, 76, 0.04); transform: translateY(-6px); }
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
}

.pillar-body {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ─── COLLECTIONS ────────────────────────────────────────── */
.collections {
  padding: 120px 48px;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.collections::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.collections-header {
  text-align: center;
  margin-bottom: 72px;
}

.collections-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}

.collections-heading em { color: var(--gold); font-style: italic; }

.collections-track {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.collection-card {
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.3s;
  cursor: pointer;
}

.collection-card:hover { transform: translateY(-10px); border-color: rgba(201, 168, 76, 0.3); }

.collection-card-visual {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.collection-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, hsl(var(--hue) 40% 15%) 0%, hsl(var(--hue) 20% 6%) 100%);
  transition: transform 0.6s var(--ease-out);
}

.collection-card:hover .collection-card-bg { transform: scale(1.05); }

.collection-card-icon {
  position: relative;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.7;
  z-index: 1;
  transition: transform 0.5s var(--ease-out), opacity 0.3s;
}

.collection-card:hover .collection-card-icon { transform: scale(1.15) rotate(10deg); opacity: 1; }

.collection-card-info {
  padding: 24px 28px;
  background: rgba(14, 13, 11, 0.8);
}

.collection-card-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.collection-card-info p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ─── PROCESS ────────────────────────────────────────────── */
.process {
  padding: 120px 48px;
  background: var(--dark);
  position: relative;
}

.process-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.process-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 52px;
}

.process-heading em { color: var(--gold); font-style: italic; }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.process-step-num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 4px;
}

.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.process-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-rings {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pr {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.pr--1 { width: 320px; height: 320px; animation: ringRotate 25s linear infinite; }
.pr--2 { width: 220px; height: 220px; animation: ringRotate 18s linear infinite reverse; border-style: dashed; }
.pr--3 { width: 130px; height: 130px; animation: ringRotate 12s linear infinite; border-color: rgba(201, 168, 76, 0.35); }

.pr-center {
  font-size: 2rem;
  color: var(--gold);
  animation: pulseGlow 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(201, 168, 76, 0.3); opacity: 0.7; }
  50%       { text-shadow: 0 0 30px rgba(201, 168, 76, 0.8); opacity: 1; }
}

/* ─── CTA ────────────────────────────────────────────────── */
.cta {
  padding: 140px 48px;
  background: var(--dark-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

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

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}

.cta-orb--1 {
  width: 500px;
  height: 500px;
  background: var(--gold);
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
}

.cta-orb--2 {
  width: 300px;
  height: 300px;
  background: var(--gold-dim);
  bottom: 0;
  right: 10%;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 24px;
}

.cta-heading em { color: var(--gold); font-style: italic; }

.cta-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 52px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-body strong { color: var(--gold); font-weight: 500; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 18px 44px;
  border-radius: 100px;
  transition: background 0.3s, transform 0.3s;
}

.cta-btn:hover { background: var(--gold-light); }

.cta-btn-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-ig-icon {
  width: 18px;
  height: 18px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  padding: 52px 48px 40px;
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-top {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-ig {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-ig:hover { color: var(--gold); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-cta { display: none; }

  .about-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .about-visual { height: 280px; }
  .about-ring--outer { width: 260px; height: 260px; }
  .about-ring--inner { width: 180px; height: 180px; }
  .about-portrait-frame { width: 160px; height: 160px; }
  .about-body { max-width: 100%; }

  .pillars { padding: 80px 24px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 20px; }

  .collections { padding: 80px 24px; }
  .collections-track { grid-template-columns: 1fr 1fr; }

  .process { padding: 80px 24px; }
  .process-container { grid-template-columns: 1fr; gap: 56px; }
  .process-visual { display: none; }

  .about { padding: 80px 24px; }

  .cta { padding: 100px 24px; }
  .footer { padding: 40px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 540px) {
  .hero-content { padding: 0 20px; }
  .collections-track { grid-template-columns: 1fr; }
  .hero-btn { padding: 14px 28px; }
  .cta-btn { padding: 16px 32px; }
}

@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}
