@font-face { font-family: 'Cormorant'; font-style: normal; font-weight: 300; font-display: swap; src: url('../assets/fonts/cormorant-300.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/fonts/cormorant-400.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant'; font-style: italic; font-weight: 400; font-display: swap; src: url('../assets/fonts/cormorant-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant'; font-style: normal; font-weight: 500; font-display: swap; src: url('../assets/fonts/cormorant-500.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant'; font-style: normal; font-weight: 600; font-display: swap; src: url('../assets/fonts/cormorant-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../assets/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../assets/fonts/inter-600.woff2') format('woff2'); }

:root {
  --green-darkest: #0c1a13;
  --green-deep: #14291e;
  --green-mid: #1f3d2c;
  --green-soft: #2e5440;
  --cream: #f4ecda;
  --cream-light: #faf5e8;
  --cream-warm: #ece2cc;
  --gold: #c9a86a;
  --gold-deep: #a88848;
  --gold-pale: #d9c189;
  --gold-gradient: linear-gradient(120deg,
    #7a5a26 0%,
    #b8893d 14%,
    #d4a857 28%,
    #f4d775 42%,
    #fff4b0 50%,
    #f4d775 58%,
    #d4a857 72%,
    #b8893d 86%,
    #7a5a26 100%);
  --gold-gradient-soft: linear-gradient(120deg,
    #a88848 0%,
    #c9a86a 25%,
    #e8c97a 50%,
    #c9a86a 75%,
    #a88848 100%);
  --text-on-dark: #f4ecda;
  --text-on-dark-muted: rgba(244, 236, 218, 0.62);
  --text-on-dark-faint: rgba(244, 236, 218, 0.32);
  --text-on-light: #14291e;
  --text-on-light-muted: rgba(20, 41, 30, 0.66);
  --hairline-on-dark: rgba(244, 236, 218, 0.18);
  --hairline-on-light: rgba(20, 41, 30, 0.18);

  --font-display: 'Cormorant', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --container: 1440px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
  --section: clamp(6rem, 12vw, 11rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-on-dark);
  background: var(--green-darkest);
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--green-darkest); }


.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.no-rule::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.015em;
}

h1.display { font-size: clamp(3.5rem, 9vw, 9rem); }
h2.display { font-size: clamp(2.75rem, 6vw, 5.5rem); }
h3.display { font-size: clamp(1.75rem, 2.6vw, 2.5rem); }

.lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.4;
  color: var(--text-on-dark-muted);
  max-width: 60ch;
}

p { font-size: 1rem; line-height: 1.7; color: var(--text-on-dark-muted); }

em, .italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }


.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  position: relative;
  padding: var(--section) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}
.section-head .eyebrow { align-self: start; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
}

.hairline { height: 1px; background: var(--hairline-on-dark); width: 100%; }


.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.6s var(--ease), padding 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(12, 26, 19, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.85rem var(--gutter);
  border-bottom: 1px solid var(--hairline-on-dark);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  height: 28px;
  line-height: 0;
}
.nav-logo {
  height: 100%;
  width: auto;
  display: block;

}
.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-menu a {
  position: relative;
  padding-bottom: 4px;
  color: var(--text-on-dark-muted);
  transition: color 0.3s;
}
.nav-menu a:hover { color: var(--text-on-dark); }
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--hairline-on-dark);
  color: var(--text-on-dark);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-darkest);
}
@media (max-width: 800px) {
  .nav-menu { display: none; }
  .nav { padding: 1rem 1.25rem; }
  .nav-cta { padding: 0.6rem 0.95rem; font-size: 10px; letter-spacing: 0.16em; }
  .nav-brand { font-size: 1.2rem; }
}


