/* v2 site – olive header, typewriter nav */

:root {
  --v2-header-bg: #687332;
  --v2-nav-color: #FDE7C3;
  --v2-nav-hover: #FDE7C3;
  --v2-stamp-fill: #c4a574;
  --v2-snail-fill: #681A1C;
  --v2-trail-stroke: #5a6b2e;
  --v2-body-bg: #FDE7C3;
  --v2-text: #2c2c2c;
  --v2-text-muted: #5c5c5c;
  --v2-max-width: 720px;
  /* How It Works lower section: room for two Stripe buttons side by side */
  --v2-hiw-bottom-max: 960px;
  --v2-font-nav: "john-doe", "Courier Prime", "Courier New", monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background: var(--v2-body-bg);
  padding-top: 4.5rem; /* match fixed header height so content doesn’t sit under it */
}

/* How It Works: body has no top pad — hero column bleeds under fixed header; copy column clears it */
body.v2-body-hiw {
  padding-top: 0;
}

.v2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  background: var(--v2-header-bg);
  height: 4.5rem; /* keep header row height stable */
  padding: 0 1.25rem; /* vertical padding removed; icon is centered */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.v2-header .v2-logo {
  justify-self: start;
}

.v2-header .v2-nav {
  justify-self: center;
}

.v2-header-spacer {
  width: 48px;
  justify-self: end;
}

.v2-logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
}

.v2-header .v2-logo-img {
  display: block;
  height: 70px; /* ~48px * 1.2 (20% larger) */
  width: auto; /* preserve PNG aspect ratio */
}

.v2-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-family: var(--v2-font-nav);
  font-size: 0.95rem;
}

.v2-nav a {
  color: var(--v2-nav-color);
  text-decoration: none;
  padding: 0.25rem 0.35rem;
}

.v2-nav a:hover {
  color: var(--v2-nav-hover);
  text-decoration: underline;
}

.v2-nav a[aria-current="page"] {
  text-decoration: underline;
  font-weight: 700;
}

.v2-nav-text {
  color: var(--v2-nav-color);
  padding: 0.25rem 0.35rem;
  cursor: default;
}

.v2-nav-text[aria-current="page"] {
  text-decoration: underline;
  font-weight: 700;
}

.v2-nav-sep {
  color: var(--v2-nav-color);
  opacity: 0.8;
  user-select: none;
  padding: 0 0.1rem;
}

/* Hamburger – hidden on desktop */
.v2-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.v2-hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--v2-nav-color);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Animate hamburger to X when open */
.v2-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.v2-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.v2-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero – fixed so it doesn’t scroll; only the envelope moves */
.v2-hero {
  position: fixed;
  top: 4.5rem; /* start hero below fixed header */
  left: 0;
  right: 0;
  height: calc(100vh - 4.5rem);
  height: calc(100dvh - 4.5rem);
  z-index: 1;
  background: url("images/herobackground.jpg") 50% 15% / 100% 100% no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4vh;
  padding-bottom: 4vh;
  overflow: hidden;
}

.v2-hero-slot {
  height: calc(100vh - 4.5rem);
  height: calc(100dvh - 4.5rem);
  flex-shrink: 0;
}

.v2-hero-img {
  max-height: 70%;
  width: auto;
}

.v2-hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--v2-font-nav);
  font-size: clamp(1.62rem, 4.32vw, 2.43rem);
  font-weight: 700;
  color: var(--v2-nav-color);
  text-transform: lowercase;
  letter-spacing: 0.02em;
  margin: 0;
}

/* Scroll spacer – gives room to scroll so envelope reveal can run */
.v2-scroll-spacer {
  height: 260vh;
  pointer-events: none;
}

/* Envelope overlay – fixed at bottom, revealed from top as user scrolls */
.v2-envelope-reveal {
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.v2-envelope-reveal .v2-envelope-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%); /* start off-screen, JS will position */
}

/* SVG draws only the V-shaped flap */
.v2-envelope-reveal .v2-envelope-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  filter: none;
}

/* Beige body below the flap — stretches with content */
.v2-envelope-body {
  background-color: #FDE7C3;
  margin-top: -1px;
}

.v2-envelope-reveal .v2-envelope-fill {
  fill: #FDE7C3;
}

.v2-envelope-reveal .v2-envelope-border {
  stroke: #687332;
  stroke-width: 0.6;
  stroke-linejoin: miter;
  stroke-miterlimit: 10;
}

/* Content inside the beige body */
.v2-envelope-content {
  position: relative;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  --v2-envelope-side-pad: 8rem;
  padding-left: var(--v2-envelope-side-pad);
  padding-right: var(--v2-envelope-side-pad);
  padding-top: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.v2-envelope-flap-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 50px;
}

.v2-envelope-stamp {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(calc(-50% - 35px));
  z-index: 3;
}

