/* ============================================================
   janousek. — design system matched to the Axiom cloud inspo
   dark navy shell → rounded frame → white left / sky right
   ============================================================ */

:root {
  --ink: #0e1117;
  --paper: #f4f3ee;
  --paper-dim: #e9e8e2;
  --navy: #050d1d;
  --navy-2: #0a1428;
  --sky: #3f83c9;
  --sky-deep: #2c66a8;
  --line: rgba(14, 17, 23, 0.14);
  --line-light: rgba(255, 255, 255, 0.22);
  --glass: rgba(173, 205, 235, 0.28);
  --font-sans: "Inter", -apple-system, sans-serif;
  --font-grot: "Space Grotesk", sans-serif;
  --font-serif: "Instrument Serif", serif;
  --font-mono: "Space Mono", monospace;
  --frame-pad: clamp(10px, 1.6vw, 26px);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--sky); color: #fff; }

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

/* ---------- outer frame ---------- */
.frame {
  margin: var(--frame-pad);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(120, 170, 225, 0.35), 0 30px 80px rgba(0, 0, 0, 0.55);
}

/* ---------- nav ---------- */
.nav {
  display: grid;
  grid-template-columns: minmax(0, 46.5%) 1fr;
  align-items: stretch;
  position: relative;
  z-index: 30;
}

.nav-brand {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--font-grot);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.brand-mark { color: var(--ink); display: inline-flex; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2.4vw, 38px);
  padding: 14px 22px;
  background: linear-gradient(180deg, rgba(84, 142, 203, 0.92), rgba(70, 126, 188, 0.88));
  backdrop-filter: blur(8px);
}

