/* ============================================================
   ak.agency — landing page styles
   ============================================================
   Mobile-first. Conversion-focused. Editorial restraint.
   Loads after colors_and_type.css so tokens are already defined.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-1);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--lh-relaxed);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--ak-indigo); color: var(--ak-white); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1100px) { .container { padding: 0 56px; } }

/* ============== Typography helpers ============== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-2);
}
.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0;
  text-wrap: balance;
}
.display em { font-style: italic; font-weight: 300; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-body);
  font-weight: 500; font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background var(--dur-base) var(--ease-out-soft),
              color var(--dur-base) var(--ease-out-soft),
              border-color var(--dur-base) var(--ease-out-soft);
  cursor: pointer; text-align: center;
}
.btn-primary { background: var(--ak-indigo); color: var(--ak-white); }
.btn-primary:hover { background: var(--ak-indigo-hover); }
.btn-secondary { background: transparent; color: var(--ak-ink); border-color: var(--ak-ink); }
.btn-secondary:hover { background: var(--ak-ink); color: var(--ak-white); }
.btn-text { padding: 8px 0; position: relative; color: var(--ak-indigo); font-weight: 500; }
.btn-text::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out-soft);
}
.btn-text:hover::after { transform: scaleX(1); }
.btn .arrow { transition: transform var(--dur-base) var(--ease-out-soft); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============== NAV ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 72px;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
          backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out-soft),
              background var(--dur-base) var(--ease-out-soft);
}
.nav.scrolled { border-bottom-color: var(--line-1); background: rgba(255, 255, 255, 0.92); }
.nav .inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 32px; height: 32px; }
.nav-brand .wm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ak-ink);
}
.nav-brand .wm strong { font-weight: 600; letter-spacing: 0.18em; }
@media (max-width: 520px) {
  .nav-brand .wm { font-size: 12px; letter-spacing: 0.20em; }
}

/* ============== Sections ============== */
section { padding: 96px 0; position: relative; }
@media (min-width: 768px) { section { padding: 128px 0; } }
.section-tight { padding: 72px 0; }
.section-bg-soft { background: var(--ak-blush-soft); }
.section-bg-mist { background: var(--bg-mist); }
.section-bg-slate { background: var(--ak-slate-50); }
.section-bg-dark { background: var(--ak-ink); color: var(--ak-white); }

.section-head { max-width: 880px; margin-bottom: 64px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.section-head .lede {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 680px;
}

/* ============== HERO ============== */
.hero {
  padding-top: calc(72px + 80px);
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { padding-top: calc(72px + 112px); padding-bottom: 96px; }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 7.5vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 28px 0 0;
  max-width: 16ch;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; font-weight: 300; }
.hero h1 .accent { color: var(--ak-indigo); font-style: italic; font-weight: 300; }
.hero .sub {
  margin: 40px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 540px;
  font-weight: 300;
}
.hero .ctas { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; }

.hero-decor {
  position: absolute;
  right: -100px; top: 90px;
  width: clamp(280px, 40vw, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ak-blush-soft);
  z-index: -1;
}
.hero-decor::before {
  content: "";
  position: absolute; left: 12%; top: 12%;
  width: 76%; aspect-ratio: 1;
  border: 1px solid var(--ak-slate-200);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .hero-decor { top: 0; right: -180px; opacity: 0.7; }
}

/* ============== Trust strip ============== */
.trust {
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  padding: 28px 0;
  background: var(--ak-white);
}
.trust .container {
  display: flex; flex-wrap: wrap; gap: 16px 40px;
  align-items: center; justify-content: space-between;
}
.trust .label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 500;
}
.trust .items {
  display: flex; flex-wrap: wrap; gap: 24px 36px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--ak-ink);
}
.trust .items span { display: inline-flex; align-items: center; gap: 10px; }
.trust .items .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ak-indigo); }

/* ============== PROBLEM ============== */
.problem-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  margin-top: 56px;
}
@media (min-width: 768px) { .problem-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }

.problem-card { padding: 32px 0 0; border-top: 1px solid var(--ak-ink); }
.problem-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--ak-ink);
}
.problem-card h3 em { font-style: italic; font-weight: 300; }
.problem-card p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--fg-2); }

/* ============== BASELINE TABLE ============== */
.baseline-wrap {
  border: 1px solid var(--line-1);
  background: var(--ak-white);
  overflow: hidden;
  border-radius: 4px;
}
.baseline-head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line-1);
  background: var(--ak-slate-50);
}
.baseline-head .row {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  align-items: center; justify-content: space-between;
}
.baseline-head .ent {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.baseline-head .surfaces { display: flex; flex-wrap: wrap; gap: 6px; }
.baseline-head .pill {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: var(--ak-white); color: var(--ak-ink);
  border: 1px solid var(--line-1);
  font-weight: 500;
}
.baseline-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.baseline-table thead th {
  text-align: left;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; color: var(--fg-3);
  padding: 16px 24px;
  border-bottom: 1px solid var(--line-1);
  background: var(--ak-white);
}
.baseline-table thead th.score { text-align: center; }
.baseline-table tbody td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-1);
  vertical-align: middle;
}
.baseline-table tbody tr:last-child td { border-bottom: 0; }
.baseline-table .term {
  font-family: var(--font-display);
  font-weight: 400; font-size: 18px;
  letter-spacing: -0.005em;
  display: block;
  margin-bottom: 4px;
}
.baseline-table .term-kind {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 500;
}
.baseline-table .score-cell { text-align: center; }
.score-dot {
  display: inline-block;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--ak-slate-200);
  position: relative;
}
.score-dot.partial { background: var(--ak-peach); }
.score-dot.partial::after,
.score-dot.full::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--ak-ink);
  opacity: 0.15;
}
.score-dot.full { background: var(--ak-indigo); }
.score-dot.miss::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px dashed var(--ak-slate-300);
}
.score-dot.miss { background: transparent; }

.baseline-key {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-top: 18px;
  font-size: 12px; color: var(--fg-3);
}
.baseline-key .k { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 640px) {
  .baseline-table { font-size: 13px; }
  .baseline-table thead th, .baseline-table tbody td { padding: 14px 16px; }
  .baseline-table .term { font-size: 16px; }
}

/* ============== OFFER ladder ============== */
.ladder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ak-ink);
  background: var(--ak-white);
}
.ladder .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-1);
}
@media (min-width: 900px) {
  .ladder .row {
    grid-template-columns: 48px 1fr 1fr 1fr;
    gap: 48px;
    padding: 40px 0;
    align-items: start;
  }
}
.ladder .n {
  font-family: var(--font-display); font-size: 28px; font-weight: 300;
  color: var(--ak-indigo); line-height: 1;
}
.ladder .cell { }
.ladder .cell h4 {
  margin: 0 0 8px;
  font-family: var(--font-body); font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-3);
}
.ladder .cell p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ak-ink);
}
.ladder .cell.outcome p { color: var(--ak-indigo); font-style: italic; font-weight: 300; }

/* ============== ALEKSANDRA section ============== */
.aleks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .aleks { grid-template-columns: 5fr 7fr; gap: 80px; }
}
.aleks .portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ak-blush-soft);
  overflow: hidden;
  border-radius: 4px;
}
.aleks .portrait img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 20%;
}
.aleks .portrait::after {
  content: "";
  position: absolute; right: -28px; bottom: -28px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--ak-blush);
  z-index: -1;
}
.aleks-body h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
  max-width: 16ch;
}
.aleks-body p {
  font-size: 17px; line-height: 1.65; color: var(--fg-2);
  margin: 0 0 18px;
  max-width: 580px;
}
.aleks-body p strong { color: var(--ak-ink); font-weight: 500; }
.aleks-creds {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--line-1);
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: 0.04em;
  color: var(--fg-2);
}
.aleks-creds span { position: relative; }
.aleks-creds span::before {
  content: "·"; position: absolute; left: -16px; color: var(--ak-indigo); font-weight: 700;
}
.aleks-creds span:first-child::before { content: none; }

