.mobile-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.mobile-menu-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: #111;
  margin: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: translateX(-50%);
}

.mobile-menu-toggle span:nth-child(1) {
  top: 17px;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 26px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 35px;
}

body.menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateX(-50%) translateY(9px) rotate(45deg);
}

body.menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateX(-50%) translateY(-9px) rotate(-45deg);
}

.page-shell {
  padding-top: var(--header-height);
  background: #fff;
}

.page-hero,
.page-section {
  min-height: auto;
  display: block;
}

.page-hero {
  padding: 42px 0 30px;
  border-top: 0;
}

.page-section {
  padding: 0 0 56px;
  border-top: 0;
}

.page-hero-grid,
.page-grid,
.contact-layout,
.host-grid,
.story-grid,
.detail-grid,
.feature-grid,
.policy-grid {
  display: grid;
  gap: 24px;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
}

.page-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.page-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-title {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 84px);
  line-height: 0.94;
  font-weight: 900;
  text-transform: lowercase;
}

.page-summary,
.page-card p,
.policy-section p,
.policy-section li,
.detail-card p,
.story-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #1f1f1f;
}

.page-summary,
.page-card p,
.detail-card p,
.story-card p,
.policy-section p,
.policy-section li {
  margin: 0;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-media {
  border: 2px solid #111;
  background: #f3f3f3;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.page-media--plain {
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.motion-collage {
  position: relative;
  min-height: 620px;
}

.motion-collage img {
  position: absolute;
  border: 2px solid #111;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.motion-collage .collage-main {
  left: 0;
  bottom: 0;
  width: min(100%, 420px);
  height: 520px;
  object-fit: cover;
}

.motion-collage .collage-top {
  right: 18px;
  top: 0;
  width: min(44vw, 250px);
  height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  overflow: visible;
}

.motion-collage .collage-bottom {
  right: 48px;
  bottom: 24px;
  width: min(42vw, 220px);
  height: 320px;
  object-fit: cover;
}

[data-motion] {
  will-change: transform;
  transform:
    translate3d(
      calc(var(--base-x, 0px) + var(--motion-shift-x, 0px)),
      calc(var(--base-y, 0px) + var(--motion-shift-y, 0px)),
      0
    )
    rotate(calc(var(--base-r, 0deg) + var(--motion-rotate, 0deg)));
  transition: transform 120ms linear;
}

.page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.page-grid--single {
  grid-template-columns: 1fr;
}

.page-card,
.detail-card,
.story-card,
.policy-section,
.quote-card {
  border: 2px solid #111;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.page-card,
.detail-card,
.policy-section,
.quote-card {
  padding: clamp(22px, 3vw, 34px);
}

.page-card h2,
.page-card h3,
.detail-card h2,
.detail-card h3,
.story-card h3,
.policy-section h2,
.policy-section h3 {
  margin: 0 0 14px;
}

.page-card h2,
.policy-section h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 0.96;
  text-transform: lowercase;
}

.page-card h3,
.detail-card h3,
.story-card h3,
.policy-section h3 {
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.06;
}

.eyebrow-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 2px solid #111;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.story-grid,
.host-grid,
.detail-grid,
.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-card {
  overflow: hidden;
}

.story-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-bottom: 2px solid #111;
}

.story-card-body {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.story-links,
.card-links,
.contact-links,
.policy-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: underline;
}

.quote-card {
  background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
  color: #fff;
}

.quote-card p {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.3;
  font-weight: 800;
  color: inherit;
}

.quote-card span {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.list-clean,
.policy-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: start;
}

.detail-card {
  display: grid;
  gap: 12px;
}

.detail-card strong,
.policy-section strong {
  color: #111;
}

.form-intro {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.policy-grid {
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  align-items: start;
}

.policy-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 112px;
}

.policy-side .detail-card {
  gap: 14px;
}

.policy-stack {
  display: grid;
  gap: 20px;
}

.policy-links-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 2px solid #111;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #fff;
  transition: 0.2s ease;
}

.policy-links-list a:hover {
  background: #111;
  color: #fff;
}

.host-profile-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 0;
  background: #fff;
  box-shadow: none;
  overflow: visible;
}

.host-profile-grid--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.host-profile-media,
.host-profile-copy {
  min-width: 0;
}

.host-profile-media {
  background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
  display: flex;
  align-items: end;
  justify-content: center;
}

.host-profile-image {
  width: min(100%, 520px);
  max-height: 78vh;
  object-fit: contain;
  object-position: center bottom;
}

.host-profile-copy {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  align-content: start;
  gap: 18px;
  background: linear-gradient(180deg, #fff 0%, #fcfcfc 100%);
}

.host-profile-badge {
  width: min(220px, 42%);
  margin-top: 0;
  margin-bottom: 12px;
  margin-left: 10px;
  object-fit: contain;
  align-self: start;
  display: block;
  height: auto;
  animation: hero-float 4.4s ease-in-out infinite;
  will-change: translate;
}

.host-profile-title {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.94;
  font-weight: 900;
  text-transform: none;
}

.host-profile-copy p {
  margin: 0;
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.58;
  color: #1e1e1e;
}

.host-profile-links {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.host-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 20px;
  border: 2px solid #111;
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-style: italic;
  background: #fff;
}

.host-contact-pill svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: #111;
}

