@import "fraunces.css";

:root {
  --ink: #171817;
  --muted: #62665f;
  --paper: #f6f7f3;
  --surface: #ffffff;
  --line: rgba(23, 24, 23, 0.13);
  --green: #3f5e4b;
  --blue: #315f74;
  --rose: #b95b64;
  --amber: #b87132;
  --shadow: 0 24px 80px rgba(18, 20, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 36px;
  color: #fff;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.subpage .site-header {
  background: rgba(246, 247, 243, 0.92);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 800;
}

.brand-copy small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  opacity: 0.76;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.is-active,
.subpage .site-header .site-nav a:hover,
.subpage .site-header .site-nav a.is-active,
.nav-open .site-header .site-nav a:hover,
.nav-open .site-header .site-nav a.is-active {
  background: rgba(23, 24, 23, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 8, 0.78), rgba(8, 10, 8, 0.42) 48%, rgba(8, 10, 8, 0.12)),
    linear-gradient(0deg, rgba(8, 10, 8, 0.74), rgba(8, 10, 8, 0) 42%),
    url("../images/bg-pic.jpg") center / cover;
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
}

.hero .eyebrow {
  color: #f2bb75;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1.06;
  font-weight: 500;
}

.hero h1 {
  max-width: 900px;
  font-size: 60px;
}

.hero-lede,
.page-hero-copy p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 18px;
}

.button-primary {
  background: #fff;
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button:hover {
  transform: translateY(-1px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
  margin: 64px 0 0;
  padding: 0;
}

.hero-metrics div {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  padding-top: 14px;
}

.hero-metrics dt {
  font-size: 28px;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.intro-strip a {
  min-height: 118px;
  border-right: 1px solid var(--line);
  padding: 26px 36px;
}

.intro-strip a:last-child {
  border-right: 0;
}

.intro-strip strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.intro-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-dark {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  background: #181917;
  color: #fff;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading-inline {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section h2,
.page-hero h1,
.about-grid h2,
.split-section h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.section h2,
.split-section h2,
.about-grid h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 500;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-auto-rows: 270px;
  gap: 18px;
}

.story-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #222;
  box-shadow: var(--shadow);
}

.story-card-large {
  grid-row: span 2;
}

.story-card img,
.portfolio-card img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card img {
  opacity: 0.92;
  transition: transform 460ms ease, opacity 460ms ease;
}

.story-card:hover img {
  opacity: 0.78;
  transform: scale(1.045);
}

.story-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
}

.story-copy span,
.card-copy span,
.contact-card span,
.values-grid span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.story-copy h3 {
  margin: 4px 0 8px;
  font-size: 30px;
  line-height: 1.12;
}

.story-card:not(.story-card-large) .story-copy h3 {
  font-size: 24px;
}

.story-copy p {
  max-width: 520px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
}

.story-copy a,
.card-copy a,
.text-link,
.contact-card a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  padding: 7px 14px;
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.portfolio-card {
  grid-column: span 4;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 22, 20, 0.08);
}

.portfolio-card-wide {
  grid-column: span 8;
}

.portfolio-card-tall {
  grid-row: span 2;
}

.image-button {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  background: #ddd;
  cursor: zoom-in;
  overflow: hidden;
  padding: 0;
}

.portfolio-card-wide .image-button {
  aspect-ratio: 16 / 9;
}

.portfolio-card-tall .image-button {
  aspect-ratio: 3 / 4;
}

.image-button img {
  transition: transform 420ms ease, filter 420ms ease;
}

.portfolio-card:hover .image-button img,
.image-button:focus-visible img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.035);
}

.card-copy {
  padding: 22px;
}

.card-copy h3 {
  margin: 5px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.card-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.portfolio-card.is-hidden {
  display: none;
}

.album-index {
  width: min(1440px, calc(100% - 40px));
}

.album-index .section-heading {
  margin-bottom: 48px;
}

.album-index .section-heading p:not(.eyebrow) {
  color: var(--muted);
  max-width: 680px;
}

.archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 30px;
  align-items: start;
}

.archive-stream {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.year-dock {
  position: sticky;
  z-index: 18;
  grid-column: 2;
  grid-row: 1;
  top: 98px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 52px rgba(20, 22, 20, 0.1);
  padding: 10px;
  backdrop-filter: blur(18px);
}

.year-dock > span {
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 3px 8px 5px;
  text-transform: uppercase;
}

.year-dock a {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 900;
  padding: 7px 10px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.year-dock a:hover,
.year-dock a.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateX(-2px);
}

.year-dock small {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(23, 24, 23, 0.08);
  color: currentColor;
  font-size: 11px;
}

.year-dock a.is-active small {
  background: rgba(255, 255, 255, 0.18);
}

.year-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 520px;
}

.year-jump a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  padding: 7px 13px;
}

.year-jump a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.year-section {
  scroll-margin-top: 96px;
  margin-top: 78px;
}

.year-section:first-child {
  margin-top: 0;
}

.year-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.year-heading h2 {
  font-size: 54px;
}

.year-heading span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.album-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
  align-items: start;
}

.album-masonry.is-masonry-ready {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.album-masonry-all {
  margin-top: 48px;
}

.masonry-column {
  display: grid;
  flex: 1 1 0;
  min-width: 0;
  gap: 18px;
  align-content: start;
}

.album-card {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 22, 20, 0.08);
}

.album-card[id^="year-"] {
  scroll-margin-top: 112px;
}

