/* ─────────────────────────────────────────────────────────────────────────
   Adviceworx Wedding — Landing page
   Design tokens lifted from the Figma source.
   ───────────────────────────────────────────────────────────────────────── */

:root {
  --bg: #F6F5EF;
  --fg: #101010;
  --fg-70: rgba(16, 16, 16, 0.7);
  --fg-50: rgba(16, 16, 16, 0.5);
  --fg-12: rgba(16, 16, 16, 0.12);
  --fg-08: rgba(16, 16, 16, 0.08);
  --hero-tint: rgba(26, 26, 26, 0.55);
  --hero-overlay: linear-gradient(180deg, rgba(16,16,16,0.55) 0%, rgba(16,16,16,0.45) 45%, rgba(16,16,16,0.78) 100%);

  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ── Type primitives ───────────────────────────────────────────────── */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--fg-70);
  font-weight: 400;
}
.eyebrow-light { color: rgba(255,255,255,0.7); }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.0;
  margin: 0;
  color: var(--fg);
}

h1.display { font-size: clamp(44px, 6.4vw, 70px); font-weight: 500; }
h2.display { font-size: clamp(38px, 5vw, 64px); }
h3.display { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.2; }

.lead {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  color: var(--fg);
}

/* ── Layout ─────────────────────────────────────────────────────────── */

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section-pad   { padding-top: clamp(96px, 12vw, 160px); padding-bottom: clamp(96px, 12vw, 160px); }
.section-pad-sm{ padding-top: clamp(48px, 7vw, 80px);   padding-bottom: clamp(48px, 7vw, 80px); }

/* ── Glass navbar (Figma: 718×70, radius 35, white@10%) ────────────── */

.nav-wrap {
  position: fixed;
  top: clamp(16px, 2.4vw, 40px);
  left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 16px;
}
.nav {
  pointer-events: auto;
  width: min(960px, calc(100% - 32px));
  height: 70px;
  border-radius: 35px;
  background: rgba(255, 255, 255, 0.10);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset,
              0 14px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 15px 12px 23px;
  transition: background .35s ease, border-color .35s ease, color .35s ease;
}

/* When user scrolls past the hero, the nav floats over the cream bg.
   Swap glass tint so it stays legible on light. */
.nav-wrap[data-on-light="true"] .nav {
  background: rgba(16, 16, 16, 0.06);
  border-color: rgba(16, 16, 16, 0.08);
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset,
              0 12px 36px rgba(0, 0, 0, 0.06);
}
.nav-wrap[data-on-light="true"] .logo-text,
.nav-wrap[data-on-light="true"] .logo-sub,
.nav-wrap[data-on-light="true"] .nav-links a { color: var(--fg); }
.nav-wrap[data-on-light="true"] .logo-mark { background: var(--fg); }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  display: inline-block;
  width: 17px;
  height: 44px;
  background: #fff;
  border-radius: 3px;
  transform: skewX(-15deg);
  flex-shrink: 0;
  transition: background .35s ease;
}
.logo-stack { display: flex; flex-direction: column; line-height: 1; }
.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  line-height: 1;
  transition: color .35s ease;
}
.logo-sub {
  font-family: var(--font-display);
  font-size: 10px;
  color: #fff;
  margin-top: 4px;
  letter-spacing: 0.02em;
  transition: color .35s ease;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  transition: opacity .2s ease, color .35s ease;
  opacity: 0.92;
}
.nav-links a:hover { opacity: 1; }
@media (min-width: 880px) { .nav-links { display: flex; } }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 9999px;
  background: #fff;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border: 0;
  text-decoration: none;
  transition: transform .18s ease, background .2s ease;
}
.nav-cta:hover { transform: translateY(-1px); background: #f3f1e8; }
.nav-cta .arr { display: inline-block; transition: transform .2s ease; }
.nav-cta:hover .arr { transform: translateX(3px); }

/* ── Hero ──────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: clamp(640px, 100vh, 1024px);
  overflow: hidden;
  color: #fff;
  background: #1a1a1a;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(80px, 10vw, 130px);
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--hero-overlay), url("assets/hero.jpg") center 35% / cover no-repeat;
}
.hero-inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  padding: clamp(160px, 18vw, 220px) var(--gutter) 0;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.01em;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 6.4vw, 70px);
  line-height: 1.02;
  color: #fff;
  margin: 0;
  max-width: 14ch;
}
.hero-actions {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Figma buttons: 51px tall, rectangular (no radius), 24px h-padding */
.btn-rect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 51px;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-rect:hover { transform: translateY(-1px); }
.btn-rect.solid {
  background: #fff;
  color: var(--fg);
}
.btn-rect.solid:hover { background: #f3f1e8; }
.btn-rect.outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-rect.outline:hover { background: rgba(255,255,255,0.1); }
.btn-rect.dark {
  background: var(--fg);
  color: var(--bg);
}
.btn-rect.dark:hover { background: #2a2a2a; }
.btn-rect.ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}
.btn-rect.ghost:hover { background: var(--fg); color: var(--bg); }

/* ── Ornament between hero and promise (line + dot from Figma) ────── */

.ornament {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: clamp(60px, 7vw, 96px) 0 0;
}
.ornament-line {
  width: 1px;
  height: 90px;
  background: var(--fg);
}
.ornament-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fg);
}

