/* ====================================================================
   Jankowski Immobilien — Onepager
   Architectural drafting-sheet aesthetic
   ==================================================================== */

:root {
  --paper:        #FAF8F4;
  --paper-2:      #F2EEE5;
  --paper-3:      #E9E4D8;
  --hairline:     #E5E1D8;
  --hairline-2:   #D8D2C4;
  --ink:          #1A1816;
  --ink-2:        #3A3631;
  --ink-3:        #6B6660;
  --ink-4:        #A19C92;
  --accent:       #E89A2A;
  --accent-deep:  #C97C16;
  --accent-tint:  #FAEBCF;

  --serif:  "Cormorant Garamond", Georgia, serif;
  --sans:   "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:   "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max:    1320px;
  --gutter: clamp(20px, 5vw, 64px);

  --t-fast: 180ms cubic-bezier(.4,.0,.2,1);
  --t-base: 280ms cubic-bezier(.4,.0,.2,1);
  --t-slow: 480ms cubic-bezier(.22,.61,.36,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Hide Neve default footer since we use custom */
.site-footer .footer--row, .hfg_footer { display: none !important; }

/* Override Neve page container for full-width */
.page-template-default .nv-single-page-wrap,
.page-template-default .nv-content-wrap {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.nv-page-title-wrap { display: none !important; }
.neve-main > .container { max-width: 100%; padding: 0; }
.neve-main > .container > .row { margin: 0; }
.neve-main > .container > .row > .col { padding: 0; max-width: 100%; flex: 0 0 100%; }
.single-page-container > .container,
.page .nv-single-page-wrap { max-width: 100% !important; padding: 0 !important; }

/* --- Typography --- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .num {
  color: var(--accent-deep);
  font-variant-numeric: tabular-nums;
}
.eyebrow .rule {
  width: 28px;
  height: 1px;
  background: var(--ink-4);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.08;
  text-wrap: balance;
}

.h-display {
  font-size: clamp(40px, 6.2vw, 84px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.h-section {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
}
.h-section em { font-style: italic; color: var(--ink-2); }

.lead {
  font-family: var(--sans);
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 62ch;
  text-wrap: pretty;
}
.body-text { color: var(--ink-2); line-height: 1.6; }
.muted { color: var(--ink-3); }

/* --- Layout --- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
  width: 100%;
}

.jk-section {
  position: relative;
  padding-block: clamp(72px, 9vw, 120px);
  border-top: 1px solid var(--hairline);
}
.jk-section:first-child { border-top: none; }

.section-head {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(0, 2.4fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}
.section-head .meta { padding-top: 4px; }
.section-head .meta .eyebrow { margin-bottom: 14px; }
.section-head .sub {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.6;
  max-width: 28ch;
  font-family: var(--mono);
}
.section-head-main { min-width: 0; }
.section-sub {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 62ch;
  text-wrap: pretty;
}

/* ====================================================================
   HEADER (Neve overrides)
   ==================================================================== */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--paper) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), background var(--t-base), padding var(--t-base);
}
.hdr.is-stuck {
  border-bottom-color: var(--hairline);
  background: color-mix(in oklab, var(--paper) 94%, transparent);
}
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
  transition: padding var(--t-base);
}
.hdr.is-stuck .hdr-inner { padding-block: 12px; }

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.hdr-logo img {
  height: 64px;
  width: auto;
  transition: height var(--t-base);
}
.hdr.is-stuck .hdr-logo img { height: 52px; }

.hdr-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 26px);
  font-family: var(--sans);
  font-size: 17px;
}
.hdr-nav a {
  text-decoration: none;
  color: var(--ink-2);
  padding: 8px 4px;
  position: relative;
  letter-spacing: -0.005em;
  transition: color var(--t-fast);
}
.hdr-nav a:hover { color: var(--ink); }
.hdr-nav a.is-active { color: var(--ink); }
.hdr-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 2px;
  height: 1px;
  background: var(--accent);
}

