/*
Theme Name: Lucid Mechanics
Theme URI: https://lucidmechanics.com
Author: Lucid Mechanics
Author URI: https://lucidmechanics.com
Description: Official Lucid Mechanics WordPress theme — consciousness meets precision.
Version: 1.1
License: Private
Text Domain: lucid-mechanics
*/

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

:root {
  --void: #04030a;
  --deep: #0b0818;
  --mid: #160d2e;
  --purple: #7c3aed;
  --violet: #a855f7;
  --lavender: #c4b5fd;
  --teal: #14b8a6;
  --teal-light: #5eead4;
  --gold: #d97706;
  --gold-light: #fcd34d;
  --rose: #db2777;
  --text: #f0ebff;
  --muted: #9d8ec9;
  --border: rgba(164, 132, 255, 0.18);
}

html {
  scroll-behavior: smooth;
  background: #04030a !important;
}

body {
  background: #04030a !important;
  background-color: #04030a !important;
  color: #f0ebff !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── CANVAS BACKGROUND ── */
#cosmos {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── GEOMETRY OVERLAY ── */
#geometry {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.04;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: linear-gradient(180deg, rgba(4,3,10,0.95) 0%, rgba(4,3,10,0) 100%);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #c4b5fd !important;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark { width: 28px; height: 28px; opacity: 0.9; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9d8ec9 !important;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: #a855f7;
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: center;
}

.nav-links a:hover,
.nav-links a.active { color: #c4b5fd !important; }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* ── PAGE WRAPPER — display:block for WordPress ── */
.page {
  display: block;
  position: relative;
  z-index: 10;
  min-height: 100vh;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #14b8a6 !important;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #14b8a6;
  opacity: 0.5;
}

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #e0d6ff 0%, #c4b5fd 30%, #14b8a6 65%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #9d8ec9 !important;
  margin-bottom: 2.5rem;
}

.hero-body {
  max-width: 560px;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(240,235,255,0.7) !important;
  line-height: 2;
  margin-bottom: 3.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(164,132,255,0.4) !important;
  background: rgba(124,58,237,0.15) !important;
  color: #c4b5fd !important;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: rgba(124,58,237,0.35) !important;
  border-color: #a855f7 !important;
  color: #fff !important;
}

.btn-ghost {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(20,184,166,0.3) !important;
  background: transparent !important;
  color: #5eead4 !important;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  background: rgba(20,184,166,0.12) !important;
  border-color: #14b8a6 !important;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.35;
}

.scroll-hint span {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9d8ec9;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, #9d8ec9 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.15); }
}

/* ── HOME FEATURES ── */
.home-features {
  padding: 5rem 3rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #14b8a6 !important;
  margin-bottom: 1rem;
  text-align: center;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 400;
  text-align: center;
  color: #c4b5fd !important;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.section-subtitle {
  text-align: center;
  font-style: italic;
  color: #9d8ec9 !important;
  font-size: 1rem;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
}

.feature-card {
  background: rgba(22,13,46,0.6) !important;
  border: 1px solid rgba(164,132,255,0.18) !important;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.feature-card:hover { background: rgba(40,20,75,0.6) !important; }

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a855f7, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before { opacity: 1; }

.feature-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }

.feature-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #c4b5fd !important;
  margin-bottom: 0.7rem;
  letter-spacing: 0.05em;
}

.feature-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(200,185,255,0.65) !important;
  line-height: 1.8;
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(164,132,255,0.18) 30%, rgba(164,132,255,0.3) 50%, rgba(164,132,255,0.18) 70%, transparent 100%);
  margin: 1rem 0;
}

/* ── QUOTE BLOCK ── */
.pull-quote {
  max-width: 700px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.pull-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(240,235,255,0.8) !important;
}

.pull-quote cite {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #14b8a6 !important;
  margin-top: 1.2rem;
  font-style: normal;
}

/* ── PAGE CONTENT ── */
.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 9rem 2rem 6rem;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}

.page-header .eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #14b8a6 !important;
  margin-bottom: 1.2rem;
  display: block;
}

.page-header h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 400;
  background: linear-gradient(135deg, #e0d6ff, #a855f7 50%, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.page-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #9d8ec9 !important;
  font-weight: 300;
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

@media (max-width: 680px) {
  .about-grid { grid-template-columns: 1fr; }
  nav { padding: 1rem 1.2rem; }
  .nav-links { gap: 1.2rem; }
  .hero { padding: 5rem 1.2rem 3rem; }
  .home-features { padding: 3rem 1.2rem 4rem; }
  .page-content { padding: 7rem 1.2rem 4rem; }
}

.about-prose h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #c4b5fd !important;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.about-prose p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(220,210,255,0.75) !important;
  line-height: 1.9;
  margin-bottom: 1.3rem;
}

.values-list { list-style: none; margin-top: 1.5rem; }

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(200,185,255,0.7) !important;
  margin-bottom: 0.9rem;
  line-height: 1.6;
}

.values-list li::before {
  content: '◈';
  color: #14b8a6;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.about-visual { position: relative; }

.sacred-box {
  border: 1px solid rgba(164,132,255,0.18);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  background: rgba(11,8,24,0.5);
}

.sacred-box svg {
  opacity: 0.55;
  width: 100%;
  max-width: 280px;
  animation: spinSlow 60s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sacred-label {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9d8ec9 !important;
  margin-top: 1.5rem;
  display: block;
}

/* ── APPARATUS PAGE ── */
.apparatus-hero {
  text-align: center;
  padding: 9rem 2rem 3rem;
  position: relative;
}

.patent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fcd34d !important;
  border: 1px solid rgba(252,211,77,0.3);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.8rem;
  background: rgba(217,119,6,0.08);
}

.apparatus-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 30%, #e0d6ff 70%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.0;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.apparatus-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9d8ec9 !important;
  margin-bottom: 1.5rem;
}

