:root {
  --color-dark: #1a1a1a;
  --color-light: #f9f3e9;
  --color-brass-light: #b99863;
  --color-brass: #b08d57;
  --color-brass-dark: #8f744d;
  --color-burgundy: #58181f;
  --color-text: #333333;

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Lato', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
body, html {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-light);
  line-height: 1.65;
  font-size: 16px;
}

/* Images */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  z-index: 1050;
  background: rgba(20, 20, 20, 0.98);
  border-bottom: 1px solid rgba(185, 152, 99, 0.22);
  box-shadow: 0 5px 20px rgba(0,0,0,0.18);
}
.site-header.scrolled {
  background: rgba(20, 20, 20, 1);
  box-shadow: 0 5px 24px rgba(0,0,0,0.32);
}
.header-content {
  max-width: 1450px;
  width: 92%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  text-decoration: none;
}
.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.foundation-name-wrapper {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--color-light);
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 225px;
}
.foundation-name-line {
  display: block;
  white-space: nowrap;
}

/* Navigation */
.primary-nav {
  margin-left: auto;
}
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.45rem;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-light);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--color-brass-light);
  outline: none;
}
.support-btn {
  background-color: var(--color-brass);
  border: 1px solid var(--color-brass);
  padding: 0 1.25rem;
  min-height: 38px;
  color: #fffaf0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.support-btn:hover,
.support-btn:focus {
  background-color: var(--color-brass-dark);
  border-color: var(--color-brass-light);
  color: #fffaf0;
  outline: none;
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.35rem;
}
.hamburger-bar {
  width: 27px;
  height: 2px;
  background-color: var(--color-light);
  border-radius: 2px;
}

/* HERO */
.hero {
  position: relative;
  height: min(calc(100vh - 82px), 860px);
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #21170f;
}
.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.90) contrast(1.02) brightness(0.90);
}
.gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10, 9, 8, 0.88) 0%,
      rgba(10, 9, 8, 0.72) 22%,
      rgba(10, 9, 8, 0.34) 40%,
      rgba(10, 9, 8, 0.06) 62%,
      rgba(10, 9, 8, 0) 78%),
    linear-gradient(180deg,
      rgba(0,0,0,0.05) 0%,
      rgba(0,0,0,0) 56%,
      rgba(0,0,0,0.18) 100%);
  pointer-events: none;
  z-index: 2;
}
.archival-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.018) 0,
    rgba(255,255,255,0.018) 2px,
    rgba(0,0,0,0.018) 3px,
    rgba(0,0,0,0.018) 5px
  );
  z-index: 3;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  z-index: 4;
  width: 92%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0;
  color: var(--color-light);
  user-select: none;
}
.hero-content > * { max-width: 520px; }
.hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(3.35rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem 0;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0,0,0,0.38);
  max-width: 400px;
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 2rem 0;
  letter-spacing: 0.055em;
  max-width: 400px;
  color: #f8f1e5;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  user-select: text;
}
.hero-buttons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 1.5rem;
  height: 46px;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  user-select: none;
  text-decoration: none;
}
.button:hover { transform: translateY(-1px); }
.primary-button {
  background-color: var(--color-brass);
  border-color: var(--color-brass);
  color: #fffaf0;
}
.primary-button:hover,
.primary-button:focus {
  background-color: var(--color-brass-dark);
  border-color: var(--color-brass-light);
  color: #fffaf0;
  outline: none;
}
.secondary-button {
  background-color: rgba(15, 13, 11, 0.12);
  border-color: rgba(249, 243, 233, 0.78);
  color: #fffaf0;
}
.secondary-button:hover,
.secondary-button:focus {
  background-color: rgba(176, 141, 87, 0.9);
  border-color: var(--color-brass);
  color: #fffaf0;
  outline: none;
}

/* Fade + slide up animation */
.fade-slide-up {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile navigation panel */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.99);
  border-top: 1px solid rgba(185, 152, 99, 0.18);
  box-shadow: 0 14px 28px rgba(0,0,0,0.32);
}
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0.75rem 6%;
}
.mobile-nav-list li { margin: 0; }
.mobile-nav-link {
  display: block;
  padding: 0.85rem 0;
  color: var(--color-light);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(249,243,233,0.08);
}
.mobile-nav-link:hover,
.mobile-nav-link:focus { color: var(--color-brass-light); }
.mobile-nav-link.support-btn {
  display: inline-flex;
  margin: 0.75rem 0;
  padding: 0 1.2rem;
  border-bottom: 0;
}


