/* ==========================================================================
   Ruby's Alterations & Tailoring, Stylesheet
   Palette: ivory/white base, deep burgundy + rose gold accents
   Type: Playfair Display (serif, headings) / Jost (sans, body)
   ========================================================================== */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* ---- Design tokens ---- */
:root {
  --ivory: #FBF6EF;
  --white: #FFFFFF;
  --burgundy: #6D0E23;
  --burgundy-dark: #4A0818;
  --burgundy-light: #8C1A34;
  --rose-gold: #B76E79;
  --rose-gold-light: #F1DCDD;
  --charcoal: #2B2420;
  --gray: #6E655D;
  --gray-light: #9A9088;
  --border: #E7DFD4;
  --cream: #FFFDF9;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --radius: 4px;
  --shadow-sm: 0 2px 12px rgba(43, 36, 32, 0.06);
  --shadow-md: 0 8px 30px rgba(43, 36, 32, 0.1);
  --transition: 0.25s ease;
}

/* ---- Base ---- */
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--burgundy-dark);
  letter-spacing: 0.2px;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
p { color: var(--gray); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.75rem;
  color: var(--rose-gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-head p { margin-top: 0.9rem; font-size: 1.05rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }
@media (max-width: 768px) { section { padding: 3.2rem 0; } }

.bg-ivory { background: var(--ivory); }
.bg-burgundy { background: var(--burgundy); color: var(--white); }
.bg-burgundy h1, .bg-burgundy h2, .bg-burgundy h3 { color: var(--white); }
.bg-burgundy p { color: rgba(255,255,255,0.85); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border: 1px solid var(--burgundy);
}
.btn-primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
}
.btn-outline:hover { background: var(--burgundy); color: var(--white); }
.btn-rose {
  background: var(--rose-gold);
  color: var(--white);
  border: 1px solid var(--rose-gold);
}
.btn-rose:hover { background: #a25a66; border-color: #a25a66; }
.btn-white {
  background: var(--white);
  color: var(--burgundy);
  border: 1px solid var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1rem; }

/* ---- Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
  display: flex;
  align-items: center;
  flex-direction: column;
  line-height: 1.1;
}
.logo img { height: 52px; width: 52px; display: block; }
.logo span {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links a.active { color: var(--burgundy); }
.nav-cta { display: flex; align-items: center; gap: 1.2rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--burgundy-dark);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--burgundy-dark);
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { display: block; padding: 0.75rem 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links { z-index: 90; box-shadow: var(--shadow-md); }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%);
  padding: 3.5rem 0 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.hero-content { max-width: 700px; }
.hero-content h1 { margin-bottom: 1.1rem; }
.hero-content .lede { font-size: 1.15rem; margin-bottom: 1.8rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.8rem; }
.hero-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--gray); font-weight: 500; }
.hero-badge svg { flex-shrink: 0; color: var(--rose-gold); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---- Booking widget ---- */
.booking-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
}
.booking-widget h2 {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}
.booking-widget .sub { font-size: 0.88rem; margin-bottom: 1.3rem; }
.form-row { margin-bottom: 1rem; }
.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}
.optional-tag { font-weight: 400; color: var(--gray-light); text-transform: none; letter-spacing: 0; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--rose-gold);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.file-upload {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  background: var(--cream);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--gray);
  transition: var(--transition);
}
.file-upload:hover { border-color: var(--rose-gold); }
.form-note { font-size: 0.75rem; color: var(--gray-light); margin-top: 0.6rem; text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form-success.show { display: block; }
.form-success svg { color: var(--rose-gold); margin: 0 auto 1rem; }
.form-success .call-now-btn { margin-top: 1.1rem; animation: call-btn-pulse 1.8s ease-in-out 3; }
.form-success .form-note { margin-top: 0.9rem; margin-bottom: 0; }
@keyframes call-btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(140, 26, 52, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(140, 26, 52, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .form-success .call-now-btn { animation: none; }
}

@media (max-width: 480px) {
  .form-two-col { grid-template-columns: 1fr; }
}

/* ---- Trust bar ---- */
.trust-bar {
  background: var(--burgundy);
  color: var(--white);
  padding: 1.1rem 0;
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.trust-bar span:not(:last-child)::after {
  content: "•";
  margin: 0 1.1rem;
  color: var(--rose-gold);
}

/* ---- Services grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.2rem 1.8rem;
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--rose-gold-light); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rose-gold-light);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { font-size: 0.93rem; margin-bottom: 1rem; }
.service-card a { font-size: 0.85rem; font-weight: 600; color: var(--burgundy); }
.service-card a:hover { color: var(--rose-gold); }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ---- Why Ruby ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-item { text-align: center; }
.why-item .num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--rose-gold);
  margin-bottom: 0.5rem;
}
.why-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.why-item p { font-size: 0.9rem; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; } }

/* ---- Reviews ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.review-card {
  position: relative;
  background: var(--white);
  border-radius: 8px;
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.stars { color: var(--rose-gold); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 0.9rem; }
.review-card p.quote { font-size: 0.94rem; font-style: italic; color: var(--charcoal); margin-bottom: 1rem; padding-right: 1.6rem; }
.review-author { font-size: 0.85rem; font-weight: 600; color: var(--gray); }
.review-badge { position: absolute; top: 1.1rem; right: 1.1rem; }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

.reviews-grid.reviews-grid-dense { grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
@media (max-width: 1000px) { .reviews-grid.reviews-grid-dense { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid.reviews-grid-dense { grid-template-columns: 1fr; } }
.reviews-grid-dense .review-card { padding: 1.5rem; }
.reviews-grid-dense .review-card p.quote { font-size: 0.88rem; margin-bottom: 0.8rem; }

/* ---- Review marquee ---- */
.review-marquee {
  padding: 2.2rem 0;
  background: var(--ivory);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: flex-start;
  width: max-content;
}
.marquee-group { display: flex; align-items: flex-start; gap: 1.25rem; padding-right: 1.25rem; }
.marquee-card {
  position: relative;
  flex: 0 0 320px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.marquee-card .stars { margin-bottom: 0.6rem; font-size: 0.95rem; }
.marquee-card p { font-size: 0.88rem; font-style: italic; color: var(--charcoal); margin-bottom: 0.7rem; line-height: 1.5; padding-right: 1.4rem; }
.marquee-card span { font-size: 0.78rem; font-weight: 600; color: var(--gray); }
.marquee-card .review-badge { top: 1rem; right: 1.1rem; }

/* ---- Verified Google review badge ---- */
.google-g { flex-shrink: 0; display: block; }

@media (max-width: 600px) {
  .marquee-card { flex-basis: 260px; }
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-grid.gallery-page { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  background: var(--rose-gold-light);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(43,36,32,0.75), transparent);
  color: var(--white);
  font-size: 0.78rem;
  padding: 1.5rem 0.8rem 0.7rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }

@media (max-width: 900px) { .gallery-grid, .gallery-grid.gallery-page { grid-template-columns: repeat(2, 1fr); } }

/* ---- CTA band ---- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 0.9rem; }
.cta-band p { max-width: 550px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ---- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.75); padding: 4rem 0 1.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-logo { font-family: var(--font-serif); font-size: 1.4rem; color: var(--white); margin-bottom: 0.8rem; }
.site-footer p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1.1rem; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col a:hover { color: var(--rose-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- Page hero (interior pages) ---- */
.page-hero {
  background: var(--ivory);
  padding: 3.5rem 0 3rem;
  text-align: center;
}
.breadcrumb { font-size: 0.8rem; color: var(--gray-light); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--burgundy); }
.page-hero h1 { max-width: 750px; margin: 0 auto 1rem; }
.page-hero .lede { max-width: 650px; margin: 0 auto; font-size: 1.05rem; }

/* ---- Two column content blocks ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { border-radius: 8px; overflow: hidden; aspect-ratio: 4/5; background: var(--ivory); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy ul.check-list { margin-top: 1.3rem; }
.split-copy ul.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}
.split-copy ul.check-list li svg { flex-shrink: 0; color: var(--rose-gold); margin-top: 3px; }

@media (max-width: 900px) {
  .split, .split.reverse .split-media { grid-template-columns: 1fr; order: unset; }
  .split { gap: 2rem; }
}

/* ---- Service detail cards (services.html) ---- */
.service-detail {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.service-detail-head { display: flex; align-items: flex-start; gap: 1.3rem; margin-bottom: 1.2rem; }
.service-detail h2 { margin-bottom: 0; }
.service-detail .includes { margin: 1.3rem 0 1.5rem; }
.service-detail .includes li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.93rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border);
}
.service-detail .includes li svg { color: var(--rose-gold); flex-shrink: 0; margin-top: 3px; }
.service-anchor { scroll-margin-top: 90px; }

/* ---- FAQ accordion ---- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--burgundy-dark);
  font-weight: 600;
}
.faq-question .icon { font-size: 1.4rem; color: var(--rose-gold); transition: var(--transition); flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p { padding-bottom: 1.4rem; font-size: 0.96rem; max-width: 65ch; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ---- Fear/reassurance banner (bridal page) ---- */
.reassure-banner {
  background: var(--rose-gold-light);
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
}
.reassure-banner h2 { margin-bottom: 0.8rem; }
.reassure-banner p { max-width: 650px; margin: 0 auto; color: var(--burgundy-dark); }

/* ---- Process steps ---- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; counter-reset: step; }
.step-item { text-align: center; position: relative; }
.step-item::before {
  counter-increment: step;
  content: counter(step);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-item h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.step-item p { font-size: 0.87rem; }

@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
}
.contact-info-card {
  background: var(--ivory);
  border-radius: 10px;
  padding: 2.2rem;
  margin-bottom: 1.3rem;
}
.contact-info-card h3 { font-size: 1.05rem; margin-bottom: 0.9rem; }
.contact-info-card .row { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.8rem; font-size: 0.92rem; }
.contact-info-card .row svg { color: var(--rose-gold); flex-shrink: 0; margin-top: 2px; }
.hours-table { width: 100%; font-size: 0.9rem; }
.hours-table td { padding: 0.35rem 0; }
.hours-table td:last-child { text-align: right; color: var(--charcoal); font-weight: 500; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.tel-link { color: inherit; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--rose-gold-light);
  color: var(--burgundy-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--burgundy);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  z-index: 200;
}
.skip-link:focus { left: 0; }
