/* ========================================================================
   BRIQA — Design System & Complete Styles
   A luxury women's embroidery brand tokenizing on Solana
   ======================================================================== */

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

/* ── CSS Custom Properties (Design Tokens) ───────────────────────────── */
:root {
  /* Color Palette — Warm Luxury */
  --ivory:           #FAF6F1;
  --ivory-warm:      #F5EFE6;
  --champagne:       #F0EAE0;
  --champagne-deep:  #E5DDD0;
  --parchment:       #EDE7DB;

  --espresso:        #2C1810;
  --espresso-soft:   #3D2B1F;
  --taupe:           #7A6B5D;
  --taupe-light:     #9E8E7E;
  --warm-gray:       #B5A898;

  --gold:            #B8943E;
  --gold-light:      #D4B062;
  --gold-pale:       #E8D5A0;
  --gold-deep:       #96752E;

  --lavender:        #9B8BB4;
  --lavender-light:  #B8ABD0;
  --lavender-pale:   #D8D0E8;
  --lavender-deep:   #7A6B96;

  --teal:            #1A5C5A;
  --teal-light:      #2A8A86;
  --teal-pale:       #C8E4E2;

  --charcoal:        #1C1916;
  --charcoal-warm:   #2A2520;
  --charcoal-mid:    #3A3530;

  --olive:           #5C6B2F;
  --rose:            #C4A08A;

  /* Surfaces */
  --surface-primary:    var(--ivory);
  --surface-secondary:  var(--champagne);
  --surface-dark:       var(--charcoal);
  --surface-card:       rgba(255, 252, 248, 0.85);

  /* Text */
  --text-primary:    var(--espresso);
  --text-secondary:  var(--taupe);
  --text-muted:      var(--warm-gray);
  --text-on-dark:    var(--ivory);
  --text-accent:     var(--gold);

  /* Typography Scale */
  --font-display:    'Playfair Display', 'Georgia', serif;
  --font-body:       'Inter', 'Helvetica Neue', sans-serif;
  --font-accent:     'Cormorant Garamond', 'Georgia', serif;

  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;
  --text-6xl:   3.75rem;
  --text-7xl:   4.5rem;
  --text-hero:  clamp(3rem, 8vw, 7rem);

  /* Spacing */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;

  /* Layout */
  --container-max:  1280px;
  --container-wide: 1440px;
  --section-padding-y: clamp(4rem, 8vw, 8rem);

  /* Borders & Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(44, 24, 16, 0.06);
  --shadow-md:    0 4px 12px rgba(44, 24, 16, 0.08);
  --shadow-lg:    0 8px 32px rgba(44, 24, 16, 0.1);
  --shadow-xl:    0 16px 48px rgba(44, 24, 16, 0.12);
  --shadow-gold:  0 4px 24px rgba(184, 148, 62, 0.2);

  /* Transitions */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast:   200ms;
  --duration-normal: 400ms;
  --duration-slow:   700ms;

  /* Z-index scale */
  --z-nav:     1000;
  --z-overlay: 900;
  --z-modal:   1100;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--surface-primary);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ── Typography ──────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

.heading-hero {
  font-size: var(--text-hero);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.heading-section {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.heading-subsection {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

.text-accent-font {
  font-family: var(--font-accent);
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: var(--text-sm);
  font-weight: 500;
}

.text-label {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: var(--text-sm);
  color: var(--gold);
  font-weight: 500;
}

/* ── Layout Utilities ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding-block: var(--section-padding-y);
}

.section:not(.footer) {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(2rem, 3.5vh, 3.5rem);
}

/* ── Scroll Reveal Animation ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}


/* ========================================================================
   NAVIGATION
   ======================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: var(--space-5) 0;
  transition: background-color var(--duration-normal) var(--ease-out),
              padding var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.nav.nav--scrolled {
  background-color: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-3) 0;
  box-shadow: 0 1px 0 rgba(184, 148, 62, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav__logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform var(--duration-normal) var(--ease-out);
}

.nav--scrolled .nav__logo-img {
  width: 36px;
  height: 36px;
}

.nav__logo-text {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--text-on-dark);
  transition: color var(--duration-normal);
}

.nav--scrolled .nav__logo-text {
  color: var(--text-primary);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(250, 246, 241, 0.85);
  transition: color var(--duration-fast);
  position: relative;
}

.nav--scrolled .nav__link {
  color: var(--text-secondary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover {
  color: var(--gold-light);
}

.nav--scrolled .nav__link:hover {
  color: var(--gold);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: var(--shadow-gold);
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(184, 148, 62, 0.35);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

/* Mobile menu toggle */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: calc(var(--z-nav) + 1);
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--text-on-dark);
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.nav--scrolled .nav__hamburger span {
  background-color: var(--text-primary);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* Mobile nav overlay */
.nav__mobile-overlay {
  display: none;
}


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

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 25, 22, 0.4) 0%,
    rgba(28, 25, 22, 0.2) 30%,
    rgba(28, 25, 22, 0.3) 60%,
    rgba(28, 25, 22, 0.75) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-6);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(184, 148, 62, 0.15);
  border: 1px solid rgba(184, 148, 62, 0.3);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-8);
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__badge-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: var(--space-6);
  letter-spacing: 0.06em;
  line-height: 1.05;
}

