/* =========================================================================
   Aatmik Intelligence LLP - marketing site
   Design system: brand navy + gold, EB Garamond display / Outfit sans.
   One accent (gold), one corner-radius scale, dual light/dark support.
   ========================================================================= */

@import url("fonts.css");

:root {
  /* brand */
  --ink: #0b1229;       /* deepest navy, hero + footer bg */
  --navy: #16224a;
  --navy-2: #1e2c5c;
  --navy-3: #233363;
  --line-dark: #31427a;
  --gold: #c8a253;
  --gold-bright: #e7c989;
  --gold-deep: #8c6b2f;

  /* light-mode surfaces */
  --white: #ffffff;
  --surface: #f6f7fb;
  --surface-2: #eef1f8;
  --text: #1b2340;
  --muted: #5b6280;
  --soft: #8992ac;
  --line: #e3e6ef;

  /* system */
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 55, .06), 0 6px 18px rgba(15, 23, 55, .06);
  --shadow-md: 0 14px 40px rgba(15, 23, 55, .12);
  --max: 1240px;
  --nav-h: 76px;
  --ease: cubic-bezier(.16, 1, .3, 1);

  --font-display: "EB Garamond", "Cambria", Georgia, serif;
  --font-sans: "Outfit", -apple-system, "Segoe UI", system-ui, sans-serif;

  /* Fixed light text for surfaces that are ALWAYS dark regardless of page
     theme (nav bar, hero, on-dark sections). Never redefined in the dark
     media query below, unlike --white which is a theme-relative surface
     token. Using --white for on-dark text would go dark-on-dark in
     dark mode; this token exists specifically to prevent that bug. */
  --on-dark-text: #ffffff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --white: #10162e;
    --surface: #0c1226;
    --surface-2: #131a34;
    --text: #eceffa;
    --muted: #aeb7d6;
    --soft: #8089ac;
    --line: #26305a;
    --ink: #070b1c;
    --navy: #111a38;
    --navy-2: #182449;
    --navy-3: #1e2c55;
    --line-dark: #2b3866;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3), 0 6px 18px rgba(0, 0, 0, .3);
    --shadow-md: 0 14px 40px rgba(0, 0, 0, .38);
  }
}

