/* ==========================================================================
   The Cotswolds Camper
   Deep Navy · Warm Sand · Antique Gold — Cormorant Garamond · Nunito Sans
   One stylesheet, no framework. Roughly 12 KB.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */

:root {
  --navy: #1a1a2e;
  --sand: #e8d5b7;
  --gold: #c9a96e;

  /* Light is the default ground: near-white warmed toward the sand. */
  --ground: #fbf8f3;
  --ground-2: #f2ead9;
  --ground-3: #1a1a2e;
  --ink: #1a1a2e;
  --ink-on-3: #e8d5b7;
  --muted: rgba(26, 26, 46, 0.6);
  --rule: rgba(26, 26, 46, 0.13);
  --link: #1a1a2e;
  --shadow: 0 30px 60px -40px rgba(26, 26, 46, 0.5);
  --scrim: rgba(26, 26, 46, 0.55);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Nunito Sans", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", sans-serif;

  --measure: 66ch;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --section: clamp(4.5rem, 11vw, 9rem);
  --header-h: 68px;

  /* Where the text column starts, for full-bleed rows that must line up. */
  --edge: calc(max(0px, (100vw - 1360px) / 2) + var(--gutter));
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground: #1a1a2e;
    --ground-2: #14141f;
    --ground-3: #101019;
    --ink: #e8d5b7;
    --ink-on-3: #e8d5b7;
    --muted: rgba(232, 213, 183, 0.64);
    --rule: rgba(232, 213, 183, 0.16);
    --link: #c9a96e;
    --shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.8);
    --scrim: rgba(16, 16, 25, 0.6);
  }
}

/* The viewer's own toggle wins over the OS preference, both directions. */
:root[data-theme="dark"] {
  --ground: #1a1a2e;
  --ground-2: #14141f;
  --ground-3: #101019;
  --ink: #e8d5b7;
  --ink-on-3: #e8d5b7;
  --muted: rgba(232, 213, 183, 0.64);
  --rule: rgba(232, 213, 183, 0.16);
  --link: #c9a96e;
  --shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.8);
  --scrim: rgba(16, 16, 25, 0.6);
}

:root[data-theme="light"] {
  --ground: #fbf8f3;
  --ground-2: #f2ead9;
  --ground-3: #1a1a2e;
  --ink: #1a1a2e;
  --ink-on-3: #e8d5b7;
  --muted: rgba(26, 26, 46, 0.6);
  --rule: rgba(26, 26, 46, 0.13);
  --link: #1a1a2e;
  --shadow: 0 30px 60px -40px rgba(26, 26, 46, 0.5);
  --scrim: rgba(26, 26, 46, 0.55);
}

/* --- Reset -------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

a { color: var(--link); text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Type --------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.75rem, 8.5vw, 6.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.15rem); line-height: 1.15; }
h4 { font-size: 1.35rem; letter-spacing: 0; }

p { margin: 0; }

.prose {
  display: flex;
  flex-direction: column;
  gap: 1.15em;
  max-width: var(--measure);
  font-size: 1.0625rem;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* Small caps labels — the only place all-caps is allowed. */
.eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.muted { color: var(--muted); }

/* --- Layout ------------------------------------------------------------- */

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

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--sand { background: var(--ground-2); }

.stack { display: flex; flex-direction: column; }
.stack-sm { gap: 0.75rem; }
.stack-md { gap: 1.5rem; }
.stack-lg { gap: clamp(2rem, 4vw, 3.25rem); }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
}
.skip:focus { left: 0; }

/* --- Header ------------------------------------------------------------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--sand);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16, 16, 25, 0.75), rgba(16, 16, 25, 0));
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.header.is-solid {
  background: var(--ground);
  color: var(--ink);
  border-bottom-color: var(--rule);
  backdrop-filter: saturate(140%) blur(8px);
}
.header.is-solid::before { opacity: 0; }

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  color: inherit;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}

.nav a {
  position: relative;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-block: 0.35rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.tools { display: flex; align-items: center; gap: 0.5rem; position: relative; }

.icon-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: inherit;
  transition: background 0.25s ease;
}
.icon-btn:hover { background: rgba(201, 169, 110, 0.16); }
.icon-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }

/* Show the ground you'd switch to: moon while light, sun while dark. */
.theme-btn .sun { display: none; }
.theme-btn .moon { display: block; }

