/* ============================================================
   VARO FABRICS — Luxury Redesign
   Palette: Deep Obsidian · Iridescent Platinum · Liquid Rose
   Theme: 3D Depth · Magnetic Parallax · Premium Textures
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@200;300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── CSS Custom Properties ─────────────────────────────── */
:root {
  /* Core Palette */
  --obsidian:      #07060d;
  --obsidian-2:    #0d0b18;
  --obsidian-3:    #120f20;
  --void:          #04030a;

  /* Iridescent Platinum */
  --plat-100:      #f5f2ff;
  --plat-200:      #ddd6f7;
  --plat-300:      #c4b8ef;
  --plat-400:      #a99de0;
  --plat-500:      #8878c9;
  --plat-600:      #6655aa;

  /* Liquid Rose / Mauve */
  --rose-100:      #ffe8f4;
  --rose-200:      #f5bfe0;
  --rose-300:      #e891c8;
  --rose-400:      #d463ae;
  --rose-500:      #b83d8e;
  --rose-600:      #8c2068;

  /* Accent: Champagne Iridescence */
  --iris-a:        #c8b8f5;
  --iris-b:        #f0c4e8;
  --iris-c:        #b8e0f5;
  --iris-bright:   #e8d8ff;

  /* Functional */
  --text-primary:  #f0ecff;
  --text-secondary:#c4b8ef;
  --text-muted:    #7a6fa8;
  --border-subtle: rgba(200,184,245,0.1);
  --border-glow:   rgba(200,184,245,0.25);

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Montserrat', system-ui, sans-serif;
  --font-serif:    'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-pad:   8rem 2rem;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     28px;

  /* Transitions */
  --ease-luxury:   cubic-bezier(0.23, 1, 0.32, 1);
  --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::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(--void);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none;
}

/* ── Background Canvas ────────────────────────────────── */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Custom Cursor ────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--iris-bright);
  pointer-events: none;
  z-index: 9999;
  margin: -3px 0 0 -3px;
  box-shadow: 0 0 12px rgba(232,216,255,0.9), 0 0 28px rgba(200,184,245,0.5);
  transition: opacity 0.2s, transform 0.1s;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(200,184,245,0.4);
  pointer-events: none;
  z-index: 9998;
  margin: -19px 0 0 -19px;
  transition: width 0.35s var(--ease-luxury), height 0.35s var(--ease-luxury),
              border-color 0.3s, opacity 0.3s, background 0.3s;
}

.cursor-ring.expanded {
  width: 60px; height: 60px;
  margin: -30px 0 0 -30px;
  border-color: rgba(232,216,255,0.8);
  background: rgba(200,184,245,0.04);
}

