/* ═══════════════════════════════════════════════════
   Aura Infinity — Dark Celtic Design System
   ═══════════════════════════════════════════════════ */

:root {
  --black:       #0a0a0a;
  --ink:         #111115;
  --charcoal:    #1a1a22;
  --muted:       #2a2a35;
  --dim:         #4a4a5a;
  --silver:      #8a8a9a;
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-dim:    #8a6d2e;
  --green-deep:  #0f2a1f;
  --green-mid:   #1a3a2a;
  --green-glow:  #2a5a3a;
  --purple-deep: #1e0f2e;
  --purple-mid:  #2d1b4e;
  --purple-glow: #4a2d7a;
  --white:       #f0ead6;
  --cream:       #d4c9a8;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ─── Typography ──────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Cinzel', 'Times New Roman', serif; font-weight: 700; letter-spacing: 0.05em; }

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* ─── Celtic Knot SVG Decorations ─────────────── */
.knot-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.knot-divider::before,
.knot-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
}

/* ─── Hero Section ────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(26,58,42,0.4) 0%, transparent 60%),
    var(--black);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(201,168,76,0.015) 80px,
      rgba(201,168,76,0.015) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(201,168,76,0.015) 80px,
      rgba(201,168,76,0.015) 81px
    );
  pointer-events: none;
}

.hero-knot {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  opacity: 0.7;
  animation: pulse-gold 4s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% { opacity: 0.5; filter: drop-shadow(0 0 8px rgba(201,168,76,0.3)); }
  50%       { opacity: 0.9; filter: drop-shadow(0 0 20px rgba(201,168,76,0.6)); }
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 40px rgba(201,168,76,0.15);
}

.hero h1 span {
  color: var(--gold);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--silver);
  max-width: 540px;
  margin: 0 auto 3rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  box-shadow: 0 0 30px rgba(201,168,76,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
  transform: translateY(-2px);
}

/* ─── Sections ─────────────────────────────────── */
section {
  padding: 6rem 2rem;
  position: relative;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  color: var(--silver);
  font-size: 1.05rem;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
  font-style: italic;
}

/* ─── Clothing Section ────────────────────────── */
#clothing {
  background: var(--ink);
  position: relative;
}

#clothing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

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

.clothing-card {
  background: var(--charcoal);
  border: 1px solid var(--muted);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.clothing-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.clothing-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 8px 40px rgba(201,168,76,0.08);
}

.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  opacity: 0.6;
}

.clothing-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.clothing-card p {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── Digital Product Section ──────────────────── */
#digital {
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--black) 100%);
  text-align: center;
}

.digital-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--charcoal);
  border: 1px solid var(--green-glow);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 2rem;
}

.digital-knot {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  opacity: 0.7;
}

#digital h2 { color: var(--white); margin-bottom: 1rem; }
#digital .section-subtitle { margin-bottom: 2rem; }

.tiktok-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border: 1px solid var(--gold-dim);
  padding: 0.75rem 1.5rem;
  transition: all 0.3s;
  margin-top: 1.5rem;
}

.tiktok-link:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 25px rgba(201,168,76,0.3);
}

/* ─── About / Philosophy ───────────────────────── */
#about {
  background: var(--black);
  text-align: center;
}

.about-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 2;
  color: var(--silver);
}

.about-text strong {
  color: var(--gold);
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  text-align: center;
}

.value-item {
  padding: 1.5rem;
}

.value-item svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  opacity: 0.6;
}

.value-item h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--dim);
}

/* ─── Footer ──────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--charcoal);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  opacity: 0.5;
}

footer p {
  color: var(--dim);
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

footer p.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--gold-dim);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.footer-meta {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ─── Animations ───────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fade-up 0.8s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.25s; }
.fade-up:nth-child(3) { animation-delay: 0.4s; }
.fade-up:nth-child(4) { animation-delay: 0.55s; }
.fade-up:nth-child(5) { animation-delay: 0.7s; }
.fade-up:nth-child(6) { animation-delay: 0.85s; }

/* ─── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 4rem 1.5rem; }
  .hero { padding: 3rem 1.5rem; }
  .clothing-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .values-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; text-align: center; }
}