:root {
  --black: #0f1012;
  --charcoal: #1d2126;
  --slate: #3b3f46;
  --ivory: #f7f4ee;
  --stone: #e6e3de;
  --gold: #d4b97a;
  --pale-gold: #e9d9a6;
  --deep-gold: #b58f46;
  --header-height: 92px;
  --page-gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(76px, 9vw, 150px);
  --content-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--charcoal);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

section[id],
footer[id] {
  scroll-margin-top: var(--header-height);
}

.serif {
  font-family: "Playfair Display", serif;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-width));
  margin-inline: auto;
}

.eyebrow {
  color: var(--deep-gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.rule {
  width: 64px;
  height: 1px;
  margin-top: 22px;
  border: 0;
  background: var(--gold);
}

.rule-full {
  width: 100%;
  height: 1px;
  margin-bottom: 36px;
  border: 0;
  background: linear-gradient(
    to right,
    rgba(212, 185, 122, 0),
    rgba(212, 185, 122, 0.55),
    rgba(212, 185, 122, 0)
  );
}

/* Material-style shape only: pill geometry, existing palette preserved. */
.btn {
  min-height: 48px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease,
    color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--charcoal);
}

.btn-primary:hover {
  border-color: var(--pale-gold);
  background: var(--pale-gold);
}

.btn-outline-dark {
  border-color: var(--gold);
  background: transparent;
  color: var(--ivory);
}

.btn-outline-dark:hover {
  background: rgba(212, 185, 122, 0.1);
}

.btn-outline-light {
  border-color: var(--deep-gold);
  background: transparent;
  color: var(--charcoal);
}

.btn-outline-light:hover {
  background: rgba(181, 143, 70, 0.1);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding-top: env(safe-area-inset-top, 0px);
  border-bottom: 1px solid transparent;
  background: rgba(15, 16, 18, 0.98);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(212, 185, 122, 0.16);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.site-header .container {
  width: min(calc(100% - (2 * var(--page-gutter))), 1760px);
}

.header-inner {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo,
.footer-logo {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  flex: 0 0 auto;
}

.mono {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
}

.logo-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.logo-text .name {
  color: var(--ivory);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.logo-text .cry {
  margin-top: 3px;
  color: var(--gold);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.header-panel {
  min-width: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 62px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 40px);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--stone);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 220ms ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 0.6875rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(212, 185, 122, 0.45);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 1px;
  display: block;
  background: var(--gold);
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: grid;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.hero-right {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--black);
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 16, 18, 0.99) 0%,
      rgba(15, 16, 18, 0.94) 27%,
      rgba(15, 16, 18, 0.58) 52%,
      rgba(15, 16, 18, 0.1) 76%,
      rgba(15, 16, 18, 0.02) 100%
    ),
    linear-gradient(180deg, rgba(15, 16, 18, 0.1), rgba(15, 16, 18, 0.32));
  pointer-events: none;
}

.hero-right .grain {
  z-index: 1;
}

.hero-left {
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.hero-left .container {
  min-height: 100%;
  padding-top: clamp(70px, 9vh, 120px);
  padding-right: min(49vw, 700px);
  padding-bottom: clamp(112px, 15vh, 160px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-symbol {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 0.9375rem;
  font-style: italic;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 650px;
  margin-top: 22px;
  color: var(--ivory);
  font-size: clamp(3.5rem, 5.2vw, 5.25rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.hero h1 span {
  color: var(--gold);
  font-style: italic;
}

.hero .kicker {
  max-width: 500px;
  margin-top: 28px;
  color: var(--pale-gold);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-style: italic;
}

.hero p.body {
  max-width: 500px;
  margin-top: 10px;
  color: #c2beb5;
  font-size: clamp(0.94rem, 1.15vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
}

.hero-buttons {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll {
  position: absolute;
  bottom: clamp(28px, 5vh, 52px);
  left: max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-scroll .scroll-line {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.hero-scroll .scroll-label {
  color: var(--gold);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- open letter ---------- */
.letter,
.reasons,
.poster,
.asking,
.global,
.founder,
.signup,
footer {
  position: relative;
}

.letter {
  padding-block: var(--section-space);
  overflow: hidden;
  background: var(--ivory);
}

.numeral-mark {
  position: absolute;
  top: 50%;
  right: -70px;
  z-index: 0;
  transform: translateY(-50%);
  color: transparent;
  font-family: "Playfair Display", serif;
  font-size: clamp(350px, 38vw, 660px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  -webkit-text-stroke: 1.5px rgba(181, 143, 70, 0.22);
}

.letter-grid,
.reasons-head,
.founder-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(56px, 8vw, 100px);
}

.letter-grid h2,
.reasons-head h2,
.founder-grid h2,
.signup h2 {
  color: var(--charcoal);
  font-size: clamp(2.25rem, 3.4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.16;
}

.letter-grid h2 {
  max-width: 360px;
}

.letter-right,
.founder-right {
  min-width: 0;
}

.letter-right .salutation {
  margin-bottom: 26px;
  color: var(--deep-gold);
  font-family: "Playfair Display", serif;
  font-size: 1.375rem;
  font-style: italic;
}

.letter-right p,
.founder-right p {
  max-width: 600px;
  margin-bottom: 22px;
  color: var(--slate);
  font-size: clamp(1rem, 1.25vw, 1.075rem);
  font-weight: 300;
  line-height: 1.85;
}

.letter-right .sign-off {
  margin-top: 36px;
  color: var(--charcoal);
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-style: italic;
}

/* ---------- seven reasons ---------- */
.reasons {
  padding-block: var(--section-space);
  background: var(--stone);
}

.reasons-head {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.reasons-head h2 {
  max-width: 400px;
}

.reasons-head .link-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.reasons-head .link-row a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--deep-gold);
  color: var(--deep-gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reason-row {
  min-width: 0;
  margin-inline: -8px;
  padding: clamp(24px, 3vw, 30px) 8px;
  display: grid;
  grid-template-columns: clamp(92px, 15vw, 220px) minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid rgba(59, 63, 70, 0.14);
  transition: background-color 200ms ease;
}

.reason-row:first-of-type {
  border-top: 1px solid rgba(59, 63, 70, 0.14);
}

.reason-row:hover {
  background: rgba(212, 185, 122, 0.1);
}

.reason-row .num {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.55rem, 2.4vw, 1.875rem);
  font-style: italic;
  font-weight: 500;
}

.reason-row .title {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--charcoal);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 1.65vw, 1.25rem);
  font-weight: 400;
  line-height: 1.45;
}

/* ---------- share poster ---------- */
.poster {
  padding-block: clamp(105px, 11vw, 170px);
  overflow: hidden;
  background: var(--black);
  text-align: center;
}

.poster .container,
.global .container,
.signup .container {
  position: relative;
  z-index: 1;
}

.poster h2,
.global h2 {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(2.3rem, 4.1vw, 3rem);
  font-weight: 500;
  line-height: 1.25;
}

.poster h2 {
  color: var(--ivory);
}

.poster .prompt {
  margin-top: 30px;
  color: var(--pale-gold);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-style: italic;
}

.poster .btn {
  margin-top: 42px;
}

/* ---------- asking ---------- */
.asking {
  padding-block: var(--section-space);
  background: var(--ivory);
}

.asking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
}

.asking-grid .divider {
  background: rgba(59, 63, 70, 0.16);
}

.asking-col {
  min-width: 0;
}

.asking-col .eyebrow {
  display: block;
  margin-bottom: 26px;
}

.asking-col ul {
  list-style: none;
}

.asking-col li {
  padding-block: 16px;
  border-bottom: 1px solid rgba(59, 63, 70, 0.12);
  color: var(--charcoal);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.15rem, 1.75vw, 1.4rem);
  line-height: 1.45;
}

.asking-col li:first-child {
  border-top: 1px solid rgba(59, 63, 70, 0.12);
}

.asking-close {
  margin-top: clamp(56px, 7vw, 90px);
  color: var(--deep-gold);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  text-align: center;
}

/* ---------- global movement ---------- */
.global {
  padding-block: clamp(105px, 11vw, 160px);
  background: var(--stone);
  text-align: center;
}

.global h2 {
  color: var(--charcoal);
}

.global .sub {
  margin: 22px auto 30px;
  color: var(--slate);
  font-size: clamp(0.95rem, 1.2vw, 1rem);
  line-height: 1.7;
}

.global p.body {
  max-width: 640px;
  margin: 0 auto 24px;
  color: var(--slate);
  font-size: clamp(1rem, 1.3vw, 1.075rem);
  font-weight: 300;
  line-height: 1.8;
}

.global .statement {
  margin-bottom: 40px;
  color: var(--charcoal);
  font-family: "Playfair Display", serif;
  font-size: 1.1875rem;
  font-style: italic;
}

/* ---------- founder ---------- */
.founder {
  padding-block: var(--section-space);
  background: var(--ivory);
}

.founder-grid h2 {
  max-width: 360px;
}

.founder-sign {
  margin-top: 38px;
}

.founder-sign .name {
  color: var(--deep-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 600;
}

.founder-sign .title {
  margin-top: 6px;
  color: var(--slate);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- signup ---------- */
.signup {
  padding-block: clamp(90px, 9vw, 130px);
  overflow: hidden;
  background: var(--charcoal);
  text-align: center;
}

.signup h2 {
  color: var(--ivory);
}

.signup .sub {
  max-width: 520px;
  margin: 16px auto 46px;
  color: #b7b4ac;
  font-size: 0.95rem;
  line-height: 1.7;
}

.signup-form {
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr)) auto;
  gap: 12px;
}

.signup-form input {
  width: 100%;
  min-width: 0;
  height: 52px;
  padding-inline: 17px;
  border: 1px solid rgba(212, 185, 122, 0.35);
  border-radius: 12px;
  background: transparent;
  color: var(--ivory);
  font-size: 0.8125rem;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.signup-form input::placeholder {
  color: #99968e;
}

.signup-form input:hover,
.signup-form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.025);
  outline: none;
}

.signup-form .btn {
  height: 52px;
  padding-inline: 24px;
}

.privacy {
  margin-top: 24px;
  color: #88857e;
  font-size: 0.75rem;
}

/* ---------- footer ---------- */
footer {
  padding: clamp(72px, 8vw, 90px) 0 40px;
  overflow: hidden;
  border-top: 1px solid rgba(212, 185, 122, 0.14);
  background: var(--black);
}

footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  padding-bottom: clamp(50px, 6vw, 70px);
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(320px, 1.35fr) minmax(240px, 1fr);
  align-items: start;
  gap: clamp(36px, 5vw, 60px);
  border-bottom: 1px solid rgba(212, 185, 122, 0.16);
}

.footer-logo {
  align-items: flex-start;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 30px;
}

.footer-nav a,
.footer-contact a {
  color: var(--stone);
  font-size: 0.8125rem;
  line-height: 1.5;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  text-align: right;
}

.footer-contact a {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.footer-mid {
  padding-block: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.legal-links {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
}

.legal-links a {
  color: #8b8983;
  font-size: 0.75rem;
  transition: color 180ms ease;
}

.legal-links a:hover {
  color: var(--gold);
}

.social-icons {
  flex: 0 0 auto;
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 185, 122, 0.35);
  border-radius: 50%;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.social-icons a:hover {
  border-color: var(--gold);
  background: rgba(212, 185, 122, 0.08);
}

.social-icons svg {
  width: 16px;
  height: 16px;
}

.disclaimer {
  max-width: 920px;
  margin: 0 auto 20px;
  color: #77746e;
  font-size: 0.75rem;
  line-height: 1.8;
  text-align: center;
}

.copyright {
  color: #77746e;
  font-size: 0.75rem;
  text-align: center;
}

/* ---------- motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.16, 0.84, 0.44, 1),
    transform 0.9s cubic-bezier(0.16, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-reveal.d1 { transition-delay: 0.05s; }
.hero-reveal.d2 { transition-delay: 0.18s; }
.hero-reveal.d3 { transition-delay: 0.34s; }
.hero-reveal.d4 { transition-delay: 0.46s; }
.hero-reveal.d5 { transition-delay: 0.58s; }

/* ---------- responsive: compact desktop / tablet ---------- */
@media (max-width: 1280px) {
  :root {
    --header-height: 80px;
  }

  .site-header .container {
    width: min(calc(100% - (2 * clamp(20px, 3vw, 40px))), 1760px);
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .header-panel {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 34px var(--page-gutter) max(34px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    background: rgba(15, 16, 18, 0.99);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  }

  .header-panel.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav a {
    min-height: 54px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(212, 185, 122, 0.13);
    font-family: "Playfair Display", serif;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-actions .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero-left .container {
    padding-right: clamp(280px, 43vw, 520px);
  }

  .signup-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signup-form .btn {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 320px);
  }
}

/* ---------- responsive: tablet ---------- */
@media (max-width: 900px) {
  :root {
    --page-gutter: clamp(20px, 5vw, 42px);
    --section-space: clamp(72px, 12vw, 110px);
  }

  .hero {
    min-height: max(680px, calc(100svh - var(--header-height)));
  }

  .hero-left .container {
    padding-top: 80px;
    padding-right: 12vw;
    padding-bottom: 120px;
  }

  .hero-right img {
    object-position: 65% center;
  }

  .hero-right::after {
    background:
      linear-gradient(
        90deg,
        rgba(15, 16, 18, 0.97) 0%,
        rgba(15, 16, 18, 0.88) 45%,
        rgba(15, 16, 18, 0.43) 100%
      ),
      linear-gradient(180deg, rgba(15, 16, 18, 0.08), rgba(15, 16, 18, 0.48));
  }

  .hero h1 {
    max-width: 600px;
  }

  .letter-grid,
  .reasons-head,
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .letter-grid h2,
  .reasons-head h2,
  .founder-grid h2 {
    max-width: 620px;
  }

  .reasons-head .link-row {
    justify-content: flex-start;
  }

  .asking-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .asking-grid .divider {
    width: 100%;
    height: 1px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
    align-items: flex-start;
    text-align: left;
  }
}

/* ---------- responsive: mobile ---------- */
@media (max-width: 620px) {
  :root {
    --header-height: 72px;
    --page-gutter: 20px;
  }

  .logo {
    gap: 10px;
  }

  .mono {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 0.9rem;
  }

  .logo-text .name {
    font-size: 0.72rem;
  }

  .logo-text .cry {
    font-size: 0.52rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .header-panel {
    top: var(--header-height);
    padding-top: 22px;
  }

  .header-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: max(640px, calc(100svh - var(--header-height)));
  }

  .hero-left .container {
    padding-top: 68px;
    padding-right: 0;
    padding-bottom: 108px;
  }

  .hero-right img {
    object-position: 68% center;
  }

  .hero-right::after {
    background:
      linear-gradient(
        90deg,
        rgba(15, 16, 18, 0.97) 0%,
        rgba(15, 16, 18, 0.82) 66%,
        rgba(15, 16, 18, 0.52) 100%
      ),
      linear-gradient(
        180deg,
        rgba(15, 16, 18, 0.16) 0%,
        rgba(15, 16, 18, 0.18) 58%,
        rgba(15, 16, 18, 0.76) 100%
      );
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(2.8rem, 14vw, 4rem);
    line-height: 0.98;
  }

  .hero .kicker {
    margin-top: 22px;
  }

  .hero p.body {
    max-width: 460px;
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .hero-buttons {
    width: 100%;
    margin-top: 20px;
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-scroll {
    bottom: 25px;
    left: var(--page-gutter);
  }

  .numeral-mark {
    right: -95px;
    opacity: 0.65;
  }

  .reason-row {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    padding-block: 22px;
  }

  .reason-row .num {
    font-size: 1.35rem;
  }

  .poster h2 br {
    display: none;
  }

  .poster .btn,
  .global .btn {
    width: 100%;
  }

  .asking-close {
    text-align: left;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .signup-form .btn {
    grid-column: auto;
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-nav {
    justify-content: flex-start;
    gap: 14px 22px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-mid {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-links {
    flex-direction: column;
    gap: 14px;
  }
}

/* ---------- very small screens ---------- */
@media (max-width: 380px) {
  .logo-text .cry {
    display: none;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .btn {
    padding-inline: 20px;
    letter-spacing: 0.1em;
  }
}

/* ---------- short landscape screens ---------- */
@media (max-height: 650px) and (min-width: 621px) {
  .hero {
    min-height: 640px;
  }

  .hero-left .container {
    padding-top: 54px;
    padding-bottom: 88px;
  }

  .hero-scroll {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,  
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .hero-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==================================================
   MOBILE MENU — CORREÇÃO
   Colocar no final do styles.css
================================================== */

/* Fundo escuro atrás do menu */
body::before {
  content: "";
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 998;

  background: rgba(0, 0, 0, 0.58);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

body.menu-open::before {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Botão */
.menu-toggle {
  position: relative;

  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;

  padding: 0;
  border: 1px solid rgba(212, 185, 122, 0.5);
  border-radius: 50%;

  background: rgba(212, 185, 122, 0.05);
  color: var(--gold);

  cursor: pointer;
  overflow: hidden;

  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

/* Linhas do hambúrguer */
.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;

  display: block;
  width: 20px;
  height: 2px;

  border-radius: 999px;
  background: currentColor;

  transform-origin: center;

  transition:
    transform 240ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 160ms ease,
    width 200ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, -7px);
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, 0);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, 7px);
}

/* Estado aberto — X */
.menu-toggle[aria-expanded="true"] {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.menu-toggle:active {
  transform: scale(0.94);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--pale-gold);
  outline-offset: 4px;
}

/* Menu para portátil, tablet e telemóvel */
@media (max-width: 1280px) {
  .menu-toggle {
    z-index: 1002;
    display: inline-flex;
  }

  .header-panel {
    position: fixed;

    top: calc(var(--header-height) + 12px);
    right: 12px;
    bottom: auto;
    left: auto;

    z-index: 1001;

    width: min(420px, calc(100vw - 24px));
    max-height: calc(
      100svh - var(--header-height) - 24px
    );

    margin: 0;
    padding: 24px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;

    overflow-y: auto;
    overscroll-behavior: contain;

    border: 1px solid rgba(212, 185, 122, 0.2);
    border-radius: 24px;

    background: rgba(20, 21, 24, 0.98);
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.55),
      0 4px 14px rgba(0, 0, 0, 0.28);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transform: translateY(-12px) scale(0.97);
    transform-origin: top right;

    transition:
      opacity 200ms ease,
      transform 240ms cubic-bezier(0.2, 0, 0, 1),
      visibility 200ms ease;
  }

  .header-panel.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;

    transform: translateY(0) scale(1);
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav a {
    min-height: 54px;
    padding: 0 14px;

    display: flex;
    align-items: center;

    border: 0;
    border-radius: 14px;

    color: var(--stone);
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;

    transition:
      color 180ms ease,
      background-color 180ms ease;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: var(--gold);
    background: rgba(212, 185, 122, 0.09);
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;

    padding-top: 20px;
    border-top: 1px solid rgba(212, 185, 122, 0.14);
  }

  .header-actions .btn {
    width: 100%;
    min-height: 50px;
  }
}

@media (max-width: 620px) {
  .menu-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .menu-toggle span {
    width: 19px;
  }

  .header-panel {
    top: calc(var(--header-height) + 8px);
    right: 8px;

    width: calc(100vw - 16px);
    max-height: calc(
      100svh - var(--header-height) - 16px
    );

    padding: 20px;
    border-radius: 20px;
  }

  .main-nav a {
    min-height: 52px;
    font-size: 0.9rem;
  }
}

@media (hover: hover) {
  .menu-toggle:hover {
    border-color: var(--gold);
    background: rgba(212, 185, 122, 0.12);
  }

  .menu-toggle[aria-expanded="true"]:hover {
    background: var(--pale-gold);
  }
}