/* ── Navigation ───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.6rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease-luxury), padding 0.4s var(--ease-luxury),
              backdrop-filter 0.5s;
}

nav.scrolled {
  padding: 1rem 3rem;
  background: rgba(7,6,13,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--plat-100);
  position: relative;
}

.nav-logo span {
  background: linear-gradient(135deg, var(--plat-200) 0%, var(--iris-a) 40%, var(--rose-200) 70%, var(--plat-100) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: navLogoShift 5s ease-in-out infinite;
}

@keyframes navLogoShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plat-300);
  transition: color 0.3s, letter-spacing 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--iris-a), var(--rose-300));
  transition: width 0.4s var(--ease-luxury);
}

.nav-links a:hover {
  color: var(--plat-100);
  letter-spacing: 0.22em;
}

.nav-links a:hover::after { width: 100%; }

.nav-portals {
  display: flex;
  gap: 0.75rem;
}

.btn-portal {
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  transition: all 0.35s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}

.btn-staff {
  border: 1px solid rgba(200,184,245,0.3);
  color: var(--plat-300);
  background: rgba(200,184,245,0.05);
}

.btn-staff:hover {
  background: rgba(200,184,245,0.12);
  border-color: rgba(200,184,245,0.6);
  color: var(--plat-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,184,245,0.15);
}

.btn-admin {
  border: 1px solid rgba(232,145,200,0.3);
  color: var(--rose-200);
  background: rgba(232,145,200,0.05);
}

.btn-admin:hover {
  background: rgba(232,145,200,0.12);
  border-color: rgba(232,145,200,0.6);
  color: var(--rose-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,145,200,0.2);
}

/* ── HERO ─────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
  z-index: 1;
}

/* Prism mesh overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 30%, rgba(140,100,220,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(200,100,180,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(100,130,220,0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--iris-a);
  border: 1px solid rgba(200,184,245,0.2);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  background: rgba(200,184,245,0.04);
  backdrop-filter: blur(10px);
  margin-bottom: 2.5rem;
  animation: badgeFadeIn 1.2s var(--ease-luxury) 0.3s both;
  position: relative;
  z-index: 1;
}

.dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose-300);
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--rose-300);
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}

@keyframes badgeFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 10rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1;
  position: relative;
  z-index: 1;
  animation: heroReveal 1.5s var(--ease-luxury) 0.5s both;
  background: linear-gradient(
    135deg,
    var(--plat-100) 0%,
    var(--iris-a) 25%,
    var(--rose-200) 50%,
    var(--iris-c) 75%,
    var(--plat-200) 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroReveal 1.5s var(--ease-luxury) 0.5s both,
             prismShift 8s ease-in-out 2s infinite;
  filter: drop-shadow(0 0 60px rgba(200,184,245,0.25));
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: perspective(800px) rotateX(20deg) translateY(50px) scale(0.95);
    filter: drop-shadow(0 0 0px rgba(200,184,245,0));
  }
  to {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg) translateY(0) scale(1);
    filter: drop-shadow(0 0 60px rgba(200,184,245,0.25));
  }
}

@keyframes prismShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-title-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--iris-a), var(--rose-300), transparent);
  margin: 1.5rem auto;
  position: relative;
  z-index: 1;
  animation: ruleExpand 1.2s var(--ease-luxury) 1.2s both;
}

@keyframes ruleExpand {
  from { width: 0; opacity: 0; }
  to   { width: 80px; opacity: 1; }
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.35em;
  color: var(--plat-300);
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  animation: subtitleIn 1.2s var(--ease-luxury) 1s both;
}

@keyframes subtitleIn {
  from { opacity: 0; letter-spacing: 0.6em; }
  to   { opacity: 0.85; letter-spacing: 0.35em; }
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
  animation: fadeUp 1s var(--ease-luxury) 1.3s both;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: fadeUp 1s var(--ease-luxury) 1.5s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn-primary {
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--plat-500) 0%, var(--rose-500) 60%, var(--plat-600) 100%);
  background-size: 200% 200%;
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury),
              background-position 0.5s;
  box-shadow: 0 4px 30px rgba(136,120,201,0.3), 0 2px 10px rgba(184,61,142,0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--iris-a), var(--rose-300), var(--iris-c));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 50px rgba(136,120,201,0.5), 0 6px 20px rgba(184,61,142,0.35);
  background-position: 100% 0%;
}

.btn-secondary {
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  border: 1px solid rgba(200,184,245,0.3);
  color: var(--plat-200);
  background: rgba(200,184,245,0.04);
  backdrop-filter: blur(10px);
  transition: all 0.35s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(200,184,245,0.08), rgba(232,145,200,0.06));
  opacity: 0;
  transition: opacity 0.35s;
}

.btn-secondary:hover {
  border-color: rgba(200,184,245,0.7);
  color: var(--plat-100);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200,184,245,0.15);
}

.btn-secondary:hover::before { opacity: 1; }

/* Decorative corners */
.hero-corner-bl, .hero-corner-br {
  position: absolute;
  bottom: 4rem;
  width: 60px; height: 60px;
  border-color: rgba(200,184,245,0.2);
  border-style: solid;
  z-index: 1;
}

.hero-corner-bl {
  left: 4rem;
  border-width: 0 0 1px 1px;
}

.hero-corner-br {
  right: 4rem;
  border-width: 0 1px 1px 0;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 1;
  animation: scrollHintAnim 2.5s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 22px; height: 34px;
  border: 1px solid rgba(200,184,245,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  border-radius: 2px;
  background: var(--iris-a);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 1; top: 5px; }
  50%       { opacity: 0; top: 18px; }
}

@keyframes scrollHintAnim {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(-6px); opacity: 0.25; }
}

/* ── Sections Base ────────────────────────────────────── */
section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section Labels & Titles ─────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-300);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--plat-100);
  margin-bottom: 1.5rem;
}

.section-divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--iris-a), var(--rose-300), transparent);
  margin-bottom: 2.5rem;
}

/* ── Reveal Animation ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px) perspective(600px) rotateX(8deg);
  transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) perspective(600px) rotateX(0);
}

/* ── ABOUT ────────────────────────────────────────────── */
#about {
  padding: var(--section-pad);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--plat-400);
  margin-bottom: 1.2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-card {
  background: linear-gradient(135deg, rgba(200,184,245,0.05) 0%, rgba(232,145,200,0.03) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s var(--ease-luxury);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(200,184,245,0.08), rgba(232,145,200,0.05));
  opacity: 0;
  transition: opacity 0.4s;
}

.stat-card:hover::before { opacity: 1; }

