/* Tower Hamlets Roofing Co — V3 design + hero image slideshow.
   Red / black / white, Oswald display type, topbar, dropdown nav,
   photo service cards. Inspired by classic UK trade-site styling. */

/* ---------- Hero photo (single background image) ---------- */
.hero-photo { position: relative; overflow: hidden; }
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg { z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  z-index: 1;
  background: linear-gradient(105deg, rgba(20,22,26,0.92) 0%, rgba(20,22,26,0.72) 48%, rgba(20,22,26,0.42) 100%);
}
.hero-photo .hero-grid { position: relative; z-index: 2; }


:root {
  --red: #d7282f;
  --red-dark: #b11e24;
  --ink: #15181b;
  --charcoal: #1d2125;
  --charcoal-2: #24292e;
  --bg: #f6f6f7;
  --paper: #ffffff;
  --line: #e4e6e8;
  --muted: #5d656d;
  --radius: 6px;
  --shadow: 0 2px 8px rgba(21, 24, 27, 0.09);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Oswald", "Arial Narrow", Impact, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--red-dark); }
a:hover { color: var(--red); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.01em; }

.kicker {
  display: block;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 13px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--charcoal-2); color: #fff; }

.btn-block { display: block; width: 100%; }

/* ---------- Topbar ---------- */

.topbar {
  background: var(--red);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}
.topbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}
.topbar-link:hover { color: #ffd9da; }
.topbar-link svg { width: 15px; height: 15px; flex-shrink: 0; }
.topbar-right { display: none; }
@media (min-width: 900px) { .topbar-right { display: inline; } }
@media (max-width: 560px) { .topbar-email { display: none; } }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 4px rgba(21, 24, 27, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.12;
  flex-shrink: 0;
}
.logo svg { width: 42px; height: 42px; flex-shrink: 0; }
.logo .logo-sub {
  display: block;
  font-family: var(--font);
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.main-nav { display: none; }

.header-call {
  display: none;
  text-decoration: none;
  text-align: right;
  line-height: 1.2;
}
.header-call .call-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.header-call .call-number {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
}
.header-call:hover .call-number { color: var(--red-dark); }

.nav-toggle {
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
}
.nav-toggle svg { width: 28px; height: 28px; stroke: var(--ink); }

@media (max-width: 480px) {
  .logo { font-size: 1.02rem; gap: 8px; }
  .logo svg { width: 34px; height: 34px; }
  .logo .logo-sub { font-size: 0.56rem; }
}

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .header-call { display: block; }
  .main-nav { display: block; }
  .main-nav > ul {
    display: flex;
    gap: 4px;
    list-style: none;
  }
  .main-nav > ul > li { position: relative; }
  .main-nav > ul > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 10px 8px;
    white-space: nowrap;
  }
  .dropdown a { white-space: nowrap; }
  .main-nav > ul > li > a:hover,
  .main-nav > ul > li > a[aria-current="page"] { color: var(--red); }
  .main-nav .caret { width: 13px; height: 13px; }

  /* Hover dropdown */
  .has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 3px solid var(--red);
    box-shadow: 0 10px 28px rgba(21, 24, 27, 0.16);
    border-radius: 0 0 var(--radius) var(--radius);
    list-style: none;
    min-width: 520px;
    padding: 12px;
    columns: 2;
    column-gap: 4px;
    z-index: 60;
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown { display: block; }
  .dropdown li { break-inside: avoid; }
  .dropdown a {
    display: block;
    padding: 9px 12px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
  }
  .dropdown a:hover { background: #fbeaea; color: var(--red-dark); }
  .dropdown .dropdown-all a {
    color: var(--red-dark);
    font-weight: 800;
    border-top: 1px solid var(--line);
    border-radius: 0;
    margin-top: 6px;
    padding-top: 12px;
  }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; padding: 8px 20px 16px; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav li:last-child { border-bottom: 0; }
.mobile-nav a {
  display: block;
  padding: 13px 4px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}
.mobile-nav .mobile-sub a { padding-left: 22px; font-weight: 500; color: var(--muted); }

/* ---------- Hero ---------- */

.hero {
  /* Photo placeholder: swap the gradient for your hero photo —
     background: linear-gradient(rgba(21,24,27,.55), rgba(21,24,27,.65)), url('/img/hero.jpg') center/cover; */
  background: linear-gradient(160deg, #2a3036 0%, #1a1d21 100%);
  color: #fff;
  padding: 56px 0 64px;
}

.hero-grid { display: grid; gap: 36px; }

.hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.6rem);
  line-height: 1.08;
  text-transform: uppercase;
  font-weight: 600;
}
.hero h1 .accent { color: var(--red); -webkit-text-stroke: 0; }
.hero h1 .accent-light { color: #ff6b70; }

.hero .hero-sub {
  margin-top: 16px;
  font-size: 1.15rem;
  color: #d4d8db;
  max-width: 36em;
}

.hero-ticks {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.hero-ticks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
}
.hero-ticks svg { width: 20px; height: 20px; flex-shrink: 0; }

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-phone-note { margin-top: 14px; font-size: 0.95rem; color: #b9bfc5; }

/* Quote form card */
.quote-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
  border-top: 4px solid var(--red);
}
.quote-card h2 {
  font-size: 1.45rem;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.quote-card .quote-card-sub { font-size: 0.95rem; color: var(--muted); margin-bottom: 16px; }

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
    gap: 56px;
  }
}

/* ---------- Forms ---------- */

.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 5px;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 11px 12px;
  border: 1.5px solid #d4d7da;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
  border-color: var(--red);
}
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 10px; }

/* Two fields side by side (e.g. phone + email) */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row .form-field { margin-bottom: 0; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Sections ---------- */

.section { padding: 60px 0; }
.section-alt { background: var(--bg); }

.section-head { max-width: 48em; margin-bottom: 34px; }
.section-head h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.4rem);
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.15;
}
.section-head p { margin-top: 10px; color: var(--muted); }

.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }

/* Trust bar */
.trustbar {
  background: var(--charcoal);
  color: #fff;
  padding: 14px 0;
}
.trustbar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
}
.trustbar li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  font-weight: 600;
}
.trustbar svg { width: 17px; height: 17px; }

/* Cards grid */
.cards { display: grid; gap: 22px; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.section-alt .card { border-color: transparent; box-shadow: var(--shadow); }
.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex-grow: 1; }

/* Photo slot at the top of a service card.
   To add your photo, replace the div with:
   <img class="card-photo" src="/img/services/<name>.jpg" alt="..." loading="lazy"> */
.card-photo {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  background:
    repeating-linear-gradient(45deg, #e9ebed 0 18px, #f2f3f4 18px 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa1a8;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card .card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: #fbeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.card .card-icon svg { width: 26px; height: 26px; }

.card h3 { font-size: 1.22rem; color: var(--ink); margin-bottom: 8px; }
.card p { font-size: 0.97rem; color: var(--muted); flex-grow: 1; }
.card .card-link {
  margin-top: 14px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
}

/* Expanded service detail blocks (two-column prose under the cards) */
.svc-detail { display: grid; gap: 8px 48px; }
@media (min-width: 860px) { .svc-detail { grid-template-columns: 1fr 1fr; } }
.svc-detail-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.svc-detail-item h3 { font-size: 1.25rem; margin-bottom: 8px; }
.svc-detail-item p { color: var(--muted); font-size: 0.99rem; }
.svc-detail-item .svc-more {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
}

/* Steps */
.steps { display: grid; gap: 22px; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 6px; }
.step p { font-size: 0.96rem; color: var(--muted); }

/* Why us list */
.why-grid { display: grid; gap: 18px; }
@media (min-width: 800px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-item svg { width: 24px; height: 24px; flex-shrink: 0; margin-top: 3px; }
.why-item h3 { font-size: 1.12rem; color: var(--ink); margin-bottom: 4px; }
.why-item p { font-size: 0.96rem; color: var(--muted); }

/* Gallery placeholders */
.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: repeating-linear-gradient(45deg, #e9ebed 0 18px, #f2f3f4 18px 36px);
  display: flex;
  align-items: flex-end;
}
.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-tile span {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 8px 12px;
  background: rgba(21, 24, 27, 0.78);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Area links */
.area-links {
  list-style: none;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .area-links { grid-template-columns: repeat(4, 1fr); } }
.area-links a {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 11px 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--ink);
}
.area-links a:hover { border-color: var(--red); color: var(--red-dark); }

/* FAQ */
.faq-list { max-width: 50em; }
.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 0 20px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  padding: 16px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--red);
}
.faq-list details[open] summary::after { content: "\2013"; }
.faq-list details p { padding: 0 0 16px; color: var(--muted); }

/* CTA band */
.cta-band {
  background: linear-gradient(160deg, #c11f26 0%, #9e1a1f 100%);
  color: #fff;
  padding: 54px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.4rem);
  text-transform: uppercase;
}
.cta-band p { margin-top: 10px; color: #ffd9da; max-width: 40em; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .btn-primary { background: #fff; color: var(--red-dark); }
.cta-band .btn-primary:hover { background: #ffe4e5; color: var(--red-dark); }

/* Map section */
.map-section .map-grid { display: grid; gap: 28px; }
@media (min-width: 900px) { .map-section .map-grid { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.map-frame {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.map-info { background: var(--bg); border-radius: var(--radius); padding: 26px; }
.map-info h3 { font-size: 1.25rem; margin-bottom: 10px; }
.map-info ul { list-style: none; }
.map-info li { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 0.98rem; }
.map-info li:last-child { border-bottom: 0; }
.map-info strong { font-size: 1.15rem; }

/* ---------- Inner pages ---------- */

.page-hero {
  background: linear-gradient(160deg, #2a3036 0%, #1a1d21 100%);
  color: #fff;
  padding: 44px 0 48px;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  line-height: 1.1;
  text-transform: uppercase;
}
.page-hero .hero-sub { margin-top: 12px; font-size: 1.1rem; color: #d4d8db; max-width: 42em; }
.page-hero .hero-actions { margin-top: 24px; }

.breadcrumbs { font-size: 0.85rem; margin-bottom: 14px; color: #aab1b7; }
.breadcrumbs a { color: #d4d8db; text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }

/* Two-column content layout */
.content-grid { display: grid; gap: 40px; }
@media (min-width: 960px) {
  .content-grid { grid-template-columns: 1fr 360px; align-items: start; }
  .content-aside { position: sticky; top: 110px; }
}

.prose h2 { font-size: 1.55rem; color: var(--ink); margin: 34px 0 12px; line-height: 1.2; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.2rem; color: var(--ink); margin: 26px 0 8px; }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 7px; }
.prose li::marker { color: var(--red); }
.prose strong { color: var(--ink); }

.content-aside .quote-card { border: 1px solid var(--line); border-top: 4px solid var(--red); }

.aside-box {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.aside-box h2, .aside-box h3 { font-size: 1.22rem; color: var(--ink); margin-bottom: 6px; }
.aside-box .quote-card-sub { font-size: 0.93rem; color: var(--muted); margin-bottom: 14px; }
.aside-box ul { list-style: none; }
.aside-box ul li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.aside-box ul li:last-child { border-bottom: 0; }
.aside-box ul a { text-decoration: none; font-weight: 700; font-size: 0.97rem; }

.callout {
  border-left: 4px solid var(--red);
  background: #fdf0f0;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 18px;
  margin: 20px 0;
  font-size: 0.98rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--charcoal);
  color: #b6bcc2;
  padding: 48px 0 110px; /* bottom padding clears the mobile call bar */
  font-size: 0.95rem;
  border-top: 4px solid var(--red);
}
.footer-grid { display: grid; gap: 32px; }
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .site-footer { padding-bottom: 48px; }
}
.site-footer h2 {
  font-family: var(--font);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #b6bcc2; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand .logo .logo-sub { color: #8b9299; }
.footer-brand p { max-width: 26em; }
.footer-contact strong { color: #fff; font-size: 1.15rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #8b9299;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
}

/* ---------- Mobile sticky call bar ---------- */

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  gap: 1px;
  background: var(--charcoal);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 15px 8px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
}
.mobile-cta .cta-call { background: var(--red); }
.mobile-cta .cta-quote { background: var(--ink); }
@media (min-width: 800px) { .mobile-cta { display: none; } }

/* ---------- Utility ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