/* ============== HOW IT WORKS ============== */
.steps {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.step { padding-top: 32px; border-top: 1px solid var(--ak-ink); }
.step .n {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; color: var(--ak-indigo);
  margin-bottom: 18px; display: block;
}
.step h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 24px; line-height: 1.15; letter-spacing: -0.005em;
  margin: 0 0 12px;
}
.step p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--fg-2); }

/* ============== INVESTMENT (single programme, generous readable width) ============== */
.programme {
  max-width: 820px;
  margin: 0 auto;
  background: var(--ak-white);
  border: 1px solid var(--line-1);
  border-radius: 8px;
  overflow: hidden;
}

.programme__hero {
  background: var(--ak-ink);
  color: var(--ak-white);
  padding: 48px 48px 36px;
  text-align: center;
}
@media (max-width: 640px) {
  .programme__hero { padding: 36px 24px 28px; }
}
.programme__lbl {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ak-peach); font-weight: 500;
  margin-bottom: 24px;
}
.programme__price {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  align-items: baseline; gap: 6px 12px;
  margin-bottom: 22px;
}
.programme__price .from {
  font-family: var(--font-body); font-size: 14px;
  letter-spacing: 0.04em; color: var(--ak-slate-300); font-weight: 400;
}
.programme__price .num {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(60px, 7vw, 96px);
  line-height: 1; letter-spacing: -0.025em;
  color: var(--ak-white);
}
.programme__price .unit {
  font-family: var(--font-body); font-size: 16px;
  letter-spacing: 0.04em; color: var(--ak-slate-300); font-weight: 400;
}
.programme__terms {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ak-peach); font-weight: 500;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.programme__intro {
  margin: 0;
  padding: 36px 48px 8px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ak-ink);
  text-wrap: pretty;
}
@media (max-width: 640px) {
  .programme__intro { padding: 28px 24px 4px; font-size: 17px; }
}

.programme__incl {
  margin: 0;
  padding: 16px 48px 8px;
}
@media (max-width: 640px) {
  .programme__incl { padding: 8px 24px 4px; }
}
.programme__item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
@media (min-width: 720px) {
  .programme__item {
    grid-template-columns: 260px 1fr;
    column-gap: 36px;
    row-gap: 0;
    align-items: baseline;
  }
}
.programme__item:last-child { border-bottom: 0; }
.programme__item dt {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--ak-ink);
  line-height: 1.3;
  margin: 0;
}
.programme__item dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  text-wrap: pretty;
}

.programme__cta {
  padding: 28px 48px 36px;
  border-top: 1px solid var(--line-1);
  display: flex; flex-direction: column;
  gap: 14px; align-items: stretch;
}
@media (min-width: 720px) {
  .programme__cta {
    flex-direction: row;
    align-items: center;
    gap: 28px;
    justify-content: space-between;
  }
}
@media (max-width: 640px) {
  .programme__cta { padding: 24px 24px 28px; }
}
.programme__cta .btn { align-self: flex-start; }
.programme__sub {
  font-size: 12.5px; line-height: 1.55;
  color: var(--fg-3);
  max-width: 48ch;
}

/* ============== Enquiry standfirst (form left column) ============== */
.enquiry__standfirst {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ak-ink);
  margin: 0;
  max-width: 28ch;
  text-wrap: balance;
}

/* ============== ENQUIRY FORM ============== */
.enquiry .container { max-width: 980px; }
.enquiry .grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .enquiry .grid { grid-template-columns: 5fr 7fr; gap: 80px; }
}
.enquiry h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(36px, 5.5vw, 64px); line-height: 1;
  letter-spacing: -0.025em; margin: 16px 0 24px;
  max-width: 12ch;
}
.enquiry p {
  font-size: 16px; line-height: 1.6; color: var(--fg-2);
  max-width: 38ch;
}
.enquiry .small {
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--fg-3); margin-top: 24px;
  border-top: 1px solid var(--line-1);
  padding-top: 18px;
}