.v2-envelope-stamp-img {
  display: block;
  width: 192px;
  height: auto;
}

.v2-envelope-copy {
  margin-top: 25px;
  margin-bottom: 0.5rem;
  max-width: 810px;
}

.v2-envelope-heading {
  font-family: var(--v2-font-nav);
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  padding-left: 0;
}

.v2-envelope-text {
  font-family: var(--v2-font-nav);
  font-size: 0.82rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
  padding-left: 0;
}

.v2-envelope-ship-date {
  font-family: var(--v2-font-nav);
  font-size: 0.82rem;
  font-weight: bold;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0.75rem 0 0;
}

.v2-envelope-image {
  margin-bottom: 0.75rem;
  align-self: flex-end;
}

.v2-envelope-img {
  display: block;
  max-width: 100%;
  height: auto;
  width: min(272px, 33.6vw);
}

.v2-envelope-actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 2rem;
  width: 100%;
  padding-left: 0;
  margin-bottom: 1rem;
  margin-top: calc(-0.5rem + 25px);
}

.v2-envelope-btn {
  display: inline-block;
  white-space: nowrap;
  padding: 1.15rem 1.92rem;
  font-family: var(--v2-font-nav);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--v2-nav-color);
  background: var(--v2-header-bg);
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

.v2-envelope-btn:hover {
  background: #5a6229;
  color: var(--v2-nav-color);
}

/* Main envelope body section (background + overlay image) */
.v2-envelope-main-content {
  width: calc(100% + (var(--v2-envelope-side-pad) * 2));
  margin-left: calc(var(--v2-envelope-side-pad) * -1);
  margin-right: calc(var(--v2-envelope-side-pad) * -1);
  margin-top: 1rem;
  box-sizing: border-box;
  background-color: #FDE7C3;
  background-image: url("images/envelopebackground.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}

.v2-envelope-mailbox-heading {
  font-family: var(--v2-font-nav);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--v2-nav-color);
  text-align: center;
  margin: 0 0 1rem;
}

.v2-envelope-whatsinside {
  display: block;
  width: 80%;
  height: auto;
}

.v2-envelope-footer {
  width: calc(100% + (var(--v2-envelope-side-pad) * 2));
  margin-left: calc(var(--v2-envelope-side-pad) * -1);
  margin-right: calc(var(--v2-envelope-side-pad) * -1);
  margin-top: 0;
  padding: 0.9rem 1.25rem;
  box-sizing: border-box;
  background: #FDE7C3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.v2-envelope-footer-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.v2-envelope-footer-logo {
  width: 108px;
  height: auto;
  display: block;
}

.v2-envelope-footer-text {
  font-family: var(--v2-font-nav);
  font-size: 0.75rem;
  color: #4a3a2a;
  white-space: nowrap;
}

.v2-envelope-footer-right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.v2-envelope-footer-link {
  font-family: var(--v2-font-nav);
  font-size: 0.72rem;
  color: #681A1C;
  text-decoration: none;
}

.v2-envelope-footer-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(104, 26, 28, 0.35);
}

.v2-envelope-footer-icon {
  width: 1.575rem;
  height: 1.575rem;
  display: block;
}

.v2-envelope-footer-link:hover {
  background: rgba(104, 26, 28, 0.08);
}