/* HERO ART-DIRECTION PASS 2 */
@media (min-width: 1201px) {
  .hero-content {
    width: 92%;
    max-width: 1450px;
    transform: translateX(-2.5%) translateY(2%);
  }

  .hero-content > * {
    max-width: 520px;
  }

  .hero-title {
    max-width: 520px;
    font-size: clamp(3.35rem, 3.55vw, 4.05rem);
    line-height: 0.96;
  }

  .hero-subtitle {
    max-width: 500px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .hero-content {
    transform: translateX(-1.5%);
  }

  .hero-title {
    max-width: 500px;
  }
}

body {
  border: 0 !important;
}

.site-header {
  border-top: 0 !important;
  border-left: 0 !important;
}

.site-header-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 56px;
}

.foundation-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(1.25) contrast(1.08);
}

.foundation-name-wrapper {
  min-width: 230px;
  font-size: 1.03rem;
  line-height: 0.91;
  letter-spacing: 0.012em;
}

.foundation-name-line {
  white-space: nowrap;
}

.primary-nav {
  margin-left: auto;
}

.primary-nav ul {
  gap: 30px;
}

.primary-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.055em;
}

.nav-cta {
  padding: 0.78rem 1.35rem;
}

.hero {
  min-height: calc(100vh - 74px);
  height: calc(100vh - 74px);
  background-position: center center;
}

.hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 7, 0.88) 0%,
      rgba(8, 8, 7, 0.72) 19%,
      rgba(8, 8, 7, 0.38) 34%,
      rgba(8, 8, 7, 0.10) 51%,
      rgba(8, 8, 7, 0.04) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0.12) 100%
    );
}

.hero-content {
  width: min(520px, 42vw);
  margin-left: 0;
  padding-left: 0;
  transform: translateY(1%);
}

.hero-title {
  max-width: 500px;
  font-size: clamp(3.55rem, 4vw, 4.65rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  max-width: 460px;
  font-size: 0.92rem;
  line-height: 1.55;
  letter-spacing: 0.035em;
  margin-bottom: 1.75rem;
}

.hero-actions {
  gap: 1rem;
}

.hero-actions .btn {
  min-height: 48px;
  padding: 0.82rem 1.45rem;
  letter-spacing: 0.025em;
}

@media (min-width: 901px) {
  .hero-title {
    max-width: 500px;
  }
}

@media (max-width: 1200px) {
  .site-header-inner {
    padding: 0 34px;
  }

  .primary-nav ul {
    gap: 20px;
  }

  .primary-nav a {
    font-size: 0.72rem;
  }

  .foundation-name-wrapper {
    min-width: 200px;
    font-size: 0.94rem;
  }
}

@media (max-width: 900px) {
  .site-header-inner {
    padding: 0 24px;
  }

  .hero {
    height: auto;
    min-height: calc(100vh - 74px);
  }

  .hero-content {
    width: min(520px, 82vw);
  }
}

@media (max-width: 600px) {
  .site-header-inner {
    padding: 0 18px;
  }

  .foundation-name-wrapper {
    min-width: 0;
    font-size: 0.78rem;
  }

  .foundation-logo {
    width: 46px;
    height: 46px;
  }

  .hero-content {
    width: auto;
    max-width: none;
    padding: 0 22px;
  }

  .hero-title {
    max-width: 420px;
    font-size: clamp(2.75rem, 11vw, 4rem);
  }

  .hero-subtitle {
    max-width: 360px;
  }
}

@media (min-width: 901px) {
  .hero-content {
    margin-left: clamp(8vw, 10.5vw, 180px);
    width: min(520px, 40vw);
  }

  .hero-title {
    max-width: 500px;
  }

  .hero-subtitle {
    max-width: 470px;
  }
}

@media (min-width: 1500px) {
  .hero-content {
    margin-left: 10.5vw;
  }
}

@media (min-width: 1800px) {
  .hero-content {
    margin-left: 11vw;
  }
}

@media (max-width: 900px) {
  .hero-content {
    margin-left: 0;
  }
}


@media (min-width: 901px) {
  .hero-content {
    margin-left: clamp(8vw, 10.5vw, 180px);
    width: min(520px, 40vw);
  }

  .hero-title {
    max-width: 520px;
    font-size: clamp(3.35rem, 3.55vw, 4.05rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
  }

  .hero-subtitle {
    max-width: 470px;
  }
}

@media (min-width: 1500px) {
  .hero-content {
    margin-left: 10.5vw;
    width: 520px;
  }
}

@media (min-width: 1800px) {
  .hero-content {
    margin-left: 11vw;
  }
}

.legacy-introduction {
  background: #f3eee5;
  color: #171614;
  overflow: hidden;
}

.legacy-introduction-inner {
  width: min(1320px, 88vw);
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: stretch;
}

.legacy-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #171614;
}

.legacy-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.02);
  transform: scale(1.015);
}

