/* ===== BASE ===== */
:root {
  --neon-pink: #FF2DAA;
  --neon-pink-bright: #FF6EC7;
  --neon-magenta: #D100E0;
  --neon-purple: #9D00FF;
  --bg-deep: #0A0012;
  --bg-dark: #110018;
  --bg-card: #180022;
  --text-primary: #FFF0F8;
  --text-secondary: #E0C8D8;
  --text-muted: #906080;
  --gold-accent: #FFD700;
  --border-neon: rgba(255, 45, 170, 0.3);
  --glow-pink: 0 0 20px rgba(255, 45, 170, 0.5), 0 0 40px rgba(255, 45, 170, 0.25);
  --glow-text: 0 0 8px rgba(255, 45, 170, 0.8), 0 0 20px rgba(255, 45, 170, 0.5), 0 0 40px rgba(255, 45, 170, 0.3);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

p { font-family: 'Montserrat', sans-serif; font-weight: 300; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw;
  background: linear-gradient(to bottom, rgba(10, 0, 18, 0.95) 0%, transparent 100%);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--neon-pink);
  text-shadow: var(--glow-text);
  line-height: 1;
}

.nav-heart {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 6px rgba(255, 45, 170, 0.8));
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--neon-pink-bright); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 0, 18, 0.85) 0%,
    rgba(10, 0, 18, 0.6) 40%,
    rgba(17, 0, 24, 0.5) 70%,
    rgba(255, 45, 170, 0.15) 100%
  );
  z-index: 1;
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 45, 170, 0.03) 2px,
    rgba(255, 45, 170, 0.03) 4px
  );
  z-index: 2;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 140px 8vw 100px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(255, 45, 170, 0.7);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--neon-pink);
  box-shadow: 0 0 8px rgba(255, 45, 170, 0.8);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 0.95;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.hero-title-line {
  display: block;
}

.hero-title-highlight {
  color: var(--neon-pink);
  text-shadow: var(--glow-text);
  font-style: italic;
}

.hero-body {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 40px;
  border: 1.5px solid var(--neon-pink);
  color: var(--neon-pink);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(255, 45, 170, 0.08);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--neon-pink);
  transform: translateX(-100%);
  transition: transform 0.4s;
  z-index: -1;
}

.hero-cta:hover {
  color: var(--bg-deep);
  box-shadow: var(--glow-pink);
}

.hero-cta:hover::before {
  transform: translateX(0);
}

.hero-cta-arrow {
  transition: transform 0.3s;
}

.hero-cta:hover .hero-cta-arrow {
  transform: translateX(5px);
}

/* Neon accent corner */
.hero-accent-corner {
  position: absolute;
  bottom: 60px;
  right: 8vw;
  width: 200px;
  height: 200px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 130px 8vw;
  background: var(--bg-dark);
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--neon-pink), transparent);
  box-shadow: 0 0 20px rgba(255, 45, 170, 0.4);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 60px;
  max-width: 960px;
  margin: 0 auto;
}

.manifesto-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  color: var(--neon-pink);
  text-shadow: 0 0 20px rgba(255, 45, 170, 0.5);
  line-height: 1;
  opacity: 0.6;
}

.manifesto-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
  line-height: 1.2;
}

.manifesto-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 18px;
}

.manifesto-body:last-child { margin-bottom: 0; }

/* ===== CRAFT ===== */
.craft {
  padding: 120px 8vw;
  background: var(--bg-deep);
}

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

.craft-header {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-bottom: 80px;
}

.craft-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  color: var(--neon-pink);
  text-shadow: 0 0 20px rgba(255, 45, 170, 0.5);
  opacity: 0.5;
  line-height: 1;
}

.craft-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.craft-step {
  border-top: 1px solid var(--border-neon);
  padding-top: 28px;
  position: relative;
}

.craft-step::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon-pink);
  box-shadow: 0 0 10px rgba(255, 45, 170, 0.8);
  transition: width 0.6s ease;
}

.craft-step:hover::after { width: 100%; }

.craft-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--neon-pink);
  text-shadow: 0 0 12px rgba(255, 45, 170, 0.6);
  margin-bottom: 14px;
}

.craft-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.craft-step-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SHOWCASE ===== */
.showcase {
  padding: 130px 8vw;
  background: var(--bg-dark);
}

.showcase-inner { max-width: 1200px; margin: 0 auto; }

.showcase-header {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 80px;
}

.showcase-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  color: var(--neon-pink);
  text-shadow: 0 0 20px rgba(255, 45, 170, 0.5);
  opacity: 0.5;
  line-height: 1;
}

.showcase-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.showcase-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--neon-pink), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.showcase-card:hover {
  border-color: rgba(255, 45, 170, 0.6);
  box-shadow: 0 0 30px rgba(255, 45, 170, 0.15);
}

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

.showcase-card-tall { grid-row: span 2; }

.showcase-card-inner { padding: 36px 32px 28px; }

.showcase-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon-pink);
  text-shadow: 0 0 8px rgba(255, 45, 170, 0.6);
  margin-bottom: 16px;
}

.showcase-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.showcase-card-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.showcase-card-visual {
  padding: 0 32px 36px;
  flex: 1;
}

.showcase-visual-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Visual: Portrait */
.portrait-visual {
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 160px;
}

