:root {
  --bg: #f5f0e6;
  --bg-soft: #fbf8f2;
  --surface: rgba(255, 252, 246, 0.82);
  --surface-strong: #fffdf9;
  --line: rgba(86, 65, 38, 0.14);
  --text: #1f2a1f;
  --muted: #5f6657;
  --primary: #2f6a45;
  --primary-dark: #1f4d33;
  --primary-soft: #dfeee3;
  --accent: #c27b32;
  --accent-soft: #f4ddbf;
  --shadow: 0 20px 60px rgba(44, 49, 35, 0.12);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(194, 123, 50, 0.18), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(47, 106, 69, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f4ea 0%, #f4efe5 50%, #f7f3eb 100%);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  z-index: 1200;
  transition: width 0.12s linear;
}

.page-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.page-glow-one {
  top: -8rem;
  left: -8rem;
  background: rgba(194, 123, 50, 0.26);
}

.page-glow-two {
  bottom: -10rem;
  right: -8rem;
  background: rgba(47, 106, 69, 0.22);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  padding: 1rem 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  padding: 0.55rem 0;
  background: rgba(248, 244, 234, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(41, 48, 35, 0.08);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-height);
  padding: 0.95rem 1.25rem;
  background: rgba(255, 251, 245, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 15px 40px rgba(54, 55, 40, 0.08);
}

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

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.3rem;
}

.brand strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.main-nav a {
  position: relative;
  padding: 0.35rem 0.15rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta,
.button-primary {
  color: #fffdf9;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 14px 28px rgba(47, 106, 69, 0.24);
}

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

.button-secondary {
  color: var(--text);
  background: rgba(255, 252, 246, 0.8);
  border-color: var(--line);
}

.button-block {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.82);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero-section {
  position: relative;
  padding: 3.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 5.65rem);
  max-width: 11ch;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-text,
.section-heading p,
.story-panel p,
.feature-card p,
.animal-content p,
.contact-copy p,
.contact-points span,
.stat-card span,
.gallery-caption,
form span,
.form-message,
.site-footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 58ch;
  margin: 1.4rem 0 0;
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-highlights article,
.story-panel,
.feature-card,
.animal-card,
.contact-panel,
.stat-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-highlights article {
  padding: 1.15rem 1.2rem;
}

.hero-highlights strong {
  display: block;
  margin-bottom: 0.35rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 32px 60px rgba(44, 49, 35, 0.18);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  inset: 3.5rem 0 0 4rem;
}

.hero-card-float {
  animation: floatCard 8s ease-in-out infinite;
}

.hero-card-1 {
  top: 0;
  left: 0;
  width: 10.5rem;
  height: 13rem;
  animation-delay: 0.2s;
}

.hero-card-2 {
  right: 1rem;
  top: 2.5rem;
  width: 11rem;
  height: 15rem;
  animation-delay: 1.1s;
}

.hero-card-3 {
  left: 2rem;
  bottom: 1rem;
  width: 11rem;
  height: 8.5rem;
  animation-delay: 2s;
}

.hero-badge {
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  padding: 1rem 1.2rem;
  min-width: 240px;
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(44, 49, 35, 0.14);
}

.hero-badge span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.hero-badge strong {
  font-size: 1.1rem;
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue div {
  width: 1px;
  height: 54px;
  background: linear-gradient(180deg, rgba(47, 106, 69, 0), rgba(47, 106, 69, 0.8), rgba(47, 106, 69, 0));
  animation: pulseLine 1.8s ease-in-out infinite;
}

.impact-band {
  padding: 0 0 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.6rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
  font-family: "Fraunces", serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.7), rgba(244, 237, 224, 0.66));
}

.section-gallery {
  position: relative;
}

.section-recent {
  padding-top: 1rem;
}

.section-gallery::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 8%;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(194, 123, 50, 0.11);
  filter: blur(26px);
  pointer-events: none;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-heading p:last-child {
  margin-top: 1rem;
  line-height: 1.75;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.2rem;
}

.theme-grid,
.story-stack {
  display: grid;
  gap: 1.2rem;
}

.recent-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.recent-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 30%);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0.15rem 0.85rem;
  scrollbar-width: none;
}

.recent-track::-webkit-scrollbar {
  display: none;
}

.recent-card {
  position: relative;
  min-height: 340px;
  scroll-snap-align: start;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.recent-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.recent-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 24, 17, 0.08), rgba(19, 24, 17, 0.42));
}

.recent-card:hover {
  transform: translateY(-4px) scale(1.01);
}

.recent-card-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.88);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.recent-nav {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.9);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.recent-nav:hover {
  transform: scale(1.05);
  background: #fff;
}

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

.theme-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.theme-card-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.theme-card-body {
  padding: 1.35rem;
}

.theme-card-body h3,
.story-row-copy h3 {
  margin: 0.65rem 0 0.65rem;
}

.theme-card-body strong {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--primary-dark);
}

.theme-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem;
  background: rgba(255, 252, 246, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.story-row-reverse .story-row-media {
  order: 2;
}

.story-row-reverse .story-row-copy {
  order: 1;
}

.story-row-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 24px;
}

