/* =====================================================
   lplz — design system
   ===================================================== */

:root {
  /* color */
  --ink: #0A0F1E;
  --ink-2: #0F172A;
  --ink-3: #1A2236;
  --bone: #F5F1EA;
  --bone-2: #EAE3D6;
  --ember: #E8A547;
  --ember-soft: #F5C77E;
  --line: rgba(245, 241, 234, 0.10);
  --line-strong: rgba(245, 241, 234, 0.22);
  --muted: rgba(245, 241, 234, 0.62);
  --muted-2: rgba(245, 241, 234, 0.48);

  /* type */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* layout */
  --container: 1200px;
  --container-tight: 960px;
  --gutter: clamp(1.25rem, 3vw, 2rem);
  --section-y: clamp(5rem, 12vw, 9rem);

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =====================================================
   reset / base
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

::selection { background: var(--ember); color: var(--ink); }

/* =====================================================
   utilities
   ===================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ember);
  color: var(--ink);
  padding: .75rem 1rem;
  font-weight: 600;
  z-index: 999;
}
.skip:focus { left: 1rem; top: 1rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 1.5rem;
}

.dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember);
  margin-right: .5rem;
  vertical-align: middle;
}

/* =====================================================
   nav
   ===================================================== */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-block: 1.1rem;
  transition: background-color .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 15, 30, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .25rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.brand__mark { font-style: normal; }
.brand__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember);
  display: inline-block;
  transform: translateY(-1px);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  font-size: .92rem;
  color: var(--muted);
}
.nav__links a {
  position: relative;
  padding: .35rem 0;
  transition: color .25s var(--ease);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--ember);
  transition: right .35s var(--ease-out);
}
.nav__links a:not(.nav__cta):hover::after { right: 0; }

.nav__cta {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: .5rem 1rem !important;
  color: var(--bone);
}
.nav__cta:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}

@media (max-width: 640px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* =====================================================
   hero
   ===================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 8rem 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: -10%;
  z-index: -1;
  pointer-events: none;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 30% 30%, rgba(232, 165, 71, 0.10) 0%, transparent 60%),
    radial-gradient(45% 40% at 80% 70%, rgba(94, 130, 255, 0.06) 0%, transparent 65%),
    linear-gradient(180deg, var(--ink) 0%, #060914 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.hero__orb--1 {
  width: 540px; height: 540px;
  left: -10%; top: 5%;
  background: radial-gradient(circle, rgba(232,165,71,0.45), transparent 70%);
}
.hero__orb--2 {
  width: 420px; height: 420px;
  right: -8%; bottom: 5%;
  background: radial-gradient(circle, rgba(157, 250, 117, 0.18), transparent 70%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(245,241,234,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245,241,234,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  will-change: transform;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero__wordmark {
  position: absolute;
  left: 50%;
  bottom: -8%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18rem, 38vw, 36rem);
  line-height: 1;
  color: rgba(245, 241, 234, 0.025);
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  will-change: transform;
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 1.75rem;
  max-width: 16ch;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title em {
  font-style: italic;
  color: var(--ember);
  font-weight: 400;
}

.hero__sub {
  max-width: 38rem;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  margin: 0 0 2.5rem;
  line-height: 1.55;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.5rem;
}

.hero__meta {
  font-size: 0.82rem;
  color: var(--muted-2);
  letter-spacing: 0.01em;
  margin: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  pointer-events: none;
}
.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(var(--ember), transparent);
  animation: scroll-pulse 2s var(--ease) infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.6; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

/* =====================================================
   buttons
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ember);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 12px 28px -12px rgba(232,165,71,0.5);
}
.btn--primary:hover {
  background: var(--ember-soft);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 18px 36px -14px rgba(232,165,71,0.65);
}
.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--bone);
  background: rgba(245, 241, 234, 0.06);
}
.btn--lg {
  padding: 1.05rem 1.7rem;
  font-size: 1rem;
}

/* =====================================================
   section base
   ===================================================== */

.section {
  position: relative;
  padding-block: var(--section-y);
  isolation: isolate;
}
.section__head {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}
.section__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
}
.section__title em {
  font-style: italic;
  color: var(--ember);
  font-weight: 400;
}
.section__lede {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: var(--muted);
  margin: 0 auto;
  max-width: 36rem;
}

/* =====================================================
   pillars
   ===================================================== */

.pillars {
  background: linear-gradient(180deg, var(--ink) 0%, #060914 100%);
}
.section__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(232,165,71,0.08), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(94,130,255,0.05), transparent 50%);
  pointer-events: none;
  will-change: transform;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
}

.pillar {
  position: relative;
  padding: clamp(2rem, 3vw, 2.75rem);
  background: linear-gradient(180deg, rgba(245, 241, 234, 0.03), rgba(245, 241, 234, 0.01));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .4s var(--ease), transform .5s var(--ease);
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(232,165,71,0.10), transparent 50%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.pillar:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.pillar:hover::before { opacity: 1; }

.pillar__num {
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--ember);
  margin-bottom: 1.5rem;
}
.pillar__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.pillar__desc {
  color: var(--muted);
  margin: 0 0 1.75rem;
  font-size: 1.02rem;
  line-height: 1.65;
}
.pillar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}
.pillar__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .95rem;
  color: var(--bone);
  line-height: 1.5;
}
.pillar__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 14px; height: 1px;
  background: var(--ember);
}