/* ── Promise quote ─────────────────────────────────────────────────── */

.promise {
  padding: clamp(40px, 5vw, 64px) var(--gutter) clamp(80px, 9vw, 120px);
  text-align: center;
}
.promise-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.25;
  color: var(--fg);
  max-width: 980px;
  margin: 0 auto;
  font-weight: 400;
}

/* ── Section heading block (Figma: eyebrow + huge left heading) ───── */

.section-head {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: clamp(48px, 7vw, 88px);
  max-width: 920px;
}
.section-head.center { text-align: center; align-items: center; max-width: 980px; margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.02;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.005em;
}

/* ── Features grid ─────────────────────────────────────────────────── */

.features-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(48px, 7vw, 88px);
}
@media (min-width: 960px) {
  .features-intro {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
    gap: 60px;
  }
}
.features-intro p {
  color: var(--fg-70);
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  max-width: 50ch;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--fg-12);
  border-top: 1px solid var(--fg-12);
  border-bottom: 1px solid var(--fg-12);
}
@media (min-width: 720px)  { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature {
  background: var(--bg);
  padding: clamp(32px, 3.4vw, 48px) clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 300px;
  transition: background .25s ease;
}
.feature:hover { background: #f1efe7; }
.feature-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--fg-50);
}
.feature h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  max-width: 18ch;
}
.feature p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-70);
  max-width: 38ch;
}
.feature-spacer { flex: 1; }

/* ── Process / Ablauf ──────────────────────────────────────────────── */

.steps {
  background: #ECEBE3;
  border-top: 1px solid var(--fg-12);
  border-bottom: 1px solid var(--fg-12);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step {
  padding: clamp(36px, 4vw, 56px) clamp(24px, 2.6vw, 40px);
  border-bottom: 1px solid var(--fg-12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 880px) {
  .step { border-bottom: 0; border-right: 1px solid var(--fg-12); }
  .step:last-child { border-right: 0; }
}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--fg-50);
}
.step h4 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 400;
  margin: 0;
  line-height: 1.12;
}
.step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-70);
}

/* ── FAQ ───────────────────────────────────────────────────────────── */

.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 960px) { .faq { grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; } }

.faq-side h2 { margin-bottom: 20px; }
.faq-side p { color: var(--fg-70); margin: 0; max-width: 36ch; font-size: 15.5px; line-height: 1.6; }

.faq-list { border-top: 1px solid var(--fg-12); }
.faq-item { border-bottom: 1px solid var(--fg-12); }
.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  transition: opacity .2s;
}
.faq-q:hover { opacity: 0.7; }
.faq-plus {
  width: 28px; height: 28px;
  flex-shrink: 0;
  position: relative;
  transition: transform .3s cubic-bezier(.4,.0,.2,1);
}
.faq-plus::before, .faq-plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-plus::before { width: 14px; height: 1px; }
.faq-plus::after  { width: 1px; height: 14px; transition: transform .3s; }
.faq-item[data-open="true"] .faq-plus::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item[data-open="true"] .faq-a { max-height: 420px; }
.faq-a-inner {
  padding: 0 0 28px;
  max-width: 64ch;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--fg-70);
}

/* ── Final CTA ─────────────────────────────────────────────────────── */

.cta {
  text-align: center;
  padding: clamp(96px, 12vw, 160px) var(--gutter);
  border-top: 1px solid var(--fg-12);
}
.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg-70);
}
.cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.02;
  margin: 24px auto 36px;
  max-width: 18ch;
}
.cta .actions {
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Subpage header (no hero) ──────────────────────────────────────── */

.page-head {
  padding: clamp(160px, 18vw, 220px) var(--gutter) clamp(56px, 7vw, 96px);
  border-bottom: 1px solid var(--fg-12);
}
.page-head-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 980px;
}
.page-head h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--fg);
}
.page-head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-70);
  max-width: 58ch;
  margin: 0;
}

/* ── Booking form ──────────────────────────────────────────────────── */

