@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100;200;300;400;500;600&display=swap");

:root {
  --color-background: #0b0b0b;
  --color-surface: #121212;
  --color-text: #f5f3ee;
  --color-text-secondary: #a7a7a7;
  --color-accent: #d6a55a;
  --color-accent-glow: #e8c27a;

  --font-primary: "Geist", Arial, Helvetica, sans-serif;

  --font-weight-regular: 200;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;

  --space-page: 1rem;
  --radius-base: 0.5rem;
  --header-height: 4.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  background: var(--color-background);
  scroll-behavior: smooth;
}

body {
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--font-weight-regular);
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 9vw, 3rem);
}

p {
  color: var(--color-text-secondary);
}

button,
.button {
  align-items: center;
  background: var(--color-accent);
  border: 0;
  border-radius: var(--radius-base);
  color: var(--color-background);
  display: inline-flex;
  font-weight: var(--font-weight-regular);
  gap: 0.5rem;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

button:focus-visible,
.button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-accent-glow);
  outline-offset: 3px;
}

::selection {
  background: var(--color-accent-glow);
  color: var(--color-background);
}

.sr-only {
  block-size: 1px;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  inline-size: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}

.site-header {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: var(--header-height);
  padding: 0.75rem var(--space-page);
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  z-index: 20;
  
}

.site-header.is-scrolled {
  background: rgb(11 11 11 / 58%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgb(245 243 238 / 16%);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 28%);
}

.logo-slot {
  align-items: center;
  color: var(--color-text);
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  min-height: 2.5rem;
  min-width: 6rem;
  text-transform: uppercase;
}

.logo-slot img {
  height: clamp(2rem, 9vw, 2.75rem);
  max-width: min(38vw, 7rem);
  object-fit: contain;
  width: auto;
}

.logo-placeholder {
  opacity: 0.65;
}