.hero__title span {
  display: block;
}

.hero__title .title-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  font-size: 0.6em;
  letter-spacing: 0.04em;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(250, 246, 241, 0.9);
  margin-bottom: var(--space-10);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: all var(--duration-normal) var(--ease-out);
  text-transform: uppercase;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 148, 62, 0.4);
}

.btn--outline {
  border: 1px solid rgba(250, 246, 241, 0.35);
  color: var(--ivory);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  background: rgba(250, 246, 241, 0.1);
  border-color: rgba(250, 246, 241, 0.5);
  transform: translateY(-2px);
}

.btn--dark-outline {
  border: 1px solid var(--champagne-deep);
  color: var(--text-primary);
}

.btn--dark-outline:hover {
  background: var(--champagne);
  border-color: var(--gold);
  color: var(--gold-deep);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  animation: float-scroll 3s ease-in-out infinite;
}

@keyframes float-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
}

.hero__scroll-text {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.5);
  writing-mode: vertical-rl;
}


/* ========================================================================
   ABOUT / BRAND INTRODUCTION
   ======================================================================== */
.about {
  background-color: var(--surface-primary);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about__content {
  padding-right: var(--space-8);
}

.about__label {
  margin-bottom: var(--space-4);
}

.about__title {
  margin-bottom: var(--space-6);
  color: var(--text-primary);
}

.about__description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-10);
  line-height: 1.8;
}

.about__features {
  display: grid;
  gap: var(--space-6);
}

.about__feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.about__feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: var(--champagne);
  border: 1px solid var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
}

.about__feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  stroke-width: 1.5;
  transition: transform var(--duration-normal) var(--ease-out);
}

.about__feature:hover .about__feature-icon {
  background: var(--gold-pale);
  border-color: var(--gold);
}

.about__feature:hover .about__feature-icon svg {
  transform: scale(1.1);
  stroke: var(--gold);
}

.about__feature-content h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.about__feature-content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.about__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--surface-primary);
}

.about__image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 56vh;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.1) brightness(1.04);
}

.about__image-wrapper::after {
  display: none;
}

/* Decorative stitch accent */
.about__stitch-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-top: 2px dashed var(--gold-pale);
  border-right: 2px dashed var(--gold-pale);
  opacity: 0.5;
}


/* ========================================================================
   GENESIS STORY
   ======================================================================== */
.genesis {
  background-color: var(--champagne);
  position: relative;
  overflow: hidden;
}

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

.genesis::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
}

.genesis__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.genesis__label {
  margin-bottom: var(--space-4);
}

.genesis__title {
  margin-bottom: var(--space-10);
}

.genesis__text {
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: var(--space-8);
}

.genesis__text strong {
  color: var(--text-primary);
  font-weight: 500;
}

.genesis__quote {
  position: relative;
  padding: var(--space-12) var(--space-10) var(--space-8);
  margin-top: var(--space-10);
  border-top: 1px solid var(--gold-pale);
  border-bottom: 1px solid var(--gold-pale);
}

.genesis__quote::before {
  content: '\201C';
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  background: var(--champagne);
  padding: 0 var(--space-4);
  line-height: 1;
}

.genesis__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
}

/* Decorative thread elements */
.genesis__thread {
  position: absolute;
  width: 120px;
  height: 1px;
  background: var(--gold-pale);
  opacity: 0.4;
}
.genesis__thread--left { top: 30%; left: 5%; transform: rotate(-15deg); }
.genesis__thread--right { bottom: 25%; right: 5%; transform: rotate(10deg); }


