/* ── ISSUE PAGE v3 ───────────────────────────────────────────────────────── */

/* ── 0. HEADER — split: image left, text right ───────────────────── */
/* Desktop: image fills viewport height exactly — everything in one screen.
   Cover is constrained to (100vh - 72px) tall.
   Natural aspect ratio = 1982:2560 ≈ 0.774 wide. So width = height × 0.774.
   Right side: text panel fills the remaining horizontal space. */
.gtm-issue__header {
  /* Full-width green background, viewport height */
  height: calc(100vh - 72px);
  background: var(--green);
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* True centering: flex column so inner block auto-margins to center */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--page-padding);
  box-sizing: border-box;
}

/* Inner wrapper: fixed intrinsic width — NOT 100% — so centering works */
.gtm-issue__header-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  /* Height = full header minus top+bottom padding */
  height: 100%;
  /* Width = cover column + text column, auto-sized by children */
  width: auto;
  /* Auto margins push it to center within the padded container */
  margin: 0 auto;
  gap: 0;
}

.gtm-issue__cover-wrap {
  flex: 0 0 auto;
  /* Cover width = available height × cover aspect ratio (1982÷2560) */
  width: calc((100vh - 72px - var(--page-padding) * 2) * 0.774);
  height: 100%;
  overflow: hidden;
}

/* Image fills column with no cropping */
.gtm-issue__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.gtm-issue__cover-overlay { display: none; }

/* Text panel: wide enough for stats box + padding */
.gtm-issue__header-text {
  flex: 0 0 520px;
  width: 520px;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 48px;
  background: var(--green);
  color: var(--cream);
}

.gtm-issue__number {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-pale);
  font-weight: 500;
  margin-bottom: 20px;
}

.gtm-issue__sep { margin: 0 8px; }

.gtm-issue__title {
  font-size: clamp(60px, 7vw, 116px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--verdant-color);
  margin-bottom: 20px;
  font-family: var(--font-script);
}

.gtm-issue__tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245,240,232,0.7);
  max-width: 400px;
  margin-bottom: 40px;
  font-weight: 300;
}

.gtm-issue__stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(197,203,180,0.35);
  margin-bottom: 40px;
  width: 100%; /* stretch to match Available Soon button */
}

.gtm-issue__stat {
  padding: 14px 22px;
  border-right: 1px solid rgba(197,203,180,0.35);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gtm-issue__stat:last-child { border-right: none; }

.gtm-issue__stat-num {
  font-size: 20px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
}

.gtm-issue__stat-label {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-pale);
  font-weight: 400;
}

/* ── SHARED SECTION STYLES ───────────────────────────────────────── */
.gtm-issue__section {
  border-top: 1px solid var(--rule);
  padding: 72px 0;
}

.gtm-issue__pullquote-band + .gtm-issue__section {
  border-top: none;
}

.gtm-issue__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.gtm-issue__section-tag {
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-pale);
  font-weight: 500;
  margin-bottom: 16px;
}

.gtm-issue__photographer-name {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}

.gtm-issue__handle {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--green);
  font-weight: 400;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.gtm-issue__handle:hover { color: var(--green-light); }

.gtm-issue__location {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.gtm-issue__bio {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-light);
  max-width: 560px;
}

.gtm-issue__series-title {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 12px;
}

.gtm-issue__inline-quote {
  border-left: 2px solid var(--green);
  padding-left: 20px;
  font-size: 14px;
  font-style: italic;
  color: var(--ink-light);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 480px;
}

.gtm-issue__section-intro {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 40px;
}

.gtm-issue__teaser-box {
  background: var(--green);
  border: none;
  padding: 32px;
  color: var(--cream);
}

.gtm-issue__teaser-label {
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-pale);
  font-weight: 500;
  margin-bottom: 12px;
}

.gtm-issue__teaser-box p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245,240,232,0.75);
}

.gtm-issue__teaser-box .btn-primary {
  background: var(--cream);
  color: var(--green);
}