.booking {
  padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(96px, 11vw, 140px);
}
.booking-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 960px) {
  .booking-grid { grid-template-columns: 1fr 1.6fr; gap: 96px; align-items: start; }
}

.booking-aside { display: flex; flex-direction: column; gap: 28px; }
.booking-aside h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}
.booking-aside p, .booking-aside li {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-70);
}
.booking-aside .meta-block { padding-top: 4px; }
.booking-aside .meta-block + .meta-block { border-top: 1px solid var(--fg-12); padding-top: 24px; }
.booking-aside ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }

.form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 720px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 10px; }
.field-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-70);
  letter-spacing: 0.01em;
}
.field-label .req { color: var(--fg); margin-left: 4px; }
.field-hint {
  font-size: 13px;
  color: var(--fg-50);
  line-height: 1.5;
}

.input,
.textarea {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--fg-12);
  border-radius: 0;
  padding: 12px 0 14px;
  font: inherit;
  font-size: 17px;
  line-height: 1.4;
  color: var(--fg);
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s ease;
}
.input::placeholder,
.textarea::placeholder { color: var(--fg-50); }
.input:focus,
.textarea:focus { border-bottom-color: var(--fg); }
.textarea { resize: vertical; min-height: 130px; padding-top: 10px; }

.timeslots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 540px) { .timeslots { grid-template-columns: repeat(4, 1fr); } }

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  background: transparent;
  border: 1px solid var(--fg-12);
  color: var(--fg);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  user-select: none;
}
.chip:hover { border-color: var(--fg); }
.chip[data-on="true"] {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.consent {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 0 0;
  border-top: 1px solid var(--fg-12);
}
.consent input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--fg);
  background: transparent;
  margin: 2px 0 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: background .15s ease;
}
.consent input:checked { background: var(--fg); }
.consent input:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  width: 6px;
  height: 11px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent label {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-70);
}
.consent label a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 12px;
}
.form-actions .form-error {
  color: #a8362a;
  font-size: 14px;
}
.form-actions .form-submit {
  border: 0;
  cursor: pointer;
}
.form-actions .form-submit[disabled] { opacity: 0.4; cursor: not-allowed; }

/* Success state */
.form-success {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 32px;
  border: 1px solid var(--fg-12);
  background: #ECEBE3;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  margin: 0;
  line-height: 1.15;
}
.form-success p { margin: 0; color: var(--fg-70); font-size: 15.5px; line-height: 1.6; }

/* ── Long-form content (Impressum / Datenschutz) ───────────────────── */

.legal {
  padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(96px, 11vw, 140px);
}
.legal-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 960px) {
  .legal-grid { grid-template-columns: 0.5fr 1.5fr; gap: 96px; align-items: start; }
}
.legal-toc {
  display: none;
}
@media (min-width: 960px) {
  .legal-toc {
    display: flex;
    position: sticky;
    top: clamp(120px, 14vw, 160px);
    flex-direction: column;
    gap: 10px;
  }
}
.legal-toc-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-50);
  margin-bottom: 6px;
}
.legal-toc a {
  font-size: 14.5px;
  color: var(--fg-70);
  padding: 6px 0;
  border-bottom: 1px solid var(--fg-08);
}
.legal-toc a:hover { color: var(--fg); }

.legal-content { max-width: 70ch; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  margin: 0 0 16px;
  line-height: 1.15;
  scroll-margin-top: 140px;
}
.legal-content h2:not(:first-child) { margin-top: 48px; }
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 24px 0 10px;
  line-height: 1.25;
}
.legal-content p,
.legal-content li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--fg);
  margin: 0 0 16px;
}
.legal-content ul { margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; }
.legal-content a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }
.legal-content .small { font-size: 13.5px; color: var(--fg-70); }

/* ── Footer ────────────────────────────────────────────────────────── */

.footer {
  padding: clamp(64px, 8vw, 96px) 0 clamp(32px, 3.4vw, 44px);
  border-top: 1px solid var(--fg-12);
  background: #ECEBE3;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 880px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer h5 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--fg-50);
  font-weight: 400;
  margin: 0 0 18px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--fg-70); font-size: 14.5px; }
.footer ul a:hover { color: var(--fg); }

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 38ch;
}
.footer-brand .logo .logo-mark { background: var(--fg); }
.footer-brand .logo .logo-text,
.footer-brand .logo .logo-sub { color: var(--fg); }
.footer-brand p { color: var(--fg-70); font-size: 14.5px; margin: 0; line-height: 1.6; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--fg-12);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-50);
  flex-wrap: wrap;
}
.footer-bottom a:hover { color: var(--fg); }
