:root {
  --ink: #122c25;
  --ink-deep: #09241e;
  --paper: #f4f0e6;
  --paper-light: #fbf9f3;
  --gold: #e4bd34;
  --gold-soft: #f0d66d;
  --sage: #8aa58f;
  --line: rgba(18, 44, 37, 0.18);
  --display: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --label: "Libre Franklin", Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --section-pad: clamp(5rem, 10vw, 9rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 6.25rem;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, height 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  height: 5rem;
  background: rgba(244, 240, 230, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex: none;
}

.brand-mark {
  position: relative;
  width: 2.1rem;
  height: 2.1rem;
  display: block;
}

.brand-mark i,
.closing-sun i {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0.19rem;
  height: 1.9rem;
  border-radius: 999px;
  background: var(--gold);
  transform-origin: 50% 100%;
}

.brand-mark i:nth-child(1) { transform: translateX(-50%) rotate(-72deg); }
.brand-mark i:nth-child(2) { transform: translateX(-50%) rotate(-48deg); }
.brand-mark i:nth-child(3) { transform: translateX(-50%) rotate(-24deg); }
.brand-mark i:nth-child(4) { transform: translateX(-50%) rotate(0deg); }
.brand-mark i:nth-child(5) { transform: translateX(-50%) rotate(24deg); }
.brand-mark i:nth-child(6) { transform: translateX(-50%) rotate(48deg); }
.brand-mark i:nth-child(7) { transform: translateX(-50%) rotate(72deg); }

.brand-type {
  display: grid;
  line-height: 1;
}

.brand-type strong {
  font-family: var(--display);
  font-size: 1.48rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.brand-type small {
  margin-top: 0.25rem;
  font-family: var(--label);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.25rem);
  font-size: 0.84rem;
  font-weight: 600;
}

.site-nav > a:not(.nav-call) {
  position: relative;
}

.site-nav > a:not(.nav-call)::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.45rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav > a:not(.nav-call):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-call {
  padding: 0.75rem 1.05rem;
  border: 1px solid var(--ink);
  transition: color 180ms ease, background 180ms ease;
}

.nav-call:hover {
  color: var(--paper-light);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 1px;
  margin: 0.42rem auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  min-height: 49rem;
  padding: 10.5rem var(--page-pad) 6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(26rem, 0.9fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 8rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 41%, rgba(228, 189, 52, 0.17), transparent 20rem),
    linear-gradient(rgba(18, 44, 37, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 44, 37, 0.035) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}

.hero-copy {
  max-width: 52rem;
}

.eyebrow,
.section-number {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.5rem;
  font-family: var(--label);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.8rem;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 49rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7.5vw, 7.25rem);
  font-weight: 400;
  letter-spacing: -0.057em;
  line-height: 0.89;
  text-wrap: balance;
}

.hero-lede {
  max-width: 40rem;
  margin: 2.25rem 0 0;
  color: rgba(18, 44, 37, 0.75);
  font-size: clamp(1.05rem, 1.5vw, 1.27rem);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.button {
  min-height: 3.6rem;
  padding: 0 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--paper-light);
  background: var(--ink);
}

.button-primary:hover {
  background: #1c483d;
}

.button svg {
  width: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.85rem;
  font-weight: 600;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.hero-notes {
  margin-top: 3.3rem;
  display: flex;
  gap: 1.75rem;
  color: rgba(18, 44, 37, 0.65);
  font-family: var(--label);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-notes span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-notes span::before {
  content: "+";
  color: var(--ink);
  font-size: 1rem;
  font-weight: 400;
}

.hero-art {
  position: relative;
  width: min(100%, 34rem);
  aspect-ratio: 0.9;
  justify-self: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 6% 0 8% 10%;
  border-radius: 50% 50% 48% 52%;
  background: var(--gold);
  clip-path: polygon(50% 0, 59% 35%, 86% 14%, 65% 42%, 100% 50%, 65% 58%, 86% 86%, 59% 65%, 50% 100%, 41% 65%, 14% 86%, 35% 58%, 0 50%, 35% 42%, 14% 14%, 41% 35%);
  animation: slow-turn 80s linear infinite;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(18, 44, 37, 0.32);
  border-radius: 50%;
}

.orbit-one {
  inset: 2% 9% 9% 4%;
  transform: rotate(18deg);
}

.orbit-two {
  inset: 11% 1% 1% 14%;
  transform: rotate(-16deg);
}

.hero-rx {
  position: absolute;
  z-index: 2;
  top: 1%;
  right: 5%;
  color: var(--ink);
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
  transform: rotate(7deg);
}

.hero-photo {
  position: absolute;
  z-index: 3;
  top: 15%;
  right: 13%;
  width: 56%;
  overflow: hidden;
  border: 0.65rem solid var(--paper-light);
  box-shadow: 0 1.4rem 3.5rem rgba(9, 36, 30, 0.19);
  transform: rotate(3deg);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  filter: saturate(0.83) contrast(1.05);
  transform: scale(1.035);
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  left: 3%;
  bottom: 11%;
  width: 8.6rem;
  height: 8.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--paper-light);
  border-radius: 50%;
  color: var(--paper-light);
  background: var(--ink);
  text-align: center;
  transform: rotate(-8deg);
}

.hero-stamp::before,
.hero-stamp::after {
  content: "✦";
  font-size: 0.7rem;
}

.hero-stamp span {
  font-family: var(--label);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-stamp strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
}

.hero-caption {
  position: absolute;
  z-index: 4;
  right: 1%;
  bottom: 2%;
  margin: 0;
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.2;
  transform: rotate(3deg);
}

@keyframes slow-turn {
  to { transform: rotate(360deg); }
}

.marquee {
  overflow: hidden;
  padding: 1.1rem 0;
  color: var(--paper-light);
  background: var(--ink);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  font-style: italic;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
}

.marquee-track b {
  color: var(--gold);
  font-size: 0.8rem;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: var(--section-pad) var(--page-pad);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(8rem, 0.36fr) 1fr;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.section-number {
  margin: 0;
  color: rgba(18, 44, 37, 0.62);
}

.section-heading > div {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(17rem, 0.6fr);
  align-items: end;
  gap: 3rem;
}

.section h2,
.visit h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 6.4vw, 6.3rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.section h2 em,
.visit h2 em {
  font-weight: 400;
}

.section-heading > div > p {
  max-width: 28rem;
  margin: 0 0 0.5rem;
  color: rgba(18, 44, 37, 0.66);
}

.service-grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 24rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 280ms ease, background 280ms ease;
}

.service-card:hover,
.service-card-feature {
  color: var(--paper-light);
  background: var(--ink);
}

.service-card > span {
  color: currentColor;
  opacity: 0.55;
  font-family: var(--label);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.card-icon {
  height: 9.4rem;
  display: grid;
  place-items: center;
}

.card-icon svg {
  width: 4.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: auto 0 0.8rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 400;
  line-height: 1;
}

.service-card p {
  margin: 0;
  opacity: 0.68;
  font-size: 0.86rem;
  line-height: 1.55;
}

.coverage {
  margin-top: 6rem;
  padding: clamp(2rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: clamp(2rem, 5vw, 6rem);
  color: var(--paper-light);
  background: var(--ink);
}

.coverage-intro h3 {
  max-width: 28rem;
  margin: 4.5rem 0 1.2rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.4vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.coverage-intro > p:last-child {
  max-width: 25rem;
  color: rgba(251, 249, 243, 0.65);
}

.coverage-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.coverage-list li {
  position: relative;
  padding: 0.7rem 0.7rem 0.7rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  font-size: 0.84rem;
}

.coverage-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.coverage-note {
  grid-column: 2;
  margin: -1rem 0 0;
  color: var(--gold-soft);
  font-family: var(--label);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.story {
  display: grid;
  grid-template-columns: minmax(25rem, 0.92fr) minmax(28rem, 1.08fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 10rem);
  color: var(--paper-light);
  background: #6e8774;
}

.story-collage {
  position: relative;
  min-height: 41rem;
}

.story-photo {
  position: absolute;
  overflow: hidden;
  background: #dde2d7;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.04);
}

.story-photo-main {
  inset: 0 12% 0 0;
}

.story-photo-main img {
  object-position: center 20%;
}

.story-photo-inset {
  right: 0;
  bottom: 7%;
  width: 44%;
  aspect-ratio: 1;
  border: 0.6rem solid #6e8774;
}

.story-year {
  position: absolute;
  top: 4%;
  right: -3%;
  width: 8.5rem;
  height: 8.5rem;
  padding: 1.2rem;
  display: grid;
  align-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  text-align: center;
  transform: rotate(7deg);
}

.story-year span {
  font-family: var(--label);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-year strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.story-copy .section-number {
  color: rgba(251, 249, 243, 0.68);
}

.story-copy h2 {
  margin-top: 4rem;
}

.story-lede {
  max-width: 39rem;
  margin: 2.5rem 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.3;
}

.story-copy > p:not(.section-number):not(.story-lede) {
  max-width: 36rem;
  color: rgba(251, 249, 243, 0.72);
}

.signature {
  margin-top: 3rem;
  padding-top: 1.2rem;
  display: grid;
  width: min(100%, 22rem);
  border-top: 1px solid rgba(255,255,255,0.3);
}

.signature span {
  font-family: var(--display);
  font-size: 1.35rem;
  font-style: italic;
}

.signature span i {
  padding: 0 0.25rem;
  color: var(--gold-soft);
  font-weight: 400;
}

.signature small {
  font-family: var(--label);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visit {
  background: var(--paper-light);
}

.visit-header {
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: minmax(8rem, 0.36fr) 1fr;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

.visit-grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--line);
}

.visit-map {
  position: relative;
  min-height: 39rem;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #e5e5d8;
}

.map-grid {
  position: absolute;
  inset: -10%;
  opacity: 0.35;
  background:
    linear-gradient(22deg, transparent 46%, #fff 47%, #fff 52%, transparent 53%) 0 0 / 8rem 6rem,
    linear-gradient(-33deg, transparent 47%, rgba(18, 44, 37, 0.2) 48%, rgba(18, 44, 37, 0.2) 49%, transparent 50%) 0 0 / 7rem 9rem;
  transform: rotate(-6deg) scale(1.2);
}

.map-road {
  position: absolute;
  height: 2.5rem;
  background: var(--paper-light);
  border: 1px solid rgba(18, 44, 37, 0.12);
  transform-origin: left center;
}

.map-road span {
  position: absolute;
  top: 0.55rem;
  left: 2rem;
  color: rgba(18, 44, 37, 0.5);
  font-family: var(--label);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.road-one { top: 50%; left: -10%; width: 130%; transform: rotate(-8deg); }
.road-two { top: -4%; left: 42%; width: 110%; transform: rotate(80deg); }
.road-three { top: -3%; left: 72%; width: 110%; transform: rotate(84deg); }

.map-pin {
  position: absolute;
  z-index: 4;
  top: 43%;
  left: 53%;
  width: 5.2rem;
  height: 5.2rem;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  color: var(--paper-light);
  background: var(--ink);
  box-shadow: 0 0 0 0.7rem rgba(228, 189, 52, 0.45);
  transform: rotate(-45deg);
}

.map-pin span {
  font-family: var(--display);
  font-size: 1.5rem;
  transform: rotate(45deg);
}

.visit-details {
  padding: clamp(2rem, 4vw, 4.5rem);
  display: flex;
  flex-direction: column;
}

.detail-block {
  padding-bottom: 2.3rem;
}

.detail-block + .detail-block {
  padding-top: 2.3rem;
  border-top: 1px solid var(--line);
}

.detail-block > p {
  margin: 0 0 1.1rem;
  font-family: var(--label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.detail-block address {
  margin-bottom: 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-style: normal;
  line-height: 1.04;
}

.detail-block small {
  display: block;
  color: rgba(18, 44, 37, 0.6);
  font-size: 0.75rem;
}

.detail-block .text-link {
  margin-top: 1.5rem;
}

.hours dl {
  margin: 0;
}

.hours dl div {
  padding: 0.35rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hours dt,
.hours dd {
  margin: 0;
  font-size: 0.9rem;
}

.hours dd {
  font-weight: 600;
}

.visit-call {
  position: relative;
  margin-top: auto;
  padding: 1.35rem 3.5rem 1.35rem 1.4rem;
  display: grid;
  color: var(--paper-light);
  background: var(--ink);
}

.visit-call span {
  color: rgba(251, 249, 243, 0.68);
  font-size: 0.72rem;
}

.visit-call strong {
  margin-top: 0.1rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.visit-call i {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  color: var(--gold);
  font-size: 1.4rem;
  font-style: normal;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.visit-call:hover i {
  transform: translate(4px, -65%);
}

.closing {
  position: relative;
  padding: clamp(6rem, 12vw, 11rem) var(--page-pad);
  overflow: hidden;
  color: var(--paper-light);
  background: var(--ink);
  text-align: center;
}

.closing > *:not(.closing-sun) {
  position: relative;
  z-index: 2;
}

.closing .eyebrow {
  justify-content: center;
  color: var(--gold-soft);
}

.closing h2 {
  max-width: 64rem;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(3.3rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.closing > p:not(.eyebrow) {
  margin: 1.5rem auto 2.2rem;
  color: rgba(251, 249, 243, 0.67);
}

.button-light {
  color: var(--ink);
  background: var(--gold);
}

.button-light:hover {
  background: var(--gold-soft);
}

.closing-sun {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(53vw, 47rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  opacity: 0.08;
}

.closing-sun i {
  left: 50%;
  bottom: 50%;
  width: 1.2rem;
  height: 50%;
  background: var(--paper-light);
}

.closing-sun i:nth-child(1) { transform: translateX(-50%) rotate(0); }
.closing-sun i:nth-child(2) { transform: translateX(-50%) rotate(40deg); }
.closing-sun i:nth-child(3) { transform: translateX(-50%) rotate(80deg); }
.closing-sun i:nth-child(4) { transform: translateX(-50%) rotate(120deg); }
.closing-sun i:nth-child(5) { transform: translateX(-50%) rotate(160deg); }
.closing-sun i:nth-child(6) { transform: translateX(-50%) rotate(200deg); }
.closing-sun i:nth-child(7) { transform: translateX(-50%) rotate(240deg); }
.closing-sun i:nth-child(8) { transform: translateX(-50%) rotate(280deg); }
.closing-sun i:nth-child(9) { transform: translateX(-50%) rotate(320deg); }

.site-footer {
  padding: 4rem var(--page-pad);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--paper);
}

.footer-address,
.footer-meta {
  font-size: 0.78rem;
}

.footer-address p,
.footer-meta p {
  margin: 0 0 0.6rem;
}

.footer-address a {
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

.footer-meta {
  color: rgba(18, 44, 37, 0.6);
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .hero h1 {
    font-size: clamp(4rem, 7.2vw, 6rem);
  }

  .section-heading > div {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .story {
    gap: 4rem;
  }
}

@media (max-width: 800px) {
  .site-header,
  .site-header.is-scrolled {
    height: 4.75rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    padding: 7rem var(--page-pad) 3rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 300ms cubic-bezier(.2,.7,.2,1);
  }

  .site-nav.is-open {
    transform: none;
  }

  .site-nav a {
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 400;
  }

  .nav-call {
    margin-top: 1.5rem;
    padding: 1.1rem !important;
    border: 0 !important;
    color: var(--paper-light);
    background: var(--ink);
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 8.3rem;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 14vw, 6rem);
  }

  .hero-art {
    width: min(100%, 29rem);
    margin: 0 auto;
  }

  .section-heading,
  .visit-header {
    grid-template-columns: 1fr;
  }

  .service-grid {
    margin-top: 3rem;
  }

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

  .coverage-intro h3 {
    margin-top: 2.5rem;
  }

  .coverage-note {
    grid-column: auto;
    margin: 0;
  }

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

  .story-collage {
    min-height: min(130vw, 42rem);
  }

  .story-copy h2 {
    margin-top: 2.5rem;
  }

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

  .visit-map {
    min-height: 28rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    text-align: left;
  }
}

@media (max-width: 540px) {
  .hero {
    padding-bottom: 4rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    flex-direction: column;
    gap: 0.45rem;
  }

  .hero-stamp {
    width: 7rem;
    height: 7rem;
  }

  .hero-caption {
    display: none;
  }

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

  .service-card {
    min-height: 20rem;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

  .story {
    padding-inline: 0;
  }

  .story-copy {
    padding-inline: var(--page-pad);
  }

  .story-year {
    right: 2%;
  }

  .visit-details {
    padding: 2rem 1.25rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