.gtm-issue__teaser-box .btn-primary:hover {
  background: var(--paper);
}

/* ── 1. MANIFESTO ────────────────────────────────────────────────── */
.gtm-issue__manifesto {
  background: var(--green);
  border-top: none;
}

.gtm-issue__manifesto .gtm-issue__inner { padding-top: 0; }

.gtm-issue__manifesto .section-header h2 { color: var(--green-pale); }
.gtm-issue__manifesto .section-header::after { background: rgba(197,203,180,0.3); }

.gtm-issue__manifesto-quote {
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--cream);
  border-left: 2px solid var(--green-pale);
  padding-left: 32px;
  max-width: 720px;
  margin-bottom: 32px;
}

.gtm-issue__manifesto-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-pale);
  font-weight: 500;
  text-decoration: none;
  font-family: var(--font-display);
  transition: color 0.2s;
  border-bottom: 1px solid rgba(197,203,180,0.4);
  padding-bottom: 3px;
}

.gtm-issue__manifesto-btn:hover {
  color: var(--cream);
  border-color: var(--cream);
}

/* ── 2. COVER STORY ──────────────────────────────────────────────── */
.gtm-issue__cover-story-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

/* Featured photographer: no extra top border */
.gtm-issue__fp {
  border-top: none;
  padding-top: 48px;
  padding-bottom: 40px;
}

.gtm-issue__fp .gtm-issue__inner {
  /* no extra padding or border here — section handles it */
}

/* ── 4. FEATURED PHOTOGRAPHER ────────────────────────────────────── */
.gtm-issue__fp-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

/* ── 5. EDITOR PICKS ─────────────────────────────────────────────── */
.gtm-issue__picks {
  border-top: none;  /* section-header rule line is the separator */
  padding-top: 0;
}

.gtm-issue__picks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--green);
}

.gtm-issue__pick-card {
  padding: 28px 24px;
  border-right: 1px solid rgba(197,203,180,0.35);
  border-bottom: 1px solid rgba(197,203,180,0.35);
  background: var(--green);
  color: var(--cream);
}

.gtm-issue__pick-card:nth-child(even) {
  background: var(--green-light);
}

.gtm-issue__pick-card:nth-child(4n) { border-right: none; }
.gtm-issue__pick-card:nth-last-child(-n+4) { border-bottom: none; }

.gtm-issue__pick-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 6px;
}

.gtm-issue__pick-card .gtm-issue__handle {
  color: var(--green-pale);
}

.gtm-issue__pick-card .gtm-issue__handle:hover {
  color: var(--cream);
}

.gtm-issue__pick-card .gtm-issue__location {
  color: rgba(245,240,232,0.55);
  margin-bottom: 0;
}

.gtm-issue__pick-series {
  font-size: 11px;
  font-style: italic;
  color: rgba(245,240,232,0.7);
  margin-top: 8px;
}

/* ── PULL QUOTE BAND ─────────────────────────────────────────────── */
.gtm-issue__pullquote-band {
  background: #2e3d1e;  /* soft dark sage — distinct from --green #333b21 */
  padding: 56px var(--page-padding);
  text-align: center;
}

.gtm-issue__pullquote-band blockquote {
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  max-width: 680px;
  margin: 0 auto;
}

.gtm-issue__pullquote-band cite {
  display: block;
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-pale);
  font-style: normal;
}


/* ── 7. CURATOR PICKS ────────────────────────────────────────────── */
/* No top border — flows directly from pull quote */
.gtm-issue__curators { border-top: none; padding-bottom: 0; }

.gtm-issue__curators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.gtm-issue__curator-block {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.gtm-issue__curator-block:nth-child(2n) { border-right: none; }
.gtm-issue__curator-block:nth-last-child(-n+2) { border-bottom: none; }

/* Curator footer: small, subdued — photographer is the highlight */
.gtm-issue__curator-footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 24px;
  border-top: 1px solid var(--rule);
  background: var(--paper);
}

.gtm-issue__curator-label {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.gtm-issue__curator-name {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-light);
  line-height: 1.2;
}

