/* ==========================================================================
   Engin Forklift — Denizli Kiralık Forklift
   ========================================================================== */

:root {
  --color-ink: #14171b;
  --color-ink-soft: #2a2f36;
  --color-paper: #ffffff;
  --color-cloud: #f4f5f7;
  --color-cloud-dark: #e7e9ec;
  --color-text: #1b1f24;
  --color-text-muted: #5b6270;
  --color-border: #e3e5e9;

  --color-orange: #ff7a1a;
  --color-orange-dark: #e05e00;
  --color-orange-ink: #7a2e00;
  --color-yellow: #ffc53d;
  --color-whatsapp: #22c35e;
  --color-whatsapp-dark: #1aa34e;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";

  --container-w: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(20, 23, 27, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 23, 27, 0.10);
  --shadow-lg: 0 20px 50px rgba(20, 23, 27, 0.18);
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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-family: inherit; cursor: pointer; }
section { position: relative; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-orange-dark);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--color-orange);
  border-radius: 2px;
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin: 0 0 44px;
}
.section-head h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-top: 12px;
}
.section-head p {
  margin-top: 14px;
  font-size: 16.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pad { padding: 88px 0; }
.pad-sm { padding: 56px 0; }

.bg-cloud { background: var(--color-cloud); }
.bg-ink {
  background: linear-gradient(160deg, #14171b 0%, #1d2127 60%, #24282f 100%);
  color: #fff;
}
.bg-ink .section-head p { color: rgba(255,255,255,0.68); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 24px;
  border-radius: 999px;
  border: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn svg { flex: none; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--color-orange);
  color: #1a0e00;
  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.35);
}
.btn-primary:hover { background: var(--color-orange-dark); color: #fff; }

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 10px 24px rgba(34, 195, 94, 0.3);
}
.btn-whatsapp:hover { background: var(--color-whatsapp-dark); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
}
.btn-outline-dark:hover { background: var(--color-cloud); }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 30px; font-size: 16.5px; }

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--color-ink);
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.topbar-area { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.topbar-area svg { color: var(--color-orange); }
.topbar-calls { display: flex; gap: 18px; }
.topbar-calls a { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.topbar-calls a:hover { color: var(--color-orange); }
.topbar-calls svg { color: var(--color-orange); }

@media (max-width: 720px) {
  .topbar-area span.long { display: none; }
}
@media (max-width: 400px) {
  .topbar-calls { gap: 12px; }
  .topbar { font-size: 12px; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.01em; min-width: 0; flex-shrink: 1; }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--color-ink);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-name b { color: var(--color-ink); white-space: nowrap; }
.brand-name small { font-size: 11.5px; font-weight: 600; color: var(--color-text-muted); letter-spacing: 0.03em; white-space: nowrap; }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text-muted);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--color-ink); border-color: var(--color-orange); }
.main-nav a.is-active { color: var(--color-ink); border-color: var(--color-orange); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--color-cloud);
  border: 1px solid var(--color-border);
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-actions .btn span.full { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .header-actions .btn-outline-dark { display: none; }
  .header-actions .btn-primary { padding: 12px 16px; font-size: 14px; }
  .brand-name small { display: none; }
  .brand-name b { font-size: 16px; }
  .site-header .container { gap: 10px; padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 420px) {
  .header-actions .btn-primary span { display: none; }
  .header-actions .btn-primary { padding: 12px; border-radius: 50%; width: 44px; height: 44px; }
}

/* Mobile drawer nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-ink);
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  padding: 22px 24px 32px;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mobile-nav-close { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.08); border: none; color: #fff; display: flex; align-items: center; justify-content: center; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a.nav-link {
  font-size: 21px; font-weight: 700; padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.mobile-nav .btn-group { margin-top: 26px; flex-direction: column; }
.mobile-nav-footer { margin-top: auto; padding-top: 20px; font-size: 13.5px; color: rgba(255,255,255,0.55); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(150deg, #14171b 0%, #1c2026 55%, #262b32 100%);
  color: #fff;
  overflow: hidden;
  padding: 64px 0 0;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-copy { padding-bottom: 60px; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,122,26,0.14);
  border: 1px solid rgba(255,122,26,0.4);
  color: var(--color-yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 999px;
}
.hero h1 {
  margin-top: 18px;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-orange);
}
.hero-sub {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
}
.hero .btn-group { margin-top: 32px; }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 34px;
}
.hero-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.hero-chip svg { color: var(--color-orange); flex: none; }

.chip-row-light .hero-chip { color: var(--color-text); }
.chip-row-light .hero-chip svg { color: var(--color-orange-dark); }

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}
.hero-visual svg { width: 100%; max-width: 520px; height: auto; }

.hero-stripe {
  height: 14px;
  width: 100%;
  background: repeating-linear-gradient(-45deg, var(--color-yellow), var(--color-yellow) 22px, var(--color-ink) 22px, var(--color-ink) 44px);
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
  .hero-copy { padding-bottom: 40px; text-align: left; }
}

/* ---------- Inner page header ---------- */
.page-hero {
  background: linear-gradient(150deg, #14171b 0%, #1c2026 55%, #262b32 100%);
  color: #fff;
  padding: 56px 0 46px;
  text-align: center;
}
.page-hero .container { max-width: 720px; }
.page-hero h1 {
  margin-top: 16px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.page-hero p {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}
.page-hero .btn-group { margin-top: 26px; justify-content: center; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #1a0e00;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 18px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--color-text-muted); line-height: 1.6; }
@media (max-width: 780px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); font-weight: 600; }
.breadcrumb a:hover { color: var(--color-orange); }
.breadcrumb span[aria-current] { color: rgba(255,255,255,0.9); font-weight: 600; }

/* ---------- Service detail page ---------- */
.detail-block {
  max-width: 760px;
  margin: 0 auto;
}
.detail-block h2 {
  font-size: 22px;
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}
.detail-block h2:first-child { margin-top: 0; }
.detail-block p { font-size: 15.5px; line-height: 1.75; color: var(--color-text-muted); }
.detail-block ul { margin-top: 4px; }
.detail-block ul li {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--color-text-muted);
  padding-left: 26px;
  position: relative;
  margin-bottom: 6px;
}
.detail-block ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--color-orange);
}