.stat-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 8px 40px rgba(200,184,245,0.1);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--iris-a), var(--rose-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* About visual */
.about-visual { perspective: 1000px; }

.about-image-container {
  background: linear-gradient(135deg, rgba(200,184,245,0.04) 0%, rgba(232,145,200,0.03) 50%, rgba(184,224,245,0.03) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  transform-style: preserve-3d;
  animation: aboutFloat 8s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.about-image-container::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(200,184,245,0.03) 0deg,
    rgba(232,145,200,0.04) 120deg,
    rgba(184,224,245,0.03) 240deg,
    rgba(200,184,245,0.03) 360deg
  );
  animation: prismRotate 20s linear infinite;
  pointer-events: none;
}

@keyframes prismRotate {
  to { transform: rotate(360deg); }
}

.erbil-icon {
  font-size: 5rem;
  display: block;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(200,184,245,0.4));
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(200,184,245,0.4)); }
  50%       { filter: drop-shadow(0 0 40px rgba(232,145,200,0.6)); }
}

.erbil-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--plat-200);
  margin-bottom: 0.3rem;
}

.erbil-sub {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes aboutFloat {
  0%, 100% { transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(0); }
  25%       { transform: perspective(1000px) rotateY(3deg) rotateX(2deg) translateY(-8px); }
  50%       { transform: perspective(1000px) rotateY(0deg) rotateX(-1deg) translateY(-14px); }
  75%       { transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateY(-6px); }
}

/* ── ORIGINS ──────────────────────────────────────────── */
#origins {
  padding: var(--section-pad);
  text-align: center;
}

#origins .section-divider { margin: 0 auto 3rem; }
#origins .section-title { margin-bottom: 1rem; }

.origins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.origin-card {
  background: linear-gradient(160deg, rgba(200,184,245,0.06) 0%, rgba(232,145,200,0.03) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.4s var(--ease-luxury), border-color 0.4s, background 0.4s;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.origin-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(200,184,245,0.1), rgba(232,145,200,0.06));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.origin-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 20px 60px rgba(200,184,245,0.12), 0 4px 20px rgba(232,145,200,0.08);
}

.origin-card:hover::after { opacity: 1; }

.origin-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 40%,
    rgba(200,184,245,0.06) 50%,
    transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-luxury);
  pointer-events: none;
}

.origin-card:hover .origin-shimmer { transform: translateX(100%); }

.origin-flag {
  display: block;
  font-size: 3rem;
  margin-bottom: 1.2rem;
  animation: flagFloat 3s ease-in-out infinite;
  transform-origin: center bottom;
}

.origin-card:nth-child(1) .origin-flag { animation-delay: 0s; }
.origin-card:nth-child(2) .origin-flag { animation-delay: 0.5s; }
.origin-card:nth-child(3) .origin-flag { animation-delay: 1s; }
.origin-card:nth-child(4) .origin-flag { animation-delay: 1.5s; }

@keyframes flagFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-6px) scale(1.06); }
}

.origin-country {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--plat-100);
  margin-bottom: 1rem;
}

.origin-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--plat-400);
}

/* ── COLLECTION ──────────────────────────────────────── */
#collection {
  padding: var(--section-pad);
  text-align: center;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.fabric-card {
  background: linear-gradient(160deg, rgba(200,184,245,0.05) 0%, rgba(232,145,200,0.03) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-luxury);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}

.fabric-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 20px 60px rgba(200,184,245,0.12);
}

.fabric-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.fabric-card-img-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, rgba(200,184,245,0.08), rgba(232,145,200,0.05));
}

.fabric-card-body {
  padding: 1.5rem;
}

.fabric-card-type {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-300);
  margin-bottom: 0.5rem;
}

.fabric-card-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--plat-100);
  margin-bottom: 0.8rem;
}

.fabric-card-price {
  font-size: 1rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--iris-a), var(--rose-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fabric-card-price span {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}

.empty-collection {
  grid-column: 1/-1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
}

/* ── CONTACT ──────────────────────────────────────────── */
#contact {
  padding: var(--section-pad);
  text-align: center;
}

#contact .section-divider { margin: 0 auto 3rem; }

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.contact-item {
  background: linear-gradient(135deg, rgba(200,184,245,0.05) 0%, rgba(232,145,200,0.03) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  min-width: 200px;
  flex: 1;
  max-width: 280px;
  transition: all 0.4s var(--ease-luxury);
  transform-style: preserve-3d;
  will-change: transform;
}

.contact-item:hover {
  border-color: var(--border-glow);
  box-shadow: 0 12px 40px rgba(200,184,245,0.1);
  transform: translateY(-6px);
}

.contact-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-300);
  margin-bottom: 0.6rem;
}

.contact-value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--plat-200);
  line-height: 1.6;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
}

footer strong { color: var(--plat-300); }

/* ── 3D Geo Canvas ─────────────────────────────────── */
#geo-canvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Tilt Glare ──────────────────────────────────────── */
.tilt-glare {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 10;
  border-radius: inherit;
}