.gtm-issue__curator-footer .gtm-issue__handle {
  font-size: 10px;
  color: var(--ink-light);
  margin-bottom: 0;
}

.gtm-issue__curator-footer .gtm-issue__handle:hover {
  color: var(--green);
}

/* Photographer entries: they are the highlight */
.gtm-issue__curated-photographers {
  display: flex;
  flex-direction: column;
}

.gtm-issue__curated-item {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  background: var(--green);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gtm-issue__curated-item:nth-child(even) {
  background: var(--green-light);
}

.gtm-issue__curated-item:last-child { border-bottom: none; }

.gtm-issue__curated-name {
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.gtm-issue__curated-item .gtm-issue__handle {
  color: var(--green-pale);
  font-size: 11px;
  margin-bottom: 0;
}

.gtm-issue__curated-item .gtm-issue__handle:hover {
  color: var(--cream);
}

.gtm-issue__curated-location {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}

/* ── 8. COMMUNITY ────────────────────────────────────────────────── */
/* No top border — flows from curators */
.gtm-issue__community {
  border-top: none;
  padding-top: 0;
}

.gtm-issue__community .gtm-issue__inner > .section-header {
  padding-top: 40px;
}

.gtm-issue__community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.gtm-issue__community-card {
  padding: 20px 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gtm-issue__community-card:nth-child(odd)  { background: var(--cream); }
.gtm-issue__community-card:nth-child(even) { background: var(--paper); }
.gtm-issue__community-card:nth-child(4n)   { border-right: none; }

.gtm-issue__community-name {
  font-size: 16px;
  font-weight: 400;
  color: var(--green);
  line-height: 1.2;
}

.gtm-issue__community-card .gtm-issue__handle {
  font-size: 10px;
  color: var(--ink-light);
  margin-bottom: 0;
}

.gtm-issue__community-card .gtm-issue__location {
  font-size: 9px;
  margin-bottom: 0;
  color: var(--ink-light);
}

/* ── 10. FINAL CTA ───────────────────────────────────────────────── */
.gtm-issue__final-cta {
  border-top: 1px solid var(--rule);
  padding: 96px var(--page-padding);
  background: var(--green);
  text-align: center;
  color: var(--cream);
}

.gtm-issue__cta-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-pale);
  font-weight: 500;
  margin-bottom: 20px;
}

.gtm-issue__cta-title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--verdant-color);
  margin-bottom: 16px;
  font-family: var(--font-script);
}