@media (max-width: 760px) {
  .pillars__grid { grid-template-columns: 1fr; }
}

/* =====================================================
   approach (phases)
   ===================================================== */

.approach {
  background: linear-gradient(180deg, #060914 0%, var(--ink) 100%);
}
.approach__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(40% 30% at 50% 0%, rgba(232,165,71,0.08), transparent 65%);
  pointer-events: none;
  will-change: transform;
}

.phases {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--container-tight);
  display: flex;
  flex-direction: column;
}

.phase {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-block: clamp(2.25rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.phase:last-child { border-bottom: 1px solid var(--line); }

.phase__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--ember);
  line-height: 1;
  position: relative;
}
.phase__num span {
  position: sticky;
  top: 6rem;
  display: inline-block;
}

.phase__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
}
.phase__when {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 1rem;
}
.phase__desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38rem;
  margin: 0;
}

@media (max-width: 640px) {
  .phase { grid-template-columns: 1fr; }
  .phase__num span { position: static; }
}

/* =====================================================
   serve (criteria)
   ===================================================== */

.serve { background: var(--ink); }

.criteria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.5vw, 1.5rem);
  margin-top: 1rem;
}

.criterion {
  padding: clamp(1.5rem, 2vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(245, 241, 234, 0.015);
  transition: border-color .4s var(--ease), background-color .4s var(--ease);
}
.criterion:hover {
  border-color: var(--line-strong);
  background: rgba(245, 241, 234, 0.03);
}
.criterion__label {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 1rem;
  font-weight: 500;
}
.criterion__value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 0.6rem;
  color: var(--bone);
}
.criterion__sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted-2);
}

@media (max-width: 960px) { .criteria { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .criteria { grid-template-columns: 1fr; } }

/* =====================================================
   contact
   ===================================================== */

.contact {
  background: linear-gradient(180deg, var(--ink) 0%, #060914 100%);
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.contact__orb {
  position: absolute;
  width: 720px; height: 720px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,165,71,0.18), transparent 60%);
  filter: blur(70px);
  will-change: transform;
}
.contact .container { text-align: center; max-width: 56rem; }
.contact__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
}
.contact__title em {
  font-style: italic;
  color: var(--ember);
  font-weight: 400;
}
.contact__lede {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  margin: 0 auto 2.5rem;
  max-width: 38rem;
}
.contact__actions {
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.contact__small {
  font-size: 0.88rem;
  color: var(--muted-2);
  margin: 0;
}
.contact__small a {
  color: var(--bone);
  border-bottom: 1px solid var(--line-strong);
  transition: border-color .25s var(--ease);
}
.contact__small a:hover { border-color: var(--ember); }

/* =====================================================
   footer
   ===================================================== */

.footer {
  background: #060914;
  border-top: 1px solid var(--line);
  padding-block: 3rem;
  font-size: 0.88rem;
  color: var(--muted-2);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--bone);
  display: inline-flex;
  align-items: baseline;
  gap: .25rem;
}
.footer__line { margin: 0; }
.footer__copy { color: var(--muted-2); }