.story-row-copy p:last-child {
  color: var(--muted);
  line-height: 1.75;
}

.story-panel {
  padding: 1.5rem;
}

.panel-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.panel-wide img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 22px;
  object-fit: cover;
}

.story-panel h3,
.feature-card h3,
.animal-content h3,
.contact-copy h2 {
  margin: 0 0 0.7rem;
}

.feature-grid,
.animal-grid,
.gallery-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

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

.feature-card {
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -1.5rem -1.5rem auto;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(47, 106, 69, 0.08);
}

.feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-weight: 800;
}

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

.animal-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.animal-card:hover,
.feature-card:hover,
.story-panel:hover,
.stat-card:hover,
.contact-panel:hover,
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(44, 49, 35, 0.16);
}

.animal-media {
  position: relative;
  overflow: hidden;
}

.animal-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.animal-card:hover .animal-media img,
.gallery-trigger:hover img,
.gallery-trigger:hover video {
  transform: scale(1.05);
}

.animal-content {
  padding: 1.4rem;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.filter-button {
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.84);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

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

.gallery-item {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.gallery-trigger {
  position: relative;
  width: 100%;
  min-height: 320px;
  padding: 0;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16, 22, 15, 0.68) 100%);
}

.gallery-trigger img,
.gallery-trigger video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-pill {
  position: absolute;
  z-index: 1;
}

.video-pill {
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  font-size: 0.82rem;
  font-weight: 700;
}

.gallery-badge {
  background: rgba(47, 106, 69, 0.78);
}

.section-contact {
  padding-bottom: 6.5rem;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-copy {
  padding-right: 1rem;
}

.contact-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-points article {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 252, 246, 0.6);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.contact-points strong {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-panel {
  padding: 1.6rem;
}

.form-message {
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  font-weight: 600;
}

.form-message-success {
  color: #14442a;
  background: rgba(47, 106, 69, 0.12);
  border: 1px solid rgba(47, 106, 69, 0.22);
}

.form-message-error {
  color: #7b281c;
  background: rgba(189, 72, 52, 0.12);
  border: 1px solid rgba(189, 72, 52, 0.22);
}

form {
  display: grid;
  gap: 1rem;
}

form label {
  display: grid;
  gap: 0.55rem;
}

form span {
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(95, 102, 87, 0.22);
  border-radius: 18px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(47, 106, 69, 0.48);
  box-shadow: 0 0 0 4px rgba(47, 106, 69, 0.11);
  transform: translateY(-1px);
}

textarea {
  resize: vertical;
  min-height: 160px;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 28px;
  background: rgba(255, 252, 246, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 45px rgba(44, 49, 35, 0.1);
}

.footer-shell a {
  color: var(--primary-dark);
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(10, 13, 10, 0.86);
  backdrop-filter: blur(10px);
  z-index: 2000;
}

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

.lightbox-stage {
  max-width: min(1100px, calc(100vw - 10rem));
}

.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 72vh;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
  margin: 1rem 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.lightbox-caption:empty {
  display: none;
}

.lightbox-close,
.lightbox-nav {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="left"] {
  transform: translateX(34px);
}

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

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    transform: scaleY(0.8);
    opacity: 0.45;
  }
  50% {
    transform: scaleY(1.1);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .contact-grid,
  .story-grid,
  .theme-grid,
  .feature-grid,
  .animal-grid,
  .gallery-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recent-track {
    grid-auto-columns: minmax(280px, 46%);
  }

  .hero-visual {
    min-height: 560px;
  }

  .panel-wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 0.85rem 0;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  .main-nav.is-open {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.8rem;
  }

  .nav-shell.nav-open .nav-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    justify-self: start;
  }

  .hero-grid,
  .story-grid,
  .theme-grid,
  .feature-grid,
  .animal-grid,
  .gallery-grid,
  .contact-grid,
  .stats-grid,
  .hero-highlights,
  .panel-wide,
  .story-row {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 1.5rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-card-main {
    inset: 2.5rem 0 0 1.5rem;
  }

  .hero-card-2 {
    right: 0;
  }

  .hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
  }

  .recent-shell {
    grid-template-columns: 1fr;
  }

  .recent-nav {
    display: none;
  }

  .recent-track {
    grid-auto-columns: minmax(250px, 82%);
  }

  .contact-copy {
    padding-right: 0;
  }

  .story-row-reverse .story-row-media,
  .story-row-reverse .story-row-copy {
    order: initial;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-stage {
    max-width: calc(100vw - 2rem);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .nav-shell {
    padding: 0.8rem 1rem;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand span {
    font-size: 0.82rem;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .section {
    padding: 4.3rem 0;
  }

  .hero-card-1,
  .hero-card-2,
  .hero-card-3 {
    width: 8rem;
    height: 9rem;
  }

  .hero-card-3 {
    height: 6.8rem;
  }

  .gallery-trigger,
  .gallery-trigger img,
  .gallery-trigger video {
    min-height: 260px;
    height: 260px;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .lightbox-nav {
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