.menu-toggle {
  background: rgb(11 11 11 / 42%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgb(245 243 238 / 24%);
  border-radius: 999px;
  box-shadow: 0 0.75rem 2rem rgb(0 0 0 / 22%);
  color: var(--color-text);
  min-height: 2.75rem;
  padding: 0.75rem;
  position: relative;
  z-index: 30;
}

.menu-toggle img {
  height: 1.25rem;
  width: 1.25rem;
}

.primary-nav {
  background: rgb(11 11 11 / 84%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgb(245 243 238 / 16%);
  border-radius: 0.5rem;
  box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 38%);
  display: grid;
  gap: 0.25rem;
  opacity: 0;
  padding: 0.75rem;
  pointer-events: none;
  position: absolute;
  right: var(--space-page);
  top: calc(100% + 0.25rem);
  transform: translateY(-0.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
  width: min(14rem, calc(100vw - 2rem));
  z-index: 40;
}

.primary-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-nav a {
  border-radius: 0.75rem;
  color: rgb(245 243 238 / 82%);
  font-size: 0.95rem;
  font-weight: var(--font-weight-regular);
  padding: 0.85rem 1rem;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: rgb(245 243 238 / 7%);
  color: var(--color-text);
}

.hero {
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 2rem) var(--space-page) 3rem;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, rgb(11 11 11 / 82%) 0%, rgb(11 11 11 / 44%) 58%, rgb(11 11 11 / 12%) 100%),
    linear-gradient(180deg, rgb(11 11 11 / 25%) 0%, rgb(11 11 11 / 10%) 42%, rgb(11 11 11 / 72%) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-background,
.hero-bg,
.hero-bg img {
  inset: 0;
  position: absolute;
}

.hero-background {
  z-index: 0;
}

.hero-bg {
  overflow: hidden;
}

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

.hero-bg-ambience {
  animation: ambience-fade-in 2800ms ease 1000ms forwards;
  opacity: 0;
}

.hero-content {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 36rem;
  position: relative;
  text-align: left;
  z-index: 2;
}

.hero-content h1 {
  max-width: 12ch;
}

.hero-content p {
  font-size: 1rem;
  margin-top: 1rem;
  max-width: 30rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  width: min(100%, 20rem);
  
  margin-inline: auto;
}

.hero-actions .button {
  min-height: 3rem;
  width: 100%;
  
}

.moments-section {
  background: var(--color-background);
  padding: 4.5rem var(--space-page);
}

.section-heading {
  margin: 0 auto 2rem;
  max-width: 42rem;
  text-align: center;
}

.section-heading h1 {
  font-size: clamp(2rem, 9vw, 3rem);
}

.section-heading p {
  font-size: 1rem;
  margin-top: 0.875rem;
}

.bento-grid {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 72rem;
}

.bento-card {
  aspect-ratio: 1 / 1.05;
  background: var(--color-surface);
  border: 1px solid rgb(245 243 238 / 8%);
  border-radius: 0.5rem;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.bento-card::after {
  background: linear-gradient(180deg, rgb(11 11 11 / 4%) 0%, rgb(11 11 11 / 24%) 44%, rgb(11 11 11 / 82%) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

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

.bento-card p {
  bottom: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  left: 0;
  line-height: 1.25;
  max-width: 24rem;
  padding: 1rem;
  position: absolute;
  z-index: 2;
}
.vibes-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2rem;
}


.presets-section {
  background: var(--color-background);
  padding: 2.5rem var(--space-page) 4.5rem;
}

.preset-grid {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 72rem;
}

.preset-card {
  aspect-ratio: 1 / 0.95;
  animation: gradient-shift 8s ease-in-out infinite alternate;
  background-position: 0% 50%;
  background-size: 180% 180%;
  border: 1px solid rgb(245 243 238 / 10%);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 1.25rem;
}

.preset-campfire {
  background-image: linear-gradient(135deg, #2b1300, #7a2f00, #d97706, #fbbf24);
}

.preset-cinema {
  background-image: linear-gradient(135deg, #0b1026, #1e3a8a, #4338ca, #0f172a);
}

.preset-aurora {
  background-image: linear-gradient(135deg, #00c2ff, #7c3aed, #ff4d8d, #00e5a8);
}

.preset-sunrise {
  background-image: linear-gradient(135deg, #fff1c1, #fcd34d, #fdba74, #fff8e1);
  color: var(--color-background);
}

.preset-card h2 {
  color: inherit;
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
}

.preset-card p {
  color: inherit;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.45;
  margin-top: 0.75rem;
  max-width: 22rem;
  opacity: 0.88;
}

.belief-section {
  background: var(--color-background);
  padding: 6rem var(--space-page);
  overflow:hidden;
}

.belief-inner {
  margin: 0 auto;
  max-width: 72rem;
}

.belief-line {
  background: var(--color-accent);
  height: 1px;
  margin-bottom: 1.5rem;
  opacity: 0.72;
  width: min(12rem, 42vw);
}

.belief-title {
  font-size: clamp(3.5rem, 18vw, 6rem);
  letter-spacing: 0;
  line-height: 0.92;
  max-width: 8ch;
  position: relative;
}

.belief-title::before {
  animation: belief-glow-drift 13s ease-in-out infinite alternate;
  background:
    radial-gradient(circle at 28% 46%, rgb(214 165 90 / 34%), transparent 36%),
    radial-gradient(circle at 74% 38%, rgb(124 58 237 / 18%), transparent 38%),
    radial-gradient(circle at 52% 72%, rgb(0 229 168 / 14%), transparent 36%),
    radial-gradient(circle at 18% 72%, rgb(255 77 141 / 10%), transparent 34%);
  content: "";
  filter: blur(36px);
  inset: -28% -24% -34% -14%;
  opacity: 0.78;
  pointer-events: none;
  position: absolute;
  transform: translate3d(0, 0, 0) scale(1);
  z-index: -1;
}

.belief-copy {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
  max-width: 43.75rem;
}

.belief-copy p {
  color: rgb(245 243 238 / 78%);
  font-size: clamp(1.15rem, 5vw, 1.45rem);
  line-height: 1.45;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 900ms ease, transform 900ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.belief-copy.reveal-on-scroll {
  transition-delay: 180ms;
}

.details-section {
  background:
    radial-gradient(circle at 22% 12%, rgb(214 165 90 / 18%), transparent 34%),
    linear-gradient(180deg, #160f0a 0%, #0f0c09 100%);
  color: var(--color-text);
  padding: 4.5rem var(--space-page);
}

.details-heading p {
  color: rgb(245 243 238 / 72%);
}

.details-layout {
  display: grid;
  gap: 2rem;
  margin: 0 auto;
  max-width: 72rem;
}

.product-showcase {
  align-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgb(232 194 122 / 28%), transparent 34%),
    radial-gradient(circle at 50% 86%, rgb(0 0 0 / 42%), transparent 32%);
  display: flex;
  justify-content: center;
  min-height: 24rem;
  padding: 2rem;
}

.product-showcase img {
  max-height: 34rem;
  object-fit: contain;
  width: min(100%, 22rem);
}

.details-content {
  display: grid;
  gap: 1.5rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list article {
  border-bottom: 1px solid rgb(245 243 238 / 10%);
  padding-bottom: 1rem;
}

.feature-list h2,
.included-row h2 {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
}

.feature-list p {
  color: rgb(245 243 238 / 68%);
  font-size: 0.95rem;
  margin-top: 0.375rem;
  max-width: 34rem;
}

.included-row {
  background: rgb(245 243 238 / 6%);
  border: 1px solid rgb(245 243 238 / 10%);
  border-radius: 0.5rem;
  padding: 1rem;
}

.included-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1rem;
  margin-top: 0.875rem;
}

.included-row li {
  color: rgb(245 243 238 / 78%);
  font-size: 0.9rem;
}

.included-row li::before {
  color: var(--color-accent-glow);
  content: "•";
  margin-right: 0.375rem;
}

.spec-strip {
  border-top: 1px solid rgb(245 243 238 / 12%);
  display: grid;
  gap: 0.875rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 2rem auto 0;
  max-width: 72rem;
  padding-top: 1rem;
}

.spec-strip div {
  align-items: baseline;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.spec-strip dt {
  color: rgb(245 243 238 / 52%);
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
}

.spec-strip dd {
  color: var(--color-text);
  font-size: 0.9rem;
  margin: 0;
  text-align: right;
}

.purchase-hero {
  align-items: center;
  background:
    radial-gradient(circle at 76% 42%, rgb(214 165 90 / 20%), transparent 34%),
    linear-gradient(180deg, #0b0b0b 0%, #100d09 100%);
  display: grid;
  gap: 2rem;
  min-height: 100svh;
  overflow: hidden;
  padding: 6rem var(--space-page) 4rem;
  position: relative;
}

.purchase-copy,
.purchase-visual {
  position: relative;
  z-index: 1;
}

.purchase-kicker {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.purchase-copy h1 {
  font-size: clamp(3rem, 14vw, 5.75rem);
  letter-spacing: 0;
  line-height: 0.94;
  max-width: 9ch;
}

.purchase-intro {
  color: rgb(245 243 238 / 78%);
  font-size: clamp(1.15rem, 5vw, 1.45rem);
  line-height: 1.35;
  margin-top: 1.25rem;
  max-width: 28rem;
}

.purchase-offer {
  border-top: 1px solid rgb(245 243 238 / 14%);
  display: grid;
  gap: 0.35rem;
  margin-top: 2rem;
  max-width: 24rem;
  padding-top: 1.25rem;
}

.purchase-offer span {
  color: rgb(245 243 238 / 62%);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.purchase-offer strong {
  color: var(--color-text);
  font-size: clamp(2rem, 9vw, 3.25rem);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
}

.purchase-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
  max-width: 24rem;
}

.purchase-actions .button {
  min-height: 3.15rem;
  width: 100%;
}
.purchase-note {

  margin-top: 1rem;
  text-align: center;
}
.purchase-visual {
  align-items: end;
  display: flex;
  justify-content: center;
  min-height: 24rem;
}

.purchase-visual::before {
  background:
    radial-gradient(circle at 50% 42%, rgb(232 194 122 / 30%), transparent 34%),
    radial-gradient(circle at 50% 82%, rgb(0 0 0 / 48%), transparent 38%);
  content: "";
  filter: blur(8px);
  inset: 8% 0 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}



.product-gallery {
    width: 100%;
    max-width: 650px;
}

.gallery-main {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 24px;
    background: #111;
    border: 1px solid rgb(255 255 255 / 8%);
    
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity .3s ease;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    
}

.gallery-thumbs::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.15);
    border-radius: 20px;
}

.thumb {
    border: 2px solid transparent;
    background: none;
    padding: 0;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.thumb img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.thumb.active {
    border-color: #ff8c42;
}

.site-footer {
  background: var(--color-background);
  border-top: 1px solid rgb(255 255 255 / 8%);
  display: grid;
  gap: 2.25rem;
  padding: 3rem var(--space-page);
}

.footer-brand h2 {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand p {
  color: rgb(245 243 238 / 70%);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.footer-links {
  display: grid;
  gap: 1.75rem;
}

.footer-links div {
  display: grid;
  gap: 0.55rem;
}

.footer-links h3 {
  color: rgb(245 243 238 / 52%);
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgb(245 243 238 / 80%);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-accent);
}

.footer-credit {
  color: rgb(245 243 238 / 48%);
  font-size: 0.85rem;
}

@keyframes gradient-shift {
  to {
    background-position: 100% 50%;
  }
}

@keyframes ambience-fade-in {
  to {
    opacity: 1;
  }
}

@keyframes belief-glow-drift {
  to {
    opacity: 0.96;
    transform: translate3d(2.25rem, -1.35rem, 0) scale(1.1);
  }
}

@media (min-width: 768px) {
  :root {
    --space-page: 2rem;
    --header-height: 5rem;
  }

  .site-header {
    justify-content: flex-start;
  }

  .logo-slot img {
    height: 3rem;
    max-width: 8.5rem;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    gap: 0.25rem;
    left: 50%;
    opacity: 1;
    padding: 0.35rem;
    pointer-events: auto;
    position: absolute;
    right: auto;
    top: 50%;
    transform: translateX(-50%);
    translate: 0 -50%;
    transition: none;
    width: auto;
  }

  .primary-nav.is-open {
    transform: translateX(-50%);
  }

  .primary-nav a {
    border-radius: 0.5rem;
    font-size: 1.125rem;
    padding: 0.65rem 1rem;
    white-space: nowrap;
  }

  .hero {
    align-items: center;
    display: flex;
    height: 100vh;
    min-height: 0;
    padding-bottom: 5rem;
    padding-top: var(--header-height);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgb(11 11 11 / 76%) 0%, rgb(11 11 11 / 42%) 42%, rgb(11 11 11 / 6%) 78%),
      linear-gradient(180deg, rgb(11 11 11 / 22%) 0%, rgb(11 11 11 / 6%) 48%, rgb(11 11 11 / 54%) 100%);
  }

  .hero-content {
    display: block;
    max-width: 42rem;
  }

  .hero-content h1 {
    font-size: clamp(2.25rem, 4vw, 4.25rem);
    max-width: 16ch;
  }

  .hero-content p {
    font-size: 1.125rem;
  }

  .hero-actions {
    flex-direction: row;
    width: auto;
  }

  .hero-actions .button {
    min-height: 2.375rem;
    padding: 0.75rem 1.5rem;
    width: auto;
  }

  .moments-section {
    padding-bottom: 6rem;
    padding-top: 6rem;
  }

  .section-heading {
    margin-bottom: 3rem;
  }

  .section-heading h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
  }

  .section-heading p {
    font-size: 1.125rem;
  }

  .bento-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    max-height: 150vh;
  }

  .bento-card {
    aspect-ratio: auto;
    min-height: 0;
  }

  .bento-card-large {
    grid-column: span 3;
  }

  .bento-card:nth-child(3),
  .bento-card:nth-child(4) {
    grid-column: span 2;
  }

  .bento-card p {
    font-size: 1rem;
    padding: 1.25rem;
  }
  .vibes-action p {
    text-align: center;
  }
  .vibes-action .button {
    width: 20%;
    margin-top: 2rem;
    align-self: center;
  }

  .presets-section {
    padding-bottom: 6rem;
    padding-top: 3rem;
  }

  .preset-grid {
    align-items: stretch;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .preset-card {
    animation: none;
    aspect-ratio: 1 / 1;
    padding: 1.5rem;
    transition: background-position 900ms ease, transform 220ms ease;
  }

  .preset-card:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
  }

  .preset-card h2 {
    font-size: 1.05rem;
  }

  .preset-card p {
    font-size: 0.875rem;
  }

  .belief-section {
    padding-bottom: 8.5rem;
    padding-top: 9rem;
  }

  .belief-line {
    margin-bottom: 2rem;
    width: 14rem;
  }

  .belief-title {
    font-size: clamp(7.5rem, 10vw, 8.75rem);
  }

  .belief-title::before {
    filter: blur(52px);
    inset: -24% -30% -38% -12%;
  }

  .belief-copy {
    margin-left: clamp(5rem, 16vw, 12rem);
    margin-top: 3rem;
  }

  .belief-copy p {
    font-size: clamp(1.125rem, 1.25vw, 1.625rem);
    line-height: 1.42;
  }

  .details-section {
    padding-bottom: 6rem;
    padding-top: 6rem;
  }

  .details-layout {
    align-items: center;
    gap: 3rem;
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.9fr);
  }

  .product-showcase {
    min-height: 38rem;
    padding: 3rem;
  }

  .product-showcase img {
    max-height: 34rem;
    width: min(100%, 24rem);
  }

  .feature-list {
    gap: 1.125rem;
  }

  .feature-list h2,
  .included-row h2 {
    font-size: 0.95rem;
  }

  .feature-list p {
    font-size: 0.9rem;
  }

  .included-row {
    padding: 1.125rem;
  }

  .spec-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .spec-strip div {
    align-items: flex-start;
    display: grid;
    gap: 0.35rem;
  }

  .spec-strip dd {
    font-size: 0.85rem;
    text-align: left;
  }

  .purchase-hero {
    gap: 4rem;
    grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1fr);
    min-height: 100vh;
    padding: 7rem var(--space-page);
  }

  .purchase-copy {
    margin-left: calc((100vw - min(72rem, calc(100vw - (var(--space-page) * 2)))) / 2);
    max-width: 38rem;
  }

  .purchase-copy h1 {
    font-size: clamp(5.5rem, 7.8vw, 7.75rem);
  }

  .purchase-intro {
    font-size: clamp(1.35rem, 1.8vw, 1.65rem);
    max-width: 31rem;
  }

  .purchase-actions {
    display: flex;
    max-width: none;
  }

  .purchase-actions .button {
    min-height: 3rem;
    width: auto;
  }
  .purchase-note {

    text-align: left;
  }

  .gallery-main {
    max-height: 30rem;
  }

  .site-footer {
    align-items: start;
    column-gap: 3rem;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 3.5rem max(var(--space-page), calc((100vw - 72rem) / 2));
  }

  .footer-brand {
    max-width: 22rem;
  }

  .footer-links {
    display: flex;
    gap: 4rem;
  }

  .footer-credit {
    grid-column: 1 / -1;
  }
}

ul,
ol {
  list-style: none;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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


/* ==========================================================================
   BLACK HUE PREMIUM ORDER MODAL
   ========================================================================== */

/* Modal Overlay with deep backdrop blur */
.bh-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 11, 0.4);
  backdrop-filter: blur(24px) brightness(0.35);
  -webkit-backdrop-filter: blur(24px) brightness(0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--space-page, 1rem);
}

.bh-modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Ambient Kinetic Glow Engine behind the card */
.bh-modal-glow-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bh-modal-glow {
  position: absolute;
  width: 115%;
  height: 115%;
  background: radial-gradient(circle at 30% 30%, rgb(214 165 90 / 22%), transparent 45%),
              radial-gradient(circle at 70% 70%, rgb(124 58 237 / 14%), transparent 45%),
              radial-gradient(circle at 50% 40%, rgb(232 194 122 / 12%), transparent 40%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  transform: scale(0.95);
  animation: bh-ambient-pulse 12s ease-in-out infinite alternate;
}

/* Frosted Glass Structural Card */
.bh-modal-card {
  position: relative;
  background: rgba(18, 18, 18, 0.78);
  border: 1px solid rgba(245, 243, 238, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2.25rem 2rem;
  width: 100%;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.6), 
              inset 0 1px 0px rgba(245, 243, 238, 0.05);
  z-index: 1;
  transform: scale(0.96) translateY(0.5rem);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-primary);
}

.bh-modal-overlay.is-active .bh-modal-card {
  transform: scale(1) translateY(0);
}

/* Premium Concierge Typography */
.bh-modal-card h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold, 600);
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.bh-modal-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: var(--font-weight-regular, 200);
  line-height: 1.45;
  margin-bottom: 1.75rem;
}

.bh-modal-card p strong {
  color: var(--color-accent);
  font-weight: var(--font-weight-medium, 500);
}

/* Sleek Dark Recessed Wells */
.bh-form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bh-form-group label {
  font-size: 0.78rem;
  font-weight: var(--font-weight-medium, 500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(245 243 238 / 55%);
}

.bh-form-input {
  background: var(--color-background);
  color: var(--color-text);
  border: 1px solid rgba(245, 243, 238, 0.1);
  border-radius: var(--radius-base, 0.5rem);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: var(--font-weight-regular, 200);
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.75);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.bh-form-input::placeholder {
  color: rgb(245 243 238 / 25%);
}

.bh-form-input:focus {
  outline: none;
  border-color: var(--color-accent-glow);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.8), 0 0 12px rgb(232 194 122 / 12%);
}

textarea.bh-form-input {
  resize: none;
  height: 4.5rem;
}

/* Actions Layout */
.bh-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.bh-btn-submit {
  background: var(--color-accent);
  color: var(--color-background);
  font-weight: var(--font-weight-medium, 500);
  border: 0;
  border-radius: var(--radius-base, 0.5rem);
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 200ms ease, transform 150ms ease;
}

.bh-btn-submit:hover {
  background: var(--color-accent-glow);
}

.bh-btn-submit:active {
  transform: scale(0.99);
}

.bh-btn-cancel {
  background: transparent;
  color: rgb(245 243 238 / 45%);
  border: 0;
  font-size: 0.85rem;
  font-weight: var(--font-weight-regular, 200);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 200ms ease;
  align-self: center;
}

.bh-btn-cancel:hover {
  color: var(--color-text);
}

/* Keyframe Animations */
@keyframes bh-ambient-pulse {
  0% { transform: scale(0.92) rotate(0deg); opacity: 0.8; }
  50% { transform: scale(1.03) rotate(15deg); opacity: 1; }
  100% { transform: scale(0.95) rotate(-10deg); opacity: 0.85; }
}

@media (min-width: 768px) {
  .bh-modal-actions {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .bh-btn-submit { 
    width: auto; 
    min-width: 200px; 
  }
  .bh-btn-cancel { 
    align-self: auto; 
    padding: 0.75rem 0; 
  }
}

/*===========================================================================
START GUIDE STYLES
=========================================================================== */

/* ── Welcome hero ───────────────────────────────────────── */
    .welcome-hero {
      align-items: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 100svh;
      overflow: hidden;
      padding: calc(var(--header-height) + 3rem) var(--space-page) 4rem;
      position: relative;
      text-align: center;
    }

    .welcome-hero::after {
      background:
        linear-gradient(180deg, rgb(11 11 11 / 55%) 0%, rgb(11 11 11 / 30%) 40%, rgb(11 11 11 / 78%) 100%);
      content: "";
      inset: 0;
      pointer-events: none;
      position: absolute;
      z-index: 1;
    }

    .welcome-hero-bg {
      inset: 0;
      overflow: hidden;
      position: absolute;
      z-index: 0;
    }

    .welcome-hero-bg img {
      height: 100%;
      object-fit: cover;
      object-position: center;
      width: 100%;
    }

    .welcome-content {
      max-width: 38rem;
      position: relative;
      z-index: 2;
    }

    .welcome-kicker {
      color: var(--color-accent);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      margin-bottom: 1rem;
      text-transform: uppercase;
    }

    .welcome-content h1 {
      font-size: clamp(2.5rem, 10vw, 4rem);
      line-height: 1.05;
    }

    .welcome-content p {
      color: rgb(245 243 238 / 76%);
      font-size: clamp(1rem, 3vw, 1.2rem);
      line-height: 1.55;
      margin-top: 1.25rem;
      max-width: 30rem;
    }

    .welcome-scroll-hint {
      bottom: 2rem;
      color: rgb(245 243 238 / 38%);
      font-size: 0.75rem;
      left: 50%;
      letter-spacing: 0.1em;
      position: absolute;
      text-transform: uppercase;
      transform: translateX(-50%);
      z-index: 2;
    }

    /* ── Get the app ────────────────────────────────────────── */
    .app-section {
      background: var(--color-background);
      padding: 5rem var(--space-page);
    }

    .app-inner {
      margin: 0 auto;
      max-width: 52rem;
      text-align: center;
    }

    .app-inner .section-heading {
      margin-bottom: 2.5rem;
    }

    .app-layout {
      align-items: center;
      display: grid;
      gap: 2.5rem;
    }

    /* QR placeholder */
    .qr-block {
      align-items: center;
      border: 1px solid rgb(245 243 238 / 14%);
      border-radius: var(--radius-base);
      display: none;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.5rem;
    }

    .qr-placeholder {
      align-items: center;
      background: rgb(245 243 238 / 5%);
      border: 1.5px dashed rgb(245 243 238 / 18%);
      border-radius: var(--radius-base);
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      height: 140px;
      justify-content: center;
      width: 140px;
    }

    .qr-placeholder svg {
      opacity: 0.3;
    }

    .qr-placeholder span {
      color: rgb(245 243 238 / 40%);
      font-size: 0.7rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .qr-label {
      color: rgb(245 243 238 / 52%);
      font-size: 0.8rem;
    }

    /* Store buttons */
    .store-buttons {
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
      width: 100%;
    }

    .store-btn {
      align-items: center;
      background: rgb(245 243 238 / 6%);
      border: 1px solid rgb(245 243 238 / 14%);
      border-radius: var(--radius-base);
      color: var(--color-text);
      display: flex;
      gap: 1rem;
      min-height: 3.75rem;
      padding: 0.875rem 1.25rem;
      text-align: left;
      transition: background 180ms ease, border-color 180ms ease;
      width: 100%;
    }

    .store-btn:hover {
      background: rgb(245 243 238 / 10%);
      border-color: rgb(245 243 238 / 24%);
    }

    .store-btn svg {
      flex-shrink: 0;
      opacity: 0.88;
    }

    .store-btn-copy {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .store-btn-copy span:first-child {
      color: rgb(245 243 238 / 52%);
      font-size: 0.7rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .store-btn-copy strong {
      font-size: 1rem;
      font-weight: 500;
    }

    /* ── Manual download ────────────────────────────────────── */
    .manual-section {
      background:
        radial-gradient(circle at 50% 0%, rgb(214 165 90 / 10%), transparent 40%),
        var(--color-background);
      border-top: 1px solid rgb(245 243 238 / 8%);
      padding: 4.5rem var(--space-page);
      text-align: center;
    }

    .manual-inner {
      margin: 0 auto;
      max-width: 36rem;
    }

    .manual-inner h2 {
      font-size: clamp(1.5rem, 5vw, 2rem);
      margin-bottom: 0.75rem;
    }

    .manual-inner p {
      font-size: 0.95rem;
      margin-bottom: 2rem;
    }

    .manual-download-btn {
      align-items: center;
      background: transparent;
      border: 1px solid var(--color-accent);
      border-radius: var(--radius-base);
      color: var(--color-accent);
      display: inline-flex;
      font-size: 0.95rem;
      font-weight: 200;
      gap: 0.625rem;
      min-height: 3rem;
      padding: 0.75rem 1.75rem;
      transition: background 180ms ease, color 180ms ease;
    }

    .manual-download-btn:hover {
      background: var(--color-accent);
      color: var(--color-background);
    }

    .manual-download-btn svg {
      flex-shrink: 0;
    }

    /* ── Mood teaser ────────────────────────────────────────── */
    .moods-teaser-section {
      background: var(--color-background);
      padding: 4.5rem var(--space-page) 6rem;
    }

    .moods-teaser-section .section-heading {
      margin-bottom: 2rem;
    }

    .moods-teaser-grid {
      display: grid;
      gap: 1rem;
      margin: 0 auto 2rem;
      max-width: 72rem;
    }

    .see-more-wrap {
      text-align: center;
    }

    /* ── Desktop overrides ──────────────────────────────────── */
    @media (min-width: 768px) {
      .app-layout {
        grid-template-columns: 1fr 1fr;
        text-align: left;
      }

      .qr-block {
        display: flex;
      }

      .store-buttons {
        max-width: 22rem;
        display: none;
      }

      .moods-teaser-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .preset-card {
        aspect-ratio: 1 / 1;
        animation: none;
        padding: 1.5rem;
        transition: background-position 900ms ease, transform 220ms ease;
      }

      .preset-card:hover {
        background-position: 100% 50%;
        transform: translateY(-2px);
      }
    }
    /*===========================================================================
    END GUIDE STYLES
    ===========================================================================*/

    /*===========================================================================
    VIBES HTML STYLES 
    ===========================================================================*/
    /* ── Page hero ──────────────────────────────────────────── */
    .moods-hero {
      padding: calc(var(--header-height) + 4rem) var(--space-page) 3.5rem;
      max-width: 72rem;
      margin: 0 auto;
    }

    .moods-hero .eyebrow {
      color: var(--color-accent);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .moods-hero h1 {
      font-size: clamp(2.4rem, 9vw, 4.5rem);
      max-width: 14ch;
      line-height: 1.04;
    }

    .moods-hero p {
      margin-top: 1.1rem;
      font-size: clamp(0.95rem, 2.5vw, 1.1rem);
      max-width: 36rem;
      line-height: 1.6;
    }

    /* ── Mood grid ──────────────────────────────────────────── */
    .moods-section {
      padding: 2rem var(--space-page) 7rem;
    }

    .moods-grid {
      display: grid;
      gap: 1.25rem;
      margin: 0 auto;
      max-width: 72rem;
    }

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

    @media (min-width: 1024px) {
      .moods-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
    }

    /* ── Mood card ──────────────────────────────────────────── */
    .mood-card {
      border-radius: 0.75rem;
      border: 1px solid rgb(245 243 238 / 10%);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      position: relative;
      transition: transform 220ms ease, box-shadow 220ms ease;
    }

    .mood-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 1.5rem 3rem rgb(0 0 0 / 40%);
    }

    .mood-card:focus-visible {
      outline: 2px solid var(--color-accent-glow);
      outline-offset: 3px;
    }

    /* Photo placeholder — swap for real img when ready */
    .mood-photo {
      aspect-ratio: 3 / 4;
      background: rgb(245 243 238 / 4%);
      border-bottom: 1px solid rgb(245 243 238 / 8%);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .mood-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* gradient overlay on photo */
    .mood-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgb(11 11 11 / 55%) 100%);
      pointer-events: none;
    }

    .mood-photo-placeholder {
      color: rgb(245 243 238 / 16%);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }

    /* Gradient colour swatch at bottom of placeholder */
    .mood-swatch {
      width: 100%;
      height: 4rem;
      position: absolute;
      bottom: 0;
      left: 0;
      opacity: 0.55;
      filter: blur(12px);
    }

    .mood-card-body {
      background: var(--color-surface);
      padding: 1.25rem 1.125rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .mood-name {
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-text);
      line-height: 1.1;
    }

    .mood-vibe {
      font-size: 0.82rem;
      color: var(--color-text-secondary);
      line-height: 1.45;
    }

    .mood-cta {
      margin-top: 0.875rem;
      align-items: center;
      background: transparent;
      border: 1px solid rgb(245 243 238 / 18%);
      border-radius: 0.4rem;
      color: var(--color-text);
      display: inline-flex;
      font-size: 0.8rem;
      font-weight: 300;
      gap: 0.4rem;
      padding: 0.55rem 0.875rem;
      transition: border-color 180ms, background 180ms;
      width: 100%;
      justify-content: center;
    }

    .mood-cta:hover {
      border-color: var(--color-accent);
      color: var(--color-accent);
      background: rgb(214 165 90 / 6%);
    }

    .mood-cta svg { flex-shrink: 0; }

    /* ── Modal overlay ──────────────────────────────────────── */
    .modal-overlay {
      align-items: flex-end;
      backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);
      background: rgb(0 0 0 / 0%);
      bottom: 0;
      display: flex;
      justify-content: center;
      left: 0;
      opacity: 0;
      pointer-events: none;
      position: fixed;
      right: 0;
      top: 0;
      transition: background 300ms ease, backdrop-filter 300ms ease, opacity 300ms ease;
      z-index: 50;
    }

    .modal-overlay.is-open {
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      background: rgb(0 0 0 / 70%);
      opacity: 1;
      pointer-events: auto;
    }

    @media (min-width: 768px) {
      .modal-overlay {
        align-items: center;
      }
    }

    /* ── Modal panel ────────────────────────────────────────── */
    .modal-panel {
      border-radius: 1.25rem 1.25rem 0 0;
      display: flex;
      flex-direction: column;
      max-height: 92svh;
      overflow: hidden;
      position: relative;
      transform: translateY(100%);
      transition: transform 380ms cubic-bezier(.32,.72,0,1);
      width: 100%;
      max-width: 38rem;
      /* bg set per-mood via inline style */
    }

    .modal-overlay.is-open .modal-panel {
      transform: translateY(0);
    }

    @media (min-width: 768px) {
      .modal-panel {
        border-radius: 1.25rem;
        transform: translateY(20px) scale(0.97);
        transition: transform 320ms cubic-bezier(.32,.72,0,1), opacity 260ms ease;
        opacity: 0;
        max-height: 85vh;
      }
      .modal-overlay.is-open .modal-panel {
        transform: translateY(0) scale(1);
        opacity: 1;
      }
    }

    /* Gradient header area */
    .modal-header {
      padding: 2.25rem 1.75rem 1.75rem;
      position: relative;
      flex-shrink: 0;
    }

    .modal-header::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgb(11 11 11 / 62%) 100%);
      pointer-events: none;
    }

    .modal-close {
      align-items: center;
      background: rgb(0 0 0 / 38%);
      backdrop-filter: blur(8px);
      border: 1px solid rgb(245 243 238 / 18%);
      border-radius: 999px;
      color: var(--color-text);
      display: flex;
      height: 2.25rem;
      justify-content: center;
      position: absolute;
      right: 1.25rem;
      top: 1.25rem;
      transition: background 180ms;
      width: 2.25rem;
      z-index: 2;
    }

    .modal-close:hover { background: rgb(0 0 0 / 60%); }

    .modal-mood-label {
      color: rgb(245 243 238 / 62%);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      position: relative;
      z-index: 1;
      margin-bottom: 0.5rem;
    }

    .modal-mood-name {
      font-size: clamp(1.75rem, 7vw, 2.5rem);
      font-weight: 600;
      color: var(--color-text);
      line-height: 1.05;
      position: relative;
      z-index: 1;
    }

    .modal-mood-vibe {
      font-size: 0.9rem;
      color: rgb(245 243 238 / 65%);
      margin-top: 0.5rem;
      position: relative;
      z-index: 1;
    }

    /* Modal body */
    .modal-body {
      background: #111111;
      overflow-y: auto;
      overscroll-behavior: contain;
      padding: 1.75rem 1.75rem 2.5rem;
      -webkit-overflow-scrolling: touch;
    }

    .modal-section-label {
      color: var(--color-accent);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
    }

    /* Steps */
    .steps-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .step-row {
      display: grid;
      grid-template-columns: 2rem 1fr;
      gap: 0 1rem;
      align-items: start;
      padding-bottom: 1.5rem;
      position: relative;
    }

    /* connector line */
    .step-row:not(:last-child)::before {
      content: "";
      position: absolute;
      left: 0.9375rem;
      top: 2rem;
      bottom: 0;
      width: 1px;
      background: rgb(245 243 238 / 10%);
    }

    .step-num {
      align-items: center;
      background: rgb(245 243 238 / 8%);
      border: 1px solid rgb(245 243 238 / 12%);
      border-radius: 999px;
      color: var(--color-text-secondary);
      display: flex;
      flex-shrink: 0;
      font-size: 0.72rem;
      font-weight: 500;
      height: 1.875rem;
      justify-content: center;
      margin-top: 0.1rem;
      width: 1.875rem;
    }

    .step-content { padding-top: 0.25rem; }

    .step-action {
      font-size: 0.925rem;
      font-weight: 400;
      color: var(--color-text);
      line-height: 1.4;
    }

    .step-note {
      font-size: 0.8rem;
      color: var(--color-text-secondary);
      margin-top: 0.3rem;
      line-height: 1.45;
    }

    /* RGB chips */
    .rgb-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.625rem;
    }

    .rgb-chip {
      align-items: center;
      background: rgb(245 243 238 / 6%);
      border: 1px solid rgb(245 243 238 / 12%);
      border-radius: 0.375rem;
      cursor: pointer;
      display: inline-flex;
      font-size: 0.75rem;
      font-family: ui-monospace, 'SF Mono', monospace;
      gap: 0.5rem;
      padding: 0.35rem 0.625rem;
      transition: background 150ms, border-color 150ms;
      user-select: none;
    }

    .rgb-chip:hover {
      background: rgb(245 243 238 / 11%);
      border-color: rgb(245 243 238 / 22%);
    }

    .rgb-chip.copied {
      border-color: var(--color-accent);
      color: var(--color-accent);
    }

    .rgb-swatch {
      border-radius: 50%;
      display: inline-block;
      flex-shrink: 0;
      height: 0.75rem;
      width: 0.75rem;
    }

    /* Footnote */
    .modal-footnote {
      border-top: 1px solid rgb(245 243 238 / 8%);
      margin-top: 2rem;
      padding-top: 1.25rem;
    }

    .modal-footnote p {
      font-size: 0.8rem;
      color: rgb(245 243 238 / 38%);
      line-height: 1.55;
    }

    .modal-footnote strong {
      color: rgb(245 243 238 / 55%);
      font-weight: 400;
    }

    /* drag handle for mobile */
    .modal-handle {
      background: rgb(245 243 238 / 22%);
      border-radius: 999px;
      height: 4px;
      margin: 0.875rem auto 0;
      width: 2.5rem;
    }

    @media (min-width: 768px) {
      .modal-handle { display: none; }
    }

    /* ── Mood-specific gradients ────────────────────────────── */
    .modal-bg-movie-night {
      background: linear-gradient(160deg, #0b1026 0%, #1a2d6b 40%, #0f172a 100%);
    }
    .modal-bg-fireplace {
      background: linear-gradient(160deg, #2b1300 0%, #7a2f00 50%, #1a0800 100%);
    }
    .modal-bg-chillout {
      background: linear-gradient(160deg, #0a1a14 0%, #1a3d2b 50%, #0d2218 100%);
    }
    .modal-bg-aurora {
      background: linear-gradient(160deg, #0d1b2a 0%, #1a0a2e 40%, #0a2218 100%);
    }