.tilt-glare-inner {
  position: absolute;
  top: 50%; left: -20%;
  width: 60%; height: 200%;
  background: linear-gradient(
    to bottom,
    rgba(232,216,255,0.18) 0%,
    rgba(232,216,255,0.05) 50%,
    rgba(232,216,255,0) 100%
  );
  transform-origin: 0 0;
  opacity: 0;
  transition: opacity 0.25s;
}

/* ── Thread Spinner ──────────────────────────────────── */
#thread-spinner-wrap {
  position: absolute;
  right: 8%; top: 50%;
  transform: translateY(-50%);
  width: 200px; height: 200px;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 30px rgba(200,184,245,0.3));
  animation: spinnerFloat 7s ease-in-out infinite;
}

.thread-spinner-canvas { width: 100%; height: 100%; }

@keyframes spinnerFloat {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  33%       { transform: translateY(calc(-50% - 18px)) rotate(3deg); }
  66%       { transform: translateY(calc(-50% + 10px)) rotate(-2deg); }
}

/* ── Flip Reveal ─────────────────────────────────────── */
.flip-reveal {
  opacity: 0;
  transform: perspective(800px) rotateX(25deg) translateY(40px);
  transition: opacity 0.85s var(--ease-luxury), transform 0.85s var(--ease-luxury);
}

.flip-reveal.flip-revealed {
  opacity: 1;
  transform: perspective(800px) rotateX(0deg) translateY(0);
}

.flip-reveal:nth-child(2) { transition-delay: 0.1s; }
.flip-reveal:nth-child(3) { transition-delay: 0.2s; }
.flip-reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── [data-depth] parallax ─────────────────────────── */
[data-depth] {
  will-change: transform;
  transition: transform 0.08s linear;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .origins-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .origins-grid { grid-template-columns: 1fr 1fr; }
  #thread-spinner-wrap { display: none; }
  .hero-corner-bl, .hero-corner-br { display: none; }
  .contact-grid { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .origins-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ── Contact clickable cards ─────────────────────────────── */
.contact-item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury), border-color 0.3s;
}

.contact-item-link:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 0 28px rgba(200, 184, 245, 0.25), 0 8px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(200, 184, 245, 0.45);
}

.contact-item-link:hover .contact-label {
  color: var(--iris-bright);
}

.contact-item-link:hover .contact-value {
  color: var(--plat-100);
}

/* ── Footer Social Row ───────────────────────────────────── */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200, 184, 245, 0.1);
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  color: var(--plat-300);
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 184, 245, 0.15);
  background: rgba(200, 184, 245, 0.04);
  transition: all 0.3s ease;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-social-link:hover {
  color: #fff;
  background: rgba(200, 184, 245, 0.12);
  border-color: rgba(200, 184, 245, 0.4);
  transform: translateY(-2px);
}

/* Instagram gradient hover */
#footer-ig:hover { color: #e1306c; border-color: #e1306c; }
/* TikTok hover */
#footer-tt:hover { color: #69c9d0; border-color: #69c9d0; }
/* WhatsApp hover */
#footer-wa:hover { color: #25d366; border-color: #25d366; }
/* Phone hover */
#footer-phone:hover { color: var(--iris-bright); border-color: var(--iris-bright); }

/* ── Floating Social Buttons ─────────────────────────────── */
.social-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 9999;
}

.social-fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, opacity 0.3s;
  animation: fabEntrance 0.5s var(--ease-luxury) both;
}

.social-fab svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.social-fab:hover {
  transform: scale(1.18) translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}

/* Staggered entrance */
.social-fab:nth-child(1) { animation-delay: 0.1s; }
.social-fab:nth-child(2) { animation-delay: 0.2s; }
.social-fab:nth-child(3) { animation-delay: 0.3s; }
.social-fab:nth-child(4) { animation-delay: 0.4s; }

@keyframes fabEntrance {
  from { opacity: 0; transform: scale(0.5) translateX(40px); }
  to   { opacity: 1; transform: scale(1) translateX(0); }
}

/* Instagram FAB */
.social-fab-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

/* TikTok FAB */
.social-fab-tt {
  background: #010101;
  color: #69c9d0;
  border: 2px solid #69c9d0;
}
.social-fab-tt:hover { background: #111; }

/* WhatsApp FAB */
.social-fab-wa {
  background: #25d366;
  color: #fff;
}
.social-fab-wa:hover { background: #20b858; }

/* Phone FAB */
.social-fab-ph {
  background: linear-gradient(135deg, var(--plat-500), var(--rose-500));
  color: #fff;
}

@media (max-width: 480px) {
  .social-float { bottom: 1rem; right: 0.8rem; }
  .social-fab { width: 46px; height: 46px; }
  .social-fab svg { width: 20px; height: 20px; }
}