/* ---------- reset ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }
svg.icon { width: 1em; height: 1em; fill: currentColor; flex: none; }

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 1024px) { .wrap { padding-inline: 40px; } }

section { position: relative; }

/* ---------- type -------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
[data-theme-dark] .eyebrow,
.on-dark .eyebrow { color: var(--gold); }

h2.h-section {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--text);
  max-width: 18ch;
}
.on-dark h2.h-section { color: var(--on-dark-text); }

.section-head { margin-bottom: 44px; }
.lede {
  margin-top: 14px;
  max-width: 58ch;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.on-dark .lede { color: #aeb7d6; }

em.accent { font-style: italic; color: var(--gold-deep); }
.on-dark em.accent { color: var(--gold-bright); }

/* ---------- buttons ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.btn:active { transform: scale(.97); }
.btn-gold {
  background: var(--gold);
  color: #1a1408;
}
.btn-gold:hover { background: var(--gold-bright); box-shadow: 0 10px 26px rgba(200, 162, 83, .35); }
.btn-outline {
  border: 1.5px solid var(--line-dark);
  color: var(--on-dark-text);
  background: transparent;
}
.on-dark .btn-outline { border-color: rgba(255, 255, 255, .28); color: var(--on-dark-text); }
.on-dark .btn-outline:hover { border-color: var(--gold); background: rgba(200, 162, 83, .1); }
.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn .icon { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover .icon { transform: translate(2px, -2px); }

/* ---------- nav ------------------------------------------------------ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(11, 18, 41, .72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 34px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .01em;
  color: var(--on-dark-text);
  line-height: 1.15;
}
.brand-name small {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: #cbd3ee;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-cta { display: none; }
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--on-dark-text);
}
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle .icon-x { display: none; }
.nav-toggle[aria-expanded="true"] .icon-list { display: none; }
.nav-toggle[aria-expanded="true"] .icon-x { display: block; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 99;
  background: var(--ink);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  padding: 16px 4px;
  font-size: 20px;
  font-family: var(--font-display);
  color: var(--on-dark-text);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mobile-menu .btn { margin-top: 20px; align-self: flex-start; }
@media (min-width: 900px) { .mobile-menu { display: none; } }

/* ---------- hero ------------------------------------------------------ */
.hero {
  position: relative;
  /* .site-nav is sticky, not fixed, so it already occupies its own 76px of
     document flow above .hero. Sizing hero to 100dvh AND adding padding-top
     for the nav double-counts that space and pushes content past the fold. */
  min-height: calc(100dvh - var(--nav-h));
  display: flex;
  flex-direction: column;
  background: var(--ink);
  overflow: hidden;
}
.hero > .wrap {
  flex: 1;
  display: flex;
  align-items: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 11, 27, .94) 0%, rgba(7, 11, 27, .82) 34%, rgba(7, 11, 27, .48) 62%, rgba(7, 11, 27, .58) 100%),
    linear-gradient(0deg, rgba(7, 11, 27, .55) 0%, transparent 30%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 64px 64px;
  max-width: 680px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: var(--radius-pill);
  background: rgba(200, 162, 83, .12);
  border: 1px solid rgba(200, 162, 83, .4);
  color: var(--gold-bright);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 26px;
}
.hero-kicker .icon { width: 14px; height: 14px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--on-dark-text);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
.hero .lede {
  margin-top: 22px;
  max-width: 46ch;
  font-size: clamp(15.5px, 1.6vw, 18px);
  line-height: 1.55;
  color: #c3cae6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.factbar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: rgba(7, 11, 27, .55);
  backdrop-filter: blur(10px);
}
.factbar .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-block: 26px;
}
@media (min-width: 560px) { .factbar .wrap { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; } }
@media (min-width: 1100px) { .factbar .wrap { grid-template-columns: repeat(5, 1fr); gap: 18px; padding-block: 22px; } }
.factbar .fact { display: flex; flex-direction: column; gap: 4px; }
.factbar .fact strong {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.15;
  font-weight: 600;
  color: var(--gold-bright);
}
.factbar .fact span { font-size: 12px; color: #a6afd2; line-height: 1.35; max-width: 34ch; }

/* ---------- generic section paddings ------------------------------------ */
.section { padding-block: 88px; }
.section.tight { padding-block: 64px; }
.section.on-dark { background: var(--navy); }
.section.alt { background: var(--surface); }

/* ---------- vision / split ------------------------------------------ */
.split {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
}
.split-media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 12 / 7;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .cap {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(11, 18, 41, .62);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
}
.split-body p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}
.split-body p + p { margin-top: 16px; }
.on-dark .split-body p { color: #b7bfe0; }

.principle-list { margin-top: 28px; display: grid; gap: 18px; }
.principle {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.principle .dot {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--gold-deep);
}
.on-dark .principle .dot { background: rgba(200, 162, 83, .12); border-color: rgba(200, 162, 83, .35); color: var(--gold); }
.principle .dot .icon { width: 14px; height: 14px; }
.principle h4 { font-size: 15.5px; font-weight: 600; color: var(--text); }
.on-dark .principle h4 { color: var(--on-dark-text); }
.principle p { margin-top: 3px; font-size: 14px; color: var(--muted); line-height: 1.55; }
.on-dark .principle p { color: #a6afd2; }

/* ---------- initiatives bento ------------------------------------------ */
.bento {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
  }
  .bento .card.feature { grid-column: span 4; grid-row: span 2; }
  .bento .card.tall { grid-column: span 2; grid-row: span 2; }
  .bento .card.third { grid-column: span 2; }
}
.card {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--navy-2);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.card.feature { min-height: 360px; }
.card .card-media { position: relative; flex: 1; overflow: hidden; }
.card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.card:hover .card-media img { transform: scale(1.045); }
.card .card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 11, 27, .92) 0%, rgba(7, 11, 27, .35) 46%, rgba(7, 11, 27, .05) 72%);
}
.card .card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 24px;
  z-index: 1;
}
.card .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(200, 162, 83, .16);
  border: 1px solid rgba(200, 162, 83, .45);
  color: var(--gold-bright);
  margin-bottom: 12px;
}
.card .status.is-live { background: rgba(85, 196, 150, .15); border-color: rgba(85, 196, 150, .45); color: #8fe3bd; }
.card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.15;
}
.card.feature h3 { font-size: clamp(24px, 2.6vw, 30px); }
.card p {
  margin-top: 8px;
  font-size: 13.5px;
  color: #c3cae6;
  line-height: 1.5;
  max-width: 46ch;
}
.card .card-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-bright);
}
.card .card-link .icon { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.card:hover .card-link .icon { transform: translate(2px, -2px); }

/* ---------- ecosystem flow --------------------------------------------- */
.flow {
  margin-top: 56px;
  display: grid;
  gap: 0;
}
@media (min-width: 860px) { .flow { grid-template-columns: repeat(3, 1fr); } }
.flow-step {
  position: relative;
  padding: 30px 28px;
  border-top: 1px solid var(--line-dark);
}
@media (min-width: 860px) {
  .flow-step { border-top: none; border-left: 1px solid var(--line-dark); padding-inline: 34px; }
  .flow-step:first-child { border-left: none; padding-left: 0; }
}
.flow-step .num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.flow-step h4 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: #fff;
}
.flow-step p { margin-top: 10px; font-size: 14px; color: #a6afd2; line-height: 1.6; max-width: 34ch; }

/* ---------- programs / offer cards --------------------------------------- */
.offer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .offer-grid { grid-template-columns: repeat(4, 1fr); } }
.offer-card {
  padding: 28px 24px;
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--line);
}
.offer-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--gold);
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.offer-icon .icon { width: 20px; height: 20px; }
.offer-card h4 { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--text); }
.offer-card p { margin-top: 8px; font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ---------- about / team ------------------------------------------------ */
.about-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 860px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.people-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}
.person {
  padding: 26px 22px;
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--line);
}
.person .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--gold);
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.person .avatar .icon { width: 20px; height: 20px; }
.person h4 { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--text); }
.person span { display: block; margin-top: 4px; font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-deep); }