.apparatus-tagline {
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: rgba(220,210,255,0.65) !important;
  max-width: 550px;
  margin: 0 auto 3rem;
}

.apparatus-visual {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}

.apparatus-diagram {
  border: 1px solid rgba(252,211,77,0.15);
  background: rgba(11,8,24,0.7) !important;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(164,132,255,0.18);
  border: 1px solid rgba(164,132,255,0.18);
  max-width: 900px;
  margin: 3rem auto;
}

.spec-item {
  background: #0b0818 !important;
  padding: 1.8rem 1.5rem;
  text-align: center;
}

.spec-value {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: #fcd34d !important;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.spec-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9d8ec9 !important;
}

.apparatus-sections {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.apparatus-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-top: 1px solid rgba(164,132,255,0.18);
}

@media (max-width: 680px) {
  .apparatus-block { grid-template-columns: 1fr; gap: 1.5rem; }
}

.block-label {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #c4b5fd !important;
  letter-spacing: 0.08em;
}

.block-sublabel {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #14b8a6 !important;
  margin-top: 0.4rem;
}

.block-body {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(220,210,255,0.7) !important;
  line-height: 1.9;
}

.block-body p { margin-bottom: 1rem; }

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.app-pill {
  border: 1px solid rgba(164,132,255,0.18);
  padding: 0.8rem 1rem;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9d8ec9 !important;
  background: rgba(22,13,46,0.4) !important;
  transition: all 0.25s;
}

.app-pill:hover {
  color: #5eead4 !important;
  border-color: rgba(20,184,166,0.3);
  background: rgba(20,184,166,0.05) !important;
}

/* ── RETREATS PAGE ── */
.retreat-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.retreat-intro p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(220,210,255,0.7) !important;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.retreat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  margin-bottom: 5rem;
}

.retreat-card {
  background: rgba(14,9,30,0.7) !important;
  border: 1px solid rgba(164,132,255,0.18) !important;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.retreat-card:hover { background: rgba(28,16,55,0.7) !important; }

.retreat-location {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #14b8a6 !important;
  margin-bottom: 0.7rem;
}

.retreat-name {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #c4b5fd !important;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}

.retreat-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(200,185,255,0.6) !important;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.retreat-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(196,181,253,0.2);
  color: rgba(196,181,253,0.5) !important;
}

.retreat-cta {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  border: 1px solid rgba(164,132,255,0.18);
  background: rgba(22,13,46,0.4) !important;
  position: relative;
}

.retreat-cta h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: #c4b5fd !important;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.retreat-cta p {
  font-size: 0.95rem;
  font-weight: 300;
  color: #9d8ec9 !important;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(164,132,255,0.18);
}

.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  color: #9d8ec9 !important;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.footer-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(157,142,201,0.45) !important;
}

/* ── GLOW ORBS ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-15px) scale(1.05); }
  66% { transform: translate(-15px,10px) scale(0.97); }
}

/* ── CONTACT PAGE ── */
.contact-layout { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
@media(max-width:720px){ .contact-layout{ grid-template-columns:1fr; gap:3rem; } }
.email-link { font-family:'Cinzel',serif; font-size:1rem; letter-spacing:0.08em; color:#5eead4 !important; text-decoration:none; border-bottom:1px solid rgba(94,234,212,0.3); padding-bottom:2px; transition:color 0.25s,border-color 0.25s; }
.email-link:hover { color:#fff !important; border-color:#14b8a6; }
.contact-topics { margin-top:2.5rem; display:flex; flex-direction:column; gap:1.5rem; }
.topic-item { display:flex; gap:1rem; align-items:flex-start; }
.topic-icon { color:#14b8a6 !important; font-size:0.9rem; margin-top:0.15rem; flex-shrink:0; }
.topic-title { font-family:'Cinzel',serif; font-size:0.85rem; color:#c4b5fd !important; letter-spacing:0.04em; margin-bottom:0.25rem; }
.topic-desc { font-size:0.88rem; font-weight:300; color:rgba(200,185,255,0.55) !important; line-height:1.6; }
.contact-form-wrap { background:rgba(14,9,30,0.6) !important; border:1px solid rgba(164,132,255,0.18); padding:2.5rem; }
.form-group { margin-bottom:1.4rem; }
.form-label { display:block; font-family:'Jost',sans-serif; font-size:0.68rem; letter-spacing:0.2em; text-transform:uppercase; color:#9d8ec9 !important; margin-bottom:0.5rem; }
.form-input { width:100%; background:rgba(4,3,10,0.7) !important; border:1px solid rgba(164,132,255,0.2) !important; color:#f0ebff !important; font-family:'Cormorant Garamond',serif; font-size:1rem; font-weight:300; padding:0.75rem 1rem; outline:none; transition:border-color 0.25s; appearance:none; -webkit-appearance:none; box-sizing:border-box; }
.form-input:focus { border-color:rgba(168,85,247,0.5) !important; }
.form-input::placeholder { color:rgba(157,142,201,0.3); font-style:italic; }
.form-select { cursor:pointer; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(157,142,201,0.5)'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 1rem center; padding-right:2.5rem; }
.form-select option { background:#0b0818; color:#f0ebff; }
.form-textarea { resize:vertical; min-height:130px; line-height:1.7; }
.form-submit { width:100%; margin-top:0.5rem; padding:1rem; font-size:0.8rem; cursor:pointer; }
.form-note { font-family:'Jost',sans-serif; font-size:0.65rem; letter-spacing:0.1em; color:rgba(157,142,201,0.35) !important; text-align:center; margin-top:1rem; line-height:1.6; }