.legacy-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02) 45%, rgba(0,0,0,0.58) 100%);
  pointer-events: none;
}

.legacy-image-caption {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  color: #f5f0e8;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legacy-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 82px 76px;
}

.legacy-copy .eyebrow {
  margin: 0 0 28px;
  color: #9a7741;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legacy-number {
  position: absolute;
  top: 54px;
  right: 58px;
  color: rgba(154,119,65,0.24);
  font-family: var(--font-serif);
  font-size: 5.5rem;
  line-height: 1;
}

.legacy-copy h2 {
  max-width: 560px;
  margin: 0;
  color: #171614;
  font-family: var(--font-serif);
  font-size: clamp(2.55rem, 3.15vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.legacy-rule {
  width: 62px;
  height: 2px;
  margin: 30px 0 24px;
  background: #b28a4c;
}

.legacy-lead {
  max-width: 460px;
  margin: 0 0 20px;
  color: #39362f;
  font-family: var(--font-serif);
  font-size: 1.38rem;
  line-height: 1.35;
}

.legacy-placeholder {
  max-width: 460px;
  margin: 0 0 30px;
  color: #6d675e;
  font-size: 0.88rem;
  line-height: 1.75;
}

.legacy-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 9px;
  border-bottom: 1px solid #9a7741;
  color: #27241f;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: gap 180ms ease, color 180ms ease;
}

.legacy-link span {
  font-size: 1.15rem;
  line-height: 0.8;
}

.legacy-link:hover {
  gap: 22px;
  color: #9a7741;
}

@media (max-width: 1000px) {
  .legacy-introduction-inner {
    width: 92vw;
    grid-template-columns: 1fr 1fr;
  }

  .legacy-copy {
    padding: 64px 48px;
  }

  .legacy-copy h2 {
    font-size: clamp(2.65rem, 5vw, 4rem);
  }
}

@media (max-width: 760px) {
  .legacy-introduction-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .legacy-image {
    min-height: 430px;
  }

  .legacy-image-caption {
    left: 22px;
    right: 22px;
    bottom: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .legacy-copy {
    padding: 68px 28px 74px;
  }

  .legacy-number {
    top: 34px;
    right: 24px;
    font-size: 4.5rem;
  }

  .legacy-copy h2 {
    max-width: 500px;
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .legacy-lead {
    font-size: 1.18rem;
  }
}

@media (min-width: 761px) {
  .legacy-introduction {
    margin-top: 28px;
  }
}

@media (max-width: 760px) {
  .legacy-introduction {
    margin-top: 18px;
  }
}

html,
body {
  border-top: 0 !important;
  border-left: 0 !important;
}

.story-editorial {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 30%, rgba(177, 137, 75, 0.12), transparent 30%),
    linear-gradient(135deg, #171716 0%, #211f1b 100%);
  color: #f4efe6;
}

.story-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
}

.story-editorial-inner {
  position: relative;
  z-index: 1;
  width: min(1320px, 88vw);
  min-height: 620px;
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 110px minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 54px;
  align-items: center;
}

.story-marker {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-right: 1px solid rgba(214, 180, 116, 0.25);
}

.story-number {
  color: rgba(207, 174, 110, 0.72);
  font-family: var(--font-serif);
  font-size: 4.9rem;
  line-height: 0.9;
}

.story-marker-line {
  width: 1px;
  height: 90px;
  background: #b28a4c;
}

.story-marker-label {
  color: #b28a4c;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.story-editorial-heading .eyebrow {
  margin: 0 0 26px;
  color: #b28a4c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.story-editorial-heading h2 {
  margin: 0;
  color: #f4efe6;
  font-family: var(--font-serif);
  font-size: clamp(3.7rem, 5.4vw, 6.5rem);
  line-height: 0.91;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.story-editorial-copy {
  max-width: 510px;
  padding-top: 26px;
}

.story-lead {
  margin: 0;
  color: #e8dfd0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.4;
}

.story-editorial-rule {
  width: 64px;
  height: 2px;
  margin: 28px 0 24px;
  background: #b28a4c;
}

.story-placeholder {
  margin: 0 0 32px;
  color: rgba(244, 239, 230, 0.62);
  font-size: 0.86rem;
  line-height: 1.8;
}

.story-editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #b28a4c;
  color: #f4efe6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  transition: gap 180ms ease, color 180ms ease;
}

.story-editorial-link span {
  color: #c8a366;
  font-size: 1.15rem;
  line-height: 0.8;
}

.story-editorial-link:hover {
  gap: 22px;
  color: #c8a366;
}

@media (max-width: 1050px) {
  .story-editorial-inner {
    width: 92vw;
    grid-template-columns: 80px minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 34px;
  }

  .story-editorial-heading h2 {
    font-size: clamp(3.2rem, 6vw, 5.2rem);
  }
}

@media (max-width: 760px) {
  .story-editorial-inner {
    width: 100%;
    min-height: 0;
    padding: 72px 28px 78px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .story-marker {
    border-right: 0;
    border-bottom: 1px solid rgba(214, 180, 116, 0.25);
    padding-bottom: 22px;
    margin-bottom: 46px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
  }

  .story-number {
    font-size: 3.6rem;
  }

  .story-marker-line {
    width: 46px;
    height: 1px;
  }

  .story-marker-label {
    writing-mode: initial;
    transform: none;
  }

  .story-editorial-heading h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .story-editorial-copy {
    padding-top: 42px;
  }
}

@media (min-width: 761px) {
  .story-editorial {
    margin-top: 28px;
  }
}

@media (max-width: 760px) {
  .story-editorial {
    margin-top: 18px;
  }
}

.story-marker-label {
  white-space: nowrap;
}

.story-editorial-heading h2 {
  max-width: 760px;
}

@media (max-width: 760px) {
  .story-marker-label {
    white-space: nowrap;
  }
}

@media (min-width: 901px) {
  .story-editorial-inner {
    grid-template-columns: 92px minmax(0, 0.9fr) minmax(390px, 0.95fr);
    gap: 48px;
  }

  .story-editorial-heading h2 {
    max-width: none;
    font-size: clamp(3.35rem, 4.1vw, 4.55rem);
    line-height: 0.94;
    letter-spacing: -0.035em;
    white-space: nowrap;
  }

  .story-editorial-copy {
    max-width: 500px;
    padding-top: 10px;
  }

  .story-lead {
    font-size: clamp(1.18rem, 1.65vw, 1.5rem);
    line-height: 1.42;
  }
}

@media (min-width: 1500px) {
  .story-editorial-heading h2 {
    font-size: 4.55rem;
  }
}

@media (max-width: 900px) {
  .story-editorial-heading h2 {
    white-space: normal;
  }
}

@media (min-width: 901px) {
  .story-editorial-inner {
    grid-template-columns: 92px minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 52px;
  }

  .story-editorial-heading {
    min-width: 0;
  }

  .story-editorial-heading h2 {
    max-width: 100%;
    font-size: clamp(3rem, 3.35vw, 3.8rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
    white-space: normal;
    overflow-wrap: normal;
  }

  .story-editorial-copy {
    position: relative;
    z-index: 2;
    max-width: 500px;
    padding-left: 8px;
  }

  .foundation-mobile-break {
    display: none;
  }
}

@media (max-width: 900px) {
  .foundation-mobile-break {
    display: none;
  }

  .story-editorial-heading h2 {
    white-space: normal;
  }
}

@media (min-width: 901px) {
  .foundation-line-break {
    display: block;
  }

  .story-editorial-heading h2 {
    font-size: clamp(3rem, 3.15vw, 3.65rem);
    line-height: 0.98;
    max-width: 650px;
  }
}

@media (max-width: 900px) {
  .foundation-line-break {
    display: none;
  }
}

.music-editorial {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  background: #111212;
  color: #f4efe6;
}

.music-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(202, 166, 101, 0.35) 50%, transparent 50.1%);
}

.music-editorial-inner {
  position: relative;
  z-index: 1;
  width: min(1320px, 88vw);
  margin: 0 auto;
  padding: 92px 0 102px;
}

.music-editorial-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(232, 223, 208, 0.18);
}

.music-eyebrow {
  margin: 0 0 18px;
  color: #b28a4c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.music-editorial-top h2 {
  margin: 0;
  color: #f4efe6;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 6vw, 6.9rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.music-section-number {
  color: rgba(207, 174, 110, 0.42);
  font-family: var(--font-serif);
  font-size: clamp(4rem, 6vw, 6.5rem);
  line-height: 0.8;
}

.music-editorial-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(420px, 1.05fr);
  gap: 100px;
  align-items: center;
  padding: 76px 70px 30px;
}