.portrait-base {
  width: 100px;
  height: 14px;
  background: var(--neon-magenta);
  border-radius: 4px;
  opacity: 0.4;
  box-shadow: 0 0 15px rgba(209, 0, 224, 0.3);
}

.portrait-head {
  width: 70px;
  height: 90px;
  background: var(--neon-magenta);
  border-radius: 50% 50% 44% 44%;
  opacity: 0.5;
  box-shadow: 0 0 20px rgba(209, 0, 224, 0.3);
}

.portrait-detail {
  width: 54px;
  height: 6px;
  background: var(--neon-pink);
  border-radius: 2px;
  opacity: 0.3;
  box-shadow: 0 0 8px rgba(255, 45, 170, 0.4);
}

/* Visual: Fossil ring */
.nature-visual {
  height: 140px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fossil-ring {
  width: 90px;
  height: 90px;
  border: 8px solid var(--neon-purple);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 20px rgba(157, 0, 255, 0.3), inset 0 0 20px rgba(157, 0, 255, 0.1);
}

.fossil-ring::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 4px solid rgba(255, 45, 170, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 45, 170, 0.2);
}

.fossil-detail {
  width: 60px;
  height: 4px;
  background: var(--neon-pink);
  border-radius: 2px;
  position: absolute;
  bottom: 60px;
  opacity: 0.3;
  box-shadow: 0 0 8px rgba(255, 45, 170, 0.4);
}

/* Visual: Pillar */
.centrepiece-visual {
  flex-direction: column;
  align-items: center;
  gap: 0;
  height: 140px;
  justify-content: flex-end;
}

.pillar-base {
  width: 80px;
  height: 12px;
  background: var(--neon-pink);
  border-radius: 4px;
  opacity: 0.35;
  box-shadow: 0 0 15px rgba(255, 45, 170, 0.3);
}

.pillar-stem {
  width: 36px;
  height: 80px;
  background: var(--neon-magenta);
  border-radius: 3px;
  opacity: 0.4;
  box-shadow: 0 0 15px rgba(209, 0, 224, 0.25);
}

.pillar-top {
  width: 56px;
  height: 20px;
  background: var(--neon-pink);
  border-radius: 4px 4px 0 0;
  opacity: 0.25;
  box-shadow: 0 0 12px rgba(255, 45, 170, 0.25);
}

/* ===== GALLERY ===== */
.gallery {
  padding: 130px 8vw;
  background: var(--bg-deep);
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--neon-pink), transparent);
  box-shadow: 0 0 20px rgba(255, 45, 170, 0.4);
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-subsection {
  margin-bottom: 100px;
}

.gallery-subsection:last-child {
  margin-bottom: 0;
}

.gallery-header {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.gallery-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  color: var(--neon-pink);
  text-shadow: 0 0 20px rgba(255, 45, 170, 0.5);
  opacity: 0.5;
  line-height: 1;
  min-width: 80px;
  padding-top: 4px;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.1;
}

.gallery-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 500px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  cursor: pointer;
  transition: border-color 0.35s, box-shadow 0.35s;
}

.gallery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--neon-pink), transparent);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 2;
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.35s;
  pointer-events: none;
  z-index: 2;
}

.gallery-card:hover {
  border-color: rgba(255, 45, 170, 0.7);
  box-shadow: 0 0 40px rgba(255, 45, 170, 0.2), 0 0 80px rgba(255, 45, 170, 0.08);
}

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

.gallery-card:hover::after {
  border-color: rgba(255, 45, 170, 0.3);
}

.gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(10, 0, 18, 0.95) 0%, rgba(10, 0, 18, 0.7) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 3;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-caption {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(255, 45, 170, 0.7);
}

/* ===== CLOSING ===== */
.closing {
  padding: 150px 8vw 130px;
  background: var(--bg-deep);
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--neon-pink), transparent);
  box-shadow: 0 0 20px rgba(255, 45, 170, 0.4);
}

.closing-inner { max-width: 800px; margin: 0 auto; }

.closing-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  color: var(--neon-pink);
  text-shadow: 0 0 20px rgba(255, 45, 170, 0.5);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 60px;
}

.closing-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 60px;
}

.closing-quote em {
  color: var(--neon-pink);
  text-shadow: 0 0 12px rgba(255, 45, 170, 0.6);
  font-style: normal;
}

.closing-divider {
  width: 60px;
  height: 1px;
  background: var(--neon-pink);
  box-shadow: 0 0 10px rgba(255, 45, 170, 0.7);
  margin: 0 auto 40px;
}

.closing-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.7;
}

.closing-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(255, 45, 170, 0.5);
  letter-spacing: 0.08em;
  margin-top: 24px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 8vw;
  border-top: 1px solid var(--border-neon);
  background: var(--bg-dark);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--neon-pink);
  text-shadow: 0 0 12px rgba(255, 45, 170, 0.7), 0 0 25px rgba(255, 45, 170, 0.4);
  line-height: 1;
}

.footer-heart {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 5px rgba(255, 45, 170, 0.8));
}

.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .craft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-card-tall {
    grid-row: auto;
  }
  .manifesto-inner {
    grid-template-columns: 1fr;
  }
  .manifesto-number {
    font-size: 3rem;
  }
  .showcase-header {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .footer-brand {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .craft-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    padding: 100px 6vw 80px;
  }
  .nav {
    padding: 20px 6vw;
  }
  .nav-links {
    display: none;
  }
}