/* =========================================================
   A&E Online Solutions — one-page landing
   Editorial / modern-luxe · dark warm-black + cream + gold
   ========================================================= */

:root {
  --bg: #0f0e0d;
  --bg-soft: #161412;
  --cream: #ece6d8;
  --cream-dim: rgba(236, 230, 216, 0.72);
  --cream-faint: rgba(236, 230, 216, 0.45);
  --line: rgba(236, 230, 216, 0.12);
  --gold: #d4a353;
  --gold-soft: #e3bd7f;

  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(80px, 10vw, 140px);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: transparent; border: none; padding: 0; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }

::selection { background: var(--gold); color: var(--bg); }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Ticker ---------- */
.ticker {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--cream-faint);
  padding: 10px 0;
}
.ticker__track {
  display: inline-flex;
  white-space: nowrap;
  gap: 22px;
  animation: slide 40s linear infinite;
  padding-left: 100%;
}
.ticker__track span { flex-shrink: 0; }
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(15, 14, 13, 0.72);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  gap: 24px;
}
.nav__brand {
  display: inline-flex; align-items: baseline; gap: 10px;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -.01em;
  font-variation-settings: "SOFT" 30, "WONK" 1;
}
.brand-mark em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "SOFT" 80, "WONK" 1;
  margin: 0 1px;
}
.brand-mark--small { font-size: 18px; }
.brand-word {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--cream-faint);
}

.nav__links {
  display: flex; gap: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--cream-dim);
}
.nav__links a { position: relative; padding: 4px 0; transition: color .25s var(--ease); }
.nav__links a:hover { color: var(--cream); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .brand-word { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  border-radius: 999px;
  transition: all .3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--cream);
  transform: translateY(-1px);
}
.btn--light { color: var(--bg); border-color: rgba(15, 14, 13, 0.22); }
.btn--light:hover { border-color: var(--bg); }

.nav__cta { padding: 10px 18px; }
@media (max-width: 520px) {
  .nav__cta { display: none; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal .9s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes reveal {
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
  .ticker__track { animation: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) var(--gutter) clamp(60px, 8vw, 100px);
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
}

.hero__meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--cream-dim);
  margin-bottom: 28px;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212, 163, 83, 0.6);
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 163, 83, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(212, 163, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 163, 83, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(44px, 8.4vw, 128px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0 0 36px;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  max-width: 15ch;
}
.hero__title .line { display: block; }
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}

.hero__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  max-width: 58ch;
  color: var(--cream-dim);
  margin: 0 0 40px;
}

.hero__ctas {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero__foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.hero__stat {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--cream-dim);
}
.hero__stat .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "SOFT" 80, "WONK" 1;
}

/* Decorative sun */
.hero__sun {
  position: absolute;
  top: 10%;
  right: -8%;
  width: clamp(260px, 42vw, 560px);
  height: auto;
  opacity: .55;
  pointer-events: none;
  animation: drift 30s var(--ease) infinite alternate;
  z-index: -1;
}
@keyframes drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(-20px, 20px); }
}
@media (max-width: 780px) {
  .hero__sun { opacity: .3; top: -4%; right: -30%; }
}

/* =========================================================
   SECTION COMMON
   ========================================================= */
section { position: relative; }

.section__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: clamp(40px, 5vw, 72px);
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow--light { color: rgba(15, 14, 13, 0.6); }
.section__title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(32px, 4.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 20ch;
  margin: 0 0 20px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.section__title em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}
.section__sub {
  font-size: 17px;
  color: var(--cream-dim);
  max-width: 52ch;
  margin: 0;
}

/* =========================================================
   SERVICES / PILLARS
   ========================================================= */
.services {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
}
.pillars {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: 40px 28px 40px 0;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .4s var(--ease);
}
.pillar:last-child { border-right: none; padding-right: 0; }
.pillar:hover { background: var(--bg-soft); }