.record-art {
  position: relative;
  width: min(430px, 31vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, #202020 0 2px, #111 3px 6px);
  box-shadow:
    0 0 0 1px rgba(244, 239, 230, 0.16),
    0 28px 55px rgba(0, 0, 0, 0.42);
  transform: rotate(-9deg);
}

.record-art::after {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 230, 0.09);
}

.record-label {
  position: absolute;
  inset: 29%;
  z-index: 2;
  border-radius: 50%;
  background: #b28a4c;
  color: #181817;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--font-serif);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.record-label span {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
}

.record-label strong {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.record-label small {
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
}

.record-hole {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #151515;
  box-shadow: 0 0 0 3px rgba(244,239,230,0.08);
}

.music-editorial-copy {
  max-width: 590px;
}

.music-lead {
  margin: 0 0 34px;
  color: #e8dfd0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.4;
}

.music-feature-list {
  border-top: 1px solid rgba(232, 223, 208, 0.18);
}

.music-feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(232, 223, 208, 0.18);
}

.music-feature > span {
  color: #b28a4c;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  padding-top: 3px;
}

.music-feature h3 {
  margin: 0 0 5px;
  color: #f4efe6;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

.music-feature p {
  margin: 0;
  color: rgba(244,239,230,0.62);
  font-size: 0.84rem;
  line-height: 1.5;
}

.music-editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding-bottom: 10px;
  border-bottom: 1px solid #b28a4c;
  color: #f4efe6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: gap 180ms ease, color 180ms ease;
}