/* ========================================================================
   CRAFTSMANSHIP GALLERY
   ======================================================================== */
.gallery {
  background-color: var(--surface-primary);
}

.gallery__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.gallery__label {
  margin-bottom: var(--space-4);
}

.gallery__title {
  margin-bottom: var(--space-4);
}

.gallery__subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: var(--text-secondary);
  font-weight: 300;
}

/* Gallery Grid */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.gallery__item img,
.gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.gallery__item:hover img,
.gallery__item:hover video {
  transform: scale(1.05);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(28, 25, 22, 0.6) 100%
  );
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-caption {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: var(--ivory);
  letter-spacing: 0.02em;
}

/* Video items */
.gallery__video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery__video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.gallery__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(250, 246, 241, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(250, 246, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) var(--ease-out);
  pointer-events: none;
}

.gallery__play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--ivory);
  margin-left: 2px;
}

.gallery__item:hover .gallery__play-btn {
  background: rgba(184, 148, 62, 0.4);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Video section below images */
.gallery__videos {
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.gallery__video-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.gallery__video-item video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}


/* ========================================================================
   TOKENOMICS
   ======================================================================== */
.tokenomics {
  background-color: var(--charcoal);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.tokenomics::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 148, 62, 0.06), transparent 70%);
  pointer-events: none;
}

.tokenomics__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.tokenomics__label {
  color: var(--gold-light);
  margin-bottom: var(--space-4);
}

.tokenomics__title {
  color: var(--text-on-dark);
  margin-bottom: var(--space-4);
}

.tokenomics__subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: var(--taupe-light);
  font-weight: 300;
}

/* Stats row */
.tokenomics__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.tokenomics__stat {
  text-align: center;
  padding: var(--space-4) var(--space-4);
  border: none;
  background: transparent;
  position: relative;
}

.tokenomics__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: calc(-1 * var(--space-4));
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(184, 148, 62, 0.2);
}

.tokenomics__stat-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: var(--space-1);
}

.tokenomics__stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--taupe-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Chart + Breakdown layout */
.tokenomics__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-10);
}

/* Donut chart */
.tokenomics__chart-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tokenomics__chart {
  position: relative;
  width: 240px;
  height: 240px;
}

.tokenomics__chart svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.tokenomics__chart circle {
  fill: none;
  stroke-width: 12;
  transition: stroke-dasharray 1.5s var(--ease-out), stroke-width 0.3s var(--ease-out), opacity 0.3s var(--ease-out), filter 0.3s var(--ease-out);
}

.tokenomics__chart-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.tokenomics__chart-center-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.tokenomics__chart-center-label {
  font-size: var(--text-xs);
  color: var(--taupe-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Distribution breakdown */
.tokenomics__breakdown {
  display: grid;
  gap: var(--space-2);
}

.tokenomics__item {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
  border: none;
  border-radius: 0;
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
}

.tokenomics__item:last-child {
  border-bottom: none;
}

.tokenomics__item:hover {
  background: transparent;
  padding-left: var(--space-2);
}

.tokenomics__item-color {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tokenomics__item-info {
  flex: 1;
}

.tokenomics__item-name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 2px;
  transition: color var(--duration-normal) var(--ease-out);
}

.tokenomics__item:hover .tokenomics__item-name {
  color: var(--gold-light);
}

.tokenomics__item-desc {
  font-size: var(--text-xs);
  color: var(--taupe-light);
  line-height: 1.5;
  font-weight: 300;
}

.tokenomics__item-pct {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--gold-light);
  transition: transform var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out);
}

.tokenomics__item:hover .tokenomics__item-pct {
  color: var(--ivory);
  transform: scale(1.05);
}

/* Utility cards */
.tokenomics__utility {
  margin-top: var(--space-12);
}

.tokenomics__utility-title {
  text-align: center;
  margin-bottom: var(--space-10);
  color: var(--text-on-dark);
}

.tokenomics__utility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.tokenomics__utility-card {
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(184, 148, 62, 0.2);
  background: transparent;
  border-radius: 0;
  text-align: left;
  transition: all var(--duration-normal) var(--ease-out);
}

