/* ---------------------------------------------------------------------------
   Bourbon Project - site stylesheet
   Palette, type and radii are lifted directly from the app (global.css +
   app.json) so the site and the product read as one brand.

   Shape rule, applied everywhere:
     surfaces / panels / frames .... 16px
     buttons / inputs / selects .... 10px
     tags and small labels ......... pill
   Accent rule: one accent, bourbon gold (#D4AF37). Nothing else competes.
   Theme: dark only. The app has no light mode; the site matches it.
--------------------------------------------------------------------------- */

:root {
  /* Ground */
  --ink-950: #050f0a;
  --ink-900: #0a1912;
  --ink-800: #142d23;
  --ink-700: #1e3527;
  --line: rgba(212, 175, 55, 0.16);
  --line-soft: rgba(160, 200, 190, 0.12);

  /* Accent */
  --gold: #d4af37;
  --gold-soft: #e9c46a;
  --amber: #c77d33;

  /* Type */
  --text: #f5f5f0;
  --muted: #a0c8be;
  --dim: #6e9187;
  --faint: #4a6e60;

  --display: Georgia, "Times New Roman", serif;
  --body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --r-surface: 16px;
  --r-control: 10px;

  --shell: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--ink-900);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration-color: rgba(212, 175, 55, 0.35);
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--gold-soft);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Layout primitives ---------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

.band {
  padding: 96px 0;
  border-top: 1px solid var(--line-soft);
}

.band--tight {
  padding: 64px 0;
}

.band--deep {
  background: linear-gradient(180deg, var(--ink-950), var(--ink-900));
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--ink-950);
  padding: 12px 18px;
  border-radius: var(--r-control);
  font-weight: 700;
  z-index: 100;
}

.skip:focus {
  left: 16px;
  top: 16px;
}

/* --- Type ---------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.3;
}

p {
  margin: 0;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 60ch;
}

.body-dim {
  color: var(--dim);
  max-width: 65ch;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--body);
}

.stack {
  display: grid;
  gap: 18px;
}

.stack--wide {
  gap: 28px;
}

/* --- Buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  padding: 13px 22px;
  border-radius: var(--r-control);
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn--gold {
  background: var(--gold);
  color: #0a1912;
}

.btn--gold:hover {
  background: var(--gold-soft);
  color: #0a1912;
}

.btn--ghost {
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-soft);
}

.btn--sm {
  padding: 10px 16px;
  font-size: 0.86rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Header -------------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(10, 25, 18, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.masthead[data-stuck="true"] {
  border-bottom-color: var(--line);
  background: rgba(5, 15, 10, 0.9);
}

@media (prefers-reduced-transparency: reduce) {
  .masthead {
    background: var(--ink-950);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.masthead .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.wordmark img {
  width: 32px;
  height: 32px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--text);
}

/* Small screens keep the nav on one line by shrinking it and letting it scroll,
   rather than dropping the links entirely or wrapping to a second row. */
@media (max-width: 860px) {
  .masthead .shell {
    gap: 14px;
    padding: 0 16px;
  }

  .nav {
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    font-size: 0.84rem;
  }
}

@media (max-width: 560px) {
  .wordmark {
    font-size: 0;
    gap: 0;
  }

  .wordmark img {
    width: 30px;
    height: 30px;
  }

  .nav {
    gap: 15px;
  }
}

/* --- Hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background:
    radial-gradient(90% 70% at 78% 18%, rgba(212, 175, 55, 0.11), transparent 62%),
    linear-gradient(140deg, var(--ink-700), var(--ink-900) 58%, var(--ink-950));
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

/* Two lines at desktop. The ch cap controls where the break lands so the
   headline never runs to three. */
.hero h1 {
  max-width: 18ch;
}

.hero h1 .accent {
  color: var(--gold-soft);
}

.hero .lede {
  max-width: 44ch;
}

.hero__art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(60% 60% at 50% 42%, rgba(212, 175, 55, 0.14), transparent 70%),
    linear-gradient(150deg, rgba(30, 53, 39, 0.9), rgba(5, 15, 10, 0.95));
  box-shadow: inset 0 1px 0 rgba(233, 196, 106, 0.14), 0 30px 80px rgba(0, 0, 0, 0.45);
}

.hero__art img {
  width: 76%;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.5));
}

