/* ==========================================================================
   Campbell's Elite Wash Co.
   Palette sampled straight from the logo artwork: electric blue on near-black,
   with a cyan highlight and a deep navy for depth.
   ========================================================================== */

:root {
  --ink:        #04070f;
  --ink-1:      #070c18;
  --ink-2:      #0b1220;
  --ink-3:      #111b2e;
  --line:       #1b2a44;
  --line-soft:  #16233a;

  --blue:       #0090f0;
  --blue-hot:   #22b0ff;
  --cyan:       #5fd8ff;
  --navy:       #001070;

  --text:       #eaf2ff;
  --muted:      #8ba3c4;
  --dim:        #5e7ca3;

  --good:       #2fd47a;
  --warn:       #ffb020;
  --bad:        #ff5470;

  --glow:       0 0 22px rgba(0, 144, 240, .55);
  --glow-soft:  0 0 40px rgba(0, 144, 240, .28);

  --radius:     14px;
  --radius-lg:  20px;

  --font: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Barlow Condensed", "Barlow", system-ui, sans-serif;

  --wrap: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient blue wash behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(0,144,240,.20), transparent 70%),
    radial-gradient(700px 500px at 100% 15%, rgba(0,64,200,.13), transparent 70%),
    radial-gradient(600px 400px at 0% 45%, rgba(0,144,240,.09), transparent 70%);
}

/* Faint tech grid, echoing the logo's backdrop */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .30;
  background-image:
    linear-gradient(rgba(0,144,240,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,144,240,.075) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 65%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 65%);
}

main, header, footer, section { position: relative; z-index: 1; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  text-transform: uppercase;
}
h2 { font-size: clamp(2rem, 5vw, 3.1rem); }
h3 { font-size: 1.4rem; }
p  { margin: 0 0 1rem; }
a  { color: var(--blue-hot); }

.accent { color: var(--blue-hot); text-shadow: var(--glow); }

.eyebrow {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-hot);
  display: block;
  margin-bottom: .75rem;
}

.lede { color: var(--muted); font-size: 1.1rem; max-width: 62ch; }

/* --------------------------------------------------------------- buttons - */
.btn {
  --btn-bg: linear-gradient(180deg, var(--blue-hot), var(--blue));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(0,144,240,.36), inset 0 1px 0 rgba(255,255,255,.28);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,144,240,.5), inset 0 1px 0 rgba(255,255,255,.32);
  filter: brightness(1.07);
}
.btn:active:not(:disabled) { transform: translateY(0); }
.btn:disabled { opacity: .42; cursor: not-allowed; box-shadow: none; }

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--text);
  box-shadow: none;
}
.btn-ghost:hover:not(:disabled) {
  border-color: var(--blue);
  background: rgba(0,144,240,.08);
  box-shadow: none;
  filter: none;
}
.btn-sm { padding: .55rem 1.1rem; font-size: .92rem; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--blue-hot);
  outline-offset: 3px;
}

/* ---------------------------------------------------------------- header - */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(4,7,15,.82);
  border-bottom: 1px solid var(--line-soft);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
}
.topbar-logo { display: flex; align-items: center; }
.topbar-logo img { height: 40px; width: auto; display: block; }
.topbar nav { display: flex; align-items: center; gap: 1.6rem; }
.topbar nav a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .15s;
}
.topbar nav a:hover { color: var(--text); }
.topbar nav a.call { color: var(--blue-hot); }
@media (max-width: 800px) {
  .topbar nav a:not(.btn):not(.call) { display: none; }
  .topbar-logo img { height: 32px; }
}

/* ------------------------------------------------------------------ hero - */
.hero { padding: clamp(3rem, 9vw, 6.5rem) 0 clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.hero-logo {
  width: min(88%, 720px);
  height: auto;
  margin: 0 auto 1.6rem;
  display: block;
  filter: drop-shadow(0 0 44px rgba(0,144,240,.42));
}
.hero-tag {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.1vw, 1.7rem);
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: .5rem;
}
.hero-sub { color: var(--muted); max-width: 56ch; margin: 0 auto 2.1rem; }
.hero-cta { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* Answers "do you even come to my town?" before they have to look for it. */
.hero-area {
  margin: 1.5rem auto 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
}
.hero-area::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: .6rem;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 9px var(--good);
  vertical-align: middle;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 5vw, 3.4rem);
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--blue-hot);
  line-height: 1;
}
.trust-item span { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .13em; }