@media (min-width: 560px) {
  .v2-envelope-flap-content {
    display: grid;
    grid-template-columns: minmax(410px, 1.25fr) minmax(220px, 0.75fr);
    grid-template-areas:
      "stamp stamp"
      "copy image"
      "actions image";
    column-gap: 2rem;
    row-gap: 0.75rem;
    align-items: start;
  }

  .v2-envelope-stamp {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(calc(-50% - 35px));
    width: auto;
    margin-bottom: 0.5rem;
  }

  .v2-envelope-copy {
    grid-area: copy;
    max-width: none;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .v2-envelope-image {
    grid-area: image;
    margin-bottom: 1rem;
    align-self: start;
    transform: translateX(10rem) translateY(-50px);
  }

  .v2-envelope-actions {
    grid-area: actions;
    width: 100%;
    justify-content: flex-start;
    gap: 2rem;
    padding-left: 0;
    padding-right: 0;
  }
}


.v2-main {
  display: none;
  max-width: var(--v2-max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  background: var(--v2-body-bg);
  min-height: 50vh;
}

.v2-main h1 {
  font-family: Georgia, serif;
  font-size: 1.75rem;
  color: var(--v2-text);
  margin-bottom: 1rem;
}

.v2-main p {
  color: var(--v2-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.v2-main section {
  margin-bottom: 2.5rem;
}

.v2-main section h2 {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  color: var(--v2-text);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* Tablet and mobile: disable scroll-reveal, use normal document flow */
@media (max-width: 1024px) {

  /* --- Header & Hamburger --- */
  .v2-header {
    grid-template-columns: auto 1fr auto;
  }

  .v2-hamburger {
    display: flex;
    justify-self: end;
  }

  .v2-header .v2-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--v2-header-bg);
    flex-direction: column;
    align-items: flex-end;
    padding: 0.75rem 1.25rem 1rem;
    gap: 0;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 0 0 0 12px;
    min-width: 200px;
  }

  .v2-header .v2-nav.v2-nav--open {
    display: flex;
  }

  .v2-nav-sep {
    display: none;
  }

  .v2-nav a,
  .v2-nav .v2-nav-text {
    display: block;
    padding: 0.75rem 0.5rem;
    font-size: 1.1rem;
    text-align: right;
    border-bottom: 1px solid rgba(253, 231, 195, 0.15);
    width: 100%;
  }

  .v2-nav a:last-child {
    border-bottom: none;
  }

  .v2-header-spacer {
    display: none;
  }

  /* --- Hero --- */
  .v2-hero {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    background-size: cover;
    background-position: center center;
    padding: 2rem 1rem;
    gap: 1.5rem;
    margin-top: -4.5rem;
    padding-top: calc(4.5rem + 2rem);
  }

  .v2-hero-img {
    max-height: none;
    max-width: 70%;
    height: auto;
  }

  .v2-hero-title {
    transform: none;
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .v2-hero-slot {
    display: none;
  }

  .v2-scroll-spacer {
    display: none;
  }

  /* --- Envelope --- */
  .v2-envelope-reveal {
    opacity: 1;
    position: relative;
    bottom: auto;
    height: auto;
    z-index: auto;
    pointer-events: auto;
    overflow: visible;
  }

  .v2-envelope-reveal .v2-envelope-wrapper {
    position: relative;
    bottom: auto;
    height: auto;
    transform: none !important;
  }

  .v2-envelope-reveal .v2-envelope-svg {
    display: none;
  }

  .v2-envelope-content {
    position: relative;
    bottom: auto;
    height: auto;
    transform: none;
    --v2-envelope-side-pad: 1.25rem;
    padding-top: 1.5rem;
  }

  /* Force single column on mobile (override 560px grid) */
  .v2-envelope-flap-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .v2-envelope-stamp {
    position: static;
    transform: none;
    left: auto;
  }

  .v2-envelope-image {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .v2-envelope-stamp-img {
    width: min(232px, 73%);
  }

  .v2-envelope-copy {
    margin-top: 0;
  }

  .v2-envelope-image {
    transform: none;
    align-self: center;
  }

  .v2-envelope-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 0;
  }

  .v2-envelope-btn {
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: clamp(0.7rem, 3.2vw, 1.1rem);
  }

  .v2-subpage-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .v2-subpage-main--hiw-bottom .v2-subpage-actions {
    align-items: stretch;
  }

  .v2-subpage-main--hiw-bottom .v2-subpage-actions .v2-envelope-btn {
    flex: 0 0 auto;
    width: 100%;
  }

  /* --- What Arrives section --- */
  .v2-envelope-main-content {
    padding: 1.5rem 0;
  }

  .v2-envelope-whatsinside {
    width: 95%;
  }

  .v2-envelope-mailbox-heading {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  /* --- Footer --- */
  .v2-envelope-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem;
  }

  .v2-envelope-footer-left {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  .v2-envelope-footer-logo {
    position: relative;
    left: -13px;
  }

  .v2-site-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .v2-site-footer-inner .v2-envelope-footer-left {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  .v2-site-footer-inner .v2-envelope-footer-logo {
    position: relative;
    left: -13px;
  }
}

/* Subpages (e.g. How It Works) — same brand, no envelope */
.v2-subpage-main {
  max-width: var(--v2-max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 1rem;
  min-height: calc(100vh - 4.5rem - 10rem);
}

/* How It Works: hero image height matches row through bullet 4; rest continues in second row */
.v2-subpage-shell--hiw {
  display: grid;
  grid-template-columns: minmax(0, 0.77fr) minmax(0, 1fr);
  grid-template-areas:
    "hiw-aside hiw-top"
    "hiw-bottom hiw-bottom";
  column-gap: clamp(1.5rem, 3.5vw, 2.75rem);
  row-gap: clamp(4rem, 7vw, 6.5rem);
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: min(2000px, 100%);
  margin: 0;
  margin-right: auto;
  padding: 0 1.25rem 1rem 0;
  align-items: stretch;
  align-content: start;
}

.v2-subpage-hero-aside {
  grid-area: hiw-aside;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}

.v2-subpage-main--hiw-top {
  grid-area: hiw-top;
  box-sizing: border-box;
  margin: 0;
  padding: 4.5rem 0 4.5rem;
  min-width: 0;
  width: 100%;
  max-width: var(--v2-max-width);
  min-height: 0;
}

/* Two-column: row height follows the hero; center the whole copy block vertically (no absolute — avoids collapsed row / overlap) */
@media (min-width: 901px) {
  .v2-subpage-main--hiw-top {
    align-self: center;
    justify-self: start;
  }
}

/* Row height follows this column only — no extra space below bullet 4 text */
.v2-subpage-main--hiw-top .v2-subpage-steps {
  margin-bottom: 0;
}

.v2-subpage-main--hiw-top .v2-subpage-steps li:last-child {
  margin-bottom: 0;
}

.v2-subpage-main--hiw-bottom {
  grid-area: hiw-bottom;
  grid-column: 1 / -1;
  margin: 0 auto;
  padding: 0;
  min-width: 0;
  max-width: min(var(--v2-hiw-bottom-max), 100%);
  width: 100%;
  text-align: center;
  justify-self: center;
}

.v2-subpage-main--hiw-bottom .v2-subpage-actions {
  justify-content: center;
}

/* Long labels: allow wrap (base .v2-envelope-btn uses white-space: nowrap) */
.v2-subpage-main--hiw-bottom .v2-subpage-actions .v2-envelope-btn {
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.35;
  box-sizing: border-box;
}

@media (min-width: 1025px) {
  .v2-subpage-main--hiw-bottom .v2-subpage-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 2rem;
  }

  .v2-subpage-main--hiw-bottom .v2-subpage-actions .v2-envelope-btn {
    width: 100%;
  }
}

.v2-subpage-hero-frame {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}

/* No width/height attrs — intrinsic 900px-tall image was forcing the grid row taller than the copy */
.v2-subpage-hero-aside-img {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}

@media (max-width: 900px) {
  .v2-subpage-shell--hiw {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hiw-top"
      "hiw-bottom";
    max-width: var(--v2-max-width);
  }

  .v2-subpage-hero-aside {
    display: none;
  }
}

.v2-subpage-title {
  font-family: var(--v2-font-nav);
  font-size: clamp(1.62rem, 4.32vw, 2.43rem);
  font-weight: 700;
  color: var(--v2-text);
  text-transform: lowercase;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
}

.v2-subpage-lead {
  font-family: var(--v2-font-nav);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--v2-text);
  margin: 0 0 2rem;
}

.v2-subpage-section-title {
  font-family: var(--v2-font-nav);
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 2.25rem 0 1rem;
}

.v2-subpage-body {
  font-family: var(--v2-font-nav);
  font-size: 0.82rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0 0 1rem;
}

.v2-subpage-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  counter-reset: v2step;
}

.v2-subpage-steps li {
  position: relative;
  padding-left: 2.75rem;
  margin-bottom: 1.25rem;
  font-family: var(--v2-font-nav);
  font-size: 0.82rem;
  line-height: 1.6;
  color: #1a1a1a;
}

.v2-subpage-steps li::before {
  counter-increment: v2step;
  content: counter(v2step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: var(--v2-header-bg);
  color: var(--v2-nav-color);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Only the step title is block-level; inline <strong> (e.g. dates) stays in the flow */
.v2-subpage-steps li > strong:first-of-type {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.v2-subpage-ship-note {
  font-family: var(--v2-font-nav);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0 0 2rem;
  padding: 1rem 1.25rem;
  background: rgba(104, 115, 50, 0.12);
  border-radius: 12px;
}

.v2-subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin: 1.5rem 0 2.5rem;
}

.v2-subpage-actions .v2-envelope-btn {
  flex: 1 1 auto;
  min-width: min(100%, 220px);
  text-align: center;
}

.v2-subpage-figure {
  margin: 1.5rem 0 0;
  text-align: center;
}

.v2-subpage-figure img {
  width: min(100%, 520px);
  height: auto;
  display: block;
  margin: 0 auto;
}

/* How It Works: whatsinside illustration +50% vs default subpage figure */
.v2-subpage-main--hiw-bottom .v2-subpage-figure img {
  width: min(100%, 780px);
}

.v2-subpage-figure figcaption {
  font-family: var(--v2-font-nav);
  font-size: 0.75rem;
  color: var(--v2-text-muted);
  margin-top: 0.75rem;
}

.v2-site-footer {
  margin-top: 2.5rem;
  padding: 1.25rem 1.25rem 2rem;
  border-top: 1px solid rgba(44, 44, 44, 0.08);
}

.v2-site-footer-inner {
  max-width: var(--v2-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Accessibility: disable scroll-reveal animation for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .v2-envelope-reveal .v2-envelope-wrapper {
    transform: translateY(0%) !important;
  }

  .v2-scroll-spacer {
    height: auto;
  }
}
