:root {
  --ink: #111111;
  --paper: #f4f1ea;
  --white: #ffffff;
  --brand: #ef3d16;
  --brand-dark: #bd2708;
  --blue: #3155d9;
  --violet: #7a3be2;
  --muted: #6f6c67;
  --border: rgba(17, 17, 17, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body,
.navbar,
.footer {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

h1,
h2,
h3,
.footer-brand {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.96;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

a {
  color: inherit;
}

.skip-link {
  background: var(--white);
  color: var(--ink);
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 2000;
}

.skip-link:focus {
  top: 1rem;
}

.navbar {
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  min-height: 76px;
  transition: background 180ms ease, min-height 180ms ease;
}

.navbar.navbar-scrolled {
  background: rgba(17, 17, 17, 0.97);
  min-height: 66px;
}

.brand-wrap {
  display: inline-flex;
  padding: 0;
}

.brand-wrap img {
  display: block;
  height: 34px;
  max-width: 225px;
  object-fit: contain;
  width: auto;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.7rem 0.85rem !important;
  text-transform: uppercase;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--white);
}

.navbar .nav-pill {
  background: var(--brand);
  border-radius: 999px;
  color: var(--white);
  padding-inline: 1.15rem !important;
}

.hero {
  background: var(--ink);
  color: var(--white);
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.hero-photo,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-photo {
  background-image: url("../img/rathhausflaggen2011.jpg");
  background-position: 62% center;
  background-size: cover;
  filter: saturate(0.85) contrast(1.05);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.94) 0%, rgba(17, 17, 17, 0.67) 48%, rgba(17, 17, 17, 0.16) 100%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.6) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .row {
  padding-top: 8rem;
}

.hero h1 {
  font-size: clamp(4.7rem, 12vw, 10.8rem);
  max-width: 1040px;
}

.hero h1 span {
  color: var(--brand);
}

.hero-copy {
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  margin-top: 1.5rem;
  max-width: 660px;
}

.hero-stamp {
  border: 4px solid var(--white);
  border-radius: 50%;
  bottom: 7rem;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  height: 116px;
  letter-spacing: 0.18em;
  line-height: 1.25;
  padding-top: 28px;
  position: absolute;
  right: max(4vw, 1.5rem);
  text-align: center;
  transform: rotate(10deg);
  width: 116px;
  z-index: 3;
}

.eyebrow,
.mini-label {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.text-brand {
  color: var(--brand) !important;
}

.btn {
  border-radius: 0;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.35rem;
}

.btn-lg {
  font-size: 1rem;
  padding: 1rem 1.4rem;
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.quick-search {
  background: var(--brand);
  color: var(--white);
}

.quick-label {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-right: 0.5rem;
  text-transform: uppercase;
}

.quick-chip {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.48rem 1rem;
  text-decoration: none;
  transition: 150ms ease;
}

.quick-chip:hover,
.quick-chip:focus {
  background: var(--white);
  color: var(--brand-dark);
}

.section-pad {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.filter-bar {
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 800;
  min-height: 39px;
  padding: 0.55rem 1.1rem;
  transition: 150ms ease;
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn:focus,
.filter-btn.active {
  background: var(--ink);
  color: var(--white);
}

.event-item {
  transition: opacity 180ms ease, transform 180ms ease;
}

.event-item.is-hidden {
  display: none;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.event-card:hover {
  box-shadow: 0 22px 46px rgba(17, 17, 17, 0.12);
  transform: translateY(-6px);
}

.event-top {
  align-content: start;
  align-items: baseline;
  color: var(--white);
  column-gap: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 190px;
  overflow: hidden;
  padding: 1.4rem;
  position: relative;
}

.event-orange {
  background: #d94725;
}

.event-gold {
  background: #9b7117;
}

.event-violet {
  background: #6741a5;
}

.event-teal {
  background: #176a65;
}

.event-kicker,
.event-time {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.event-time {
  text-align: right;
  white-space: nowrap;
}

.event-number {
  bottom: -2.1rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 10rem;
  line-height: 1;
  opacity: 0.22;
  position: absolute;
  right: 0.6rem;
}

.event-body {
  padding: 1.6rem;
}

.event-feature {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.8fr);
  overflow: hidden;
  position: relative;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.event-feature:hover {
  box-shadow: 0 22px 46px rgba(17, 17, 17, 0.12);
  transform: translateY(-6px);
}

.event-feature-date {
  background: #3559b7;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 270px;
  overflow: hidden;
  padding: 1.6rem;
  position: relative;
  text-transform: uppercase;
}

.event-feature-date--bear {
  background: #8d6517;
}

.event-feature-date::after {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  content: "";
  height: 230px;
  position: absolute;
  right: -70px;
  top: 46px;
  width: 230px;
}

.event-feature-date strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4rem, 7vw, 6.8rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  position: relative;
  z-index: 1;
}

.event-feature-date > span:last-child {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
}

.event-feature-body {
  align-self: center;
  padding: clamp(1.8rem, 4vw, 3.5rem);
}

.event-feature-body h3 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  margin-bottom: 0.8rem;
}

.event-feature-body > p:not(.eyebrow):not(.event-place) {
  max-width: 720px;
}

.event-body h3,
.place-card h3,
.community-card h3,
.story-card h3,
.story-row h3 {
  font-size: 2rem;
  hyphens: auto;
  margin-bottom: 0.7rem;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.event-place {
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link {
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration-thickness: 2px;
  text-transform: uppercase;
  text-underline-offset: 0.25rem;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.lead-copy {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.08rem;
}

.place-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  position: relative;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.place-card:hover {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.places-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.15fr 1fr 1fr;
}

.place-featured {
  background: var(--white);
  color: var(--ink);
  grid-row: span 2;
}

.place-logo-wrap {
  align-items: center;
  background: #f2f0eb;
  display: flex;
  justify-content: center;
  min-height: 260px;
  padding: 2rem;
}

.place-logo-wrap img {
  filter: grayscale(1);
  height: 180px;
  max-width: 90%;
  object-fit: contain;
}

.place-content,
.place-small {
  padding: 1.8rem;
}

.place-featured h3 {
  margin-bottom: 0.2rem;
  margin-top: 2rem;
}

.place-featured h3 + .place-address {
  margin-top: 0;
}

.place-badge {
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.15;
  padding: 0.45rem 0.65rem;
  text-align: center;
  text-transform: uppercase;
}

.place-small {
  background: #202020;
  display: flex;
  flex-direction: column;
  min-height: 286px;
  position: relative;
}

.place-accent {
  background: var(--brand-dark);
}

.place-violet {
  background: #59308f;
}

.place-blue {
  background: #155d8c;
}

.place-teal {
  background: #176a65;
}

.place-index {
  color: rgba(255, 255, 255, 0.14);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 7rem;
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: 0.5rem;
}

.place-small h3 {
  margin-top: 2rem;
  position: relative;
}

.place-address {
  color: rgba(255, 255, 255, 0.82);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
  margin: -0.15rem 0 1rem;
  position: relative;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22rem;
  z-index: 2;
}

.event-card:focus-within,
.event-feature:focus-within,
.place-card:focus-within,
.story-main:focus-within {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.place-address:hover,
.place-address:focus {
  color: var(--white);
}

.place-featured .place-address {
  color: var(--muted);
  text-decoration-color: rgba(17, 17, 17, 0.3);
}

.place-featured .place-address:hover,
.place-featured .place-address:focus {
  color: var(--brand-dark);
}

.place-small p {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

.place-small .text-link {
  margin-top: auto;
  position: relative;
}

.place-small .text-link.stretched-link {
  position: static;
}

.submit-place {
  align-items: center;
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.45);
  display: flex;
  grid-column: span 2;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  transition: 150ms ease;
}

.submit-place:hover,
.submit-place:focus {
  background: var(--white);
  color: var(--ink);
}

.submit-arrow {
  font-size: 2rem;
}

.community-section {
  background: #e9e4da;
}

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

.community-card {
  --card-accent: var(--brand);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 350px;
  overflow: hidden;
  padding: 1.8rem;
  position: relative;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.community-card::before {
  background: var(--card-accent);
  content: "";
  height: 0.45rem;
  inset: 0 0 auto;
  position: absolute;
}

.community-card:hover,
.community-card:focus {
  box-shadow: 0 22px 46px rgba(17, 17, 17, 0.13);
  color: var(--ink);
  transform: translateY(-5px);
}

.community-card:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.community-card .mini-label {
  color: var(--card-accent);
  position: relative;
}

.community-card h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  hyphens: auto;
  margin: 2.2rem 0 1rem;
  max-width: 88%;
  overflow-wrap: anywhere;
  position: relative;
  text-wrap: balance;
}

.community-card p {
  color: var(--muted);
  position: relative;
}

.community-link {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-top: auto;
  position: relative;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-transform: uppercase;
  text-underline-offset: 0.25rem;
}

.community-number {
  color: rgba(17, 17, 17, 0.07);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 7rem;
  line-height: 1;
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
}

.community-card--violet {
  --card-accent: #6741a5;
}

.community-card--red {
  --card-accent: #bd2708;
}

.community-card--gold {
  --card-accent: #8d6517;
}

.community-card--teal {
  --card-accent: #176a65;
}

.community-card--blue {
  --card-accent: #3155a9;
}

.community-card--rainbow {
  --card-accent: #6741a5;
}

.community-card--rainbow::before {
  background: linear-gradient(90deg, #c53d2c 0 16.66%, #c47a24 16.66% 33.33%, #b29a28 33.33% 50%, #2d7a56 50% 66.66%, #3155a9 66.66% 83.33%, #6741a5 83.33% 100%);
}

.community-card--pink {
  --card-accent: #a93f6c;
}

.story-main {
  display: block;
  min-height: 520px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.story-main::after {
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.94) 0%, rgba(17, 17, 17, 0.1) 70%);
  content: "";
  inset: 0;
  position: absolute;
}

.story-main img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 400ms ease;
  width: 100%;
}

.story-main:hover img {
  transform: scale(1.035);
}

.story-overlay {
  bottom: 0;
  color: var(--white);
  left: 0;
  max-width: 720px;
  padding: clamp(1.6rem, 5vw, 3rem);
  position: absolute;
  z-index: 2;
}

.story-overlay h3 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.story-list {
  border-top: 2px solid var(--ink);
}

.story-row {
  align-items: start;
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 1rem;
  grid-template-columns: 86px 1fr auto;
  padding: 1.65rem 0;
  text-decoration: none;
  transition: color 150ms ease, padding-left 150ms ease;
}

.story-row:hover,
.story-row:focus {
  color: var(--brand-dark);
  padding-left: 0.4rem;
}

.story-row h3 {
  font-size: 1.55rem;
  line-height: 1.04;
}

.story-row p {
  color: var(--muted);
  margin-bottom: 0;
}

.story-tag {
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-page {
  background: var(--paper);
}

.article-hero {
  background: var(--ink);
  color: var(--white);
  padding: 10rem 0 5rem;
  position: relative;
}

.article-hero::after {
  background: var(--brand);
  bottom: 0;
  content: "";
  height: 0.55rem;
  left: 0;
  position: absolute;
  width: min(38vw, 520px);
}

.article-hero-blue::after {
  background: var(--blue);
}

.article-hero-violet::after {
  background: var(--violet);
}

.article-back {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 2.2rem;
  text-decoration-thickness: 2px;
  text-transform: uppercase;
  text-underline-offset: 0.25rem;
}

.article-hero h1 {
  font-size: clamp(4rem, 10vw, 8.5rem);
  max-width: 1120px;
}

.article-lede {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  margin: 2rem 0 0;
  max-width: 800px;
}

.article-meta {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 2rem;
  text-transform: uppercase;
}

.article-body {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.article-prose {
  font-size: 1.08rem;
  margin: 0 auto;
  max-width: 780px;
}

.article-prose > p:first-child {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.5;
}

.article-prose h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 4rem 0 1.2rem;
}

.article-prose h3 {
  font-size: 1.85rem;
  margin: 2.5rem 0 1rem;
}

.article-prose a {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2rem;
}

.article-callout {
  background: var(--white);
  border-left: 0.45rem solid var(--brand);
  font-size: 1.18rem;
  font-weight: 700;
  margin: 3rem 0;
  padding: 1.5rem 1.7rem;
}

.article-timeline {
  border-left: 2px solid var(--ink);
  list-style: none;
  margin: 3rem 0;
  padding: 0 0 0 1.7rem;
}

.article-timeline li {
  margin-bottom: 1.8rem;
  position: relative;
}

.article-timeline li::before {
  background: var(--brand);
  border: 4px solid var(--paper);
  border-radius: 50%;
  content: "";
  height: 1rem;
  left: -2.25rem;
  position: absolute;
  top: 0.35rem;
  width: 1rem;
}

.article-timeline strong {
  display: block;
  font-size: 1.15rem;
}

.article-figure {
  margin: 3rem 0;
}

.article-figure img {
  display: block;
  max-height: 560px;
  object-fit: cover;
  width: 100%;
}

.article-figure--archive img {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.12);
  height: auto;
  max-height: none;
  object-fit: contain;
}

.article-figure--archive {
  margin-left: 50%;
  transform: translateX(-50%);
  width: min(1080px, calc(100vw - 2rem));
}

.article-figure figcaption {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 0.65rem;
}

.article-sources {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
}

.article-sources strong {
  color: var(--ink);
}

.magazine-index {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.info-page .article-hero h1 {
  font-size: clamp(4rem, 10vw, 8.5rem);
}

.info-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.info-content {
  font-size: 1.05rem;
  margin: 0 auto;
  max-width: 900px;
}

.info-content h2 {
  font-size: clamp(2.35rem, 5vw, 4rem);
  margin: 3.5rem 0 1rem;
}

.info-content h2:first-child {
  margin-top: 0;
}

.info-content h3 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.75rem;
}

.info-content a {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2rem;
}

.info-card {
  background: var(--white);
  border-top: 0.45rem solid var(--brand);
  height: 100%;
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.info-card h2,
.info-card h3 {
  margin-top: 0;
}

.info-card h2 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
}

.info-card h3 {
  font-size: 1.45rem;
}

.info-note {
  background: #fff3cd;
  border-left: 0.45rem solid #e4a11b;
  margin: 0 0 3rem;
  padding: 1.25rem 1.4rem;
}

.info-meta {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 3rem;
}

.contact-link {
  align-items: center;
  display: inline-flex;
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 900;
  gap: 0.65rem;
  overflow-wrap: anywhere;
}

.magazine-card {
  background: var(--white);
  border-top: 0.45rem solid var(--brand);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 320px;
  padding: 1.8rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.magazine-card:hover,
.magazine-card:focus {
  box-shadow: 0 22px 46px rgba(17, 17, 17, 0.12);
  transform: translateY(-6px);
}

.magazine-card h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  margin: 1.3rem 0 1rem;
}

.magazine-card p {
  color: var(--muted);
}

.magazine-card .text-link {
  margin-top: auto;
}

.newsletter {
  background: var(--ink);
  padding: 0 0 clamp(5rem, 10vw, 9rem);
}

.newsletter-box {
  background: var(--brand);
  color: var(--white);
  padding: clamp(2rem, 6vw, 5rem);
}

.newsletter-box h2 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.newsletter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.newsletter-actions .btn {
  align-items: center;
  display: inline-flex;
  min-height: 58px;
  white-space: normal;
}

.form-note {
  font-size: 0.78rem;
  margin: 0.65rem 0 0;
  opacity: 0.8;
}

.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: max(3rem, env(safe-area-inset-bottom));
  padding-top: 3rem;
}

.footer-brand {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  justify-content: flex-end;
}

.footer-nav a {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.copyright {
  font-size: 0.78rem;
  margin-top: 0.8rem;
}

@media (min-width: 992px) and (max-height: 900px) {
  .hero-content .row {
    padding-bottom: 2rem !important;
    padding-top: 6rem;
  }

  .hero-content .row > [class*="col-"] {
    padding-bottom: 0 !important;
  }

  .hero h1 {
    font-size: clamp(4.7rem, 10.25vw, 9.5rem);
  }

  .hero-copy {
    margin-top: 1rem;
  }

  .hero-copy + .d-flex {
    margin-top: 1rem !important;
  }

  .hero .btn-lg {
    padding-bottom: 0.85rem;
    padding-top: 0.85rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .brand-wrap img {
    height: 30px;
    max-width: 190px;
  }

  .navbar .navbar-nav {
    gap: 0.15rem !important;
  }

  .navbar .nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.075em;
    padding-left: 0.55rem !important;
    padding-right: 0.55rem !important;
  }

  .navbar .nav-pill {
    padding-inline: 0.85rem !important;
  }
}

@media (max-width: 991.98px) {
  .places-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .place-featured {
    grid-column: span 2;
    grid-row: auto;
  }

  .place-teal {
    grid-column: span 2;
  }

  .navbar-collapse {
    padding: 1rem 0 0.5rem;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.32)), linear-gradient(0deg, rgba(17, 17, 17, 0.8), transparent 55%);
  }

  .hero-stamp {
    bottom: 2rem;
    height: 92px;
    padding-top: 21px;
    right: 1.5rem;
    width: 92px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hero {
    min-height: 100svh;
  }

  .hero-content .min-vh-100 {
    min-height: 100svh !important;
    padding-bottom: calc(4rem + env(safe-area-inset-bottom)) !important;
    padding-top: 7rem;
  }

  .hero-content .row > [class*="col-"] {
    padding-bottom: 0 !important;
  }

  .hero h1 {
    font-size: clamp(4.7rem, 10.5vw, 6.5rem);
  }

  .hero-copy {
    font-size: 1.25rem;
    margin-top: 1rem;
  }

  .hero-copy + .d-flex {
    margin-top: 1rem !important;
  }
}

@media (orientation: portrait) and (min-width: 992px) and (max-width: 1100px) {
  .hero-content .row > [class*="col-"] {
    transform: translateY(-4svh);
  }
}

@media (orientation: landscape) and (hover: none) and (min-width: 768px) and (max-width: 1399.98px),
       (orientation: landscape) and (min-width: 1367px) and (max-width: 1399.98px) {
  .hero {
    min-height: 100svh;
  }

  .hero-content .row {
    align-items: center !important;
    min-height: 100svh !important;
    padding-bottom: 2rem !important;
    padding-top: 5rem;
  }

  .hero-content .row > [class*="col-"] {
    max-width: 100%;
    padding-bottom: 0 !important;
    transform: translateY(10svh);
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(5.5rem, 10.5vw, 9rem);
    white-space: nowrap;
  }

  .hero-copy {
    font-size: 1.25rem;
    margin-top: 1rem;
    max-width: 760px;
  }

  .hero-copy + .d-flex {
    margin-top: 1rem !important;
  }

  .hero .btn-lg {
    padding: 1rem 1.4rem;
  }
}

@media (max-width: 767.98px) {
  .article-hero {
    padding: 8.5rem 0 4rem;
  }

  .article-hero h1 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
    overflow-wrap: anywhere;
  }

  .article-prose {
    font-size: 1rem;
  }

  .magazine-card {
    min-height: 290px;
  }

  .hero {
    min-height: max(780px, 100svh);
  }

  .hero-content .min-vh-100 {
    min-height: max(780px, 100svh) !important;
    padding-top: 9rem;
  }

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

  .hero-stamp {
    display: none;
  }

  .event-top {
    min-height: 160px;
  }

  .event-feature {
    grid-template-columns: 1fr;
  }

  .event-feature-date {
    min-height: 220px;
  }

  .places-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .place-featured,
  .place-teal,
  .submit-place {
    grid-column: auto;
  }

  .newsletter-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .story-main {
    min-height: 500px;
  }

  .story-row {
    gap: 0.45rem 1rem;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .story-row .story-tag {
    grid-column: 1 / -1;
  }

  .story-row > div {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
  }

  .story-row > span:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
