/* ==========================================================================
   True Cherry Detailing — design tokens
   ========================================================================== */
:root {
  /* Brand */
  --navy: #16233F;
  --navy-700: #1E304F;
  --navy-800: #182A47;
  --navy-900: #0E1727;
  --white: #FFFFFF;
  --cherry: #C41230;
  --cherry-600: #A50F27;
  --cherry-700: #8A0C20;
  --cherry-tint: #F6E1E4;
  --ice: #D6E4F0;
  --ice-100: #EFF5FA;

  /* Text */
  --text-on-navy: var(--white);
  --text-on-navy-muted: #A9BEDD;
  --text-on-white: var(--navy);
  --text-on-white-muted: #4A5875;

  /* Type */
  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base
   ========================================================================== */
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
[id] { scroll-margin-top: 92px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-on-white);
  font-size: 1rem;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.98;
}

h1 { font-size: clamp(2.75rem, 3.2vw + 2rem, 5.25rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 1.6vw + 1.5rem, 3.1rem); font-weight: 800; }
h3 { font-size: clamp(1.35rem, 0.6vw + 1.15rem, 1.75rem); font-weight: 700; }

p { max-width: 62ch; }
p.lede { font-size: clamp(1.05rem, 0.4vw + 1rem, 1.25rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--cherry);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--cherry);
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--white { background: var(--white); color: var(--text-on-white); }
.section--ice { background: var(--ice-100); color: var(--text-on-white); }
.section--navy { background: var(--navy); color: var(--text-on-navy); }
.section--navy p:not(.lede) { color: var(--text-on-navy-muted); }
.section--navy .eyebrow { color: var(--ice); }

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.section-head p { margin-top: 0.9rem; color: var(--text-on-white-muted); }
.section--navy .section-head p { color: var(--text-on-navy-muted); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--cherry { background: var(--cherry); color: var(--white); }
.btn--cherry:hover, .btn--cherry:focus-visible { background: var(--cherry-600); }

.btn--outline-light { border-color: var(--white); color: var(--white); }
.btn--outline-light:hover, .btn--outline-light:focus-visible { background: var(--white); color: var(--navy); }

.btn--outline-dark { border-color: var(--navy); color: var(--navy); }
.btn--outline-dark:hover, .btn--outline-dark:focus-visible { background: var(--navy); color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
}
.brand__mark { width: auto; height: 42px; flex-shrink: 0; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.2rem;
  line-height: 1;
}
.brand__name span { color: var(--cherry); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  color: var(--text-on-navy-muted);
  padding-block: 0.4rem;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--cherry);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a:focus-visible, .nav-links a[aria-current="page"] {
  color: var(--white);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after, .nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta { display: flex; align-items: center; gap: 0.9rem; }
.nav-phone {
  display: none;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.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-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.mobile-overlay.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-overlay a {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--white);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-overlay a:hover, .mobile-overlay a:focus-visible { color: var(--cherry); }
.mobile-overlay .btn { margin-top: 1rem; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .mobile-overlay { display: none !important; }
  .nav-phone { display: inline-flex; }
}
@media (max-width: 899.98px) {
  .nav-links { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(4.5rem, 10vw, 8rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 85% 15%, rgba(196,18,48,0.28), transparent 70%),
    radial-gradient(50% 60% at 5% 95%, rgba(214,228,240,0.10), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 80%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__inner { max-width: 42rem; }
.hero__tagline {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 0.6vw + 1rem, 1.5rem);
  color: var(--ice);
  text-transform: none;
  letter-spacing: 0.01em;
}
.hero p.lede { margin-top: 1.25rem; color: var(--text-on-navy-muted); }
.hero .btn-row { margin-top: 2.25rem; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 90% at 90% 0%, rgba(196,18,48,0.25), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero p.lede { margin-top: 1rem; color: var(--text-on-navy-muted); max-width: 48rem; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-on-navy-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--ice); }
.breadcrumb a:hover { color: var(--white); }

/* ==========================================================================
   Feature / value grid
   ========================================================================== */
.grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.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; } }

.value-card {
  background: var(--white);
  border: 1px solid rgba(22,35,63,0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.value-card__num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cherry);
  letter-spacing: 0.05em;
}
.value-card h3 { margin-top: 0.6rem; }
.value-card p { margin-top: 0.6rem; color: var(--text-on-white-muted); font-size: 0.95rem; }

/* ==========================================================================
   Services / pricing
   ========================================================================== */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  align-items: start;
}
@media (max-width: 980px) { .plan-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.plan-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(22,35,63,0.12);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.plan-card--featured {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: 0 24px 60px -20px rgba(14,23,39,0.45);
  z-index: 1;
}
.plan-card--featured p { color: var(--text-on-navy-muted); }
@media (max-width: 980px) { .plan-card--featured { transform: none; } }

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cherry);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-card__name { font-size: 1.3rem; }
.plan-card__desc { font-size: 0.9rem; color: var(--text-on-white-muted); }
.plan-card--featured .plan-card__desc { color: var(--text-on-navy-muted); }
.plan-card__price {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3vw, 2.75rem);
  font-weight: 800;
}
.plan-card__price sup { font-size: 1rem; top: -0.9em; }
.plan-card__price small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-on-white-muted);
}
.plan-card--featured .plan-card__price small { color: var(--text-on-navy-muted); }