.hdr-cta {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 17px;
  letter-spacing: -0.005em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.hdr-cta:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--paper); }
.hdr-cta .arrow { transition: transform var(--t-fast); }
.hdr-cta:hover .arrow { transform: translateX(3px); }

.hdr-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hairline-2);
  width: 40px; height: 40px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
@media (max-width: 920px) {
  .hdr-nav { display: none; }
  .hdr-cta.desktop-only { display: none; }
  .hdr-mobile-toggle { display: inline-flex; }
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--hairline);
  background: var(--paper);
}
.mobile-menu.open { display: block; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 12px var(--gutter) 24px;
}
.mobile-menu a {
  padding: 14px 0;
  text-decoration: none;
  color: var(--ink-2);
  border-bottom: 1px solid var(--hairline);
  font-size: 16px;
}
.mobile-menu a:last-of-type { border-bottom: none; }

/* ====================================================================
   HERO
   ==================================================================== */
.jk-hero {
  padding-block: clamp(24px, 3vw, 48px) clamp(80px, 9vw, 130px);
  border-top: none;
  position: relative;
  overflow: hidden;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-meta .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 999px;
}
.hero-meta .sep {
  width: 28px; height: 1px;
  background: var(--ink-4);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 7.5vw, 110px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: var(--ink);
  text-wrap: balance;
  max-width: 16ch;
}
.hero-title .accent {
  color: var(--accent-deep);
  font-style: italic;
}

.hero-sub {
  margin-top: clamp(24px, 3vw, 40px);
  max-width: 58ch;
  font-size: clamp(17px, 1.45vw, 21px);
  color: var(--ink-2);
  line-height: 1.55;
}

.hero-ctas {
  margin-top: clamp(32px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  cursor: pointer;
  font-family: var(--sans);
}
.btn:hover .arrow { transform: translateX(3px); }
.btn .arrow { transition: transform var(--t-fast); display: inline-block; }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--paper); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-2);
}
.btn-ghost:hover { background: var(--paper-2); border-color: var(--ink-4); }

/* Hero benefits */
.hero-benefits {
  margin-top: clamp(64px, 7vw, 100px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
@media (max-width: 820px) {
  .hero-benefits { grid-template-columns: 1fr; }
}
.benefit {
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--hairline);
}
.benefit:last-child { border-right: none; padding-right: 0; }
@media (max-width: 820px) {
  .benefit { border-right: none; border-bottom: 1px solid var(--hairline); padding: 24px 0; }
  .benefit:last-child { border-bottom: none; }
}
@media (min-width: 821px) {
  .benefit + .benefit { padding-left: 28px; }
}
.benefit .b-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-deep);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.benefit h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.benefit p {
  margin: 0;
  color: var(--ink-3);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Registration marks */
.reg-mark {
  position: absolute;
  width: 18px; height: 18px;
  pointer-events: none;
}
.reg-mark::before, .reg-mark::after {
  content: ""; position: absolute; background: var(--ink-4);
}
.reg-mark::before { left: 0; right: 0; top: 50%; height: 1px; }
.reg-mark::after  { top: 0; bottom: 0; left: 50%; width: 1px; }
.reg-tl { top: 12px; left: 12px; }
.reg-tr { top: 12px; right: 12px; }

/* ====================================================================
   LEISTUNGEN
   ==================================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
@media (max-width: 820px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(28px, 3vw, 40px);
  background: transparent;
  transition: background var(--t-base);
  cursor: pointer;
}
.svc-card:hover { background: color-mix(in oklab, var(--paper-2) 60%, transparent); }
.svc-card.is-open { background: var(--paper-2); }

.svc-head {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: start;
}
.svc-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-deep);
  letter-spacing: 0.1em;
  padding-top: 6px;
}
.svc-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.svc-toggle {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--hairline-2);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: transform var(--t-base), background var(--t-fast), border-color var(--t-fast);
}
.svc-card.is-open .svc-toggle {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: rotate(45deg);
}

.svc-summary {
  margin: 14px 0 0 72px;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.55;
  max-width: 56ch;
}

.svc-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-slow);
}
.svc-card.is-open .svc-detail { grid-template-rows: 1fr; }
.svc-detail > div { overflow: hidden; }
.svc-detail-inner {
  margin: 24px 0 0 72px;
  padding-top: 24px;
  border-top: 1px dashed var(--hairline-2);
}
.svc-detail ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  font-size: 14.5px;
  color: var(--ink-2);
}
@media (max-width: 640px) {
  .svc-detail ul { grid-template-columns: 1fr; }
  .svc-summary, .svc-detail-inner { margin-left: 0; }
  .svc-head { grid-template-columns: 36px 1fr auto; gap: 12px; }
}
.svc-detail li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 0;
}
.svc-detail li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--accent);
  flex: none;
  transform: translateY(-2px);
}

/* ====================================================================
   WARUM WIR
   ==================================================================== */
.argument-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.argument {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
  padding: clamp(28px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--hairline);
}
.argument:first-child { border-top: 1px solid var(--hairline); }
.argument .a-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-deep);
  letter-spacing: 0.1em;
  padding-top: 8px;
}
.argument h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.1;
}
.argument p {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
}
@media (max-width: 820px) {
  .argument { grid-template-columns: 1fr; gap: 12px; }
  .argument .a-num { padding-top: 0; }
}

