/* motholeum.com — Direction A "Velvet Void" design system */
:root {
  --void: #0A0A0D; --char: #252329; --dred: #7A0015; --red: #E3132B; --pale: #F3D8D5; --grey: #B8B4BC;
  --surface: #0E0D11; --line: #252329; --line-soft: #1A191E;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  --pad: clamp(24px, 6vw, 96px);
  /* generic aliases used by the shared gallery.css */
  --accent: var(--red); --accent-2: var(--red); --accent-rgb: 227, 19, 43; --ink: var(--pale); --ink-rgb: 243, 216, 213; --muted: var(--grey); --surface-2: var(--char); --display: var(--serif); --radius: 10px; --bg-rgb: 10, 10, 13;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { background: var(--void); color: var(--pale); }
body { margin: 0; font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--pale); text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--serif); font-weight: 300; margin: 0; letter-spacing: -.01em; }
h1 { font-size: clamp(52px, 8vw, 118px); line-height: .92; }
h2 { font-size: clamp(40px, 5vw, 72px); line-height: .98; }
h3 { font-size: clamp(26px, 2.4vw, 34px); line-height: 1.05; font-weight: 400; }
em { font-style: italic; font-weight: 400; }
p { margin: 0; }
.muted { color: var(--grey); }
.kicker { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--grey); display: flex; align-items: center; gap: 12px; }
.kicker::before { content: ""; width: 28px; height: 1px; background: var(--grey); flex: none; }
.rule { height: 1px; background: var(--line); }
.serif-i { font-family: var(--serif); font-style: italic; font-weight: 400; }
.lede { font-size: 18px; line-height: 1.7; max-width: 62ch; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; border-radius: 6px; background: var(--red); color: var(--pale); font-size: 14px; font-weight: 600; letter-spacing: .06em; border: 0; cursor: pointer; font-family: inherit; transition: box-shadow .35s ease, transform .35s ease; }
.btn:hover { box-shadow: 0 0 30px rgba(227, 19, 43, .55), 0 0 2px var(--red); transform: translateY(-1px); }
.btn-outline { display: inline-flex; align-items: center; padding: 14px 24px; border-radius: 6px; border: 1px solid var(--grey); color: var(--pale); font-size: 14px; font-weight: 500; letter-spacing: .06em; background: transparent; cursor: pointer; font-family: inherit; transition: border-color .3s, color .3s; }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.ghost { position: relative; display: inline-block; font-size: 14px; font-weight: 500; letter-spacing: .06em; padding-bottom: 5px; background: none; border: 0; color: var(--pale); font-family: inherit; cursor: pointer; }
.ghost::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 24px; background: var(--red); transition: width .35s ease; }
.ghost:hover::after { width: 100%; }

/* nav */
.nav { position: fixed; left: 0; right: 0; top: 0; z-index: 40; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px var(--pad); transition: background .4s, padding .4s; }
.nav.solid { background: rgba(10, 10, 13, .82); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-soft); padding-top: 14px; padding-bottom: 14px; }
.wordmark { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 24px; letter-spacing: .14em; text-transform: uppercase; }
.navlinks { display: flex; gap: 28px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.navlinks a { color: var(--grey); transition: color .3s; } .navlinks a:hover, .navlinks a.active { color: var(--pale); }
.live-pill { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 6px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--line); color: var(--grey); transition: all .4s; white-space: nowrap; }
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--grey); flex: none; }
.live-pill[data-state="live"] { background: var(--red); border-color: var(--red); color: var(--pale); box-shadow: 0 0 22px rgba(227, 19, 43, .45); }
.live-pill[data-state="live"] i { background: var(--pale); animation: pulse 2.4s ease-in-out infinite; }
.live-pill[data-state="soon"] { border-color: var(--dred); color: var(--pale); }
.live-pill[data-state="soon"] i { background: var(--red); animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }

/* hero engine */
.hero { position: relative; width: 100%; height: 100vh; min-height: 560px; overflow: hidden; background: var(--void); --bg-bright: 1; --bg-sat: 1; }
.hero.lamp-cursor, .hero.lamp-cursor * { cursor: none !important; }
.hero .scene { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); transition: filter .6s; }
.hero .layer { position: absolute; inset: 0; will-change: transform; }
.hero .layer img, .hero .layer video { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; user-select: none; -webkit-user-drag: none; pointer-events: none; }
.hero .bg img { filter: brightness(var(--bg-bright)) saturate(var(--bg-sat)); transition: filter 1.2s ease; }
.hero .glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(28% 40% at var(--glow-x, 60%) var(--glow-y, 15%), rgba(227, 19, 43, .26) 0%, rgba(122, 0, 21, .1) 45%, transparent 75%); transition: opacity 1.2s; }
.hero.mommy .glow { opacity: .35; }
.hero .charwrap { position: absolute; inset: 0; transform-origin: 50% 100%; animation: breathe 5.4s ease-in-out infinite; }
@keyframes breathe { 0%, 100% { transform: translateY(0) scale(1) rotate(0deg); } 50% { transform: translateY(-3px) scale(1.007) rotate(-.12deg); } }
.hero .eye { position: absolute; width: 6%; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(227, 19, 43, .9) 0%, rgba(227, 19, 43, .35) 32%, transparent 68%); mix-blend-mode: screen; opacity: .55; animation: eyepulse 3.6s ease-in-out infinite; pointer-events: none; transition: opacity .8s; }
.hero.mommy .eye { animation-duration: 2.4s; transform: translate(-50%, -50%) scale(1.45); }
@keyframes eyepulse { 0%, 100% { opacity: .35; } 50% { opacity: .9; } }
.hero .vignette { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 90% at 50% 40%, transparent 45%, rgba(10, 10, 13, .85) 100%); transition: background 1.2s; }
.hero.mommy .vignette { background: radial-gradient(85% 70% at 50% 45%, transparent 28%, rgba(10, 10, 13, .96) 100%); }
.hero.dim .scene { filter: brightness(.4) saturate(.8); }
.hero .motes { position: absolute; inset: 0; pointer-events: none; }
.hero .copy { position: absolute; left: var(--pad); bottom: clamp(36px, 11vh, 128px); max-width: 640px; display: flex; flex-direction: column; gap: 20px; z-index: 4; will-change: transform; }
.hero .copy h1 { text-shadow: 0 6px 40px rgba(10, 10, 13, .9); }
.hero .copy .sub { font-size: 16px; color: var(--grey); max-width: 460px; text-shadow: 0 2px 20px rgba(10, 10, 13, .9); }
.hero .ctas { display: flex; align-items: center; gap: 22px; margin-top: 4px; flex-wrap: wrap; }
.hero .scroll-cue { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--grey); opacity: .7; animation: cue 2.6s ease-in-out infinite; z-index: 4; }
@keyframes cue { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }
.lamp-cursor-el { position: fixed; left: 0; top: 0; width: 72px; height: 72px; margin: -36px 0 0 -36px; pointer-events: none; z-index: 60; opacity: 0; transition: opacity .3s; will-change: transform; }
.lamp-cursor-el.on { opacity: 1; }
.lamp-cursor-el::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle, rgba(243, 216, 213, .95) 0%, rgba(227, 19, 43, .55) 22%, rgba(227, 19, 43, .18) 45%, transparent 70%); animation: lamppulse 2.8s ease-in-out infinite; }
@keyframes lamppulse { 0%, 100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.18); opacity: 1; } }