.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 700;
  font-size: 14.5px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.related-card:hover { border-color: var(--color-orange); transform: translateY(-2px); }
.related-card svg { color: var(--color-orange-dark); flex: none; }
@media (max-width: 780px) {
  .related-services { grid-template-columns: 1fr; }
}

/* ---------- Contact cards ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  text-align: center;
}
.contact-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-ink);
  color: var(--color-orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-card h3 { font-size: 20px; margin-bottom: 2px; }
.contact-card .role { font-size: 13.5px; color: var(--color-text-muted); font-weight: 600; margin-bottom: 20px; display: block; }
.contact-card .btn-group { flex-direction: column; }
@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Service / equipment cards ---------- */
.grid {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,122,26,0.1);
  color: var(--color-orange-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card h3 { font-size: 18.5px; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { font-size: 14.5px; color: var(--color-text-muted); line-height: 1.6; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-orange-dark);
}
.card-link:hover { color: var(--color-orange); }

/* Use-case tiles (dark) */
.usecase {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.usecase .card-icon { background: rgba(255,197,61,0.14); color: var(--color-yellow); margin-bottom: 0; flex: none; }
.usecase h3 { font-size: 16.5px; margin-bottom: 6px; }
.usecase p { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.55; }

/* ---------- Why-us stat cards ---------- */
.why-grid { grid-template-columns: repeat(4, 1fr); }
.why-card { text-align: left; }
.why-card .card-icon { background: var(--color-ink); color: var(--color-yellow); }

/* ---------- Photo banner ---------- */
.photo-banner {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.photo-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,17,20,0.92) 0%, rgba(15,17,20,0.78) 42%, rgba(15,17,20,0.35) 100%);
  z-index: 0;
}
.photo-banner .container { position: relative; z-index: 1; }
.photo-banner-inner { max-width: 560px; padding: 70px 0; }
.photo-banner h2 { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.18; margin-top: 14px; }
.photo-banner p { margin-top: 16px; font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.78); }
.photo-banner .btn-group { margin-top: 28px; }
.photo-credit {
  position: absolute;
  right: 14px; bottom: 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  z-index: 1;
}
.photo-credit a { text-decoration: underline; color: inherit; }

/* ---------- Regions ---------- */
.region-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.region-chip {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-text);
}
.region-chip.all {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
}
.faq-q .plus {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--color-cloud);
  flex: none;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--color-ink);
  border-radius: 2px;
}
.faq-q .plus::before { width: 12px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 12px; transition: opacity 0.2s ease; }
.faq-item.is-open .faq-q .plus { background: var(--color-orange); transform: rotate(180deg); }
.faq-item.is-open .faq-q .plus::before,
.faq-item.is-open .faq-q .plus::after { background: #1a0e00; }
.faq-item.is-open .faq-q .plus::after { opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 34px 22px 4px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* ---------- Final CTA ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--color-orange-dark), var(--color-orange));
  color: #1a0e00;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 52px 24px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(24px, 3vw, 32px); line-height: 1.2; max-width: 480px; }
.cta-band p { margin-top: 8px; font-size: 15.5px; color: rgba(26,14,0,0.75); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-brand p { margin-top: 14px; font-size: 14.5px; line-height: 1.7; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.footer-col a:hover { color: var(--color-orange); }
.footer-contact-name { display: block; font-size: 12.5px; color: rgba(255,255,255,0.45); font-weight: 500; }
.footer-contact a { font-weight: 700; font-size: 16px; color: #fff; display: flex; align-items: center; gap: 8px; }
.footer-contact a svg { color: var(--color-orange); }
.footer-contact li { margin-bottom: 4px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 13px;
}
.footer-bottom a { text-decoration: underline; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .why-grid, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(20,23,27,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
}
@media (max-width: 640px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 74px; }
}

/* ---------- Misc ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

::selection { background: var(--color-orange); color: #1a0e00; }
