:root {
  --bg: #000000;
  --text: #eaeaea;
  --muted: #bfbfbf;
  --purple: #a78bfa;
  --purple-2: #c4b5fd;
  --card: #0b0b0f;
  --ring: rgba(167, 139, 250, 0.45);
  --glow: rgba(167, 139, 250, 0.35);
  --shadow: rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  background-image:
    radial-gradient(1200px 600px at 50% -10%, rgba(167,139,250,0.06), transparent 60%),
    radial-gradient(800px 400px at 10% 10%, rgba(167,139,250,0.05), transparent 60%),
    radial-gradient(800px 400px at 90% 20%, rgba(167,139,250,0.05), transparent 60%);
}

.container { max-width: 980px; margin: 0 auto; padding: 24px 20px 80px; }
#bg-stars { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

/* Banner (full-bleed) */
.banner-wrap {
  position: relative;
  width: 100vw;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
}
.brand__banner { display: block; width: 100vw; height: auto; object-fit: cover; }

/* Tagline (matching section titles) */
.brand__tagline {
  text-align: center;
  margin: 8px auto 18px;           /* close to moon + links */
  color: var(--text);               /* white */
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.5rem;                /* same as .section__title */
}

/* Luxe Glow Links */
.links { margin-top: 28px; position: relative; z-index: 1; }
/* keep links centered in a slimmer column */
.links__list {
  max-width: 660px;    /* was full container width */
  margin: 0 auto;
}

/* optional: tighten bubble padding a touch on desktop */
.link { padding: 12px 16px; }

.link {
  display: grid;
  grid-template-columns: 24px 1fr 18px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(180deg, #0f0f14, #0a0a0d);
  border: 1px solid rgba(167,139,250,0.35);
  box-shadow: 0 0 0 0 var(--glow), 0 12px 24px -18px var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  text-align: center;              /* NEW → center the label text */
}
.link__label {
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: center;              /* NEW → enforce centered text */
  justify-self: center;            /* NEW → center in grid cell */
}
.link:hover {
  transform: translateY(-2px);
  border-color: var(--purple-2);
  box-shadow: 0 0 18px 4px var(--glow), 0 18px 38px -20px var(--shadow);
}
.link__icon { width: 24px; height: 24px; opacity: 0.95; }
.link__label { font-weight: 600; letter-spacing: 0.2px; }
/* hide the chevron arrow */
.link__chev { display: none; }


/* Edge-to-edge section divider */
.section-divider {
  height: 1px;
  margin: 26px 0 18px;
  background: rgba(167,139,250,0.35); /* subtle purple */
  width: 100vw;
  position: relative;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
}

/* Section icons (shared) */
.section-icon {
  display: flex;
  justify-content: center;
  margin-top: 2px;
  margin-bottom: 0;
}

.leaf-icon,
.crystal-icon,
.moon-icon {
  width: 28px;
  height: 28px;
  color: var(--purple-2);
  opacity: 0.9;
  margin-bottom: 0;
}

/* Products */
.products { margin-top: 12px; text-align: center; } /* centers icon + heading */
.section__title { font-family: "Playfair Display", serif; font-weight: 600; margin-top: 6px; margin-bottom: 18px; }

.products__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  justify-items: center;
}
@media (min-width: 640px) {
  .products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.card {
  background: #0f0f14;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;               /* luxe corner */
  overflow: hidden; text-decoration: none; color: var(--text);
  box-shadow: 0 10px 24px -18px var(--shadow);
  transition: transform 160ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.card__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.card:hover { transform: translateY(-2px); border-color: var(--purple-2); box-shadow: 0 0 18px 4px var(--glow), 0 18px 38px -20px var(--shadow); }

/* About (centered) */
.about { margin-top: 18px; text-align: center; }
.about__lead {
  color: var(--purple-2);
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 4px;
  margin-bottom: 14px;
}
.about p:not(.about__lead) {
  color: var(--text);
  max-width: 70ch;
  margin: 0.8em auto;
  font-family: 'Lora', serif;
}

/* Footer */
.footer {
  margin-top: 44px; padding-top: 16px; 
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between;
  color: var(--purple-2);   /* same as your hello@ link */
}
.footer a { color: var(--purple-2); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-divider {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 20px auto 12px;
}

.footer-icon {
  width: 28px;
  height: 28px;
  color: var(--purple-2);
  display: block;
  opacity: 0.95;

  /* rotation + flip you liked */
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(-20deg) scaleX(-1);

  position: relative;
  z-index: 1;   /* sit above the glow */
}

.footer-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;                 /* halo size */
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 181, 253, 0.55) 0%,
    rgba(196, 181, 253, 0.30) 40%,
    rgba(196, 181, 253, 0.10) 60%,
    transparent 75%
  );
  filter: blur(10px);          /* soft glow */
  z-index: 0;
  pointer-events: none;
}

/* Fireflies */
.firefly {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 180, 0.9) 0%, rgba(255, 255, 180, 0.4) 50%, transparent 70%);
  pointer-events: none;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  z-index: 1000;
  animation: fireflyPulse 3s ease-in-out infinite;
}

.firefly:nth-child(2) {
  width: 10px; height: 10px;
  animation-duration: 3.8s;
  opacity: 0.85;
}

.firefly:nth-child(3) {
  width: 8px; height: 8px;
  animation-duration: 4.5s;
  opacity: 0.7;
}

@keyframes fireflyPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}
/* Mobile tweaks */
@media (max-width: 480px) {
  .links__list { max-width: none; }  /* allow full width on phones */
  .link       { padding: 12px 14px; }
}
  .brand__tagline,
  .section__title {
    font-size: 1.2rem;   /* slightly smaller headings */
  }

  .brand__tagline {
    margin: 6px auto 14px; /* tighter spacing above links */
  }

  .link {
    padding: 12px 14px;  /* reduce bubble padding */
    gap: 10px;
  }

  .products__grid {
    gap: 12px;           /* less space between cards */
  }

  .about p {
    font-size: 0.95rem;  /* body text a touch smaller */
  }