/* ====================================================================
   ABLAUF
   ==================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  padding: 28px 24px 32px 0;
  border-right: 1px dashed var(--hairline-2);
}
.step:last-child { border-right: none; padding-right: 0; }
@media (min-width: 561px) { .step + .step { padding-left: 24px; } }
@media (max-width: 980px) {
  .step:nth-child(2n) { border-right: none; padding-right: 0; }
  .step { border-bottom: 1px dashed var(--hairline-2); }
}
@media (max-width: 560px) {
  .step { border-right: none; padding: 24px 0; }
}

.step .s-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid var(--ink-4);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 18px;
  background: var(--paper);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.step:hover .s-num {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.step p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
}
.step .s-duration {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 12px;
  display: block;
}

/* ====================================================================
   ÜBER MICH
   ==================================================================== */
.about {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .about { grid-template-columns: 1fr; } }

.about-photo-wrap {
  position: relative;
  background: var(--paper-2);
  padding: 18px;
  border: 1px solid var(--hairline);
}
.about-photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.02);
}
.about-photo-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.about-photo-caption .l { color: var(--ink-2); }

.about-body .lead { margin-bottom: 28px; }
.about-credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  margin-top: 32px;
}
@media (max-width: 540px) { .about-credentials { grid-template-columns: 1fr; } }
.cred {
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline);
}
.cred:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--hairline); }
.cred:nth-child(even) { padding-left: 24px; }
@media (max-width: 540px) {
  .cred:nth-child(odd) { padding-right: 0; border-right: none; }
  .cred:nth-child(even) { padding-left: 0; }
}
.cred .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.cred .v {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
}

/* ====================================================================
   FAQ
   ==================================================================== */
.faq-list { border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 16px;
  align-items: center;
  color: var(--ink);
  transition: color var(--t-fast);
  cursor: pointer;
}
.faq-q:hover { color: var(--accent-deep); background: none; }
.faq-q .q-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-deep);
  letter-spacing: 0.1em;
}
.faq-q .q-text {
  font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.faq-q .q-toggle {
  width: 28px; height: 28px;
  border: 1px solid var(--hairline-2);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: transform var(--t-base), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  justify-self: end;
}
.faq-item.is-open .q-toggle {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-slow);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a-inner {
  padding: 0 0 24px 0;
  max-width: 70ch;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.65;
}
@media (max-width: 600px) {
  .faq-q { grid-template-columns: 1fr 28px; gap: 10px; }
}

/* ====================================================================
   KONTAKT
   ==================================================================== */
.kontakt-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 0;
  border: 1px solid var(--hairline);
  background: var(--paper);
}
@media (max-width: 880px) { .kontakt-grid { grid-template-columns: 1fr; } }