.host-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.support-page-banner,
.contact-page-banner,
.legal-page-banner {
  padding: 0;
  background: #000;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
}

.support-page-banner-inner,
.contact-page-banner-inner,
.legal-page-banner-inner {
  display: grid;
  place-items: center;
  min-height: 100%;
}

.support-page-banner h1,
.contact-page-banner h1,
.legal-page-banner h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(64px, 10vw, 136px);
  line-height: 0.88;
  font-weight: 900;
  text-transform: lowercase;
}

.legal-page-section {
  padding-top: 78px;
}

.legal-page-intro {
  display: grid;
  gap: 12px;
  max-width: 940px;
  margin-bottom: 30px;
}

.legal-page-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal-page-intro h2 {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 84px);
  line-height: 0.94;
  font-weight: 900;
  text-transform: lowercase;
}

.legal-page-intro p {
  margin: 0;
  max-width: 860px;
  font-size: 18px;
  line-height: 1.72;
  color: #1f1f1f;
}

.support-page-section {
  padding-top: 78px;
}

.support-donation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.support-donation-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  min-height: 760px;
  padding: clamp(30px, 4vw, 48px);
  border: 2px solid #d9d9d9;
  border-radius: 22px;
  background: #fff;
}

.support-donation-card h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 0.9;
  font-weight: 900;
  text-transform: lowercase;
}