.form { display: grid; grid-template-columns: 1fr; gap: 24px 20px; }
@media (min-width: 600px) { .form { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-2); font-weight: 500;
}
.field label .opt { color: var(--fg-muted); font-weight: 400; letter-spacing: 0.06em; }
.field input, .field textarea, .field select {
  border: 0; border-bottom: 1px solid var(--ak-ink);
  background: transparent;
  padding: 12px 0 10px;
  font-family: var(--font-body); font-size: 16px;
  color: var(--ak-ink); outline: none;
  border-radius: 0; -webkit-appearance: none; appearance: none;
  transition: border-color var(--dur-base) var(--ease-out-soft),
              border-bottom-width var(--dur-fast) var(--ease-out-soft);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-muted); font-weight: 300; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--ak-indigo);
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23252836' stroke-width='1.5' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
}
.field textarea { min-height: 84px; resize: vertical; }
.submit-row {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; margin-top: 16px; flex-wrap: wrap;
}
.submit-row .privacy { font-size: 12px; color: var(--fg-3); }
.form-success {
  grid-column: 1 / -1;
  padding: 32px 28px;
  background: var(--ak-white);
  border: 1px solid var(--ak-indigo);
  border-radius: 4px;
  display: none;
}
.form-success.visible { display: block; }
.form-success h4 {
  font-family: var(--font-display); font-weight: 400; font-size: 24px;
  letter-spacing: -0.01em; margin: 0 0 12px;
}
.form-success p { margin: 0; font-size: 14px; color: var(--fg-2); }

/* ============== FAQ ============== */
.faq-list { max-width: 880px; }
.faq-item {
  border-bottom: 1px solid var(--line-1);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--ak-ink); }
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.005em;
  line-height: 1.25;
  color: var(--ak-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ak-indigo);
  font-size: 24px; line-height: 1;
  transition: transform var(--dur-base) var(--ease-out-soft);
}
.faq-item[open] .ic { transform: rotate(45deg); }
.faq-item .a {
  margin-top: 16px;
  font-size: 15.5px; line-height: 1.65; color: var(--fg-2);
  max-width: 70ch;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--ak-ink); color: var(--ak-white);
  padding: 72px 0 32px;
}
.footer .top {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  padding-bottom: 48px; border-bottom: 1px solid var(--line-on-dark);
}
@media (min-width: 768px) { .footer .top { grid-template-columns: 1fr auto; align-items: end; gap: 64px; } }
.footer .word {
  font-family: var(--font-display);
  font-weight: 300; font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05; letter-spacing: -0.015em;
  color: var(--ak-white);
  max-width: 18ch;
}
.footer .word em { font-style: italic; font-weight: 300; }
.footer .word .accent { color: var(--ak-peach); font-style: italic; }
.footer .cta-block { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
@media (min-width: 768px) { .footer .cta-block { align-items: flex-end; } }
.footer .cta-block .btn-primary { background: var(--ak-white); color: var(--ak-ink); }
.footer .cta-block .btn-primary:hover { background: var(--ak-peach); }
.footer .meta {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  padding-top: 32px;
  font-size: 12px; color: var(--ak-slate-400);
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .footer .meta { grid-template-columns: 1fr auto; align-items: center; }
}
.footer .meta a { color: var(--ak-slate-300); border-bottom: 1px solid transparent; transition: border-color var(--dur-base); }
.footer .meta a:hover { border-bottom-color: var(--ak-peach); }
.footer .meta .legal { max-width: 60ch; }

/* ============== Reveal on scroll (light touch) ============== */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 600ms var(--ease-out-soft), transform 600ms var(--ease-out-soft); }
.reveal.in { opacity: 1; transform: none; }

/* ============== Reduced motion ============== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