.tokenomics__utility-card:hover {
  border-top-color: var(--gold-light);
  transform: translateY(-2px);
}

.tokenomics__utility-icon {
  width: 44px;
  height: 44px;
  margin: 0 0 var(--space-4) 0;
  border-radius: 50%;
  background: rgba(184, 148, 62, 0.05);
  border: 1px solid rgba(184, 148, 62, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: all var(--duration-normal) var(--ease-out);
}

.tokenomics__utility-icon svg {
  width: 20px;
  height: 20px;
}

.tokenomics__utility-card:hover .tokenomics__utility-icon {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.tokenomics__utility-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--ivory);
  margin-bottom: var(--space-3);
  font-weight: 500;
}

.tokenomics__utility-card p {
  font-size: var(--text-sm);
  color: var(--taupe-light);
  line-height: 1.7;
  font-weight: 300;
}


/* ========================================================================
   HOW TO BUY
   ======================================================================== */
.how-to-buy {
  background-color: var(--surface-primary);
  position: relative;
}

.how-to-buy__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.how-to-buy__label {
  margin-bottom: var(--space-4);
}

.how-to-buy__title {
  margin-bottom: var(--space-4);
}

.how-to-buy__subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: var(--text-secondary);
  font-weight: 300;
}

.how-to-buy__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  position: relative;
}

/* Connecting thread line */
.how-to-buy__steps::before {
  content: '';
  position: absolute;
  top: 46px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold-pale) 0px,
    var(--gold-pale) 8px,
    transparent 8px,
    transparent 14px
  );
  z-index: 0;
}

.how-to-buy__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.how-to-buy__step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}

.how-to-buy__step-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.how-to-buy__step-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.how-to-buy__step-icon {
  width: 80px;
  height: 80px;
  margin: var(--space-4) auto 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.how-to-buy__step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Contract address */
.how-to-buy__contract {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.how-to-buy__contract-label {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.how-to-buy__contract-box {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--champagne);
  border: 1px solid var(--champagne-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  transition: all var(--duration-normal) var(--ease-out);
}

.how-to-buy__contract-box:hover {
  border-color: var(--gold);
}

.how-to-buy__contract-address {
  flex: 1;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: var(--text-sm);
  color: var(--text-primary);
  word-break: break-all;
  text-align: left;
}

.how-to-buy__copy-btn {
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--duration-fast);
  white-space: nowrap;
}

.how-to-buy__copy-btn:hover {
  box-shadow: var(--shadow-gold);
}

.how-to-buy__copy-btn.copied {
  background: var(--teal);
  color: var(--ivory);
}


/* ========================================================================
   ROADMAP — Interactive Slider
   ======================================================================== */
.roadmap {
  background-color: var(--champagne);
  position: relative;
  overflow: hidden;
}

.roadmap__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.roadmap__label {
  margin-bottom: var(--space-4);
}

.roadmap__title {
  margin-bottom: var(--space-4);
}

.roadmap__subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: var(--text-secondary);
  font-weight: 300;
}

/* ── Progress Bar ────────────────────────────────────────────────── */
.roadmap__progress {
  max-width: 700px;
  margin: 0 auto var(--space-10);
  position: relative;
}

.roadmap__progress-track {
  position: absolute;
  top: 11px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--champagne-deep);
  border-radius: 1px;
  z-index: 0;
}

.roadmap__progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1px;
  transition: width 0.6s var(--ease-out);
  box-shadow: 0 0 8px rgba(184, 148, 62, 0.3);
}

.roadmap__progress-dots {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.roadmap__progress-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.roadmap__progress-dot-inner {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--champagne-deep);
  background: var(--champagne);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
}

.roadmap__progress-dot-inner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform var(--duration-normal) var(--ease-out);
}

.roadmap__progress-dot.active .roadmap__progress-dot-inner {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 148, 62, 0.15);
}

.roadmap__progress-dot.active .roadmap__progress-dot-inner::after {
  transform: translate(-50%, -50%) scale(1);
}

.roadmap__progress-dot.completed .roadmap__progress-dot-inner {
  border-color: var(--gold);
  background: var(--gold);
}

.roadmap__progress-dot.completed .roadmap__progress-dot-inner::after {
  background: white;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%) scale(1);
}

.roadmap__progress-dot-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--taupe);
  transition: color var(--duration-normal);
  text-transform: uppercase;
}