.music-editorial-link span {
  color: #c8a366;
  font-size: 1.15rem;
}

.music-editorial-link:hover {
  gap: 23px;
  color: #c8a366;
}

@media (max-width: 900px) {
  .music-editorial-inner {
    width: 92vw;
    padding: 74px 0 84px;
  }

  .music-editorial-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 24px 10px;
  }

  .record-art {
    width: min(390px, 72vw);
  }
}

@media (max-width: 600px) {
  .music-editorial {
    margin-top: 18px;
  }

  .music-editorial-top h2 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  .music-section-number {
    font-size: 3.5rem;
  }

  .music-editorial-grid {
    padding-left: 0;
    padding-right: 0;
  }
}

.archives-editorial {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  background: #f3eee4;
  color: #171817;
}

.archives-editorial::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(32, 31, 28, 0.08);
}

.archives-editorial-inner {
  position: relative;
  z-index: 1;
  width: min(1320px, 88vw);
  margin: 0 auto;
  padding: 92px 0 104px;
}

.archives-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(23, 24, 23, 0.18);
}

.archives-eyebrow {
  margin: 0 0 18px;
  color: #9a7136;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.archives-heading-row h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 6vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.archives-section-number {
  color: rgba(171, 133, 69, 0.35);
  font-family: var(--font-serif);
  font-size: clamp(4rem, 6vw, 6.5rem);
  line-height: 0.8;
}

.archives-editorial-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  gap: 92px;
  align-items: start;
  padding: 70px 54px 0;
}

.archive-intro {
  padding-top: 22px;
  max-width: 430px;
}

.archive-lead {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.42;
}

.archive-editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 36px;
  padding-bottom: 10px;
  border-bottom: 1px solid #9a7136;
  color: #171817;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: gap 180ms ease, color 180ms ease;
}

.archive-editorial-link span {
  color: #9a7136;
  font-size: 1.15rem;
}

.archive-editorial-link:hover {
  gap: 22px;
  color: #9a7136;
}

.archive-categories {
  border-top: 1px solid rgba(23, 24, 23, 0.18);
}

.archive-category {
  position: relative;
  display: grid;
  grid-template-columns: 38px 116px minmax(0, 1fr) 26px;
  gap: 22px;
  align-items: center;
  min-height: 148px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 24, 23, 0.18);
  color: inherit;
  text-decoration: none;
}