.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-video, .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-poster { z-index: 0; }
.hero-video { z-index: 1; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero-video.is-loaded { opacity: 1; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(12,26,19,0.65) 0%, rgba(12,26,19,0.35) 35%, rgba(12,26,19,0) 65%),
    linear-gradient(180deg, rgba(12,26,19,0.55) 0%, rgba(12,26,19,0.15) 30%, rgba(12,26,19,0.85) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(201,168,106,0.08), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 var(--gutter) clamp(3rem, 7vw, 6rem);
  max-width: var(--container);
  margin: 0 auto;
}
.hero-tagline {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
}
.hero h1 {
  margin-bottom: 1.75rem;
  max-width: 16ch;
  overflow: hidden;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
}
.hero h1 em { color: var(--gold-pale); font-weight: 400; }

.hero-sub {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  color: var(--text-on-dark-muted);
  max-width: 48ch;
  margin-bottom: 3rem;
  opacity: 0;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--hairline-on-dark);
  padding-top: 1.5rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  opacity: 0;
}
.hero-meta .meta-issue { color: var(--text-on-dark); }
.hero-meta .meta-issue strong { color: var(--gold); font-weight: 500; }

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.scroll-indicator .line-v {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}
@media (max-width: 700px) {
  .scroll-indicator { display: none; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 0.5rem; font-size: 10px; }
  .hero-tagline { font-size: 10px; letter-spacing: 0.3em; }
  h1.display { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-sub { font-size: 1.05rem; margin-bottom: 2rem; }
}


.next-issue {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.next-issue-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.next-issue-head .eyebrow { color: var(--gold); }
.next-issue-head h2 { color: var(--cream); max-width: 14ch; }
.next-issue-head .lead { color: var(--text-on-dark-muted); }
@media (max-width: 800px) {
  .next-issue-head { grid-template-columns: 1fr; gap: 1.5rem; }
}

.next-issue-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 11vw;
  gap: clamp(0.75rem, 1.2vw, 1.25rem);
}
.next-issue-grid figure {
  position: relative;
  overflow: hidden;
  background: var(--green-darkest);
  margin: 0;
}
.next-issue-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.next-issue-grid figure:hover img { transform: scale(1.04); }
.next-issue-grid figcaption {
  position: absolute;
  left: 1rem; top: 1rem;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.45rem 0.75rem;
  background: rgba(12,26,19,0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(244,236,218,0.14);
  z-index: 2;
}
.ni-feature { grid-column: 1 / 8; grid-row: 1 / 5; }
.ni-tall { grid-column: 8 / 13; grid-row: 1 / 3; }
.ni-wide { grid-column: 8 / 13; grid-row: 3 / 5; }

@media (max-width: 800px) {
  .next-issue-grid { grid-template-columns: 1fr; grid-auto-rows: 62vw; }
  .ni-feature, .ni-tall, .ni-wide { grid-column: 1; grid-row: auto; }
}

.manifesto { background: var(--green-darkest); }
.manifesto-body {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.85rem, 3.6vw, 3.2rem);
  line-height: 1.18;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.manifesto-quote em { color: var(--gold-pale); }
.manifesto-quote .word { display: inline-block; }
.manifesto-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 2.5rem;
  border-top: 1px solid var(--hairline-on-dark);
}
.manifesto-meta .stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.manifesto-meta .stat-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
@media (max-width: 700px) {
  .manifesto-meta { grid-template-columns: 1fr; gap: 1.5rem; }
}


.magazine {
  background: var(--cream);
  color: var(--text-on-light);
}
.magazine .eyebrow { color: var(--green-soft); }
.magazine .eyebrow::before { background: var(--green-soft); }
.magazine .lead { color: var(--text-on-light-muted); }
.magazine .hairline { background: var(--hairline-on-light); }

.magazine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.magazine-cover {
  position: relative;
  aspect-ratio: 1272 / 1800;
  overflow: hidden;
  background: var(--cream-warm);
  box-shadow: 0 30px 60px -30px rgba(20,41,30,0.45);
}
.magazine-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.magazine-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(20,41,30,0.08);
  pointer-events: none;
}