.nav-links a {
  color: #eaf2fb;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.75; }

.nav-cta {
  background: #fff;
  color: var(--ink) !important;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 600 !important;
  box-shadow: 0 1px 3px rgba(6, 20, 40, 0.25);
}

.nav-burger {
  display: none;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span { width: 22px; height: 2px; background: #fff; display: block; transition: 0.25s; }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 46.5%) 1fr;
  min-height: calc(100vh - 2 * var(--frame-pad) - 78px);
}

.hero-left {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.hero-right, .nav > *, .private > *, .about-inner > *, .contact-inner > *, .footer-inner > * { min-width: 0; }
.hero-left-inner, .hero-trust, .marquee { min-width: 0; max-width: 100%; }

.hero-left-inner {
  padding: clamp(40px, 7vh, 90px) clamp(28px, 4vw, 72px) 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  justify-content: center;
}

.hero-dots {
  display: flex;
  gap: 7px;
  margin-bottom: clamp(28px, 5vh, 56px);
}
.hero-dots span { width: 9px; height: 9px; background: var(--ink); }

.hero-title {
  font-weight: 400;
  line-height: 1.02;
  display: flex;
  flex-direction: column;
  gap: 0.04em;
}

.ht-caps, .st-caps {
  font-family: var(--font-grot);
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 64px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ht-serif, .st-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(42px, 5.2vw, 74px);
  letter-spacing: 0;
  text-transform: none;
  line-height: 0.95;
}

.hero-lede {
  max-width: 420px;
  margin-top: clamp(22px, 3.4vh, 36px);
  font-size: 15.5px;
  color: #2a2e35;
}

.btn-primary {
  display: inline-block;
  margin-top: clamp(26px, 4.2vh, 44px);
  background: var(--navy-2);
  color: #f5f7fa;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  padding: 17px 34px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #14213d; transform: translateY(-1px); }

/* trust strip + marquee */
.hero-trust {
  border-top: 1px solid var(--line);
  padding: 26px 0 30px;
}

.trust-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-align: center;
  color: #3a3f47;
  margin-bottom: 20px;
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 58px;
  width: max-content;
  animation: marquee 26s linear infinite;
  padding: 0 29px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.mq {
  white-space: nowrap;
  color: #9a9992;
  font-size: 21px;
}
.mq-a { font-family: var(--font-serif); font-style: italic; }
.mq-b { font-family: var(--font-grot); font-weight: 600; letter-spacing: 0.08em; font-size: 18px; }
.mq-c { font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.02em; }
.mq-d { font-family: var(--font-mono); font-size: 17px; letter-spacing: 0.05em; }
.mq-e { font-family: var(--font-grot); font-weight: 500; }
.mq-f { font-family: var(--font-serif); }

/* right sky panel */
.hero-right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #5a9ad8, #3c7cc0 60%, #326db1);
  min-height: 540px;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-ascii, .private-ascii {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* frosted carousel card */
.glass {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-card {
  position: absolute;
  left: clamp(16px, 2.4vw, 34px);
  bottom: clamp(16px, 3vh, 34px);
  width: min(320px, 72%);
  min-height: 260px;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.hc-title {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 16.5px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.hc-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 24ch;
}

.hero-arrows {
  position: absolute;
  right: clamp(16px, 2.2vw, 30px);
  bottom: clamp(16px, 3vh, 30px);
  display: flex;
  gap: 8px;
}

.arrow {
  width: 44px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.arrow:hover { background: rgba(255, 255, 255, 0.32); }

/* ---------- shared section furniture ---------- */
section { position: relative; }

.section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  color: #6a6f78;
  margin-bottom: 26px;
}
.kicker-light { color: rgba(255, 255, 255, 0.62); }

.sec-title { display: flex; flex-direction: column; gap: 0.02em; }
.sec-title .st-caps { font-size: clamp(30px, 3.6vw, 50px); }
.sec-title .st-serif { font-size: clamp(34px, 4.2vw, 58px); }
.sec-title-light { color: #fff; }

.sec-lede {
  margin: 26px auto 0;
  max-width: 560px;
  color: #3a3f47;
  font-size: 15.5px;
}
.sec-lede-light { color: rgba(255, 255, 255, 0.82); }

/* ---------- problem ---------- */
.problem {
  background: var(--paper);
  padding: clamp(70px, 11vh, 130px) clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1240px;
  margin: clamp(40px, 7vh, 70px) auto 0;
}

.p-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 22px 30px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.p-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(10, 20, 40, 0.09); }

.p-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #9aa0a8;
  margin-bottom: 34px;
}

.p-title {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.p-text { font-size: 14px; color: #3a3f47; }

.problem-close {
  text-align: center;
  margin-top: clamp(40px, 6vh, 60px);
  font-size: 17px;
  color: #2a2e35;
}
.problem-close em { font-family: var(--font-serif); font-style: italic; font-size: 21px; }

/* ---------- approach (blue) ---------- */
.approach {
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(255, 255, 255, 0.16), transparent 60%),
    linear-gradient(180deg, #4d8ecd, #3672b4 70%, #2c62a2);
  padding: clamp(70px, 11vh, 130px) clamp(20px, 4vw, 64px);
  color: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: clamp(40px, 7vh, 70px) auto 0;
}

.glass-dark {
  background: rgba(9, 24, 48, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.step { padding: 28px 26px 34px; }

.step-days {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 28px;
}

.step-title {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.step-text { font-size: 14.5px; color: rgba(255, 255, 255, 0.88); }

.approach-keep {
  text-align: center;
  max-width: 640px;
  margin: clamp(36px, 6vh, 56px) auto 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}
.ak-mono {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #fff;
}

/* ---------- private ai ---------- */
.private {
  display: grid;
  grid-template-columns: minmax(0, 42%) 1fr;
  background: var(--navy);
  color: #fff;
  min-height: 640px;
}

.private-media { position: relative; overflow: hidden; }
.private-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.private-body { padding: clamp(60px, 9vh, 110px) clamp(28px, 4.5vw, 80px); }
.private-body .kicker, .private-body .sec-title { text-align: left; }
.private-body .sec-lede { margin-left: 0; text-align: left; }

.rungs { display: grid; gap: 12px; margin-top: clamp(32px, 5vh, 48px); max-width: 640px; }

.rung { padding: 22px 24px; }

.rung-for {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.rung-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 8px;
}

.rung-text { font-size: 14px; color: rgba(255, 255, 255, 0.82); }

.private-own {
  margin-top: clamp(30px, 5vh, 44px);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
}
.private-own em { font-family: var(--font-serif); font-style: italic; font-size: 18px; }

/* ---------- pricing ---------- */
.pricing {
  background: var(--paper);
  padding: clamp(70px, 11vh, 130px) clamp(20px, 4vw, 64px);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1160px;
  margin: clamp(40px, 7vh, 70px) auto 0;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px 28px 34px;
  display: flex;
  flex-direction: column;
}

.price-card-featured {
  background: var(--navy-2);
  color: #f2f6fb;
  border-color: rgba(255, 255, 255, 0.1);
}
.price-card-featured .pc-tag { color: #8fb4e2; }
.price-card-featured .pc-dur { color: rgba(255, 255, 255, 0.6); }
.price-card-featured .pc-list li { color: rgba(255, 255, 255, 0.85); border-color: rgba(255, 255, 255, 0.12); }
.price-card-featured .btn-ghost { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.price-card-featured .btn-ghost:hover { background: #fff; color: var(--navy-2); }

.pc-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #7a8089;
  margin-bottom: 22px;
}

.pc-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 14px;
}

.pc-price {
  font-family: var(--font-grot);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.01em;
}

.pc-dur {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: #7a8089;
  margin: 8px 0 20px;
}

.pc-list { flex: 1; }
.pc-list li {
  font-size: 14px;
  color: #3a3f47;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.pc-list li:last-child { border-bottom: 1px solid var(--line); }

.btn-ghost {
  margin-top: 24px;
  display: inline-block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  padding: 14px 20px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* ---------- about ---------- */
.about {
  background:
    radial-gradient(100% 120% at 15% 0%, rgba(80, 140, 205, 0.25), transparent 55%),
    var(--navy);
  color: #fff;
  padding: clamp(70px, 11vh, 130px) clamp(20px, 4vw, 64px);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.about .kicker, .about .sec-title { text-align: left; }

.about-body {
  margin-top: 22px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}
.about-body strong { color: #fff; }

.cred { border-top: 1px solid rgba(255, 255, 255, 0.18); margin-top: 66px; }

.cred-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.cred-row dt {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
}

.cred-row dd { font-size: 15px; }

/* ---------- faq ---------- */
.faq {
  background: var(--paper);
  padding: clamp(70px, 11vh, 120px) clamp(20px, 4vw, 64px);
}

.faq-list { max-width: 720px; margin: clamp(36px, 6vh, 56px) auto 0; }

.faq-item {
  border-top: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 4px;
  font-family: var(--font-grot);
  font-weight: 500;
  font-size: 17px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 18px;
  color: #7a8089;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 4px 20px;
  font-size: 14.5px;
  color: #3a3f47;
  max-width: 60ch;
}

/* ---------- contact ---------- */
.contact {
  background:
    radial-gradient(130% 100% at 85% 10%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(180deg, #4d8ecd, #30669f 75%, #275689);
  color: #fff;
  padding: clamp(70px, 11vh, 130px) clamp(20px, 4vw, 64px);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.contact .kicker, .contact .sec-title { text-align: left; }
.contact .sec-lede { margin-left: 0; text-align: left; }

.next-steps {
  margin-top: clamp(30px, 5vh, 46px);
  list-style: none;
  counter-reset: ns;
  max-width: 460px;
}

.next-steps li {
  counter-increment: ns;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas: "num k" "num v";
  column-gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.next-steps li::before {
  content: "0" counter(ns);
  grid-area: num;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 2px;
}
.ns-k {
  grid-area: k;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
}
.ns-v {
  grid-area: v;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.contact-form {
  padding: 30px 28px 26px;
  border-radius: 12px;
}

.ff { margin-bottom: 16px; }

.ff label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 7px;
}

.ff input, .ff textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14.5px;
  padding: 12px 14px;
  outline: none;
  transition: border 0.2s, background 0.2s;
  resize: vertical;
}
.ff input::placeholder, .ff textarea::placeholder { color: rgba(255, 255, 255, 0.45); }
.ff input:focus, .ff textarea:focus { border-color: #fff; background: rgba(255, 255, 255, 0.16); }

.btn-block { width: 100%; margin-top: 6px; }

.form-status { margin-top: 12px; font-size: 14px; min-height: 20px; }
.form-status.ok { color: #d9f2d9; }
.form-status.err { color: #ffd9d9; }

.form-alt { margin-top: 10px; font-size: 13px; color: rgba(255, 255, 255, 0.72); }
.form-alt a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: clamp(50px, 8vh, 80px) clamp(20px, 4vw, 64px) 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
}

.brand-light { color: #fff; }

.f-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  margin: 14px 0 12px;
  color: rgba(255, 255, 255, 0.55);
}

.f-line { font-size: 14px; max-width: 380px; color: rgba(255, 255, 255, 0.7); }

.f-k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  margin: 14px 0 4px;
}
.f-k:first-child { margin-top: 0; }

.f-meta a:hover { text-decoration: underline; text-underline-offset: 3px; }

.f-rights {
  max-width: 1100px;
  margin: 46px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- reveals ---------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; max-width: 560px; }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr; }
  .nav-brand { border-bottom: 0; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 40;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(12, 32, 60, 0.96);
    backdrop-filter: blur(14px);
    transform: translateY(-100%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 20px; }
  .nav-burger { display: flex; z-index: 50; }
  .nav-burger span { background: var(--ink); }
  .nav-links.open ~ .nav-burger span,
  body.menu-open .nav-burger span { background: #fff; }
  body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .hero-right { min-height: 520px; }
  .private { grid-template-columns: 1fr; }
  .private-media { min-height: 320px; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .cred { margin-top: 10px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .problem-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-card { width: calc(100% - 90px); min-height: 220px; }
  .ht-caps { font-size: 34px; }
  .ht-serif { font-size: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