.archive-category-number {
  align-self: start;
  padding-top: 4px;
  color: #9a7136;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.archive-category-art {
  width: 116px;
  height: 108px;
  position: relative;
  overflow: hidden;
  background: #1a1b1a;
  box-shadow: 0 10px 22px rgba(23, 24, 23, 0.12);
}

.archive-photo-art {
  background:
    linear-gradient(145deg, rgba(210,178,121,0.22), transparent 45%),
    repeating-linear-gradient(0deg, transparent 0 8px, rgba(244,239,230,0.06) 9px 10px),
    #20211f;
}

.archive-photo-art::before,
.archive-photo-art::after {
  content: "";
  position: absolute;
  background: #d7c8ac;
  opacity: 0.72;
}

.archive-photo-art::before {
  width: 58px;
  height: 58px;
  left: 28px;
  top: 24px;
  border-radius: 50%;
}

.archive-photo-art::after {
  width: 90px;
  height: 30px;
  left: 13px;
  bottom: 0;
  border-radius: 50% 50% 0 0;
}

.archive-frame-mark {
  position: absolute;
  z-index: 2;
  left: 10px;
  bottom: 9px;
  color: #b28a4c;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.archive-document-art {
  padding: 15px;
  background: #b28a4c;
  color: #171817;
  transform: rotate(-2deg);
}

.archive-document-art span {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.archive-document-art i {
  display: block;
  width: 82%;
  height: 1px;
  margin-top: 12px;
  background: rgba(23,24,23,0.52);
}

.archive-document-art i:last-child {
  width: 62%;
}

.archive-story-art {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 16px;
  background: #171817;
  color: #f3eee4;
  border: 1px solid rgba(171,133,69,0.65);
}

.archive-story-art span {
  color: #b28a4c;
  font-size: 0.5rem;
  letter-spacing: 0.16em;
}

.archive-story-art strong {
  margin-top: 7px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 0.88;
}

.archive-category-copy h3 {
  margin: 0 0 7px;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
}

.archive-category-copy p {
  margin: 0;
  max-width: 330px;
  color: rgba(23,24,23,0.62);
  font-size: 0.83rem;
  line-height: 1.5;
}

.archive-arrow {
  color: #9a7136;
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.archive-category:hover .archive-arrow {
  transform: translate(4px, -4px);
}

@media (max-width: 900px) {
  .archives-editorial-inner {
    width: 92vw;
    padding: 74px 0 84px;
  }

  .archives-editorial-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 24px 0;
  }

  .archive-intro {
    max-width: 650px;
  }

  .archives-editorial::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .archives-editorial {
    margin-top: 18px;
  }

  .archives-heading-row h2 {
    font-size: clamp(3.3rem, 14vw, 5rem);
  }

  .archives-section-number {
    font-size: 3.5rem;
  }

  .archives-editorial-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .archive-category {
    grid-template-columns: 30px 86px minmax(0, 1fr) 18px;
    gap: 12px;
    min-height: 118px;
  }

  .archive-category-art {
    width: 86px;
    height: 82px;
  }

  .archive-category-copy h3 {
    font-size: 0.68rem;
  }

  .archive-category-copy p {
    font-size: 0.75rem;
  }
}

.music-editorial {
  background: #f3eee4;
  color: #171817;
}

.music-editorial::before {
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(154, 113, 54, 0.18) 50%, transparent 50.1%);
}

.music-editorial-top {
  border-bottom-color: rgba(23, 24, 23, 0.18);
}

.music-editorial-top h2 {
  color: #171817;
}

.music-section-number {
  color: rgba(154, 113, 54, 0.42);
}

.music-description {
  color: #171817;
}

.music-description p {
  color: #171817;
}

.music-description::after,
.music-editorial .music-description::after {
  background: #9a7136;
}

.music-feature {
  border-top-color: rgba(23, 24, 23, 0.18);
}

.music-feature:last-child {
  border-bottom-color: rgba(23, 24, 23, 0.18);
}

.music-feature span {
  color: #9a7136;
}

.music-feature h3 {
  color: #171817;
}

.music-feature p {
  color: rgba(23, 24, 23, 0.62);
}

.music-editorial-link {
  color: #171817;
  border-bottom-color: #9a7136;
}

.music-editorial-link span {
  color: #9a7136;
}

.music-record {
  background: #1b1c1b;
  box-shadow: 0 22px 48px rgba(23, 24, 23, 0.14);
}