/* -------------------------------------------------------------- sections - */
.section { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .lede { margin-inline: auto; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: .42;
}

/* --------------------------------------------------------------- service - */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 1.4rem;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(170deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--glow-soft);
}
.service-card.is-popular { border-color: rgba(0,144,240,.6); }
.badge-popular {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--blue-hot), var(--blue));
  color: #fff;
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--glow);
}
.service-card h3 { margin-bottom: .15rem; font-size: 1.6rem; }
.service-card .svc-tag {
  color: var(--blue-hot);
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 600;
  margin-bottom: 1rem;
}
.svc-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: .2rem;
}
.svc-price small { font-size: .95rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; }
.svc-time { font-size: .85rem; color: var(--muted); margin-bottom: 1.2rem; }
.svc-includes { list-style: none; margin: 0 0 1.6rem; padding: 0; flex: 1; }
.svc-includes li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .5rem;
  font-size: .93rem;
  color: var(--muted);
}
.svc-includes li::before {
  content: "";
  position: absolute;
  left: 0; top: .52em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
}

/* ----------------------------------------------------------------- steps - */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.6rem; }
.step { text-align: center; padding: 0 .5rem; }
.step-num {
  width: 58px; height: 58px;
  margin: 0 auto 1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: rgba(0,144,240,.1);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-hot);
  box-shadow: var(--glow);
}
.step h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .93rem; margin: 0; }

/* =================================================================
   Booking wizard
   ================================================================= */
.booking { background: linear-gradient(180deg, transparent, rgba(0,144,240,.05) 40%, transparent); }

.wizard {
  background: linear-gradient(170deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.6rem);
  max-width: 900px;
  margin-inline: auto;
  box-shadow: 0 26px 70px rgba(0,0,0,.5);
}

/* progress rail */
.wiz-progress { display: flex; align-items: center; margin-bottom: 2.2rem; }
.wiz-dot { display: flex; flex-direction: column; align-items: center; gap: .45rem; flex-shrink: 0; }
.wiz-dot i {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--ink-2);
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .98rem;
  color: var(--dim);
  transition: all .25s;
}
.wiz-dot span {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--dim);
  white-space: nowrap;
  transition: color .25s;
}
.wiz-dot.active i { border-color: var(--blue); color: #fff; background: var(--blue); box-shadow: var(--glow); }
.wiz-dot.active span { color: var(--text); }
.wiz-dot.done i { border-color: var(--blue); color: var(--blue-hot); }
.wiz-line { flex: 1; height: 2px; background: var(--line); margin: 0 .4rem; margin-bottom: 1.4rem; }
.wiz-line.done { background: var(--blue); box-shadow: 0 0 8px rgba(0,144,240,.6); }
@media (max-width: 620px) { .wiz-dot span { display: none; } .wiz-line { margin-bottom: 0; } }

.wiz-step { display: none; animation: fade .3s ease; }
.wiz-step.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.wiz-step h3 { font-size: 1.6rem; margin-bottom: .25rem; }
.wiz-hint { color: var(--muted); font-size: .93rem; margin-bottom: 1.6rem; }

/* selectable tiles */
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .9rem; }
.choice {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 1.4rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: all .18s;
}
.choice:hover { border-color: var(--blue); background: rgba(0,144,240,.07); }
.choice.selected {
  border-color: var(--blue);
  background: rgba(0,144,240,.13);
  box-shadow: var(--glow-soft);
}
.choice.selected::after {
  content: "✓";
  position: absolute;
  top: .55rem; right: .7rem;
  color: var(--blue-hot);
  font-weight: 800;
}
.choice svg { width: 52px; height: 34px; color: var(--blue-hot); }
.choice strong { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .04em; text-transform: uppercase; }
.choice small { color: var(--muted); font-size: .78rem; line-height: 1.35; }

/* service rows inside the wizard */
.svc-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.25rem;
  margin-bottom: .8rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  color: var(--text);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: all .18s;
}
.svc-option:hover { border-color: var(--blue); background: rgba(0,144,240,.07); }
.svc-option.selected { border-color: var(--blue); background: rgba(0,144,240,.13); box-shadow: var(--glow-soft); }
.svc-option-main { flex: 1; min-width: 0; }
.svc-option-main strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.svc-option-main span { color: var(--muted); font-size: .88rem; }
.svc-option-price { text-align: right; flex-shrink: 0; }
.svc-option-price b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.svc-option-price small { color: var(--muted); font-size: .78rem; }