.roadmap__progress-dot.active .roadmap__progress-dot-label {
  color: var(--gold-deep);
  font-weight: 600;
}

.roadmap__progress-dot:hover .roadmap__progress-dot-inner {
  border-color: var(--gold);
  transform: scale(1.15);
}

/* ── Slider Wrapper ──────────────────────────────────────────────── */
.roadmap__slider-wrapper {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.roadmap__slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 420px;
}

/* ── Slides ──────────────────────────────────────────────────────── */
.roadmap__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.5s var(--ease-out);
  pointer-events: none;
  visibility: hidden;
}

.roadmap__slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}

.roadmap__slide.exit-left {
  opacity: 0;
  transform: translateX(-60px);
}

.roadmap__slide.exit-right {
  opacity: 0;
  transform: translateX(60px);
}

.roadmap__slide-inner {
  padding: var(--space-10) var(--space-12);
  background: var(--surface-primary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--champagne-deep);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Decorative corner stitch */
.roadmap__slide-inner::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-top: 2px dashed var(--gold-pale);
  border-right: 2px dashed var(--gold-pale);
  opacity: 0.4;
  pointer-events: none;
}

.roadmap__slide-inner::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-bottom: 2px dashed var(--gold-pale);
  border-left: 2px dashed var(--gold-pale);
  opacity: 0.4;
  pointer-events: none;
}

/* ── Slide Content ───────────────────────────────────────────────── */
.roadmap__slide-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.roadmap__phase-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.roadmap__phase-status {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--taupe);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid var(--champagne-deep);
}

.roadmap__phase-status--active {
  color: var(--teal);
  border-color: var(--teal-pale);
  background: var(--teal-pale);
}

.roadmap__phase-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.roadmap__phase-desc {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.roadmap__phase-items {
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

.roadmap__phase-items li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: background var(--duration-fast);
}

.roadmap__phase-items li:hover {
  background: var(--champagne);
}

.roadmap__item-icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.roadmap__slide-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--champagne-deep);
}

.roadmap__slide-counter {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: var(--taupe-light);
  letter-spacing: 0.1em;
}

/* ── Navigation Arrows ───────────────────────────────────────────── */
.roadmap__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-primary);
  border: 1px solid var(--champagne-deep);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  z-index: 2;
  color: var(--text-primary);
}

.roadmap__nav:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
  transform: translateY(-50%) scale(1.08);
}

.roadmap__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.roadmap__nav svg {
  width: 20px;
  height: 20px;
}

.roadmap__nav--prev {
  left: -60px;
}

.roadmap__nav--next {
  right: -60px;
}

/* ── Swipe Hint ──────────────────────────────────────────────────── */
.roadmap__swipe-hint {
  text-align: center;
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  color: var(--taupe-light);
  margin-top: var(--space-6);
  letter-spacing: 0.05em;
  display: none;
}

/* ── Responsive — Tablet ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .roadmap__nav--prev {
    left: -10px;
  }
  .roadmap__nav--next {
    right: -10px;
  }
  .roadmap__nav {
    width: 40px;
    height: 40px;
  }
  .roadmap__slide-inner {
    padding: var(--space-8) var(--space-8);
  }
}

/* ── Responsive — Mobile ──────────────────────────────────────── */
@media (max-width: 768px) {
  .roadmap__nav {
    display: none;
  }
  .roadmap__swipe-hint {
    display: block;
  }
  .roadmap__slide-inner {
    padding: var(--space-6) var(--space-5);
  }
  .roadmap__progress-dot-label {
    font-size: 0.65rem;
  }
  .roadmap__slider {
    min-height: 460px;
  }
}



/* ========================================================================
   COMMUNITY / CTA SECTION
   ======================================================================== */
.community {
  background: var(--charcoal);
  text-align: center;
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.community::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(184, 148, 62, 0.08), transparent 70%);
  pointer-events: none;
}

.community__label {
  color: var(--gold-light);
  margin-bottom: var(--space-4);
}

.community__title {
  color: var(--text-on-dark);
  margin-bottom: var(--space-4);
}

.community__subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: var(--taupe-light);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto var(--space-10);
}

.community__links {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.community__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  border: 1px solid rgba(184, 148, 62, 0.25);
  color: var(--ivory);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all var(--duration-normal) var(--ease-out);
}