.facts-card {
  padding: 30px 28px;
  border-radius: var(--radius-l);
  background: var(--ink);
  color: #fff;
}
.facts-card dl { display: grid; gap: 18px; }
.facts-card .row { display: grid; grid-template-columns: 1fr; gap: 3px; }
.facts-card dt { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.facts-card dd { margin: 0; font-size: 14.5px; color: #d7dcf1; line-height: 1.5; }

/* ---------- contact ------------------------------------------------ */
.contact-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.contact-list { display: grid; gap: 20px; margin-top: 30px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ic {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 162, 83, .12);
  border: 1px solid rgba(200, 162, 83, .35);
  color: var(--gold);
}
.contact-item .ic .icon { width: 17px; height: 17px; }
.contact-item h4 { font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }
.contact-item p, .contact-item a { margin-top: 4px; font-size: 15.5px; color: #fff; line-height: 1.5; }
.contact-item a:hover { color: var(--gold-bright); }

.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 600; color: #cbd3ee; }
.field input, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-s);
  border: 1.5px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-size: 14.5px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #7580a6; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, .07);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 12px; color: #8089ac; }
.form-note {
  margin-top: 4px;
  font-size: 12.5px;
  color: #8089ac;
  line-height: 1.5;
}
.form-status {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--gold-bright);
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-error { color: #f0a58c; }
.btn[disabled] { opacity: .65; cursor: default; pointer-events: none; }

/* ---------- footer ------------------------------------------------ */
.site-footer { background: var(--ink); padding-block: 64px 28px; }
.footer-top {
  display: grid;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
@media (min-width: 860px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; color: #8089ac; line-height: 1.6; max-width: 34ch; }
.footer-col h5 { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14px; color: #b7bfe0; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold-bright); }
.footer-col .ext { display: inline-flex; align-items: center; gap: 5px; }
.footer-col .ext .icon { width: 11px; height: 11px; opacity: .7; }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: #6c76a0;
}

/* ---------- reveal on scroll ------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- skip link ---------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--gold);
  color: #1a1408;
  padding: 12px 18px;
  border-radius: var(--radius-s);
  font-weight: 600;
  font-size: 14px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }
