/* Glades Fire Reserve BBQ — palette pulled from the team logo:
   charcoal black, ember orange, swamp green, aged parchment gold. */

:root {
  --char: #0c0a08;
  --char-soft: #171310;
  --ember: #e8722c;
  --ember-hot: #f5993f;
  --flame: #c9401e;
  --swamp: #6d7c3f;
  --parchment: #e8d5a8;
  --smoke: #b3a894;
  --line: #2b241d;
  --font-display: "Alfa Slab One", "Arial Black", serif;
  --font-kicker: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* The reset above strips the UA rule that makes [hidden] stick. */
[hidden] { display: none !important; }

/* Icon sprite: present in the DOM only so <use> can reference it. */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  background: var(--char);
  color: var(--parchment);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height: auto keeps the width/height attributes from pinning a hard height,
   which would otherwise cancel out any aspect-ratio set below. */
img { max-width: 100%; height: auto; display: block; }
/* Let the <picture> wrappers drop out of layout so the img rules below still
   size against the real container. Chrome gives <source> a display of block, so
   it has to be hidden explicitly or it becomes a stray grid/flex item. */
picture { display: contents; }
picture source { display: none; }

h1, h2, h3 { line-height: 1.15; }
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--parchment);
  letter-spacing: 0.01em;
}

a:focus-visible { outline: 3px solid var(--ember-hot); outline-offset: 3px; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-kicker);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.7rem;
  border-radius: 4px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 0.95rem 2.2rem; font-size: 1.15rem; }
.btn-fire {
  background: linear-gradient(180deg, var(--ember-hot), var(--flame));
  color: #1a0d05;
}
.btn-fire:hover { background: linear-gradient(180deg, #ffb257, var(--ember)); }
.btn-smoke {
  color: var(--parchment);
  box-shadow: inset 0 0 0 2px var(--smoke);
}
.btn-smoke:hover { box-shadow: inset 0 0 0 2px var(--ember-hot); color: var(--ember-hot); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(12, 10, 8, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-logo { border-radius: 50%; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--parchment);
  letter-spacing: 0.02em;
}
.brand-name em { font-style: normal; color: var(--ember); }
.site-nav { display: flex; gap: 1.5rem; }
.site-nav a {
  font-family: var(--font-kicker);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--smoke);
}
.site-nav a:hover { color: var(--ember-hot); }

/* Hamburger toggle — hidden on desktop, shown on mobile. */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--parchment);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s 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); }
.nav-toggle:focus-visible { outline: 3px solid var(--ember-hot); outline-offset: 2px; }

@media (max-width: 760px) {
  .site-header { flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 0.5rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 0.9rem 0.25rem;
    border-top: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .brand-name { font-size: 0.9rem; }
}
@media (max-width: 380px) {
  .brand-name { font-size: 0.78rem; }
  .brand-logo { width: 36px; height: 36px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(760px, 90vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 1.25rem clamp(2.5rem, 6vh, 4.5rem);
  overflow: hidden;
}
/* Full-bleed Everglades scene as the hero backdrop. */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-scene-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
/* Scrim: lifts the bright sky slightly, darkens the base for legible
   text/CTAs, then melts the scene into the charcoal page at the bottom. */
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 10, 8, 0.10) 0%,
    rgba(12, 10, 8, 0) 28%,
    rgba(12, 10, 8, 0.45) 66%,
    rgba(12, 10, 8, 0.85) 88%,
    var(--char) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Transparent-cut crest logo. Drop-shadow keeps it legible over the bright sky. */
.hero-logo {
  width: min(300px, 62vw);
  height: auto;
  filter:
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.9))
    drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
}
.hero-copy {
  margin-top: 0.6rem;
  max-width: 34em;
  color: #f2e6cd;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}
.hero-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
}
@media (max-width: 600px) {
  .hero { min-height: min(560px, 82vh); }
  /* Bias the crop toward the cabin + smoker so the portrait view stays interesting. */
  .hero-scene-img { object-position: 60% 42%; }
  .hero-content { width: 100%; max-width: 100%; }
  .hero-logo { width: min(230px, 62vw); }
  .hero-copy { font-size: 1rem; max-width: 100%; }
  /* Stack full-width tap targets so nothing overflows on small screens. */
  .hero-actions { flex-direction: column; width: 100%; gap: 0.7rem; }
  .hero-actions .btn { width: 100%; }
}

/* ---------- Marquee strip ---------- */
.strip {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.8rem 1rem;
  background: var(--flame);
  color: #ffe9c9;
  font-family: var(--font-kicker);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .strip span:nth-child(n+7) { display: none; }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 5vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
}
.section-dark {
  max-width: none;
  background: var(--char-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-dark > * { max-width: 1020px; margin-left: auto; margin-right: auto; }
/* The head spans the full column so it lines up with the grids below it; the
   640px measure lives on its children instead. */
.section-head { margin-bottom: 2.4rem; }
.section-head > * { max-width: 640px; }
.kicker {
  font-family: var(--font-kicker);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.7rem;
}
.section-lede { color: var(--smoke); margin-top: 0.8rem; }

/* ---------- Team ---------- */
.team-grid { display: grid; gap: 2.2rem; }
.team-lede { font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 42em; color: var(--parchment); }
.team-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.fact {
  border: 1px solid var(--line);
  border-top: 3px solid var(--ember);
  border-radius: 6px;
  padding: 1.4rem 1.3rem;
  background: var(--char-soft);
}
.fact h3 {
  font-family: var(--font-kicker);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember-hot);
  margin-bottom: 0.5rem;
}
.fact p { color: var(--smoke); font-size: 0.95rem; }
@media (max-width: 760px) {
  .team-facts { grid-template-columns: 1fr; }
}

/* ---------- Gallery rail ----------
   A horizontal scroller instead of a grid: it holds twenty photos without
   running the page long, and tiles parked off to the side stay unloaded until
   they're scrolled into view. */
.gallery-rail { position: relative; }
.gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  /* Leaves room for the scrollbar so it never sits on top of a caption. */
  padding-bottom: 0.9rem;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.gallery::-webkit-scrollbar { height: 8px; }
.gallery::-webkit-scrollbar-track { background: transparent; }
.gallery::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}
.gallery::-webkit-scrollbar-thumb:hover { background: #3f342a; }
.gallery:focus-visible { outline: 3px solid var(--ember-hot); outline-offset: 4px; }
/* Fades hint at more photos, and get switched off once you reach an end. */
.gallery-rail::before,
.gallery-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.9rem;
  width: 4rem;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.gallery-rail::before {
  left: 0;
  background: linear-gradient(to right, var(--char-soft), transparent);
}
.gallery-rail::after {
  right: 0;
  background: linear-gradient(to left, var(--char-soft), transparent);
}
.gallery-rail.at-start::before,
.gallery-rail.at-end::after { opacity: 0; }

.rail-btn {
  position: absolute;
  top: calc(50% - 0.45rem);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0 0 0.2rem;
  transform: translateY(-50%);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--parchment);
  background: rgba(12, 10, 8, 0.82);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}
.rail-btn:hover { background: var(--flame); color: #ffe9c9; }
.rail-btn:focus-visible { outline: 3px solid var(--ember-hot); outline-offset: 2px; }
.rail-btn[disabled] { opacity: 0; pointer-events: none; }
.rail-prev { left: -0.6rem; }
.rail-next { right: -0.6rem; }

.tile {
  position: relative;
  flex: 0 0 clamp(250px, 32%, 330px);
  scroll-snap-align: start;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--char);
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* The photos come from a dozen different cooks — flash at night, red smoker
     glow, harsh Florida noon. A shared grade pulls them into one set. */
  filter: saturate(1.06) contrast(1.05) brightness(0.97);
  transition: transform 0.5s ease;
}
.tile:hover img { transform: scale(1.05); }
/* Warm vignette over every tile so the grid reads as team photography rather
   than a folder of phone snapshots. */
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(125% 95% at 50% 42%, rgba(12, 10, 8, 0) 52%, rgba(12, 10, 8, 0.38) 100%),
    linear-gradient(180deg, rgba(232, 114, 44, 0.06), rgba(12, 10, 8, 0.12));
}
/* Portrait phone shots lose about 44% of their height to the 4:3 tile, so each
   one gets a crop focus that keeps the face or the food in frame. */
.tile img.crop-top { object-position: center 14%; }
.tile img.crop-upper { object-position: center 32%; }
.tile img.crop-mid { object-position: center 45%; }
.tile img.crop-low { object-position: center 78%; }
.tile figcaption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 0.9rem 0.7rem;
  font-family: var(--font-kicker);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--parchment);
  background: linear-gradient(to top, rgba(12, 10, 8, 0.9), transparent);
}
@media (max-width: 760px) {
  /* Touch devices swipe the rail, so the arrows just get in the way. */
  .rail-btn { display: none; }
  .gallery-rail::before,
  .gallery-rail::after { width: 2rem; }
}

/* ---------- Photos outside the gallery ---------- */
.photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  filter: saturate(1.06) contrast(1.05) brightness(0.97);
}

/* ---------- Catering ---------- */
.block-title {
  font-family: var(--font-kicker);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  padding-bottom: 0.6rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.catering-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3.2rem;
}
.catering-intro .section-head { margin-bottom: 0; }

.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3.2rem;
}
.package {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--char-soft), var(--char));
}
.package-featured { border-top-color: var(--ember); }
/* Pinned to the card edge rather than stacked in the flow, so the three
   package names stay on the same line across the row. */
.package-flag {
  position: absolute;
  top: -0.8rem;
  right: 1.2rem;
  font-family: var(--font-kicker);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a0d05;
  background: var(--ember);
  border-radius: 3px;
  padding: 0.1rem 0.55rem;
}
.package h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--parchment);
  margin-bottom: 1rem;
}
.package-list {
  list-style: none;
  margin-bottom: 1.2rem;
}
.package-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.97rem;
  margin-bottom: 0.35rem;
}
.package-list li::before {
  content: "\2605";
  position: absolute;
  left: 0;
  color: var(--ember);
  font-size: 0.7rem;
  top: 0.28rem;
}
.package-note { color: var(--smoke); font-size: 0.85rem; }
.package-for {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--smoke);
  font-size: 0.9rem;
  font-style: italic;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.2rem;
}
.menu-list { display: grid; gap: 1.1rem; }
.menu-item dt {
  font-family: var(--font-kicker);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ember-hot);
}
.menu-item dd { color: var(--smoke); font-size: 0.95rem; }

.addons {
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--char-soft);
}
.addon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin-bottom: 1.3rem;
}
.addon-list li {
  font-family: var(--font-kicker);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--char);
}
.addons-note { color: var(--smoke); font-size: 0.95rem; margin-bottom: 1.5rem; max-width: 46em; }

@media (max-width: 900px) {
  .packages { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .catering-intro,
  .menu-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Rubs & sauces ---------- */
.product-band {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: 2.5rem;
}
.product-copy p { color: var(--smoke); margin: 0.9rem 0 1.6rem; }
@media (max-width: 760px) {
  .product-band { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* ---------- Live forecast ---------- */
.wx { display: grid; gap: 2.2rem; }
.wx-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2.5rem;
}
.wx-head .section-lede { max-width: 34em; }

.wx-now {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 1.1rem;
  padding: 1.4rem 1.7rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--ember);
  border-radius: 6px;
  background: var(--char-soft);
}
/* Paint has to live here, not on the sprite: presentation attributes on the
   sprite root don't reach content pulled in through <use>. */
.wx-icon {
  width: 34px;
  height: 34px;
  color: var(--ember-hot);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wx-icon-lg { width: 52px; height: 52px; }
.wx-temp {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--parchment);
}
.wx-meta { display: grid; gap: 0.15rem; }
.wx-cond {
  font-family: var(--font-kicker);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember-hot);
}
.wx-detail { color: var(--smoke); font-size: 0.9rem; }

.wx-days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
}
.wx-day {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  padding: 1.3rem 0.9rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--char-soft), var(--char));
}
.wx-day-name {
  font-family: var(--font-kicker);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--parchment);
}
.wx-day-temp { font-size: 1.05rem; color: var(--smoke); }
.wx-day-temp strong { font-size: 1.35rem; color: var(--parchment); font-weight: 600; }
.wx-day-cond { font-size: 0.88rem; color: var(--smoke); }
.wx-day-rain {
  font-family: var(--font-kicker);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--ember);
}
.wx-note { font-size: 0.82rem; color: #7d7260; }
.wx-note a { color: var(--smoke); }

@media (max-width: 860px) {
  .wx-top { grid-template-columns: 1fr; gap: 1.6rem; }
  .wx-now { justify-content: start; }
  .wx-days { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .wx-now {
    grid-template-columns: auto auto;
    row-gap: 0.8rem;
  }
  .wx-meta { grid-column: 1 / -1; }
}

/* ---------- Contact ---------- */
.contact { text-align: center; }
.contact .section-lede { margin-bottom: 1.8rem; max-width: 34em; margin-left: auto; margin-right: auto; }
.contact .btn { word-break: break-all; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}
.contact-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 2rem;
  margin-top: 1.6rem;
  list-style: none;
  font-family: var(--font-kicker);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--smoke);
}
.contact-social a { color: var(--smoke); text-decoration: none; }
.contact-social a:hover { color: var(--ember-hot); }
.contact-note { margin-top: 1.6rem; font-size: 0.85rem; color: #7d7260; }
@media (max-width: 600px) {
  .contact-actions { flex-direction: column; }
  .contact-actions .btn { width: 100%; }
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.25rem 3rem;
  border-top: 1px solid var(--line);
  color: #7d7260;
  font-size: 0.85rem;
}
.site-footer img { margin: 0 auto 0.9rem; border-radius: 50%; }
.site-footer strong { color: var(--parchment); }
.site-footer p { margin-bottom: 0.35rem; }

/* Pinned to the bottom-right corner so it sits clear of the centered stack. */
.footer-credit {
  position: absolute;
  right: clamp(1.25rem, 4vw, 2.75rem);
  bottom: 1.5rem;
  margin: 0;
  font-size: 0.78rem;
}
.footer-credit a {
  color: var(--smoke);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-credit a:hover { color: var(--ember-hot); border-bottom-color: var(--ember); }

/* Narrow screens don't have the room to corner it without overlapping. */
@media (max-width: 700px) {
  .footer-credit {
    position: static;
    margin-top: 1.4rem;
  }
}