.plan-card__features { display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
}
.plan-card__features svg { flex-shrink: 0; margin-top: 3px; color: var(--cherry); }
.plan-card--featured .plan-card__features svg { color: var(--ice); }

.price-note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-on-white-muted);
  border: 1px dashed rgba(22,35,63,0.3);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  display: flex;
  gap: 0.6rem;
}

.addon-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem 2rem; }
@media (max-width: 620px) { .addon-list { grid-template-columns: 1fr; } }
.addon-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid rgba(22,35,63,0.1);
}
.addon-list b { font-family: var(--font-display); color: var(--cherry); white-space: nowrap; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 44rem;
}
.faq-item {
  padding-block: 1.5rem;
  border-bottom: 1px solid rgba(22,35,63,0.1);
}
.faq-item:first-child { padding-top: 0; }
.faq-item h3 {
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-on-white);
}
.faq-item p {
  margin-top: 0.55rem;
  color: var(--text-on-white-muted);
  font-size: 0.97rem;
}

/* ==========================================================================
   Process steps
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  counter-reset: step;
}
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { counter-increment: step; }
.step__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--cherry);
  line-height: 1;
}
.step h3 { margin-top: 0.75rem; }
.step p { margin-top: 0.5rem; font-size: 0.95rem; }

/* ==========================================================================
   Placeholder blocks (testimonials / gallery / booking)
   ========================================================================== */
.placeholder-block {
  border: 1.5px dashed rgba(22,35,63,0.28);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.section--navy .placeholder-block {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.03);
}
.placeholder-block__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cherry-tint);
  color: var(--cherry);
  display: flex;
  align-items: center;
  justify-content: center;
}
.section--navy .placeholder-block__icon { background: rgba(196,18,48,0.18); color: #ff8a9c; }
.placeholder-block h3 { max-width: 28rem; }
.placeholder-block p { max-width: 34rem; color: var(--text-on-white-muted); }
.section--navy .placeholder-block p { color: var(--text-on-navy-muted); }
.placeholder-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cherry-600);
  background: var(--cherry-tint);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  filter: grayscale(1);
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 780px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid div {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--ice), #b9cde3);
}

.booking-embed {
  border: 1.5px dashed rgba(22,35,63,0.28);
  border-radius: var(--radius-md);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2.5rem;
  background: var(--ice-100);
}

/* ==========================================================================
   404 / error page
   ========================================================================== */
.error-hero {
  background: var(--navy);
  color: var(--white);
  min-height: 62vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.error-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(196,18,48,0.28), transparent 70%);
  pointer-events: none;
}
.error-hero .container { position: relative; z-index: 1; max-width: 40rem; margin-inline: auto; }
.error-code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(6rem, 18vw, 11rem);
  line-height: 0.85;
  color: var(--cherry);
}
.error-hero h1 { margin-top: 0.5rem; }
.error-hero p.lede { margin-top: 1.1rem; color: var(--text-on-navy-muted); margin-inline: auto; }
.error-hero .btn-row { margin-top: 2.25rem; justify-content: center; }
.error-links {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
}
.error-links a {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  color: var(--text-on-navy-muted);
}
.error-links a:hover, .error-links a:focus-visible { color: var(--white); }

/* ==========================================================================
   CTA strip
   ========================================================================== */
.cta-strip {
  background: var(--cherry);
  color: var(--white);
}
.cta-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.cta-strip h2 { font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem); }
.cta-strip .btn--outline-light:hover { background: var(--white); color: var(--cherry); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(22,35,63,0.1);
}
.contact-card:last-child { border-bottom: none; }
.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cherry-tint);
  color: var(--cherry);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card h3 { font-size: 1.05rem; text-transform: none; font-family: var(--font-body); font-weight: 700; }
.contact-card a, .contact-card p { color: var(--text-on-white-muted); font-size: 0.98rem; }
.contact-card a:hover { color: var(--cherry); }

.map-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(22,35,63,0.12);
  aspect-ratio: 4/3;
  background: var(--ice-100);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-frame .placeholder-tag { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 1; }

.social-row { display: flex; gap: 0.85rem; margin-top: 1.5rem; }
.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(22,35,63,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.social-btn:hover, .social-btn:focus-visible {
  background: var(--cherry);
  border-color: var(--cherry);
  color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-900);
  color: var(--text-on-navy-muted);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 22rem; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { color: var(--text-on-navy-muted); font-size: 0.92rem; }
.footer-cols { display: flex; gap: clamp(2rem, 5vw, 4.5rem); }
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.92rem; color: var(--text-on-navy-muted); }
.footer-col a:hover { color: var(--cherry); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.85rem;
}
.footer-bottom .social-row { margin-top: 0; }
.footer-bottom .social-btn {
  width: 40px; height: 40px;
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.footer-credit a { color: var(--ice); }
.footer-credit a:hover { color: var(--white); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Utilities
   ========================================================================== */
.visually-hidden {
  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: 1rem; top: -60px;
  background: var(--cherry);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 0.2s var(--ease);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.skip-link:focus { top: 1rem; }