.album-year-pill {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(17, 18, 16, 0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 6px 13px;
  backdrop-filter: blur(12px);
}

.album-card img {
  width: 100%;
  height: auto;
  background: #ddd;
  transition: filter 380ms ease, transform 380ms ease;
}

.album-card:hover img {
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.025);
}

.album-card > :not(img) {
  margin-left: 20px;
  margin-right: 20px;
}

.album-card .album-date {
  display: block;
  margin-top: 18px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.album-card h3 {
  margin-top: 6px;
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.22;
}

.album-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.album-card .album-tags {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.album-card-featured {
  border-color: rgba(157, 98, 34, 0.24);
}

.album-card-featured h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.album-card-quiet {
  background: #fdfbf5;
}

.split-section,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.split-copy p,
.rich-text p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 74px max(24px, calc((100vw - 1440px) / 2)) 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, #151612 0%, #0f100e 100%);
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(24px, calc((100vw - 1440px) / 2));
  right: max(24px, calc((100vw - 1440px) / 2));
  height: 1px;
  background: linear-gradient(90deg, var(--amber), rgba(255, 255, 255, 0.16), transparent);
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(160px, 0.55fr) minmax(220px, 0.75fr);
  gap: 56px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.footer-logo span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1;
}

.footer-logo strong {
  font-size: 16px;
  line-height: 1.08;
}

.footer-brand p {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 20px;
  line-height: 1.58;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.footer-links span,
.footer-contact span {
  color: #f0b46f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 800;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 34px;
  background: rgba(8, 9, 8, 0.92);
  color: #fff;
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  width: min(1040px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  background: #111;
}

.lightbox figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.lightbox figcaption strong {
  color: #fff;
}

.lightbox-close,
.lightbox-control {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-height: 38px;
  padding: 7px 13px;
}

.lightbox-control {
  width: 58px;
  height: 58px;
}

.subpage {
  background: #fff;
}

.subpage main {
  padding-top: 79px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 620px;
  background: #181917;
  color: #fff;
}

.page-hero-media {
  min-height: 520px;
  overflow: hidden;
}

.page-hero-copy {
  display: grid;
  align-content: center;
  padding: 64px;
}

.page-hero-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero-about .page-hero-media img {
  object-position: center 34%;
}

.contact-hero .page-hero-media img {
  object-position: center center;
}

.rich-text a {
  color: var(--blue);
  font-weight: 800;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
}

.values-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 28px;
}

.values-grid h3,
.contact-card h2 {
  margin: 8px 0 10px;
  font-size: 22px;
}

.values-grid p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card a {
  color: var(--blue);
  overflow-wrap: anywhere;
}

.social-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 0;
}

.social-band a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  padding: 9px 16px;
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 73px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(246, 247, 243, 0.98);
    color: var(--ink);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 48px;
  }

  .section-heading-inline,
  .split-section,
  .about-grid,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .section-heading-inline {
    align-items: start;
  }

  .archive-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .archive-stream,
  .year-dock {
    grid-column: auto;
    grid-row: auto;
  }

  .year-dock {
    top: 74px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: -10px -24px 8px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 10px 24px;
    scrollbar-width: none;
  }

  .year-dock::-webkit-scrollbar {
    display: none;
  }

  .year-dock > span {
    display: none;
  }

  .year-dock a {
    flex: 0 0 auto;
    min-width: 78px;
  }

  .year-dock a:hover,
  .year-dock a.is-active {
    transform: translateY(-1px);
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .story-grid,
  .contact-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .story-card-large {
    grid-row: span 1;
  }

  .portfolio-card,
  .portfolio-card-wide {
    grid-column: span 6;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero-copy {
    padding: 42px 24px 54px;
  }

  .site-footer {
    padding: 60px 24px 30px;
  }

  .site-footer::before {
    left: 24px;
    right: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 720px;
    font-size: 18px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-inner {
    width: min(100% - 32px, 1160px);
    padding: 112px 0 34px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 32px;
  }

  .hero-lede,
  .page-hero-copy p {
    font-size: 16px;
  }

  .hero-metrics,
  .intro-strip {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    gap: 10px;
    margin-top: 40px;
  }

  .intro-strip a {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 18px;
  }

  .section,
  .section-dark {
    width: 100%;
    padding: 70px 18px;
  }

  .album-index {
    width: 100%;
  }

  .year-dock {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .section h2,
  .split-section h2,
  .about-grid h2 {
    font-size: 32px;
  }

  .year-jump {
    justify-content: flex-start;
  }

  .year-heading h2 {
    font-size: 38px;
  }

  .album-masonry {
    grid-template-columns: 1fr;
  }

  .album-card-featured {
    grid-column: auto;
  }

  .story-grid {
    grid-auto-rows: 360px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card,
  .portfolio-card-wide,
  .portfolio-card-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-card-wide .image-button,
  .portfolio-card-tall .image-button,
  .image-button {
    aspect-ratio: 4 / 3;
  }

  .page-hero-media {
    min-height: 410px;
  }

  .site-footer {
    padding: 48px 18px 28px;
  }

  .site-footer::before {
    left: 18px;
    right: 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand p {
    margin-top: 18px;
    font-size: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 42px;
  }

  .lightbox {
    gap: 10px;
    padding: 70px 14px 24px;
  }

  .lightbox-control {
    position: absolute;
    bottom: 18px;
    width: 78px;
    height: 42px;
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }
}