.magazine-text h2 {
  color: var(--green-darkest);
  margin-bottom: 1.75rem;
}
.magazine-text p {
  color: var(--text-on-light-muted);
  font-size: 1.05rem;
  max-width: 50ch;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  border: 1px solid currentColor;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
.btn .arr {
  width: 14px; height: 1px; background: currentColor; position: relative;
  transition: width 0.4s var(--ease);
}
.btn .arr::after {
  content: '';
  position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arr { width: 24px; }

.btn-dark { color: var(--green-darkest); margin-top: 1rem; }
.btn-dark:hover { background: var(--green-darkest); color: var(--cream); }
.btn-gold { color: var(--gold); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--green-darkest); }

.magazine-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline-on-light);
}
.magazine-specs div { font-size: 12px; }
.magazine-specs .k {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 0.3rem;
  display: block;
}
.magazine-specs .v {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green-darkest);
}

@media (max-width: 800px) {
  .magazine-grid { grid-template-columns: 1fr; }
}


.stories { background: var(--green-darkest); }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.story {
  display: block;
  position: relative;
}
.story-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.4;
  color: var(--gold-pale);
  border-left: 1px solid var(--gold);
  padding: 0.15rem 0 0.15rem 1rem;
  margin: 0 0 1.1rem;
  max-width: 38ch;
}
.story-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--green-deep);
  margin-bottom: 1.5rem;
}
.story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
  filter: saturate(1) contrast(1.02);
}
.story-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,26,19,0.6) 100%);
  pointer-events: none;
}
.story-num {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  z-index: 1;
}
.story-cat {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  display: block;
}
.story-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.9vw, 1.85rem);
  line-height: 1.15;
  color: var(--text-on-dark);
  margin-bottom: 0.85rem;
  letter-spacing: -0.005em;
}
.story-excerpt {
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  max-width: 38ch;
}
.story-meta {
  margin-top: 1rem;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
}
@media (max-width: 900px) { .stories-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .stories-grid { grid-template-columns: 1fr; } }


.lifestyle {
  background: var(--green-deep);
  overflow: hidden;
}
.lifestyle-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
}
.lifestyle-intro h2 { color: var(--cream); }
.lifestyle-intro p { font-size: 1.05rem; }
@media (max-width: 800px) { .lifestyle-intro { grid-template-columns: 1fr; } }

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 14vw;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}
.l-tile { position: relative; overflow: hidden; background: var(--green-darkest); }
.l-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.l-tile:hover img { transform: scale(1.05); }
.l-tile .l-caption {
  position: absolute;
  left: 1rem; top: 1rem;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.45rem 0.75rem;
  background: rgba(12,26,19,0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(244,236,218,0.14);
  z-index: 2;
}

.l-1 { grid-column: 1 / 8; grid-row: 1 / 3; }
.l-2 { grid-column: 8 / 13; grid-row: 1 / 4; }
.l-3 { grid-column: 1 / 5; grid-row: 3 / 5; }
.l-4 { grid-column: 5 / 9; grid-row: 3 / 5; }
.l-5 { grid-column: 9 / 13; grid-row: 4 / 6; }
.l-6 { grid-column: 1 / 9; grid-row: 5 / 7; }

@media (max-width: 800px) {
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 38vw; }
  .l-1 { grid-column: 1 / 3; grid-row: 1; }
  .l-2 { grid-column: 1 / 3; grid-row: 2; }
  .l-3 { grid-column: 1; grid-row: 3; }
  .l-4 { grid-column: 2; grid-row: 3; }
  .l-5 { grid-column: 1 / 3; grid-row: 4; }
  .l-6 { grid-column: 1 / 3; grid-row: 5; }
}


.partners {
  background: var(--cream);
  color: var(--text-on-light);
}
.partners .lead { color: var(--text-on-light-muted); }
.partners h2 { color: var(--green-darkest); }

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.partners-text { padding-right: 2rem; }
.partners-text p {
  color: var(--text-on-light-muted);
  font-size: 1.05rem;
  max-width: 48ch;
  margin-bottom: 1.5rem;
}

