/* ==========================================================================
   Red Falcon Marine — Design System
   Light-based marine/industrial theme built on the brand's red/navy identity.
   Motion follows the Apple fluid-interface model: instant press feedback,
   critically-damped springs for anything interactive, honest reduced-motion.
   ========================================================================== */

:root {
  /* Brand */
  --red: #cf2318;
  --red-dark: #9e1a12;
  --red-light: #ef4a3a;
  --navy: #0f1b33;
  --navy-2: #16234a;
  --navy-3: #1e2e5c;

  /* Neutrals */
  --ink: #14161a;
  --ink-soft: #52565f;
  --ink-faint: #82868f;
  --paper: #ffffff;
  --mist: #f5f6f8;
  --mist-2: #eceef2;
  --line: #e3e5ea;
  --line-strong: #cdd0d8;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(15, 20, 30, 0.06), 0 1px 1px rgba(15, 20, 30, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 20, 30, 0.10), 0 2px 6px rgba(15, 20, 30, 0.06);
  --shadow-lg: 0 24px 60px rgba(10, 15, 30, 0.18), 0 6px 16px rgba(10, 15, 30, 0.08);
  --shadow-red: 0 10px 28px rgba(207, 35, 24, 0.28);

  /* Shape */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1200px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 150ms;
  --dur: 320ms;
  --dur-slow: 520ms;
}