.support-donation-logo-wrap {
  position: relative;
  width: min(184px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(17, 17, 17, 0.08);
}

.support-donation-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support-insider-badge {
  position: absolute;
  right: 10px;
  bottom: 18px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #6ee787;
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.support-donation-label {
  margin: 0;
  text-align: center;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.3;
  color: #666;
}

.support-donation-form {
  width: min(100%, 396px);
  display: grid;
  gap: 14px;
}

.support-donation-entry {
  display: block;
}

.support-donation-input-wrap,
.support-donation-price {
  width: min(100%, 396px);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 2px solid #dfdfdf;
  border-radius: 12px;
  background: #fff;
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.support-donation-currency {
  font-size: inherit;
  line-height: 1;
  flex: 0 0 auto;
}

.support-donation-price--editable {
  justify-content: center;
}

.support-donation-price--editable input {
  width: 3.9ch;
  min-width: 3.9ch;
  max-width: 7ch;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: center;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
  letter-spacing: inherit;
  outline: 0;
  appearance: textfield;
}

.support-donation-price--editable input::-webkit-outer-spin-button,
.support-donation-price--editable input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.support-donation-price--editable input::placeholder {
  color: #9a9a9a;
}

.support-donation-price--editable:focus-within {
  border-color: #b7b7b7;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.05);
}

.support-donation-price--subscription {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
}

.support-donation-price .price-main {
  font-size: clamp(32px, 3vw, 54px);
  line-height: 1;
}

.support-donation-price .price-side {
  font-size: clamp(14px, 1vw, 22px);
  line-height: 1.05;
  color: #555;
  text-align: left;
}

.support-donation-button {
  width: min(100%, 396px);
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #3477d6;
  color: #fff;
  font-size: clamp(22px, 1.9vw, 34px);
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.support-payment-meta {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: auto;
}

.support-payment-meta p {
  margin: 0;
  font-size: 16px;
  color: #969696;
}

.support-payment-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.support-payment-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #fff;
  color: #444;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.support-donation-status {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
}

.support-donation-status.is-error {
  color: #b42318;
}

.support-donation-status.is-success {
  color: #086c39;
}

.contact-page-section {
  padding-top: 86px;
}

.contact-page-intro {
  display: grid;
  gap: 6px;
  max-width: 780px;
  margin-bottom: 28px;
}

.contact-page-kicker,
.contact-page-intro p {
  margin: 0;
}

.contact-page-kicker {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.2;
  text-transform: lowercase;
}

.contact-page-intro h2 {
  margin: 0;
  font-size: clamp(50px, 6vw, 84px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: lowercase;
}

.contact-page-intro > p:last-child {
  font-size: clamp(24px, 2.4vw, 42px);
  line-height: 1.05;
  text-transform: lowercase;
}

.contact-feature-frame {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.55fr);
  align-items: stretch;
  border: 1px solid #dddddd;
  background: #fff;
}

.contact-feature-media {
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 28px 16px 0;
}

.contact-feature-media img {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.contact-feature-panel {
  border-left: 1px solid #dddddd;
  padding: 28px;
  display: grid;
  gap: 22px;
}

.contact-feature-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 22px;
  align-items: start;
}

.contact-form--compact {
  align-content: start;
}

.contact-form--compact input,
.contact-form--compact textarea {
  border: 1px solid #bcc3cf;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1.2;
  padding: 16px 20px;
}

.contact-form--compact textarea {
  min-height: 204px;
  border-radius: 28px;
}

.contact-form--compact .recaptcha-slot {
  width: 100%;
  min-height: 78px;
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
}

.contact-info-tile,
.contact-mini-tile {
  min-width: 0;
  display: grid;
  gap: 10px;
  padding: 18px 18px 16px;
  border: 1px solid #dddddd;
  background: #fff;
}

.contact-info-tile h3,
.contact-mini-tile h4 {
  margin: 0;
  line-height: 1;
}

.contact-info-tile h3 {
  font-size: 24px;
  font-weight: 900;
}

.contact-info-tile a,
.contact-mini-tile a {
  min-width: 0;
  color: #111;
  text-decoration: none;
}

.contact-info-tile a {
  font-size: clamp(11px, 1.1vw, 14px);
  line-height: 1.25;
  font-weight: 700;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-info-tile p,
.contact-mini-tile p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #4c4c4c;
}

.contact-mini-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-mini-tile h4 {
  font-size: 18px;
  font-weight: 900;
}

.contact-mini-tile a {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.contact-links--compact {
  gap: 8px;
}

.contact-links--compact .text-link {
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer-brand-small {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 1100px) {
  .page-hero-grid,
  .contact-layout,
  .policy-grid,
  .footer-top,
  .host-profile-grid,
  .host-profile-grid--reverse,
  .support-donation-grid,
  .contact-feature-frame,
  .contact-feature-top,
  .contact-mini-tiles {
    grid-template-columns: 1fr;
  }

  .policy-side {
    position: static;
  }

  .motion-collage {
    min-height: 520px;
  }

  .motion-collage .collage-main {
    height: 430px;
  }

  .host-profile-copy {
    order: 1;
  }

  .host-profile-media {
    order: 2;
    min-height: 420px;
  }

  .host-profile-badge {
    width: min(190px, 36vw);
    margin-top: 0;
  }

  .contact-feature-panel {
    border-left: 0;
    border-top: 1px solid #dddddd;
  }
}

@media (max-width: 960px) {
  .story-grid,
  .host-grid,
  .detail-grid,
  .feature-grid,
  .page-grid,
  .platform-grid,
  .app-store-links {
    grid-template-columns: 1fr;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    justify-self: start;
    width: 56px;
    height: 56px;
    background: #111;
    border-radius: 8px;
  }

  .mobile-menu-toggle span {
    background: #fff;
  }

  .nav-inner {
    grid-template-columns: auto auto;
  }

  .main-nav {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 14px;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 700px) {
  .page-hero {
    padding-top: 28px;
  }

  .page-title {
    line-height: 1;
  }

  .page-summary,
  .page-card p,
  .policy-section p,
  .policy-section li,
  .detail-card p,
  .story-card p {
    font-size: 16px;
  }

  .page-actions,
  .story-links,
  .card-links,
  .contact-links,
  .host-detail-actions {
    width: 100%;
  }

  .motion-collage {
    min-height: 460px;
  }

  .motion-collage .collage-main {
    width: min(100%, 320px);
    height: 360px;
  }

  .motion-collage .collage-top {
    right: 0;
    width: 160px;
    height: auto;
  }

  .motion-collage .collage-bottom {
    right: 18px;
    width: 145px;
    height: 210px;
  }

  .host-profile-copy {
    padding: 24px 20px;
  }

  .host-profile-title {
    font-size: clamp(34px, 10vw, 54px);
  }

  .host-profile-copy p {
    font-size: 18px;
    line-height: 1.66;
  }

  .host-profile-image {
    width: min(100%, 420px);
    max-height: 58vh;
  }

  .host-contact-pill {
    width: 100%;
    justify-content: center;
    min-height: 54px;
    padding: 0 18px;
    font-size: 15px;
  }

  .page-actions .btn,
  .story-links .btn,
  .card-links .btn,
  .contact-links .btn,
  .host-detail-actions .btn {
    width: 100%;
  }

  .support-donation-card {
    min-height: auto;
    padding: 28px 18px;
  }

  .support-donation-card h2 {
    font-size: clamp(36px, 11vw, 58px);
  }

  .support-donation-price,
  .support-donation-button,
  .support-donation-form {
    width: 100%;
  }

  .contact-page-intro {
    margin-bottom: 22px;
  }

  .contact-feature-frame {
    border-width: 1px;
  }

  .contact-feature-media {
    padding: 20px 16px 0;
  }

  .contact-feature-panel {
    padding: 20px 16px 18px;
  }

  .contact-form--compact input,
  .contact-form--compact textarea {
    font-size: 16px;
  }

  .contact-info-tile,
  .contact-mini-tile {
    padding: 16px 14px;
  }
}

@media (max-height: 860px) {
  .support-page-banner,
  .contact-page-banner {
    min-height: clamp(280px, calc(72svh - var(--header-height) * 0.35), 520px);
  }

  .support-donation-card {
    min-height: auto;
  }

  .host-profile-image {
    max-height: 64vh;
  }
}

@media (max-width: 700px) {
  .support-page-section {
    padding-top: 58px;
  }

  .contact-page-section {
    padding-top: 64px;
  }
}