.story-editorial,
.archives-editorial {
  color: #f4efe6;
}

.archives-editorial {
  background:
    radial-gradient(circle at 82% 22%, rgba(177, 137, 75, 0.10), transparent 30%),
    linear-gradient(135deg, #171716 0%, #211f1b 100%);
}

.archives-editorial::before {
  background: linear-gradient(
    90deg,
    transparent 0 49.9%,
    rgba(202, 166, 101, 0.16) 50%,
    transparent 50.1%
  );
}

.archives-heading-row {
  border-bottom-color: rgba(232, 223, 208, 0.18);
}

.archives-heading-row h2 {
  color: #f4efe6;
}

.archives-editorial .archive-lead {
  color: #f4efe6;
}

.archives-editorial .archive-category {
  color: #f4efe6;
  border-bottom-color: rgba(232, 223, 208, 0.18);
}

.archives-editorial .archive-category-copy p {
  color: rgba(244, 239, 230, 0.62);
}

.music-editorial .music-description,
.music-editorial .music-description p,
.music-editorial .music-intro,
.music-editorial .music-lead,
.music-editorial .music-content {
  color: #171817 !important;
}

.music-editorial .music-description strong,
.music-editorial .music-description h3,
.music-editorial .music-description h4 {
  color: #171817 !important;
}

.music-editorial .music-feature h3,
.music-editorial .music-feature p {
  color: #171817 !important;
}

.music-editorial .music-feature p {
  opacity: 0.72;
}

.music-editorial .music-feature span {
  color: #9a7136 !important;
}

.music-editorial .music-editorial-link,
.music-editorial .music-editorial-link span {
  color: #171817 !important;
}

.music-editorial .music-editorial-link {
  border-bottom-color: #9a7136 !important;
}

.support-section {
  background: var(--color-light);
  color: var(--color-text);
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.support-container {
  max-width: 1200px;
}

.support-container h2 {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

.support-container p {
  margin: 0 0 1.25rem;
  max-width: 720px;
  color: #4b4b4b;
}

.support-container .primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  background: #141414;
  color: var(--color-light);
  border-top: 1px solid rgba(185, 152, 99, 0.42);
  padding: 4.5rem 0 1.5rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-brass);
}

.footer-content {
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(360px, 1fr);
  column-gap: 5rem;
  row-gap: 2.5rem;
  align-items: start;
}

/* Brand */
.footer-branding > a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-light);
  text-decoration: none;
}

.footer-branding img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.75);
  opacity: 0.9;
}

.footer-foundation-name {
  display: block;
  max-width: 260px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--color-light);
}

.footer-mission {
  max-width: 390px;
  margin: 1.25rem 0 0;
  color: rgba(249, 243, 233, 0.68);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Navigation */
.footer-nav {
  justify-self: end;
  width: 100%;
}

.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 0.85rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: rgba(249, 243, 233, 0.78);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  font-size: 0.72rem;
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-brass-light);
  transform: translateX(2px);
  outline: none;
}

.footer-nav .support-btn {
  display: inline-flex;
  color: #fffaf0;
  min-height: 38px;
  padding: 0 1rem;
  transform: none;
}

.footer-nav .support-btn:hover,
.footer-nav .support-btn:focus {
  color: #fffaf0;
  transform: translateY(-1px);
}

/* Social */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  grid-column: 1 / -1;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(249, 243, 233, 0.13);
}

.social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(185, 152, 99, 0.45);
  border-radius: 50%;
  color: var(--color-light);
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-link svg {
  width: 17px;
  height: 17px;
  display: block;
}

.social-link:hover,
.social-link:focus {
  color: #fffaf0;
  border-color: var(--color-brass-light);
  background: rgba(185, 152, 99, 0.16);
  outline: none;
}

/* Copyright */
.footer-copy {
  grid-column: 1 / -1;
  display: block;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(249, 243, 233, 0.13);
  color: rgba(249, 243, 233, 0.48);
  font-size: 0.72rem;
  line-height: 1.6;
  letter-spacing: 0.015em;
}