.audience-card {
  background: var(--green-darkest);
  color: var(--cream);
  padding: clamp(2rem, 3.5vw, 3rem);
  border: 1px solid var(--hairline-on-light);
}
.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.005em;
}
.audience-card p { color: var(--text-on-dark-muted); margin-bottom: 2rem; font-size: 0.95rem; }
.audience-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline-on-dark);
}
.audience-stats .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.audience-stats .lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

@media (max-width: 800px) {
  .partners-grid { grid-template-columns: 1fr; }
  .partners-text { padding-right: 0; }
}


.footer { background: var(--green-darkest); padding: var(--section) 0 3rem; }
.get-in-touch {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(4rem, 8vw, 7rem);
  align-items: end;
}
.get-in-touch h2 { color: var(--cream); }
.get-in-touch-actions {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hairline-on-dark);
}
.contact-line {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--hairline-on-dark);
  transition: padding-left 0.5s var(--ease);
}
.contact-line:hover { padding-left: 1rem; }
.contact-k {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.contact-v {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.contact-line .arr {
  width: 18px; height: 1px; background: var(--gold); position: relative;
  transition: width 0.4s var(--ease);
}
.contact-line .arr::after {
  content: '';
  position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}
.contact-line:hover .arr { width: 32px; }

@media (max-width: 800px) {
  .get-in-touch { grid-template-columns: 1fr; }
  .contact-line { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.25rem 0; }
}

.footer-meta {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--hairline-on-dark);
}
.footer-meta h4 {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-meta ul { list-style: none; }
.footer-meta li { margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-on-dark-muted); }
.footer-meta a { transition: color 0.3s; }
.footer-meta a:hover { color: var(--gold); }

.footer-logo {
  height: clamp(36px, 4vw, 52px);
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
}
.footer-brand p { font-size: 0.9rem; max-width: 35ch; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline-on-dark);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
}
.footer-bottom .legal a { margin-left: 1.5rem; transition: color 0.3s; }
.footer-bottom .legal a:hover { color: var(--gold); }

@media (max-width: 800px) {
  .footer-meta { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .footer-bottom .legal a { margin-left: 0; margin-right: 1.5rem; }
}


.gold-shine,
.hero h1 em,
.manifesto-quote em,
.stories .section-head h2 em,
.lifestyle-intro h2 em,
.next-issue-head h2 em,
.get-in-touch h2 em,
.audience-card h3 em,
.stat-num,
.audience-stats .num,
.story-num,
.eyebrow {
  background: var(--gold-gradient);
  background-size: 200% 100%;
  background-position: 0% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gold-shimmer 8s ease-in-out infinite;
}

@keyframes gold-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.magazine .eyebrow,
.archive .eyebrow,
.partners .eyebrow {
  background: none;
  -webkit-text-fill-color: var(--green-soft);
  color: var(--green-soft);
  animation: none;
}
.magazine .display em,
.archive .display em,
.archive-title em,
.partners .display em {
  background: var(--gold-gradient-soft);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .gold-shine, .hero h1 em, .manifesto-quote em, .stories .section-head h2 em,
  .lifestyle-intro h2 em, .next-issue-head h2 em, .get-in-touch h2 em,
  .audience-card h3 em, .stat-num, .audience-stats .num, .story-num, .eyebrow {
    animation: none;
  }
}

.reveal { opacity: 0; transform: translateY(28px); }
.reveal-fast { opacity: 0; }


@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-fast { opacity: 1; transform: none; }
  .hero h1 .line span { transform: none; }
  .hero-tagline, .hero-sub, .hero-meta { opacity: 1; }
  .hero-video { opacity: 1; }
  .marquee-track, .scroll-indicator .line-v { animation: none !important; }
}


