/* ========================================
   Essex 3D Prints — Style Sheet
   1980s Retro / Synthwave Dark Theme
   ======================================== */

/* --- Design Tokens --- */
:root {
  /* Typography */
  --font-body: 'Satoshi', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Orbitron', 'Courier New', monospace;

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    4.5rem);

  /* 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;

  /* Brand Colors — boosted for neon */
  --purple: #b44dde;
  --purple-light: #d580ff;
  --purple-glow: rgba(180, 77, 222, 0.6);
  --orange: #ff6b1a;
  --orange-light: #ff8f4d;
  --orange-glow: rgba(255, 107, 26, 0.5);
  --pink: #ff2d8a;
  --pink-light: #ff6bb0;
  --pink-glow: rgba(255, 45, 138, 0.5);
  --yellow: #ffe14d;
  --yellow-light: #fff07a;
  --cyan: #00e5ff;
  --cyan-glow: rgba(0, 229, 255, 0.4);

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* --- Dark Theme (default) --- */
[data-theme="dark"] {
  --color-bg: #0a0014;
  --color-surface: #110022;
  --color-surface-2: #180030;
  --color-surface-3: #1f003d;
  --color-border: #3a1a5c;
  --color-border-light: #5a2d8a;
  --color-text: #f0e6ff;
  --color-text-muted: #a88cc4;
  --color-text-faint: #6b4d8a;
  --color-primary: #b44dde;
  --color-primary-hover: #d580ff;
  --color-accent: #ff6b1a;
  --color-accent-hover: #ff8f4d;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.5);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.6);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 60px rgba(180, 77, 222, 0.25);
  --shadow-neon-purple: 0 0 10px var(--purple-glow), 0 0 40px rgba(180, 77, 222, 0.2);
  --shadow-neon-pink: 0 0 10px var(--pink-glow), 0 0 40px rgba(255, 45, 138, 0.2);
  --shadow-neon-orange: 0 0 10px var(--orange-glow), 0 0 40px rgba(255, 107, 26, 0.2);
  --shadow-neon-cyan: 0 0 10px var(--cyan-glow), 0 0 40px rgba(0, 229, 255, 0.15);
}

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

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

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; }

a, button, [role="button"], input, textarea, select {
  transition: color var(--transition-interactive),
              background var(--transition-interactive),
              border-color var(--transition-interactive),
              box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: rgba(180, 77, 222, 0.4);
  color: var(--color-text);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: var(--space-6);
}

/* --- Section Defaults --- */
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: var(--space-3);
  text-shadow: 0 0 10px var(--cyan-glow);
}

.section__title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  text-shadow: 0 0 20px var(--purple-glow);
}

.section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 560px;
  margin-inline: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
  color: #fff;
  border: none;
  box-shadow: var(--shadow-neon-pink);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--pink-glow), 0 0 60px rgba(255, 45, 138, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--cyan);
  box-shadow: var(--shadow-neon-cyan);
}

.btn--outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: var(--shadow-neon-pink);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 0, 20, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition-slow),
              border-color var(--transition-slow),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header--scrolled {
  border-bottom-color: var(--purple);
  box-shadow: 0 2px 20px var(--purple-glow);
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}

.header__logo img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  object-fit: cover;
  box-shadow: 0 0 12px var(--purple-glow);
}

.header__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header__nav {
  display: none;
}

.header__links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}

.header__links a {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
}

.header__links a:hover {
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan-glow);
}

.header__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
  border-radius: 1px;
  transition: width var(--transition-interactive);
}

.header__links a:hover::after {
  width: 100%;
}

/* Hamburger */
.header__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.header__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
  box-shadow: 0 0 6px var(--cyan-glow);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.header__menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.header__nav--open {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 0, 20, 0.97);
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.header__nav--open .header__links {
  flex-direction: column;
  align-items: center;
  gap: var(--space-10);
}

.header__nav--open .header__links a {
  font-size: var(--text-xl);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text);
  text-shadow: 0 0 15px var(--purple-glow);
}

@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
  .header__menu-btn {
    display: none;
  }
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-24) var(--space-6) var(--space-16);
  overflow: hidden;
  background:
    linear-gradient(to bottom, var(--color-bg) 0%, transparent 20%),
    linear-gradient(to top, var(--color-bg) 0%, transparent 30%);
}

/* Retro grid floor */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 50%;
  background:
    linear-gradient(90deg, rgba(180, 77, 222, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(180, 77, 222, 0.12) 1px, transparent 1px);
  background-size: 60px 40px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: bottom center;
  pointer-events: none;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 80%);
}

/* Horizontal scan lines */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0,0,0,0.06) 2px,
    rgba(0,0,0,0.06) 4px
  );
  pointer-events: none;
  z-index: 2;
}

.hero__bg-glow {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 45, 138, 0.15) 0%,
    rgba(180, 77, 222, 0.12) 30%,
    rgba(255, 107, 26, 0.06) 55%,
    transparent 75%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__logo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-8);
  box-shadow:
    0 0 20px var(--purple-glow),
    0 0 60px rgba(255, 45, 138, 0.2),
    0 0 100px rgba(180, 77, 222, 0.15);
  object-fit: cover;
  border: 2px solid rgba(180, 77, 222, 0.4);
}