.kontakt-left {
  padding: clamp(28px, 3.5vw, 48px);
  background: var(--ink);
  color: var(--paper);
}
.kontakt-left h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 500;
  margin: 18px 0 24px;
  color: var(--paper);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.kontakt-left .eyebrow { color: rgba(250,248,244,0.65); }
.kontakt-left .eyebrow .num { color: var(--accent); }
.kontakt-left .eyebrow .rule { background: rgba(250,248,244,0.4); }

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(250,248,244,0.2);
}
.kontakt-row .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.55);
  margin-bottom: 6px;
}
.kontakt-row .v {
  font-size: 16px;
  color: var(--paper);
  line-height: 1.45;
}
.kontakt-row .v a { color: var(--paper); text-decoration: none; border-bottom: 1px solid rgba(232,154,42,0.8); }
.kontakt-row .v a:hover { color: var(--accent); }

.kontakt-right { padding: clamp(28px, 3.5vw, 48px); }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.field label .req { color: var(--accent-deep); margin-left: 4px; }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--hairline-2);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  border-radius: 4px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(232,154,42,0.22);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field.error input, .field.error textarea, .field.error select {
  border-color: #B83B1F;
  box-shadow: 0 0 0 3px rgba(184,59,31,0.18);
}
.field-err {
  margin-top: 6px;
  font-size: 12px;
  color: #B83B1F;
  font-family: var(--mono);
}
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) { .row-2 { grid-template-columns: 1fr; } }

.checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
  padding: 4px 0 16px;
  cursor: pointer;
}
.checkbox input { width: 20px; height: 20px; accent-color: var(--ink); margin-top: 1px; }
.checkbox a { color: var(--ink-2); text-decoration: underline; }
.form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
  margin-top: 4px;
}
.form-foot .note {
  font-size: 13px;
  color: var(--ink-3);
  max-width: 38ch;
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.ftr {
  background: var(--ink);
  color: rgba(250,248,244,0.8);
  padding-block: 56px 32px;
}
.ftr-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,248,244,0.14);
}
@media (max-width: 820px) { .ftr-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ftr-grid { grid-template-columns: 1fr; } }

.ftr h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.55);
  margin: 0 0 14px;
  font-weight: 500;
}
.ftr a {
  color: rgba(250,248,244,0.8);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  font-size: 14.5px;
  transition: color var(--t-fast);
}
.ftr a:hover { color: var(--accent); }
.ftr-brand {
  display: flex;
  flex-direction: column;
}
.ftr-brand img {
  height: 120px;
  width: auto;
  margin-left: -8px;
}
.ftr-brand p {
  margin: auto 0 0;
  font-size: 14px;
  color: rgba(250,248,244,0.65);
  line-height: 1.55;
  max-width: 36ch;
}
.ftr-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.5);
}
.ftr-notice { color: var(--accent); }

/* ====================================================================
   REVEAL
   ==================================================================== */
.reveal {
  transition: opacity 600ms cubic-bezier(.22,.61,.36,1), transform 600ms cubic-bezier(.22,.61,.36,1);
}
.reveal.armed {
  opacity: 0;
  transform: translateY(14px);
}
.reveal.armed.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ====================================================================
   LEGAL PAGES
   ==================================================================== */
.jk-legal {
  max-width: 780px;
  margin: 60px auto;
  padding: 0 24px;
}
.jk-legal h1 { font-size: 2rem; margin-bottom: 32px; }
.jk-legal h2 { font-size: 1.25rem; margin-top: 40px; margin-bottom: 12px; }
.jk-legal h3 { font-size: 1.05rem; margin-top: 28px; margin-bottom: 8px; }
.jk-legal p, .jk-legal li { font-size: 0.95rem; color: var(--ink-3); line-height: 1.8; }