.nav-logo { height: 26px; transition: height 0.4s var(--ease); }
.nav.is-scrolled .nav-logo { height: 22px; }
@media (max-width: 800px) {
  .nav-brand { height: 30px; }
  .nav-logo { height: 30px; }
  .nav.is-scrolled .nav-logo { height: 26px; }
}


.marquee {
  background: var(--green-darkest);
  border-top: 1px solid var(--hairline-on-dark);
  border-bottom: 1px solid var(--hairline-on-dark);
  overflow: hidden;
  padding: 1.5rem 0;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 14vw; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--green-darkest), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--green-darkest), transparent); }
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee-scroll 8s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  letter-spacing: -0.01em;
  color: var(--cream);
  flex-shrink: 0;
}
.marquee-item:nth-child(4n+1) { font-style: italic; color: var(--gold-pale); }
.marquee-sep {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--gold);
  align-self: center;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (min-width: 800px) {
  .marquee-track { animation-duration: 22s; }
}


.section-dots {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.section-dots.is-visible { opacity: 1; }
.section-dots a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  position: relative;
  padding: 0.35rem 0;
}
.section-dots .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-on-dark-faint);
  transition: background 0.4s, transform 0.4s var(--ease);
}
.section-dots a::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 1rem);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.4s, transform 0.4s var(--ease);
  white-space: nowrap;
  pointer-events: none;
}
.section-dots a:hover::before { opacity: 1; transform: translateX(0); }
.section-dots a:hover .dot { background: var(--cream); }
.section-dots a.is-active .dot {
  background: var(--gold);
  transform: scale(1.8);
}
.section-dots a.is-active::before {
  opacity: 1;
  color: var(--gold);
  transform: translateX(0);
}

.section-dots.on-light .dot { background: rgba(20,41,30,0.3); }
.section-dots.on-light a:hover .dot { background: var(--green-darkest); }
.section-dots.on-light a:hover::before { color: var(--green-darkest); }
.section-dots.on-light a.is-active .dot { background: var(--gold-deep); }
.section-dots.on-light a.is-active::before { color: var(--gold-deep); }

@media (max-width: 900px) { .section-dots { display: none; } }


.cursor-halo {
  position: fixed;
  top: 0; left: 0;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(201,168,106,0.16), transparent 65%);
  pointer-events: none;
  z-index: 4;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.6s ease;
}
@media (hover: hover) and (pointer: fine) and (min-width: 900px) {
  .cursor-halo.is-active { opacity: 1; }
}
@media (max-width: 900px) { .cursor-halo { display: none; } }


.archive { background: var(--cream); color: var(--text-on-light); position: relative; }
.archive .eyebrow { color: var(--green-soft); }
.archive .eyebrow::before { background: var(--green-soft); }
.archive h2 { color: var(--green-darkest); }
.archive h2 em { color: var(--gold-deep); font-style: italic; font-weight: 400; }

.archive-intro {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.45;
  color: var(--text-on-light-muted);
  max-width: 62ch;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.archive-list {
  list-style: none;
  padding: 0;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  border-top: 1px solid var(--hairline-on-light);
}
.archive-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 2.5rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--hairline-on-light);
}
.archive-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  font-weight: 400;
  color: var(--green-darkest);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.archive-title em { color: var(--gold-deep); font-style: italic; }
.archive-tag {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-soft);
  white-space: nowrap;
}

.archive-real {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 3rem);
  background:
    radial-gradient(ellipse at center, rgba(20,41,30,0.05), transparent 70%),
    var(--cream-warm);
  text-align: center;
  overflow: hidden;
}
.archive-real::before {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 84%; height: 30px;
  background: radial-gradient(ellipse at center, rgba(20,41,30,0.18), transparent 70%);
  transform: translateX(-50%);
  filter: blur(20px);
  pointer-events: none;
}
.archive-real img {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: block;
  filter: contrast(1.02) saturate(0.96);
}
.archive-credit {
  display: block;
  margin-top: 2rem;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--green-soft);
}