@media (max-width: 900px) {
  .hero {
    padding: 56px 0 72px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__art {
    max-width: 340px;
    margin-inline: auto;
  }
}

/* --- Catalog figures ------------------------------------------------------ */

.figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.figure {
  padding: 8px 26px;
  border-left: 1px solid var(--line-soft);
}

.figure:first-child {
  border-left: 0;
  padding-left: 0;
}

.figure dt {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  color: var(--gold);
  line-height: 1;
}

.figure dd {
  margin: 10px 0 0;
  color: var(--dim);
  font-size: 0.88rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .figures {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }

  .figure:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
}

/* --- Bento --------------------------------------------------------------- */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.tile {
  grid-column: span 2;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-surface);
  padding: 28px;
  background: rgba(20, 45, 35, 0.5);
  display: grid;
  gap: 12px;
  align-content: start;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.tile:hover {
  border-color: rgba(212, 175, 55, 0.34);
  transform: translateY(-2px);
}

.tile--wide {
  grid-column: span 4;
}

.tile--lit {
  background:
    radial-gradient(120% 130% at 8% 0%, rgba(212, 175, 55, 0.16), transparent 58%),
    linear-gradient(135deg, rgba(30, 53, 39, 0.95), rgba(10, 25, 18, 0.9));
  border-color: rgba(212, 175, 55, 0.28);
}

.tile--amber {
  background:
    radial-gradient(100% 120% at 100% 0%, rgba(199, 125, 51, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(20, 45, 35, 0.9), rgba(5, 15, 10, 0.92));
}

.tile--sage {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(160, 200, 190, 0.05) 0 2px,
      transparent 2px 11px
    ),
    linear-gradient(135deg, rgba(30, 53, 39, 0.85), rgba(10, 25, 18, 0.9));
}

.tile i {
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
}

.tile p {
  color: var(--dim);
  font-size: 0.94rem;
}

.tile--wide p {
  max-width: 52ch;
}

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

  .tile,
  .tile--wide {
    grid-column: span 1;
  }
}

/* --- Split feature -------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.ticks {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ticks li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 0.95rem;
}

.ticks i {
  color: var(--gold);
  font-size: 17px;
  margin-top: 3px;
}

.ticks strong {
  color: var(--text);
  font-weight: 700;
}

/* --- Screens strip -------------------------------------------------------- */

.screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.shot {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-surface);
  overflow: hidden;
  aspect-ratio: 9 / 17;
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(212, 175, 55, 0.1), transparent 65%),
    linear-gradient(160deg, rgba(30, 53, 39, 0.8), rgba(5, 15, 10, 0.95));
  position: relative;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot--empty::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--faint);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.shot-caption {
  margin-top: 12px;
  color: var(--dim);
  font-size: 0.86rem;
}

@media (max-width: 760px) {
  .screens {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }
}

/* --- Assurance row -------------------------------------------------------- */

.assurances {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.assurance {
  display: grid;
  gap: 8px;
}

.assurance i {
  font-size: 22px;
  color: var(--gold);
}

.assurance h3 {
  font-size: 1rem;
}

.assurance p {
  color: var(--dim);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .assurances {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}

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

/* --- The hunt: alert card ------------------------------------------------- */
/* A push notification rendered in CSS rather than shipped as a screenshot.
   Every other visual on this page degrades to an empty labelled panel because
   the screenshot assets do not exist yet; this one is finished the day it ships,
   and it stays legible at any width because it is text rather than an image. */

.alert-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.07), rgba(212, 175, 55, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--r-surface);
}

.alert-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: rgba(5, 15, 10, 0.66);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-control);
}

.alert-note__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold);
  font-size: 17px;
}

.alert-note__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.alert-note__body {
  margin: 3px 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
}

.alert-note__meta {
  margin: 8px 0 0;
  font-size: 0.75rem;
  color: var(--faint);
  letter-spacing: 0.02em;
}

/* The status strip under the notification: what the app shows when you open it. */
.alert-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-size: 0.8rem;
  color: var(--dim);
}

.alert-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7fdcb4;
  background: rgba(25, 158, 112, 0.14);
  border: 1px solid rgba(25, 158, 112, 0.32);
}

.alert-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Numbered because these are sequential, unlike .assurances which are parallel. */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step {
  display: grid;
  gap: 8px;
  align-content: start;
  counter-increment: step;
}

.step h3 {
  margin: 0;
  font-size: 1rem;
}

.step h3::before {
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  vertical-align: 2px;
}

.step p {
  margin: 0;
  color: var(--dim);
  font-size: 0.88rem;
}

@media (max-width: 820px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* --- Plans table ---------------------------------------------------------- */

.plans {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-surface);
  overflow: hidden;
  font-size: 0.92rem;
}

.plans caption {
  caption-side: bottom;
  color: var(--faint);
  font-size: 0.8rem;
  padding-top: 14px;
  text-align: left;
}

.plans th,
.plans td {
  padding: 14px 16px;
  text-align: center;
}

.plans thead th {
  background: rgba(20, 45, 35, 0.75);
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plans thead th:first-child {
  text-align: left;
  color: var(--faint);
}

.plans tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--muted);
  font-family: var(--body);
}

.plans tbody tr + tr th,
.plans tbody tr + tr td {
  border-top: 1px solid rgba(160, 200, 190, 0.08);
}

.plans td {
  color: var(--text);
}

.plans .free {
  color: var(--dim);
}

