/* Styles for the plain-HTML pages (privacy, terms, refund, contact). Colours,
   fonts and buttons come from the Nocturne design system stylesheet. */
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px 24px;
  padding: 14px 5vw;
  background: color-mix(in srgb, var(--color-bg) 85%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
}
.site-header .brand { font-family: var(--font-heading); font-size: 20px; color: var(--color-text); text-decoration: none; }
.site-header nav { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px; }
.site-header nav a { color: var(--color-text); text-decoration: none; font-size: 15px; }
.site-header nav a:hover { color: var(--color-accent); }
.page { flex: 1; padding: clamp(2.5rem, 8vh, 5rem) 6vw 4rem; }
.prose { max-width: 760px; }
.prose h1 { font-family: var(--font-heading); font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.02em; margin: 0 0 8px; }
.prose .updated { color: color-mix(in srgb, var(--color-text) 55%, transparent); font-size: 14px; margin: 0 0 32px; }
.prose h2 { font-family: var(--font-heading); font-size: 22px; margin: 36px 0 10px; }
.prose p, .prose li { font-size: 16px; line-height: 1.7; color: color-mix(in srgb, var(--color-text) 78%, transparent); }
.prose ul { padding-left: 22px; }
.prose a { color: var(--color-accent-300); }
.site-footer {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px;
  padding: 2rem 5vw; font-size: 13px;
  border-top: 1px solid var(--color-divider);
  background: var(--color-surface);
}
.site-footer a { color: inherit; text-decoration: none; opacity: .85; margin-right: 16px; }
.site-footer a:hover { opacity: 1; color: var(--color-accent); }
.site-footer button.linklike { background: none; border: 0; padding: 0; color: inherit; font: inherit; opacity: .85; cursor: pointer; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; max-width: 1100px; }
.contact-grid form.card { padding: 28px; display: grid; gap: 14px; background: var(--color-surface); border: 1px solid var(--color-divider); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { color: var(--color-accent-300); font-size: 13px; }
.wa-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #12321f; font-weight: 600; padding: 14px 24px; border-radius: var(--radius-md); text-decoration: none; font-size: 15px; }