.footer-copy a {
  color: rgba(249, 243, 233, 0.62);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-copy a:hover,
.footer-copy a:focus {
  color: var(--color-brass-light);
  text-decoration: underline;
  outline: none;
}

@media (max-width: 800px) {
  .site-footer {
    padding: 3.5rem 0 1.25rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-nav {
    justify-self: stretch;
  }

  .footer-nav ul {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .footer-social,
  .footer-copy {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .footer-nav ul {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
  }

  .footer-branding img {
    width: 50px;
    height: 50px;
  }

  .footer-foundation-name {
    font-size: 0.92rem;
  }

  .footer-copy {
    font-size: 0.68rem;
  }
}


.support-cta {
  background: var(--color-light);
  color: var(--color-text);
  margin: 18px 0;
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(4rem, 6vw, 5.25rem);
  border-top: 1px solid rgba(185, 152, 99, 0.18);
  border-bottom: 1px solid rgba(185, 152, 99, 0.18);
}

.support-cta .support-container {
  max-width: 1200px;
}

.support-cta .support-container h2 {
  margin: 0 0 1.15rem;
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

.support-cta .support-container p {
  margin: 0 0 1.5rem;
  max-width: 720px;
  color: #4b4b4b;
  line-height: 1.65;
}

.support-cta .support-container .primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media (max-width: 800px) {
  .support-cta {
    margin: 14px 0;
    padding: 3.25rem 0 4rem;
  }
}


@media (min-width: 901px) {
  .story-editorial-heading h2,
  .music-editorial-top h2,
  .archives-heading-row h2 {
    font-size: clamp(2.55rem, 3.15vw, 3.55rem) !important;
  }
}

@media (max-width: 900px) {
  .story-editorial-heading h2,
  .music-editorial-top h2,
  .archives-heading-row h2 {
    font-size: clamp(2.65rem, 5vw, 4rem) !important;
  }
}

@media (max-width: 760px) {
  .story-editorial-heading h2,
  .music-editorial-top h2,
  .archives-heading-row h2 {
    font-size: clamp(2.7rem, 12vw, 4rem) !important;
  }
}

.gallerys-editorial {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  background:
    radial-gradient(circle at 82% 22%, rgba(177, 137, 75, 0.10), transparent 30%),
    linear-gradient(135deg, #171716 0%, #211f1b 100%);
  color: #f4efe6;
}

.gallerys-editorial-inner {
  position: relative;
  z-index: 1;
  width: min(1320px, 88vw);
  margin: 0 auto;
  padding: 78px 0 88px;
}

.gallerys-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(232, 223, 208, 0.18);
}

.gallerys-eyebrow {
  margin: 0 0 14px;
  color: #b28a4c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.gallerys-heading-row h2 {
  margin: 0;
  color: #f4efe6;
  font-family: var(--font-serif);
  font-size: clamp(2.55rem, 3.15vw, 3.55rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.gallerys-section-number {
  color: rgba(171, 133, 69, 0.42);
  font-family: var(--font-serif);
  font-size: clamp(3.8rem, 5vw, 5.5rem);
  line-height: 0.8;
}

.gallerys-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 38px;
}

.gallerys-photo-card,
.gallerys-photo-card-large {
  position: relative;
  display: block;
  height: 360px;
  overflow: hidden;
  background: #22211f;
  color: #fff;
  text-decoration: none;
}

.gallerys-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.gallerys-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.62), transparent 52%);
  pointer-events: none;
}

.gallerys-photo-card:hover img {
  transform: scale(1.035);
}

.gallerys-photo-label {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 17px;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.gallerys-view-all {
  display: flex;
  justify-content: flex-end;
  padding-top: 30px;
}

.gallerys-editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 9px;
  border-bottom: 1px solid #9a7136;
  color: #f4efe6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: gap 180ms ease, color 180ms ease;
}

.gallerys-editorial-link span {
  color: #b28a4c;
  font-size: 1.15rem;
}

.gallerys-editorial-link:hover {
  gap: 22px;
  color: #b28a4c;
}

@media (max-width: 900px) {
  .gallerys-editorial-inner {
    width: 92vw;
    padding: 68px 0 76px;
  }

  .gallerys-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallerys-photo-card,
  .gallerys-photo-card-large {
    height: 360px;
  }
}

@media (max-width: 600px) {
  .gallerys-editorial {
    margin-top: 18px;
  }

  .gallerys-heading-row {
    align-items: flex-start;
  }

  .gallerys-section-number {
    font-size: 3.5rem;
  }

  .gallerys-photo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallerys-photo-card,
  .gallerys-photo-card-large {
    grid-column: span 1;
    height: 300px;
  }

  .gallerys-view-all {
    justify-content: flex-start;
  }
}