@media (prefers-color-scheme: dark) {
  .theme-btn .sun { display: block; }
  .theme-btn .moon { display: none; }
}

:root[data-theme="dark"] .theme-btn .sun { display: block; }
:root[data-theme="dark"] .theme-btn .moon { display: none; }
:root[data-theme="light"] .theme-btn .sun { display: none; }
:root[data-theme="light"] .theme-btn .moon { display: block; }

.menu-btn { display: none; }

@media (max-width: 860px) {
  .menu-btn { display: grid; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ground-3);
    color: var(--ink-on-3);
    padding: 1rem var(--gutter) 2rem;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-bottom: 1px solid rgba(232, 213, 183, 0.16);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a {
    width: 100%;
    padding-block: 1rem;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(232, 213, 183, 0.12);
  }
  .nav a::after { display: none; }
}

/* --- Hero --------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--sand);
  overflow: clip;
  background: var(--navy);
}

.hero__media { position: absolute; inset: 0; }

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: drift 24s ease-out forwards;
}

@keyframes drift {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(16, 16, 25, 0.92) 0%, rgba(16, 16, 25, 0.6) 30%, rgba(16, 16, 25, 0.28) 62%, rgba(16, 16, 25, 0.42) 100%);
}

.hero__body {
  position: relative;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  padding-top: calc(var(--header-h) + 3rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero h1 { color: var(--sand); max-width: 15ch; }

.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  color: rgba(232, 213, 183, 0.88);
  max-width: 40ch;
}

.hero__place {
  color: rgba(232, 213, 183, 0.7);
}

.reveal-up > * {
  animation: rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.reveal-up > *:nth-child(2) { animation-delay: 0.12s; }
.reveal-up > *:nth-child(3) { animation-delay: 0.22s; }
.reveal-up > *:nth-child(4) { animation-delay: 0.3s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(1.25rem); }
  to { opacity: 1; transform: none; }
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 8vw, 6rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(232, 213, 183, 0.75);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@media (max-width: 700px) { .scroll-cue { display: none; } }

/* --- Page head (inner pages) -------------------------------------------- */

.pagehead {
  padding-top: calc(var(--header-h) + clamp(3.5rem, 9vw, 7rem));
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.pagehead .inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.pagehead h1 { max-width: 18ch; }
.pagehead .lede,
.pagehead .meta { max-width: var(--measure); }

/* --- Chapters (the three focuses) --------------------------------------- */

.chapter {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .chapter { grid-template-columns: 1.15fr 0.85fr; }
  .chapter--flip .chapter__media { order: 2; }
}

.chapter + .chapter { margin-top: var(--section); }

.chapter__media {
  position: relative;
  overflow: hidden;
  background: var(--ground-2);
}

.chapter__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.chapter:hover .chapter__media img { transform: scale(1.03); }

.chapter__body { display: flex; flex-direction: column; gap: 1.25rem; }
.chapter__body p { max-width: 46ch; color: var(--muted); }

/* --- Links and buttons -------------------------------------------------- */

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--link);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--gold);
  transition: gap 0.3s ease;
}
.link:hover { gap: 1rem; }
.link::after { content: "\2192"; letter-spacing: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn:hover { background: #d8bd88; transform: translateY(-2px); }

/* --- Strip (selected frames on the home page) --------------------------- */

.strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 32vw);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-inline: var(--edge);
  scroll-padding-inline: var(--edge);
  padding-bottom: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

@media (min-width: 1100px) { .strip { grid-auto-columns: minmax(280px, 22vw); } }

.strip figure { scroll-snap-align: start; }
.strip img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.strip figcaption { margin-top: 0.75rem; font-size: 0.8125rem; color: var(--muted); }

/* --- Gallery ------------------------------------------------------------ */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  padding-block: 1.25rem;
  border-block: 1px solid var(--rule);
}

.filters button {
  position: relative;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-block: 0.35rem;
  transition: color 0.25s ease;
}

.filters button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.filters button:hover { color: var(--ink); }
.filters button[aria-pressed="true"] { color: var(--ink); }
.filters button[aria-pressed="true"]::after { transform: scaleX(1); }