/* sections */
[id] { scroll-margin-top: 90px; }
.section { padding: clamp(72px, 10vw, 140px) var(--pad); display: flex; flex-direction: column; gap: 28px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.card { display: flex; flex-direction: column; gap: 14px; padding: 24px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); transition: border-color .35s, transform .35s; }
.card:hover { border-color: var(--red); transform: translateY(-2px); }
.card .thumb { aspect-ratio: 16 / 9; border-radius: 6px; overflow: hidden; background: var(--char); }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card .label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--grey); }
.card .label.red { color: var(--red); }
.vendor { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--grey); color: var(--grey); padding: 3px 8px; border-radius: 4px; }
.price-row { display: flex; justify-content: space-between; align-items: center; color: var(--grey); font-size: 14px; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); cursor: pointer; background: none; font-family: inherit; transition: all .3s; }
.chip.on, .chip:hover { border-color: var(--pale); color: var(--pale); }
.art-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.art-grid figure { margin: 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--char); aspect-ratio: 16 / 9; position: relative; }
.art-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.art-grid figure:hover img { transform: scale(1.03); }
.art-grid figcaption { position: absolute; left: 16px; bottom: 12px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); text-shadow: 0 2px 12px rgba(10, 10, 13, .9); }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: none; }

/* live section */
.live-card { border: 1px solid var(--line); border-radius: 10px; padding: 26px; display: flex; flex-direction: column; gap: 10px; background: var(--surface); transition: border-color .4s, box-shadow .4s; }
.live-card[data-state="live"] { border-color: var(--red); box-shadow: 0 0 40px -10px rgba(227, 19, 43, .5); }
.live-card .state { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--grey); }
.live-card[data-state="live"] .state, .live-card[data-state="soon"] .state { color: var(--red); }
.schedule { display: flex; flex-direction: column; }
.schedule .row { display: grid; grid-template-columns: 140px 1fr auto; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line-soft); align-items: baseline; }
.schedule .row:last-child { border-bottom: 1px solid var(--line-soft); }

/* mommy band */
.band { position: relative; overflow: hidden; background: var(--void); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.band .inner { padding: clamp(80px, 12vw, 160px) var(--pad); display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }

/* forms */
.form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--grey); }
.field input, .field select, .field textarea { width: 100%; height: 48px; padding: 0 16px; border-radius: 6px; border: 1px solid #3A373F; background: #141317; color: var(--pale); font-family: inherit; font-size: 15px; transition: border-color .3s, box-shadow .3s; }
.field textarea { height: 120px; padding: 14px 16px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(227, 19, 43, .22); }

/* footer */
.footer { padding: 60px var(--pad) 40px; border-top: 1px solid var(--line-soft); display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.notify { display: flex; gap: 10px; flex-wrap: wrap; }
.notify input { width: 300px; max-width: 100%; height: 48px; padding: 0 16px; border-radius: 6px; border: 1px solid #3A373F; background: #141317; color: var(--pale); font-family: inherit; font-size: 15px; }
.socials { display: flex; gap: 22px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; flex-wrap: wrap; }
.socials a { color: var(--grey); } .socials a:hover { color: var(--pale); }
.fine { font-size: 12px; color: var(--grey); }

/* demo controls (build review only) */
.demo { position: fixed; right: 16px; bottom: 16px; z-index: 80; display: flex; align-items: center; gap: 8px; padding: 8px 10px; border: 1px solid #3A373F; border-radius: 8px; background: rgba(20, 19, 23, .92); backdrop-filter: blur(10px); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); }
.demo button { background: transparent; border: 1px solid #3A373F; color: var(--grey); border-radius: 4px; padding: 5px 8px; font: inherit; cursor: pointer; }
.demo button.on { border-color: var(--red); color: var(--pale); }

@media (max-width: 900px) {
  .navlinks { display: none; }
  .grid-3[style], .grid-4, .art-grid { grid-template-columns: 1fr !important; }
  .grid-2, .grid-3, .grid-4, .band .inner, .footer, .form, .art-grid { grid-template-columns: 1fr; }
  .form .full { grid-column: auto; }
  .hero .copy { max-width: none; right: var(--pad); }
  .hero .eye { width: 9%; }
  .schedule .row { grid-template-columns: 1fr; gap: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero .charwrap, .hero .eye, .live-pill i, .scroll-cue, .lamp-cursor-el { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