.plans .none {
  color: var(--faint);
}

.plan-note {
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.07);
  border-radius: var(--r-surface);
  padding: 22px 24px;
  display: grid;
  gap: 8px;
  max-width: 60ch;
}

.table-scroll {
  overflow-x: auto;
}

/* --- FAQ ------------------------------------------------------------------ */

.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}

.faq details {
  border-bottom: 1px solid var(--line-soft);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 40px 22px 0;
  font-family: var(--display);
  font-size: 1.08rem;
  color: var(--text);
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 20px;
  color: var(--gold);
  font-family: var(--body);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.25s var(--ease);
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  color: var(--dim);
  padding: 0 40px 24px 0;
  max-width: 72ch;
}

/* --- Closing call --------------------------------------------------------- */

.closing {
  text-align: center;
  display: grid;
  gap: 22px;
  justify-items: center;
  padding: 108px 0;
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(212, 175, 55, 0.12), transparent 66%),
    var(--ink-950);
}

.closing .lede {
  max-width: 46ch;
}

/* --- Footer --------------------------------------------------------------- */

.foot {
  border-top: 1px solid var(--line-soft);
  background: var(--ink-950);
  padding: 56px 0 40px;
}

.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.foot h4 {
  font-family: var(--body);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 14px;
}

.foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.foot a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.foot a:hover {
  color: var(--gold);
}

.foot__note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(160, 200, 190, 0.08);
  color: var(--faint);
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
}

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

/* --- Document pages (terms, privacy, guidelines) -------------------------- */

.doc-head {
  padding: 72px 0 40px;
  background: linear-gradient(160deg, var(--ink-700), var(--ink-900) 70%);
  border-bottom: 1px solid var(--line-soft);
}

.doc-head p {
  color: var(--dim);
  margin-top: 14px;
  font-size: 0.92rem;
}

.doc {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 56px;
  padding: 56px 0 96px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 9px;
  border-left: 1px solid var(--line-soft);
  padding-left: 20px;
}

.toc a {
  color: var(--dim);
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.35;
}

.toc a:hover {
  color: var(--gold);
}

.prose {
  max-width: 72ch;
}

.prose h2 {
  font-size: 1.45rem;
  margin: 44px 0 14px;
  scroll-margin-top: 96px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.05rem;
  margin: 26px 0 8px;
  color: var(--gold-soft);
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.72;
}

.prose p + p {
  margin-top: 14px;
}

.prose ul,
.prose ol {
  margin: 14px 0;
  padding-left: 22px;
  display: grid;
  gap: 9px;
}

.prose strong {
  color: var(--text);
}

.callout {
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.07);
  border-radius: var(--r-surface);
  padding: 20px 22px;
  margin: 26px 0;
}

.callout p {
  color: var(--text);
  font-size: 0.94rem;
}

@media (max-width: 900px) {
  .doc {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 72px;
  }

  .toc {
    position: static;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding: 20px 0 0;
  }
}

/* --- Support page --------------------------------------------------------- */

.support-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.form {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-surface);
  background: rgba(20, 45, 35, 0.5);
  padding: 28px;
  display: grid;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.field .help {
  font-size: 0.78rem;
  color: var(--dim);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--text);
  background: #071510;
  border: 1px solid rgba(160, 200, 190, 0.22);
  border-radius: var(--r-control);
  padding: 12px 14px;
  transition: border-color 0.2s var(--ease);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7e9a92;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(212, 175, 55, 0.35);
  outline-offset: 1px;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 19px) 21px, calc(100% - 13px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-note {
  color: var(--dim);
  font-size: 0.82rem;
}

.form-error {
  color: #f5a3a3;
  font-size: 0.82rem;
}

.form-error[hidden] {
  display: none;
}

.contact-card {
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--r-surface);
  background: radial-gradient(120% 130% at 0% 0%, rgba(212, 175, 55, 0.13), transparent 60%),
    rgba(10, 25, 18, 0.7);
  padding: 26px;
  display: grid;
  gap: 12px;
}

.contact-card .mail {
  font-family: var(--display);
  font-size: 1.25rem;
  word-break: break-word;
}

.help-list {
  display: grid;
  gap: 0;
  margin-top: 8px;
}

.help-list a {
  display: grid;
  grid-template-columns: 26px 1fr 18px;
  gap: 14px;
  align-items: center;
  padding: 16px 2px;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left 0.2s var(--ease);
}

.help-list a:hover {
  padding-left: 8px;
}

.help-list i:first-child {
  color: var(--gold);
  font-size: 20px;
}

.help-list i:last-child {
  color: var(--faint);
  font-size: 15px;
}

.help-list span {
  display: grid;
  gap: 2px;
}

.help-list small {
  color: var(--dim);
  font-size: 0.82rem;
}

/* --- Scroll reveal -------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }

  [data-reveal].is-in {
    opacity: 1;
    transform: none;
  }
}