.pillar__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .18em;
  margin-bottom: 24px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: -.01em;
  margin: 0 0 16px;
  padding-left: 28px;
  font-variation-settings: "SOFT" 30;
}
.pillar:last-child h3 { padding-left: 28px; }

.pillar__body {
  padding-left: 28px;
  padding-right: 20px;
  color: var(--cream-dim);
  margin: 0 0 28px;
}
.pillar__list {
  padding-left: 28px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  color: var(--cream-dim);
  border-top: 1px dashed var(--line);
  padding-top: 20px;
  margin-right: 20px;
}
.pillar__list li {
  position: relative;
  padding-left: 18px;
}
.pillar__list li::before {
  content: "+";
  position: absolute; left: 0; top: -1px;
  color: var(--gold);
  font-family: var(--font-mono);
}

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 0; }
  .pillar:last-child { border-bottom: none; }
  .pillar__body, .pillar__list, .pillar h3 { padding-left: 0; margin-right: 0; }
}

/* =========================================================
   AI SPOTLIGHT  (cream / inverted)
   ========================================================= */
.ai {
  background: var(--cream);
  color: var(--bg);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.ai::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(212, 163, 83, 0.22), transparent 55%),
    radial-gradient(ellipse at 10% 110%, rgba(15, 14, 13, 0.08), transparent 50%);
  pointer-events: none;
}
.ai__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.ai__title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(30px, 4.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -.025em;
  max-width: 22ch;
  margin: 0 0 28px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.ai__title em {
  font-style: italic;
  color: #8a5b1a;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}
.ai__body {
  font-size: 17px;
  max-width: 60ch;
  color: rgba(15, 14, 13, 0.72);
  margin: 0 0 56px;
}

.ai__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(15, 14, 13, 0.12);
  border: 1px solid rgba(15, 14, 13, 0.12);
}
.ai__grid article {
  background: var(--cream);
  padding: 36px 32px;
}
.ai__grid h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -.01em;
  margin: 0 0 10px;
  font-variation-settings: "SOFT" 30;
}
.ai__grid p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(15, 14, 13, 0.72);
  margin: 0;
}
@media (max-width: 720px) {
  .ai__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CAPABILITIES GRID
   ========================================================= */
.caps {
  padding: var(--section-y) 0;
}
.caps__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.caps__col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.caps__col ul {
  display: flex; flex-direction: column; gap: 14px;
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -.005em;
  color: var(--cream);
  font-variation-settings: "SOFT" 30;
}
.caps__col li {
  transition: color .25s var(--ease), transform .25s var(--ease);
  cursor: default;
}
.caps__col li:hover {
  color: var(--gold-soft);
  transform: translateX(4px);
}
@media (max-width: 820px) {
  .caps__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   WHY US
   ========================================================= */
.why {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
}
.why__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why__card {
  background: var(--bg);
  padding: 40px 32px;
  position: relative;
  transition: background .3s var(--ease);
}
.why__card:hover { background: var(--bg-soft); }

.why__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.why__card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -.01em;
  margin: 0 0 12px;
  font-variation-settings: "SOFT" 30;
}
.why__card p {
  font-size: 15px;
  color: var(--cream-dim);
  margin: 0;
  max-width: 38ch;
}
@media (max-width: 720px) {
  .why__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--cream);
  color: var(--bg);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(212, 163, 83, 0.28), transparent 60%);
  pointer-events: none;
}
.contact__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: left;
}
.contact__title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 28px;
  max-width: 22ch;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.contact__title em {
  font-style: italic;
  color: #8a5b1a;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}
.contact__sub {
  font-size: 17px;
  color: rgba(15, 14, 13, 0.72);
  max-width: 52ch;
  margin: 0 0 44px;
}
.contact__ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.contact__ctas .btn--primary { background: var(--bg); color: var(--cream); border-color: var(--bg); }
.contact__ctas .btn--primary:hover { background: #222; border-color: #222; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 40px var(--gutter);
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--cream-faint);
}
.footer__row {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__row--fine {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.footer__brand {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--cream-dim);
  text-transform: none;
  letter-spacing: normal;
  font-family: var(--font-body);
  font-size: 13px;
}
.footer__nav {
  display: flex; gap: 22px;
}
.footer__nav a { transition: color .25s var(--ease); }
.footer__nav a:hover { color: var(--gold); }

/* =========================================================
   CONTACT — supporting email line
   ========================================================= */
.contact__email {
  margin: 24px 0 0;
  font-size: 14px;
  color: rgba(15, 14, 13, 0.62);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.contact__email a {
  color: var(--bg);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .2s var(--ease);
}
.contact__email a:hover { color: #8a5b1a; }

/* =========================================================
   MODAL
   ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 13, 0.76);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .3s var(--ease);
  cursor: pointer;
}
.modal.is-open .modal__backdrop { opacity: 1; }

.modal__panel {
  position: relative;
  background: var(--cream);
  color: var(--bg);
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 4px;
  padding: 52px 44px 44px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.modal.is-open .modal__panel { opacity: 1; transform: none; }

@media (max-width: 520px) {
  .modal { padding: 12px; }
  .modal__panel { padding: 44px 24px 28px; }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(15, 14, 13, 0.14);
  color: var(--bg);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.modal__close:hover {
  background: var(--bg);
  color: var(--cream);
  border-color: var(--bg);
}
.modal__close svg { width: 12px; height: 12px; }

.modal__inner .eyebrow--light { color: rgba(15, 14, 13, 0.5); }
.modal__title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 4px 0 12px;
  max-width: 18ch;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.modal__title em {
  font-style: italic;
  color: #8a5b1a;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}
.modal__sub {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(15, 14, 13, 0.68);
  margin: 0 0 28px;
  max-width: 44ch;
}

/* Form */
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(15, 14, 13, 0.55);
}
.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--bg);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(15, 14, 13, 0.22);
  padding: 8px 0 10px;
  outline: none;
  transition: border-color .2s var(--ease);
  resize: vertical;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(15, 14, 13, 0.3);
}
.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--bg);
}
.field textarea {
  min-height: 96px;
  font-family: var(--font-body);
}