/* ---------------------------------- Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
html, body { overflow-x: hidden; }
body {
  font: 400 1rem/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
:focus-visible {
  outline: 2.5px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------- Type ---------------------------------- */
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); letter-spacing: -0.03em; line-height: 1.02; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }
p { color: var(--ink-soft); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--ink-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--red);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--red); border-radius: 2px; }
.on-dark .eyebrow { color: #ff8a7a; }
.on-dark .eyebrow::before { background: #ff8a7a; }

/* ---------------------------------- Layout ---------------------------------- */
.wrap { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
@media (min-width: 900px) { .wrap { padding-inline: 40px; } }
section { padding-block: clamp(56px, 9vw, 120px); }
.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.bg-mist { background: var(--mist); }
.bg-navy { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }
.bg-navy p { color: rgba(255,255,255,0.72); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------------------------------- Buttons ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  padding: 0.9em 1.6em; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; letter-spacing: -0.005em;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); transition-duration: 80ms; }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 14px 34px rgba(207,35,24,0.36); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.35); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.55); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--line-strong); }
.btn-outline:hover { border-color: var(--navy); background: var(--mist); }
.btn-whatsapp { background: #25D366; color: #06301a; box-shadow: 0 10px 26px rgba(37,211,102,0.32); }
.btn-whatsapp:hover { background: #1fb959; }
.btn-block { width: 100%; }
.btn-lg { padding: 1.05em 2em; font-size: 1.05rem; }

/* ---------------------------------- Header ---------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(20,22,26,0.06);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 10px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy); min-width: 0; flex-shrink: 1; }
.brand img { height: 36px; width: auto; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-text strong { font-size: 0.92rem; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-text span { font-size: 0.62rem; letter-spacing: 0.1em; color: var(--ink-faint); text-transform: uppercase; font-weight: 700; white-space: nowrap; }
@media (min-width: 480px) {
  .brand img { height: 42px; }
  .brand-text strong { font-size: 1.05rem; }
}

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  display: block; padding: 0.6em 1em; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; color: var(--ink-soft);
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.main-nav a:hover { background: var(--mist-2); color: var(--navy); }
.main-nav a[aria-current="page"] { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-actions .btn-outline { display: none; }
.header-actions .btn-primary { display: none; }

@media (min-width: 420px) {
  .header-actions .btn-primary { display: inline-flex; padding: 0.7em 1em; font-size: 0.84rem; white-space: nowrap; }
}
@media (min-width: 560px) {
  .header-actions .btn-primary { padding: 0.75em 1.3em; font-size: 0.92rem; }
}
@media (min-width: 980px) {
  .main-nav { display: block; }
  .header-actions .btn-outline { display: inline-flex; }
  .nav-toggle { display: none; }
}

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
}
.nav-toggle:active { background: var(--mist-2); }
.nav-toggle span { display: block; height: 2px; width: 20px; margin-inline: auto; background: var(--navy); border-radius: 2px; transition: transform var(--dur) var(--ease-in-out), opacity var(--dur) var(--ease-in-out); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  visibility: hidden;
}
.mobile-nav[data-open="true"] { visibility: visible; }
.mobile-nav-scrim {
  position: absolute; inset: 0;
  background: rgba(10,14,24,0.5);
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
}
.mobile-nav[data-open="true"] .mobile-nav-scrim { opacity: 1; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 380px);
  background: var(--navy);
  padding: 100px 28px 40px;
  transform: translateX(100%);
  will-change: transform;
  box-shadow: -20px 0 60px rgba(0,0,0,0.35);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.mobile-nav ul a {
  display: block; padding: 0.85em 0.2em; font-size: 1.35rem; font-weight: 700;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,0.1);
  letter-spacing: -0.01em;
}
.mobile-nav .contact-mini { display: flex; flex-direction: column; gap: 14px; }
.mobile-nav .contact-mini a { border: none; padding: 0; font-size: 0.98rem; font-weight: 600; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 10px; }

/* ---------------------------------- Hero ---------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  min-height: min(88vh, 800px);
  display: flex; align-items: flex-end;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,14,26,0.35) 0%, rgba(9,14,26,0.55) 45%, rgba(8,12,22,0.96) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; min-width: 0; padding-block: clamp(120px, 20vw, 180px) clamp(56px, 8vw, 88px); color: #fff; }
.hero h1 { color: #fff; max-width: 18ch; }
.hero .lede { max-width: 52ch; color: rgba(255,255,255,0.8); margin-top: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 56px); margin-top: clamp(48px, 7vw, 72px); padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stats .stat b { display: block; font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; letter-spacing: -0.02em; }
.hero-stats .stat span { font-size: 0.85rem; color: rgba(255,255,255,0.62); }

/* ---------------------------------- Cards ---------------------------------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }

.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card .thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--mist-2); }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-card .tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); }
.service-card p { font-size: 0.95rem; }
.service-card .more { margin-top: auto; font-weight: 700; font-size: 0.9rem; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.service-card .more svg { transition: transform var(--dur-fast) var(--ease-out); }
.service-card:hover .more svg { transform: translateX(4px); }

.icon-tile {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; box-shadow: var(--shadow-red);
  flex-shrink: 0;
}
.icon-tile svg { width: 26px; height: 26px; }

.feature-row { display: flex; gap: 18px; align-items: flex-start; }
.feature-row h4 { margin-bottom: 4px; }
.feature-row p { font-size: 0.95rem; }

/* ---------------------------------- Service detail blocks ---------------------------------- */
.svc-block { padding-block: clamp(48px, 7vw, 88px); border-top: 1px solid var(--line); }
.svc-block:first-of-type { border-top: none; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.svc-grid.reverse .svc-copy { order: 2; }
.svc-grid.reverse .svc-media { order: 1; }
@media (max-width: 860px) {
  .svc-grid, .svc-grid.reverse .svc-copy, .svc-grid.reverse .svc-media { order: initial; }
  .svc-grid { grid-template-columns: 1fr; }
}
.svc-media { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.svc-media.single { grid-template-columns: 1fr; }
.svc-media img { border-radius: var(--radius); aspect-ratio: 1/1; object-fit: cover; box-shadow: var(--shadow-md); }
.svc-media.single img { aspect-ratio: 16/11; }
.svc-media img:nth-child(2) { margin-top: 28px; }
@media (max-width: 620px) {
  .svc-media img:nth-child(2) { margin-top: 0; }
}
.svc-copy .num { font-size: 0.8rem; font-weight: 800; color: var(--ink-faint); letter-spacing: 0.1em; }
.svc-copy h2 { margin-top: 6px; }
.svc-copy .lede { margin-top: 14px; }
.svc-list { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.svc-list li { display: flex; gap: 12px; font-size: 0.98rem; color: var(--ink-soft); align-items: flex-start; }
.svc-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--red); }
.brand-chips { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.brand-chips span { padding: 0.4em 0.85em; background: var(--mist); border: 1px solid var(--line); border-radius: 999px; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }

/* ---------------------------------- Why-us / stats ---------------------------------- */
.why-card { padding: 26px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 100%; }
.why-card .icon-tile { margin-bottom: 16px; }

.cta-strip {
  border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 64px);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  box-shadow: var(--shadow-red);
}
.cta-strip h2 { color: #fff; margin-bottom: 6px; }
.cta-strip p { color: rgba(255,255,255,0.85); }
.cta-strip .btn-outline { color: #fff; border-color: rgba(255,255,255,0.55); }
.cta-strip .btn-outline:hover { background: rgba(255,255,255,0.14); border-color: #fff; }

/* ---------------------------------- Gallery / logos strip ---------------------------------- */
.logo-strip { display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: center; }
.logo-strip span { font-weight: 700; letter-spacing: 0.02em; color: var(--ink-faint); font-size: 0.95rem; padding: 0.5em 0.9em; border: 1px dashed var(--line-strong); border-radius: 10px; }

/* ---------------------------------- Forms ---------------------------------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow-md); }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-size: 0.86rem; font-weight: 700; color: var(--navy); }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  padding: 0.9em 1em; border-radius: var(--radius-sm); border: 1.5px solid var(--line-strong);
  background: var(--mist); font-size: 0.98rem; color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: var(--paper);
  box-shadow: 0 0 0 4px rgba(207,35,24,0.12);
}
.field .hint { font-size: 0.78rem; color: var(--ink-faint); }
.field .error { font-size: 0.8rem; color: var(--red-dark); display: none; }
.field[data-invalid="true"] input, .field[data-invalid="true"] textarea, .field[data-invalid="true"] select { border-color: var(--red); }
.field[data-invalid="true"] .error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.form-status {
  display: none; align-items: center; gap: 10px;
  padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 20px;
  font-size: 0.92rem; font-weight: 600;
}
.form-status[data-state="success"] { display: flex; background: #eafaf1; color: #0f7a41; border: 1px solid #bfead0; }
.form-status[data-state="error"] { display: flex; background: #fdecec; color: #a51b1b; border: 1px solid #f6c6c6; }
.form-status[data-state="loading"] { display: flex; background: var(--mist); color: var(--ink-soft); border: 1px solid var(--line); }

.spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2.5px solid rgba(0,0,0,0.15); border-top-color: currentColor;
  animation: spin 0.7s linear infinite; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner { animation-duration: 1.4s; } }

/* ---------------------------------- Contact info blocks ---------------------------------- */
.contact-card { display: flex; gap: 16px; padding: 20px; border-radius: var(--radius); background: var(--mist); border: 1px solid var(--line); }
.contact-card .icon-tile { background: var(--navy); box-shadow: none; }
.contact-card h4 { margin-bottom: 4px; }
.contact-card a, .contact-card p { font-size: 0.94rem; }
.contact-card a { color: var(--navy); font-weight: 600; }
.contact-card a:hover { color: var(--red); }

/* ---------------------------------- Footer ---------------------------------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.site-footer .wrap { padding-block: clamp(48px, 7vw, 72px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 40px; }
.footer-brand strong { color: #fff; font-size: 1.05rem; }
.site-footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer a { font-size: 0.92rem; transition: color var(--dur-fast) var(--ease-out); }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.5);
}

/* ---------------------------------- WhatsApp FAB ---------------------------------- */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37,211,102,0.42);
  transition: transform var(--dur-fast) var(--ease-out);
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab:active { transform: scale(0.94); }
.wa-fab svg { width: 28px; height: 28px; }

/* ---------------------------------- Reveal-on-scroll ---------------------------------- */
[data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transform: none; transition: opacity 300ms ease; }
}

/* ---------------------------------- Page hero (inner pages) ---------------------------------- */
.page-hero { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; padding-block: 140px 64px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 85% 0%, rgba(207,35,24,0.25), transparent 70%);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero .lede { color: rgba(255,255,255,0.75); max-width: 60ch; margin-top: 16px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }

/* ---------------------------------- Misc ---------------------------------- */
.divider { height: 1px; background: var(--line); border: none; margin-block: 0; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); filter: grayscale(0.15); }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