/* calendar */
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-title { font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; letter-spacing: .06em; }
.cal-nav { display: flex; gap: .4rem; }
.cal-nav button {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--ink-2);
  color: var(--text);
  cursor: pointer;
  font-size: 1.05rem;
  transition: all .15s;
}
.cal-nav button:hover:not(:disabled) { border-color: var(--blue); color: var(--blue-hot); }
.cal-nav button:disabled { opacity: .3; cursor: not-allowed; }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .35rem; }
.cal-dow {
  text-align: center;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dim);
  padding-bottom: .4rem;
  font-weight: 700;
}
.cal-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1.5px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--dim);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  cursor: not-allowed;
  transition: all .15s;
}
.cal-day.open {
  background: var(--ink-3);
  border-color: var(--line);
  color: var(--text);
  cursor: pointer;
}
.cal-day.open:hover { border-color: var(--blue); background: rgba(0,144,240,.15); }
.cal-day.selected {
  background: var(--blue);
  border-color: var(--blue-hot);
  color: #fff;
  box-shadow: var(--glow);
}
.cal-day.empty { visibility: hidden; }

.slots { margin-top: 1.6rem; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: .55rem; }
.slot {
  padding: .7rem .5rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--ink-2);
  color: var(--text);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.slot:hover { border-color: var(--blue); background: rgba(0,144,240,.1); }
.slot.selected { background: var(--blue); border-color: var(--blue-hot); color: #fff; box-shadow: var(--glow); }

/* form */
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--muted);
  margin-bottom: .4rem;
}
.field label .req { color: var(--blue-hot); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--ink);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,144,240,.18);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.field-err { color: var(--bad); font-size: .82rem; margin-top: .3rem; display: none; }
.field.invalid input, .field.invalid textarea { border-color: var(--bad); }
.field.invalid .field-err { display: block; }

/* summary */
.summary {
  background: rgba(0,144,240,.07);
  border: 1px solid rgba(0,144,240,.28);
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem;
  margin-bottom: 1.6rem;
}
.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: .38rem 0; font-size: .94rem; }
.summary-row span { color: var(--muted); }
.summary-row strong { text-align: right; }
.summary-total {
  border-top: 1px solid rgba(0,144,240,.28);
  margin-top: .5rem;
  padding-top: .7rem;
  font-size: 1.15rem;
}
.summary-total strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--blue-hot); line-height: 1; }

.wiz-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.8rem; }
.wiz-actions .btn { flex: 0 0 auto; }
@media (max-width: 480px) { .wiz-actions { flex-direction: column-reverse; } .wiz-actions .btn { width: 100%; } }

/* states */
.wiz-msg { padding: .9rem 1.1rem; border-radius: 10px; font-size: .93rem; margin-bottom: 1rem; }
.wiz-msg.error { background: rgba(255,84,112,.12); border: 1px solid rgba(255,84,112,.4); color: #ffc2cd; }
.wiz-msg.info  { background: rgba(0,144,240,.1); border: 1px solid rgba(0,144,240,.32); color: var(--cyan); }

.loading { text-align: center; padding: 2.4rem 1rem; color: var(--muted); }
.spinner {
  width: 34px; height: 34px;
  margin: 0 auto .9rem;
  border: 3px solid var(--line);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .spinner { animation-duration: 2.4s; }
  .wiz-step { animation: none; }
  html { scroll-behavior: auto; }
}

/* success */
.done-panel { text-align: center; padding: 1.4rem 0; }
.done-check {
  width: 78px; height: 78px;
  margin: 0 auto 1.3rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(47,212,122,.14);
  border: 2px solid var(--good);
  color: var(--good);
  font-size: 2.3rem;
  box-shadow: 0 0 30px rgba(47,212,122,.35);
}
.done-ref {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--blue-hot);
  background: rgba(0,144,240,.1);
  border: 1px solid rgba(0,144,240,.35);
  border-radius: 10px;
  padding: .45rem 1.3rem;
  margin: .5rem 0 1.3rem;
}

/* ---------------------------------------------------------------- footer - */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
  background: rgba(4,7,15,.6);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.4rem; margin-bottom: 2.4rem; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; } }
.footer-grid img { width: 210px; max-width: 100%; margin-bottom: .9rem; }
.footer-grid h4 {
  font-size: .84rem;
  letter-spacing: .16em;
  color: var(--blue-hot);
  margin-bottom: .9rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .5rem; }
.footer-grid a, .footer-grid p { color: var(--muted); text-decoration: none; font-size: .94rem; }
.footer-grid a:hover { color: var(--blue-hot); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .85rem;
  color: var(--dim);
}

.phone-big {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--blue-hot);
  text-decoration: none;
  letter-spacing: .04em;
  text-shadow: var(--glow);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -120%);
  background: var(--blue); color: #fff;
  padding: .6rem 1.2rem; border-radius: 0 0 10px 10px;
  z-index: 200; text-decoration: none; font-weight: 700;
  transition: transform .18s;
}
.skip-link:focus { transform: translate(-50%, 0); }
