/* ─── Tokens ─────────────────────────────────────────────────── */
:root {
  --bg:          #ffffff;
  --surface:     #f5f5f5;
  --surface2:    #ebebeb;
  --border:      rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.16);
  --text:        #111111;
  --muted:       #555555;
  --muted2:      #999999;

  /* Glass */
  --blur:        20px;
  --glass:       rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.55);

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow:      0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg:   0 20px 60px rgba(0, 0, 0, 0.14);

  /* Shape */
  --radius-sm:   6px;
  --radius:      12px;
  --container:   1200px;
  --pad:         24px;

  /* Motion */
  --ease:        ease-in-out;
  --ease-spring: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur:         0.15s;
  --dur-med:     0.3s;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', 'Inter', -apple-system, sans-serif;
}

/* ─── Dark mode ──────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:          #0d0d0d;
  --surface:     #161616;
  --surface2:    #1f1f1f;
  --border:      rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text:        #f0f0f0;
  --muted:       #888888;
  --muted2:      #555555;
  --glass:       rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.11);
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow:      0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg:   0 20px 60px rgba(0, 0, 0, 0.65);
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
[data-theme="dark"] body {
  background-image: url('./aura-gradient.JPG');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ─── Accessibility ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--text);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { left: 12px; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  width: min(var(--container), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
}

/* ─── Scroll progress ────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--text);
  z-index: 200;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(var(--blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}
[data-theme="dark"] .nav {
  background: rgba(13, 13, 13, 0.85);
}
.nav.is-scrolled { border-bottom-color: var(--border); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 16px;
}
.nav__brand {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  flex: 0 0 auto;
  transition: opacity var(--dur) var(--ease);
}
.nav__brand:hover { opacity: 0.7; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__link {
  position: relative;
  padding: 7px 11px;
  font-size: 14px;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav__link:hover,
.nav__link.is-active { color: var(--text); }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
}
.nav__icon,
.nav__theme {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease-spring);
}
.nav__icon:hover,
.nav__theme:hover {
  color: var(--text);
  background: var(--surface);
  transform: scale(1.08);
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 72px;
  overflow: hidden;
}
/* Ambient background gradients */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% -5%, rgba(100, 160, 255, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 25%, rgba(200, 100, 255, 0.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
/* Title aura glow */
.hero::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 420px;
  top: 20px;
  left: -160px;
  background: radial-gradient(ellipse at center,
    rgba(120, 180, 255, 0.22) 0%,
    rgba(180, 120, 255, 0.16) 38%,
    transparent 70%
  );
  filter: blur(56px);
  pointer-events: none;
  z-index: 0;
}
[data-theme="dark"] .hero::before {
  background:
    radial-gradient(ellipse 70% 55% at 15% -5%, rgba(100, 160, 255, 0.20), transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 25%, rgba(200, 100, 255, 0.14), transparent 60%);
}
[data-theme="dark"] .hero::after {
  background: radial-gradient(ellipse at center,
    rgba(120, 180, 255, 0.40) 0%,
    rgba(180, 120, 255, 0.30) 38%,
    transparent 70%
  );
}

/* ── Hero split layout ─ */
.hero__split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero__content { display: flex; flex-direction: column; }

/* Hero photo */
.hero__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface2);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring);
}
.hero__img-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.22);
}
/* Glossy light-reflection sheen on hover (photo stays fully visible) */
.hero__img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0)    20%,
    rgba(255, 255, 255, 0.22) 46%,
    rgba(255, 255, 255, 0.10) 52%,
    rgba(255, 255, 255, 0)    78%
  );
  border-radius: inherit;
  opacity: 0;
  transform: translateX(-8%);
  transition: opacity 0.4s var(--ease-spring), transform 0.4s var(--ease-spring);
  pointer-events: none;
}
.hero__img-wrap:hover::before { opacity: 1; transform: translateX(0%); }
.hero__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s var(--ease-spring);
}
.hero__img-wrap:hover .hero__img { transform: scale(1.04); }
/* Placeholder shown until user adds their photo */
.hero__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  color: var(--muted2);
  font-size: 13px;
  text-align: center;
  padding: 24px;
}
.hero__img-placeholder svg { opacity: 0.4; }

.hero__eyebrow {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
}
.hero__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  /* Glass shimmer on hover */
  background: linear-gradient(
    105deg,
    var(--text) 0%,
    var(--text) 35%,
    rgba(160, 210, 255, 0.95) 46%,
    rgba(255, 255, 255, 1)    52%,
    rgba(160, 210, 255, 0.95) 58%,
    var(--text) 65%,
    var(--text) 100%
  );
  background-size: 260% auto;
  background-position: 150% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: default;
}
.hero__title:hover {
  background-position: -80% center;
}
.hero__sub {
  margin: 0 0 32px;
  font-size: 17px;
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.65;
}
.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__stats {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--muted2);
}
.hero__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ─── Social Pills ───────────────────────────────────────────── */
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--dur-med) var(--ease-spring), box-shadow var(--dur-med) var(--ease-spring);
}
.social-pill:hover {
  transform: scale(1.04) translateY(-1px);
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .social-pill {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.14);
}
.social-pill svg { flex: 0 0 auto; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  height: 42px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur-med) var(--ease-spring),
    box-shadow var(--dur-med) var(--ease-spring);
  user-select: none;
}
/* Glossy light-reflection sheen — same as hero photo hover */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0)    22%,
    rgba(255, 255, 255, 0.22) 48%,
    rgba(255, 255, 255, 0.08) 52%,
    rgba(255, 255, 255, 0)    78%
  );
  opacity: 0;
  transform: translateX(-12%);
  transition: opacity 0.35s var(--ease-spring), transform 0.35s var(--ease-spring);
  pointer-events: none;
}
.btn:hover::before { opacity: 1; transform: translateX(0%); }
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn:active { transform: translateY(0); box-shadow: none; }
.btn--primary {
  background: linear-gradient(135deg, #4c2acd 0%, #1a55db 100%);
  color: #fff;
  border-color: transparent;
}
.btn--primary:hover { box-shadow: var(--shadow); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.04); }
.btn--ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}
.btn--ghost:hover { background: var(--surface); color: var(--text); }
.is-hidden { display: none !important; }

/* ─── Sections ───────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--surface { background: var(--surface); }
[data-theme="dark"] .section--surface {
  background: linear-gradient(160deg, #0f1018 0%, #111318 55%, #0d0d0f 100%);
}
.section--store { background: var(--surface); }
[data-theme="dark"] .section--store {
  background: linear-gradient(160deg, #09090e 0%, #0b0c14 50%, #090909 100%);
}
[data-theme="dark"] #contact { background: #000; }

.section-head { margin-bottom: 36px; }
.section-head__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.section-head__sub {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 72ch;
}

/* ─── Grids ──────────────────────────────────────────────────── */
.grid { display: grid; gap: 16px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ─── Horizontal scroll row ──────────────────────────────────── */
.product-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scrollbar-width: none;
  cursor: grab;
}
.product-scroll:active { cursor: grabbing; }
.product-scroll::-webkit-scrollbar { display: none; }
.product-scroll > .product-card {
  flex: 0 0 clamp(220px, 28vw, 320px);
  scroll-snap-align: start;
}

/* ─── Product Card ───────────────────────────────────────────── */
.product-card {
  display: block;
  color: var(--text);
  transition: transform var(--dur-med) var(--ease-spring);
  will-change: transform;
}
.product-card:hover { transform: translateY(-5px); }

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 10px;
  transition: box-shadow var(--dur-med) var(--ease-spring);
}
.product-card:hover .product-card__img-wrap { box-shadow: var(--shadow); }

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-spring);
}
.product-card:hover .product-card__img { transform: scale(1.07); }

/* Hover overlay */
.product-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
  border-radius: inherit;
  padding-bottom: 14px;
}
.product-card__overlay-text {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(6px);
  transition: transform var(--dur-med) var(--ease-spring);
}
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card:hover .product-card__overlay-text { transform: translateY(0); }

.product-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
}
[data-theme="dark"] .product-card__badge {
  background: rgba(255, 255, 255, 0.15);
}
.product-card__body { padding: 0 2px; }
.product-card__name {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}
.product-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.product-card__price { font-size: 13px; color: var(--muted); }
.product-card__stars { font-size: 12px; color: var(--muted2); }

/* ─── Toolbar ────────────────────────────────────────────────── */
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.toolbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.segmented {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
}
[data-theme="dark"] .segmented { background: var(--surface); border-color: var(--border); }
.segmented__btn {
  border: none;
  border-right: 1px solid var(--border);
  background: transparent;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.segmented__btn:last-child { border-right: none; }
.segmented__btn.is-active { background: var(--text); color: var(--bg); }
[data-theme="dark"] .segmented__btn.is-active { color: #0d0d0d; }

.search {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  padding: 0 12px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
[data-theme="dark"] .search { background: var(--surface); border-color: var(--border); }
.search:focus-within { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.search__input {
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-family: var(--font-body);
  padding: 9px 0;
  min-width: 160px;
}
.search__input::placeholder { color: var(--muted2); }

.select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
}
[data-theme="dark"] .select { background: var(--surface); border-color: var(--border); }
.select__input {
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-family: var(--font-body);
  padding: 9px 14px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
[data-theme="dark"] .select__input { color-scheme: dark; }
[data-theme="dark"] select option { background: #1a1a1a; color: #f0f0f0; }

.results-meta { font-size: 13px; color: var(--muted2); margin-bottom: 16px; }

/* ─── About ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.about-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease-spring), box-shadow var(--dur-med) var(--ease-spring);
}
[data-theme="dark"] .about-card {
  background: var(--surface);
  border-color: var(--border);
}
.about-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.about-card__title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.about-social { display: flex; gap: 24px; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--text);
  transition: opacity var(--dur) var(--ease);
}
.social-link:hover { opacity: 0.55; }
.social-link svg { flex: 0 0 auto; }

/* ─── Contact ────────────────────────────────────────────────── */
.contact-card {
  padding: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease-spring), box-shadow var(--dur-med) var(--ease-spring);
}
[data-theme="dark"] .contact-card {
  background: var(--surface);
  border-color: var(--border);
}
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-card__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.contact-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── Featured Spotlight Card ────────────────────────────────── */
/* Section always dark so card and surround are consistent */
.section--spotlight {
  background: #060608;
  padding: 56px 0;
}
.spotlight-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #0e0e12;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  transition: transform var(--dur-med) var(--ease-spring), box-shadow var(--dur-med) var(--ease-spring);
}
.spotlight-card:hover { transform: translateY(-3px); box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65); }
.spotlight-img-wrap { overflow: hidden; aspect-ratio: 1; }
.spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-spring);
}
.spotlight-card:hover .spotlight-img { transform: scale(1.04); }
.spotlight-body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: #0e0e12;
}
.spotlight-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.spotlight-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}
.spotlight-desc {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 38ch;
}
.spotlight-meta { display: flex; align-items: center; gap: 12px; }
.spotlight-price {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.spotlight-stars { font-size: 13px; color: rgba(255, 255, 255, 0.42); }
/* Button inside the spotlight always inverted (white on dark) */
.spotlight-body .btn--primary {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.spotlight-body .btn--primary:hover { background: rgba(255, 255, 255, 0.88); }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 28px 0; }
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { margin: 0; font-size: 13px; color: var(--muted2); }
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  font-size: 13px;
  color: var(--muted2);
  transition: color var(--dur) var(--ease);
}
.footer__social a:hover { color: var(--text); }

/* ─── Reveal animations ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-spring), transform 0.5s var(--ease-spring);
}
.is-revealed { opacity: 1; transform: translateY(0); }

/* ─── Staggered card entrance ────────────────────────────────── */
@keyframes cardEnter {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.card-enter { animation: cardEnter 0.4s var(--ease-spring) both; }

/* ─── Brand marquee ──────────────────────────────────────────── */
.marquee-section {
  background: url('./aura-gradient.JPG') center/cover no-repeat;
  padding: 52px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.marquee-track {
  display: flex;
  overflow: hidden;
  user-select: none;
}
.marquee-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
/* Slow down on hover instead of stopping */
.marquee-track:hover .marquee-inner { animation-duration: 96s; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  padding: 0 64px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
}
.marquee-sep {
  color: rgba(255, 255, 255, 0.18);
  font-size: 18px;
  flex-shrink: 0;
}


/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .hero { padding: 56px 0 48px; }
  .hero__split { grid-template-columns: 1fr; gap: 32px; }
  .hero__img-wrap { aspect-ratio: 4/3; order: -1; }
  .section { padding: 56px 0; }
  .grid--3,
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 28px; }
  .spotlight-card { grid-template-columns: 1fr; }
  .spotlight-img-wrap { aspect-ratio: 16/9; }
  .spotlight-body { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .grid--3,
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .search__input { min-width: 120px; }
}

@media (max-width: 360px) {
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .card-enter { animation: none; opacity: 1; transform: none; }
}