/* =====================================================
   reveal animation
   ===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   modal + form
   ===================================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.modal.is-open { display: flex; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 16, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  animation: modal-fade .35s var(--ease) forwards;
}

.modal__card {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  background: linear-gradient(180deg, #11182B 0%, #0B1122 100%);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: 0 32px 80px -20px rgba(0, 0, 0, 0.6);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transform: translateY(8px) scale(0.98);
  opacity: 0;
  animation: modal-rise .45s var(--ease-out) forwards;
}
@keyframes modal-fade { to { opacity: 1; } }
@keyframes modal-rise { to { opacity: 1; transform: translateY(0) scale(1); } }

.modal__close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}
.modal__close:hover {
  color: var(--bone);
  border-color: var(--line-strong);
  background: rgba(245, 241, 234, 0.04);
}

.modal__head { margin-bottom: 1.5rem; }
.modal__head .eyebrow { margin-bottom: .9rem; }
.modal__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 .6rem;
}
.modal__lede { color: var(--muted); margin: 0; font-size: 0.95rem; }

.modal__form { display: grid; gap: 1rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

.field { display: grid; gap: .4rem; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.field label span { color: var(--ember); margin-left: .15rem; }
.field input[type="text"],
.field input[type="email"],
.field select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(245, 241, 234, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 0.98rem;
  padding: .8rem .95rem;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
  width: 100%;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E8A547' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.4rem;
}
.field select option { background: #0F172A; color: var(--bone); }
.field input::placeholder { color: var(--muted-2); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--ember);
  background: rgba(245, 241, 234, 0.06);
}

.filedrop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 110px;
  padding: 1rem 1.1rem;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  background: rgba(245, 241, 234, 0.02);
  cursor: pointer;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.filedrop:hover,
.filedrop.is-drag {
  border-color: var(--ember);
  background: rgba(232, 165, 71, 0.06);
}
.filedrop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.filedrop__text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
.filedrop__text strong {
  color: var(--bone);
  font-weight: 500;
  display: block;
  margin-bottom: .25rem;
}
.filedrop__hint { display: block; font-size: 0.82rem; color: var(--muted-2); margin-top: .25rem; }
.filedrop__chosen {
  display: none;
  margin-top: .75rem;
  font-size: 0.9rem;
  color: var(--ember);
  font-weight: 500;
  word-break: break-all;
}
.filedrop.has-file .filedrop__chosen { display: block; }

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.modal__error {
  border: 1px solid rgba(255, 120, 120, 0.4);
  background: rgba(255, 80, 80, 0.08);
  color: #FFB4B4;
  padding: .7rem .9rem;
  border-radius: 10px;
  font-size: 0.92rem;
}

.modal__actions {
  display: flex;
  gap: .65rem;
  justify-content: flex-end;
  margin-top: .25rem;
}

.btn__spinner {
  display: none;
  width: 14px; height: 14px;
  border: 2px solid rgba(10, 15, 30, 0.25);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn.is-loading .btn__label { opacity: 0.5; }
.btn.is-loading .btn__spinner { display: inline-block; }
.btn[disabled] { pointer-events: none; opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

.modal__success {
  text-align: center;
  padding: 1rem 0;
}
.modal__success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.25rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(232, 165, 71, 0.12);
  color: var(--ember);
}
.modal__success h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  margin: 0 0 .5rem;
}
.modal__success p {
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}

body.is-locked { overflow: hidden; }

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