.modal__submit {
  align-self: flex-start;
  margin-top: 14px;
  background: var(--bg);
  color: var(--cream);
  border-color: var(--bg);
  position: relative;
  min-width: 170px;
  justify-content: center;
}
.modal__submit:hover {
  background: #1e1c1a;
  border-color: #1e1c1a;
}
.modal__submit:disabled { cursor: wait; opacity: 0.9; }
.modal__submit.is-loading .btn__label { opacity: 0; }
.modal__submit .btn__spinner {
  position: absolute;
  width: 14px; height: 14px;
  border: 2px solid rgba(236, 230, 216, 0.28);
  border-top-color: var(--cream);
  border-radius: 50%;
  opacity: 0;
  animation: spin .9s linear infinite;
}
.modal__submit.is-loading .btn__spinner { opacity: 1; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Honeypot — visually hidden, accessible-hidden, tab-skipped */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Error state */
.form__error {
  font-size: 13px;
  line-height: 1.5;
  color: #9a2a2a;
  margin: 4px 0 0;
  padding: 12px 14px;
  background: rgba(154, 42, 42, 0.08);
  border-left: 2px solid #9a2a2a;
}
.form__error a {
  color: inherit;
  text-decoration: underline;
}

/* Success state */
.modal__success {
  padding: 12px 0 8px;
}
.success__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 20px;
}
.modal__success h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -.01em;
  margin: 0 0 8px;
  font-variation-settings: "SOFT" 30;
}
.modal__success p {
  font-size: 15px;
  color: rgba(15, 14, 13, 0.72);
  margin: 0;
  max-width: 42ch;
}