.filters .count {
  margin-left: auto;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.grid {
  columns: 1;
  column-gap: clamp(0.75rem, 1.6vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 620px) { .grid { columns: 2; } }
@media (min-width: 1024px) { .grid { columns: 3; } }

.frame {
  break-inside: avoid;
  margin-bottom: clamp(0.75rem, 1.6vw, 1.5rem);
  position: relative;
}

.frame.is-hidden { display: none; }

.frame button {
  display: block;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}

.frame img {
  width: 100%;
  height: auto;
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.frame button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--scrim);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.frame button:hover::after,
.frame button:focus-visible::after { opacity: 1; }

.frame figcaption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  color: var(--sand);
  font-size: 0.8125rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.frame:hover figcaption,
.frame button:focus-visible + figcaption { opacity: 1; transform: none; }

@media (hover: none) {
  .frame button::after { opacity: 0.45; }
  .frame figcaption { opacity: 1; transform: none; }
}

/* --- Lightbox ----------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  background: rgba(16, 16, 25, 0.97);
  color: var(--sand);
  padding: clamp(1rem, 4vw, 3rem);
}

.lightbox[open] { display: grid; }

.lightbox figure {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  max-height: 100%;
}

.lightbox img {
  max-height: 78svh;
  width: auto;
  object-fit: contain;
  animation: fade 0.4s ease both;
}

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.lightbox figcaption {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  color: var(--sand);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background 0.25s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(201, 169, 110, 0.22); }
.lightbox__close { top: 1rem; right: 1rem; font-size: 1.75rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 2rem; line-height: 1; }
.lightbox__nav--prev { left: 0.5rem; }
.lightbox__nav--next { right: 0.5rem; }

/* --- Films -------------------------------------------------------------- */

.films {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .films { grid-template-columns: repeat(2, 1fr); } }

.film { display: flex; flex-direction: column; gap: 1rem; }

.film__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  overflow: hidden;
  width: 100%;
}

.film__player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.film__play {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
}

.film__play img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.film__play::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16, 16, 25, 0.3);
  transition: background 0.35s ease;
}

.film__play:hover::before { background: rgba(16, 16, 25, 0.12); }
.film__play:hover img { transform: scale(1.04); }

.film__play span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  margin: -37px 0 0 -37px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.film__play span::after {
  content: "";
  border-left: 17px solid var(--navy);
  border-block: 11px solid transparent;
  margin-left: 5px;
}
.film__play:hover span { transform: scale(1.08); }

.film h3 a { color: inherit; }
.film h3 a:hover { color: var(--link); }

/* --- Journal ------------------------------------------------------------ */

.posts { display: flex; flex-direction: column; }

.post-row {
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
  grid-template-columns: 1fr;
  padding-block: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--rule);
}
.post-row:last-child { border-bottom: 1px solid var(--rule); }

@media (min-width: 800px) {
  .post-row { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}

.post-row__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.post-row:hover .post-row__media img { transform: scale(1.03); }
.post-row__media { overflow: hidden; }

.post-row__body { display: flex; flex-direction: column; gap: 1rem; }
.post-row__body p { color: var(--muted); max-width: 50ch; }
.post-row h3 a { color: inherit; }

/* --- Article ------------------------------------------------------------ */

.article { padding-bottom: var(--section); }

.article__media {
  margin-block: clamp(2rem, 5vw, 3.5rem);
}
.article__media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.article__body {
  max-width: var(--measure);
  display: flex;
  flex-direction: column;
  gap: 1.35em;
  font-size: 1.0625rem;
}

.article__body h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-top: 1em; }
.article__body ol, .article__body ul { margin: 0; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.article__body strong { font-weight: 700; }

.pull {
  border-left: 2px solid var(--gold);
  padding: 0.75rem 0 0.75rem 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.3;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Kit list (about) --------------------------------------------------- */

.kit {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  max-width: 34rem;
}

.kit div {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--rule);
}
.kit dt { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.kit dd { margin: 0; text-align: right; }

/* --- Closing phrase ----------------------------------------------------- */

.closing {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

/* --- Footer ------------------------------------------------------------- */

.footer {
  background: var(--ground-3);
  color: var(--ink-on-3);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.footer-cols {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .footer-cols { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer a { color: rgba(232, 213, 183, 0.78); transition: color 0.25s ease; }
.footer a:hover { color: var(--gold); }
.footer .wordmark { color: var(--sand); }
.footer h4 {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 213, 183, 0.55);
  margin-bottom: 1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(232, 213, 183, 0.7);
}
.footer .fineprint {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 213, 183, 0.14);
  font-size: 0.8125rem;
  color: rgba(232, 213, 183, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}