.gtm-issue__cta-sub {
  font-size: 13px;
  color: rgba(245,240,232,0.65);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

.gtm-issue__final-cta .btn-primary {
  background: var(--cream);
  color: var(--green);
}

.gtm-issue__final-cta .btn-primary:hover {
  background: var(--paper);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gtm-issue__header {
    flex-direction: column;
    height: auto;
    padding: 0;
    align-items: stretch;
    justify-content: flex-start;
  }

  .gtm-issue__header-inner {
    flex-direction: column;
    height: auto;
    width: 100%;
    max-width: 100%;
  }

  .gtm-issue__cover-wrap {
    flex: none;
    width: 100%;
    height: auto;
  }

  .gtm-issue__cover-img {
    width: 100%;
    height: auto;
    object-fit: unset;
  }

  .gtm-issue__header-text {
    flex: none;
    width: 100%;
    min-width: 0;
    position: static;
    height: auto;
    overflow-y: visible;
    min-height: auto;
    padding: 48px var(--page-padding) 56px;
  }

  /* Curators → Community: keep tight on tablet too */
  .gtm-issue__curators { padding-bottom: 0 !important; }
  .gtm-issue__community { padding-top: 0 !important; }
  .gtm-issue__community .gtm-issue__inner > .section-header { padding-top: 32px; }

  .gtm-issue__cover-wrap {
    /* Mobile: full width, natural height — no clipping */
    width: 100%;
  }

  .gtm-issue__cover-story-grid,
  .gtm-issue__fp-grid { grid-template-columns: 1fr; gap: 40px; }

  .gtm-issue__fp { padding-top: 32px; padding-bottom: 24px; }

  .gtm-issue__picks-grid { grid-template-columns: repeat(2, 1fr); }
  .gtm-issue__pick-card:nth-child(4n) { border-right: 1px solid var(--green); }
  .gtm-issue__pick-card:nth-child(2n) { border-right: none; }
  .gtm-issue__pick-card:nth-last-child(-n+4) { border-bottom: 1px solid var(--green); }
  .gtm-issue__pick-card:nth-last-child(-n+2) { border-bottom: none; }

  .gtm-issue__curators-grid { grid-template-columns: 1fr; }
  .gtm-issue__curator-block { border-right: none; }
  .gtm-issue__curator-block:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .gtm-issue__curator-block:last-child { border-bottom: none; }

  .gtm-issue__community-grid { grid-template-columns: repeat(3, 1fr); }
  .gtm-issue__community-card:nth-child(4n) { border-right: 1px solid var(--rule); }
  .gtm-issue__community-card:nth-child(3n) { border-right: none; }

  .gtm-issue__stats { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .gtm-issue__cover-wrap {
    width: 100%;
    flex: none;
  }

  .gtm-issue__header-text { padding: 32px var(--page-padding) 40px; }
  .gtm-issue__section { padding: 48px 0; }
  /* Curators → Community: keep tight on mobile too */
  .gtm-issue__curators { padding-bottom: 0 !important; }
  .gtm-issue__community { padding-top: 0 !important; }
  .gtm-issue__community .gtm-issue__inner > .section-header { padding-top: 32px; }
  .gtm-issue__fp { padding-top: 32px; padding-bottom: 24px; }

  .gtm-issue__picks-grid { grid-template-columns: 1fr 1fr; }

  .gtm-issue__community-grid { grid-template-columns: repeat(2, 1fr); }
  .gtm-issue__community-card:nth-child(3n) { border-right: 1px solid var(--rule); }
  .gtm-issue__community-card:nth-child(2n) { border-right: none; }

  .gtm-issue__stat { padding: 10px 14px; }
  .gtm-issue__pullquote-band { padding: 40px var(--page-padding); }
  .gtm-issue__final-cta { padding: 56px var(--page-padding); }
}

/* ── AVAILABLE SOON / COMING SOON ────────────────────────────────── */
.gtm-issue__available-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;       /* same width as stats box */
  background: rgba(197,203,180,0.2);
  color: var(--green-pale);
  border: 1px solid rgba(197,203,180,0.4);
  padding: 12px 0;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-display);
}

/* Stats and available-soon share the same width container */
.gtm-issue__stats,
.gtm-issue__available-soon {
  min-width: 0;
}

/* On desktop: make available-soon stretch to match stats width */
.gtm-issue__header-text .gtm-issue__available-soon {
  width: 100%;
  max-width: 420px;  /* generous cap so it doesn't go too wide on large screens */
}

.gtm-issue__available-soon--large {
  font-size: 10px;
  padding: 14px 0;
  width: 100%;
  max-width: 420px;
  justify-content: center;
  margin: 0 auto; /* center within the CTA section */
}

.gtm-issue__coming-soon {
  display: inline-flex;
  align-items: center;
  background: rgba(197,203,180,0.15);
  color: var(--green-pale);
  border: 1px solid rgba(197,203,180,0.3);
  padding: 10px 20px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-display);
}

/* ── FOUNDERS NOTE ────────────────────────────────────────────────── */
.gtm-issue__founders-note {
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-pale);
  font-weight: 400;
}

/* ── MANIFESTO — fully separate section ──────────────────────────── */
.gtm-issue__manifesto {
  background: var(--green);
  border-top: none;
  padding: 72px 0;
}

.gtm-issue__manifesto .section-header h2 { color: var(--green-pale); }
.gtm-issue__manifesto .section-header::after { background: rgba(197,203,180,0.3); }

.gtm-issue__manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 40px;
  align-items: start;
}