.hero__title {
  font-size: var(--text-3xl);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  background: linear-gradient(
    180deg,
    #fff 0%,
    var(--pink-light) 40%,
    var(--purple-light) 70%,
    var(--cyan) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px var(--purple-glow));
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
  max-width: 560px;
  margin-inline: auto;
}

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

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: var(--cyan);
  z-index: 3;
  filter: drop-shadow(0 0 6px var(--cyan-glow));
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@media (min-width: 768px) {
  .hero__logo {
    width: 160px;
    height: 160px;
  }
}

/* ===========================
   PRODUCTS
   =========================== */
.products {
  background: var(--color-surface);
  position: relative;
}

/* Subtle grid overlay on products */
.products::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(180, 77, 222, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(180, 77, 222, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-10);
  position: relative;
  z-index: 1;
}

.filter-tab {
  padding: var(--space-2) var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-interactive);
}

.filter-tab:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: var(--shadow-neon-cyan);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-neon-pink);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.product-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon-purple);
  border-color: var(--purple);
}

.product-card[hidden] {
  display: none;
}

.product-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-bg);
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Scanline on product images */
.product-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 6px
  );
  pointer-events: none;
}

.product-card__info {
  padding: var(--space-5) var(--space-5) var(--space-6);
}

.product-card__info h3 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.product-card__info p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===========================
   SERVICES
   =========================== */
.services {
  background: var(--color-bg);
}

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

.service-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow), border-color var(--transition-slow), box-shadow var(--transition-slow);
  position: relative;
  overflow: hidden;
}

/* Corner accent */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, var(--cyan), transparent);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
  box-shadow: var(--shadow-neon-purple);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-5);
  color: var(--cyan);
  filter: drop-shadow(0 0 6px var(--cyan-glow));
}

.service-card__icon svg {
  width: 48px;
  height: 48px;
}

.service-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-grid {
    justify-items: center;
  }
  .services-grid .service-card:nth-child(4) {
    justify-self: end;
  }
  .services-grid .service-card:nth-child(5) {
    justify-self: start;
  }
}

/* ===========================
   ABOUT
   =========================== */
.about {
  background: var(--color-surface);
  position: relative;
}

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

.about__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

.about__image img {
  width: 100%;
  border-radius: var(--radius-xl);
}

.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(180, 77, 222, 0.3);
  box-shadow: inset 0 0 30px rgba(180, 77, 222, 0.1);
  pointer-events: none;
}

.about__text .section__label {
  text-align: left;
}

.about__text .section__title {
  text-align: left;
  margin-bottom: var(--space-6);
}

.about__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__text strong {
  color: var(--cyan);
  text-shadow: 0 0 8px var(--cyan-glow);
}

@media (min-width: 768px) {
  .about__inner {
    grid-template-columns: 1fr 1.2fr;
  }
  .about__image {
    margin: 0;
  }
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  background: var(--color-bg);
  position: relative;
}

/* Grid overlay */
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(180, 77, 222, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(180, 77, 222, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: var(--text-base);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-faint);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15), var(--shadow-neon-cyan);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  color: var(--cyan);
  font-weight: 600;
  padding: var(--space-4);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-md);
  margin-top: var(--space-2);
}

.form-error {
  text-align: center;
  color: var(--pink);
  font-weight: 600;
  padding: var(--space-4);
  background: rgba(255, 45, 138, 0.08);
  border: 1px solid rgba(255, 45, 138, 0.2);
  border-radius: var(--radius-md);
  margin-top: var(--space-2);
}

/* Contact Side */
.contact__side {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact__email {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
}

.contact__email svg {
  flex-shrink: 0;
  color: var(--orange);
  filter: drop-shadow(0 0 6px var(--orange-glow));
}

.contact__email strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}

.contact__email p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.contact__email a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

.contact__email a:hover {
  color: var(--pink);
  text-shadow: 0 0 10px var(--pink-glow);
}

.contact__shop-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.contact__shop-notice svg {
  flex-shrink: 0;
  color: var(--yellow);
  filter: drop-shadow(0 0 6px rgba(255, 225, 77, 0.4));
}

.contact__shop-notice strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}

.contact__shop-notice p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.contact__etsy {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.contact__etsy svg {
  flex-shrink: 0;
  color: var(--orange);
  filter: drop-shadow(0 0 6px var(--orange-glow));
}

.contact__etsy strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}

.contact__etsy p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.contact__etsy a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

.contact__etsy a:hover {
  color: var(--pink);
  text-shadow: 0 0 10px var(--pink-glow);
}

.contact__social h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 500;
}

.social-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: color var(--transition-interactive), filter var(--transition-interactive);
}

.social-link:hover {
  border-color: var(--pink);
  background: var(--color-surface-2);
  box-shadow: var(--shadow-neon-pink);
}

.social-link:hover svg {
  color: var(--pink);
  filter: drop-shadow(0 0 6px var(--pink-glow));
}

@media (min-width: 768px) {
  .contact__inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--purple);
  box-shadow: 0 -2px 20px var(--purple-glow);
  padding-block: var(--space-10);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-6);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}

.footer__brand img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  object-fit: cover;
  box-shadow: 0 0 8px var(--purple-glow);
}

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

.footer__links a {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--cyan);
  text-shadow: 0 0 8px var(--cyan-glow);
}

.footer__social {
  display: flex;
  gap: var(--space-4);
}

.footer__social a {
  color: var(--color-text-faint);
  transition: color var(--transition-interactive), filter var(--transition-interactive);
}

.footer__social a:hover {
  color: var(--pink);
  filter: drop-shadow(0 0 6px var(--pink-glow));
}

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

.footer__bottom p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer__attribution {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
}

.footer__attribution:hover {
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