.community__link:hover {
  background: rgba(184, 148, 62, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.community__link svg {
  width: 18px;
  height: 18px;
}


/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  background-color: var(--charcoal);
  position: relative;
  padding-top: 0;
}

.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 148, 62, 0.3), transparent);
  margin-bottom: var(--space-16);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--space-10);
  margin-bottom: var(--space-16);
}

.footer__brand {
  padding-right: var(--space-8);
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__brand-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.footer__brand-logo span {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  letter-spacing: 0.25em;
  color: var(--ivory);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: var(--taupe-light);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.footer__solana-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__solana-badge span {
  font-size: var(--text-xs);
  color: var(--taupe-light);
  letter-spacing: 0.05em;
}

.footer__column-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: var(--space-6);
}

.footer__links {
  display: grid;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--taupe-light);
  transition: color var(--duration-fast);
}

.footer__link:hover {
  color: var(--gold-light);
}

.footer__social-links {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
}

.footer__social-link:hover {
  background: rgba(184, 148, 62, 0.15);
  border-color: rgba(184, 148, 62, 0.3);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--taupe-light);
  transition: fill var(--duration-fast);
}

.footer__social-link:hover svg {
  fill: var(--gold-light);
}

/* Newsletter */
.footer__newsletter {
  margin-top: var(--space-6);
}

.footer__newsletter-form {
  display: flex;
  gap: var(--space-2);
}

.footer__newsletter-input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ivory);
  outline: none;
  transition: border-color var(--duration-fast);
}

.footer__newsletter-input::placeholder {
  color: var(--taupe-light);
}

.footer__newsletter-input:focus {
  border-color: var(--gold);
}

.footer__newsletter-btn {
  padding: var(--space-3) var(--space-5);
  background: var(--gold);
  color: var(--charcoal);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--duration-fast);
}

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

/* Bottom bar */
.footer__bottom {
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--taupe-light);
  letter-spacing: 0.02em;
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer__bottom-link {
  font-size: var(--text-xs);
  color: var(--taupe-light);
  transition: color var(--duration-fast);
}

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


/* ========================================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ======================================================================== */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .about__content {
    padding-right: 0;
    order: 2;
  }

  .about__image-wrapper {
    order: 1;
    max-height: 500px;
  }

  .tokenomics__layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .tokenomics__utility-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .how-to-buy__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }

  .how-to-buy__steps::before {
    display: none;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .gallery__videos {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }


}


/* ========================================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ======================================================================== */
@media (max-width: 768px) {
  :root {
    --section-padding-y: clamp(3rem, 8vw, 5rem);
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Mobile nav overlay */
  .nav__mobile-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 22, 0.97);
    z-index: var(--z-overlay);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease-out);
  }

  .nav__mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__mobile-overlay .nav__link {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--ivory);
  }

  .nav__mobile-overlay .nav__cta {
    font-size: var(--text-base);
    padding: var(--space-4) var(--space-10);
    margin-top: var(--space-4);
  }

  .hero__title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .tokenomics__stats {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .tokenomics__stat:not(:last-child)::after {
    display: none;
  }

  .tokenomics__stat {
    border-bottom: 1px solid rgba(184, 148, 62, 0.1);
    padding-bottom: var(--space-4);
  }

  .tokenomics__stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .tokenomics__utility-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .how-to-buy__steps {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__videos {
    grid-template-columns: 1fr;
  }

  .community__links {
    flex-direction: column;
    align-items: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .footer__bottom-links {
    justify-content: center;
  }

  .tokenomics__chart {
    width: 260px;
    height: 260px;
  }

  .how-to-buy__contract-box {
    flex-direction: column;
  }

  .how-to-buy__contract-address {
    text-align: center;
  }
}


/* ========================================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ======================================================================== */
@media (max-width: 480px) {
  .container {
    padding-inline: var(--space-4);
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .genesis__quote {
    padding: var(--space-10) var(--space-4) var(--space-6);
  }

  .footer__newsletter-form {
    flex-direction: column;
  }
}


/* ========================================================================
   SPECIAL EFFECTS
   ======================================================================== */

/* Gold shimmer on hover for cards */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Fabric texture overlay — subtle */
.texture-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8943E' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Needle/thread cursor effect on gallery */
.gallery__item {
  cursor: crosshair;
}

/* Smooth scroll override for anchor links */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