.gtm-issue__manifesto-full {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245,240,232,0.8);
  font-weight: 300;
}

.gtm-issue__manifesto-full p {
  margin-bottom: 20px;
}

.gtm-issue__manifesto-full p:last-child { margin-bottom: 0; }

@media (max-width: 1024px) {
  .gtm-issue__manifesto-body { grid-template-columns: 1fr; gap: 32px; }
}

/* ── CLICKABLE CARD HOVER STATES ─────────────────────────────────── */
a.gtm-issue__pick-card {
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
a.gtm-issue__pick-card:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

a.gtm-issue__curated-item {
  cursor: pointer;
  transition: opacity 0.2s;
}
a.gtm-issue__curated-item:hover {
  opacity: 0.8;
}

a.gtm-issue__community-card {
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
a.gtm-issue__community-card:hover {
  opacity: 0.8;
}

/* ── NATURE ANIMATION — falling leaves ───────────────────────────── */
.gtm-issue__botanicals {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.gtm-issue__header-text {
  position: relative;
}

.gtm-issue__header-text > *:not(.gtm-issue__botanicals) {
  position: relative;
  z-index: 1;
}

.gtm-leaf {
  position: absolute;
  top: -80px;
  opacity: 0;
  transform-origin: 50% 50%;
  animation: leafFall linear infinite;
}

/* Each leaf: different size, position, speed, delay, drift path */
.gtm-leaf--1 { width: 28px; left: 7%;  animation-duration: 12s; animation-delay: 0s;    animation-name: leafFall1; }
.gtm-leaf--2 { width: 20px; left: 23%; animation-duration: 16s; animation-delay: -4s;   animation-name: leafFall2; }
.gtm-leaf--3 { width: 32px; left: 41%; animation-duration: 11s; animation-delay: -9s;   animation-name: leafFall1; }
.gtm-leaf--4 { width: 18px; left: 60%; animation-duration: 18s; animation-delay: -2s;   animation-name: leafFall3; }
.gtm-leaf--5 { width: 24px; left: 76%; animation-duration: 14s; animation-delay: -7s;   animation-name: leafFall2; }
.gtm-leaf--6 { width: 22px; left: 88%; animation-duration: 13s; animation-delay: -11s;  animation-name: leafFall1; }
.gtm-leaf--7 { width: 16px; left: 52%; animation-duration: 20s; animation-delay: -5s;   animation-name: leafFall3; }
.gtm-leaf--8 { width: 26px; left: 15%; animation-duration: 15s; animation-delay: -13s;  animation-name: leafFall2; }

@keyframes leafFall1 {
  0%   { opacity: 0;    top: -60px;   transform: translateX(0px)   rotate(0deg);   }
  8%   { opacity: 0.55; }
  40%  {                              transform: translateX(30px)  rotate(120deg); }
  70%  {                              transform: translateX(-15px) rotate(240deg); }
  92%  { opacity: 0.35; }
  100% { opacity: 0;    top: 110%;   transform: translateX(20px)  rotate(360deg); }
}

@keyframes leafFall2 {
  0%   { opacity: 0;    top: -60px;   transform: translateX(0px)   rotate(20deg);  }
  8%   { opacity: 0.50; }
  35%  {                              transform: translateX(-35px) rotate(160deg); }
  65%  {                              transform: translateX(20px)  rotate(280deg); }
  92%  { opacity: 0.30; }
  100% { opacity: 0;    top: 110%;   transform: translateX(-10px) rotate(400deg); }
}

@keyframes leafFall3 {
  0%   { opacity: 0;    top: -60px;   transform: translateX(0px)   rotate(-15deg); }
  8%   { opacity: 0.45; }
  50%  {                              transform: translateX(25px)  rotate(180deg); }
  92%  { opacity: 0.25; }
  100% { opacity: 0;    top: 110%;   transform: translateX(-20px) rotate(340deg); }
}

@media (prefers-reduced-motion: reduce) {
  .gtm-leaf { animation: none !important; opacity: 0 !important; }
}
