/* Hawkeye Capital landing — Paper hawkeyecapital.in · Desktop 29-0 / Mobile 28-0 */

:root {
  --cream: #f5edd8;
  --cream-dark: #e8dfc8;
  --forest: #1c3a2b;
  --brown: #3b2a1a;
  --gold: #b8963e;
  --ink: #1a1209;
  --muted: #7a6e60;
  --font-display: "Cormorant Garamond", serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --page-max: 1440px;
  --content: 1100px;
  --pad-d: 80px;
  --pad-m: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

/* Full-bleed layout: Paper artboard is 1440px but nav/hero backgrounds span the viewport */
main {
  margin: 0;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 8px 16px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 4px;
}

.skip-link:focus {
  left: 16px;
}

/* Nav */

.nav {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  padding: 0 var(--pad-d);
  background: var(--forest);
  border-bottom: 1px solid rgba(184, 150, 62, 0.2);
}

.nav--mobile {
  display: flex;
  width: 100%;
  height: 60px;
  padding: 0 var(--pad-m) 0 20px;
  background: var(--forest);
  border-bottom: 1px solid rgba(184, 150, 62, 0.2);
  align-items: center;
  justify-content: space-between;
}

a.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

a.brand:hover {
  text-decoration: none;
}

.nav--mobile .brand {
  gap: 6px;
  padding-right: 12px;
}

.nav--mobile .logo-img {
  width: 40px;
  height: 40px;
}

.nav-mobile-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: cover;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--cream);
  white-space: nowrap;
  font-size: 20px;
  line-height: 24px;
}

.nav--mobile .wordmark {
  font-size: 16px;
  line-height: 19px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 16px;
  color: rgba(245, 237, 216, 0.6);
}

.nav-link:hover {
  color: var(--cream);
}

.nav-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-details summary::-webkit-details-marker {
  display: none;
}

.burger-bar {
  height: 1.5px;
  background: var(--cream);
  border-radius: 1px;
}

.burger-bar:nth-child(1),
.burger-bar:nth-child(2) {
  width: 22px;
}

.burger-bar:nth-child(3) {
  width: 14px;
}

.nav-drawer {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 200px;
  padding: 16px;
  background: var(--forest);
  border: 1px solid rgba(184, 150, 62, 0.2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.nav-drawer a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 237, 216, 0.85);
}

.nav-details {
  position: relative;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-gold:hover {
  filter: brightness(1.03);
  text-decoration: none;
}

.btn-gold--nav {
  padding: 9px 22px;
}

.btn-gold--nav-m {
  padding: 8px 18px;
}

.btn-gold--hero {
  padding: 16px 28px;
  font-size: 15px;
  line-height: 18px;
}

.btn-gold--footer {
  padding: 16px 32px;
  font-size: 15px;
  line-height: 18px;
}

.icon-wa {
  flex-shrink: 0;
}

/* Hero */

.hero {
  position: relative;
  width: 100%;
  min-height: 680px;
  padding: 120px var(--pad-d) 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: clip;
  background-color: #2a3d2f;
  background-image: linear-gradient(
      180deg,
      rgba(28, 58, 43, 0.88) 0%,
      rgba(40, 58, 46, 0.82) 100%
    ),
    url("assets/hero-bg.png");
  background-size: cover, cover;
  background-position: center, center;
}

.hero-decor {
  position: absolute;
  border: 1px solid rgba(184, 150, 62, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero-decor--lg {
  width: 800px;
  height: 800px;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-decor--sm {
  width: 480px;
  height: 480px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-color: rgba(184, 150, 62, 0.05);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--cream);
}

.hero-rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
}

.hero-lead {
  margin: 0;
  max-width: 520px;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  color: rgba(245, 237, 216, 0.6);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-secondary {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 18px;
  color: rgba(184, 150, 62, 0.8);
}

.hero-secondary:hover {
  color: var(--gold);
  text-decoration: none;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--muted);
}

.section-label--muted-light {
  color: rgba(245, 237, 216, 0.65);
}

/* Credentials */

.credentials {
  width: 100%;
  padding: 80px var(--pad-d);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.credentials-label-row {
  max-width: 1280px;
}

.credentials-grid {
  display: flex;
  gap: 32px;
  max-width: var(--content);
}

.tile {
  flex: 1;
  border-top: 1px solid var(--gold);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tile-kicker {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
}

.tile-body {
  margin: 0;
  font-size: 15px;
  line-height: 22px;
  color: var(--ink);
}

/* Who we work with */

.who {
  position: relative;
  width: 100%;
  padding: 80px var(--pad-d);
  background: var(--brown);
  overflow: clip;
}

.who-label {
  margin-bottom: 20px;
}

.who-headline {
  margin: 0 0 40px;
  max-width: 640px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--cream);
}

.who-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: var(--content);
  position: relative;
  z-index: 1;
}

.who-card {
  width: 530px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.who-card-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--gold);
}

.who-card-body {
  margin: 0;
  font-size: 15px;
  line-height: 22px;
  color: rgba(245, 237, 216, 0.88);
}

.hawk {
  position: absolute;
  right: 64px;
  top: 56px;
  width: 360px;
  height: 260px;
  border-radius: 4px;
  background: url("assets/hawk-bird.png") center / cover no-repeat;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Philosophy + How it works */

.philo {
  width: 100%;
  padding: 80px var(--pad-d);
  background: var(--cream);
}

.philo-inner {
  display: flex;
  gap: 80px;
  max-width: var(--content);
  align-items: flex-start;
}

.philo-quote {
  flex: 5;
  min-width: 0;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}

.philo-quote p {
  margin: 0;
  max-width: 413px;
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  line-height: 36px;
  color: var(--ink);
}

.how {
  flex: 7;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.how .section-label {
  margin: 0;
}

.how-list {
  display: flex;
  flex-direction: column;
}

.how-row {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(184, 150, 62, 0.2);
}

.how-row:last-child {
  border-bottom: 1px solid rgba(184, 150, 62, 0.2);
}

.how-num {
  flex-shrink: 0;
  width: 28px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  color: rgba(184, 150, 62, 0.35);
  padding-top: 4px;
}

.how-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
  max-width: 532px;
}

.how-q {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--ink);
}

.how-a {
  margin: 0;
  font-size: 15px;
  line-height: 22px;
  color: var(--ink);
}

/* Testimonial */

.quote-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px var(--pad-d);
  background: var(--cream-dark);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 44px;
  color: var(--gold);
  width: 21px;
}

.quote-body {
  margin: 0;
  max-width: 700px;
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  line-height: 38px;
  text-align: center;
  color: var(--ink);
}

.quote-by {
  margin: 0;
  max-width: 354px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 16px;
  text-transform: uppercase;
  text-align: center;
  color: var(--muted);
}

/* CTA */

.cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px var(--pad-d);
  background: var(--forest);
  border-top: 1px solid rgba(184, 150, 62, 0.12);
}

.cta-title {
  margin: 0;
  max-width: 439px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 62px;
  text-align: center;
  color: var(--cream);
}

.cta-lead {
  margin: 0;
  max-width: 420px;
  font-size: 17px;
  line-height: 28px;
  text-align: center;
  color: rgba(245, 237, 216, 0.75);
}

.cta-foot {
  width: 100%;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 237, 216, 0.07);
}

.cta-disclaimer {
  margin: 0 auto;
  max-width: 1280px;
  font-size: 13px;
  line-height: 21px;
  color: rgba(245, 237, 216, 0.55);
}

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

/* Desktop / mobile visibility */

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (min-width: 1100px) {
  .nav {
    display: flex;
  }

  .nav--mobile {
    display: none;
  }

  .desktop-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }

  .quote-mark--m {
    display: none;
  }

  .quote-mark--d {
    display: block;
  }
}

@media (max-width: 1099px) {
  .nav {
    display: none;
  }

  .nav--mobile {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .hawk {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 56px var(--pad-m) 64px;
    gap: 28px;
    background-image: linear-gradient(
        180deg,
        rgb(28, 58, 43) 0%,
        rgb(40, 58, 46) 100%
      ),
      url("assets/hero-bg-mobile.png");
  }

  /* Paper 28-0 / SE-0: hero is gradient + image only — no separate ring layers (cf. desktop 4U-0) */
  .hero-decor--lg,
  .hero-decor--sm {
    display: none;
  }

  .hero-inner {
    gap: 28px;
    width: 100%;
    max-width: 342px;
  }

  .hero-eyebrow {
    font-size: 10px;
    line-height: 13px;
    letter-spacing: 0.16em;
  }

  .hero-title {
    font-size: 44px;
    letter-spacing: -0.02em;
    line-height: 46px;
  }

  .hero-rule {
    width: 56px;
    margin-bottom: 24px;
  }

  .hero-lead {
    max-width: none;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: rgba(245, 237, 216, 0.65);
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .btn-gold--hero {
    padding: 15px 24px;
    font-size: 15px;
    line-height: 18px;
  }

  .hero-secondary {
    color: rgba(184, 150, 62, 0.8);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 18px;
  }

  .credentials {
    padding: 56px var(--pad-m);
    gap: 40px;
    align-items: flex-start;
  }

  .credentials-label-row {
    max-width: 342px;
    width: 100%;
  }

  .section-label {
    font-size: 10px;
    line-height: 13px;
    letter-spacing: 0.14em;
    font-weight: 600;
  }

  .credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 342px;
    width: 100%;
  }

  .tile {
    padding-top: 12px;
    gap: 6px;
  }

  .tile-kicker {
    font-size: 22px;
    line-height: 28px;
  }

  .tile-body {
    font-size: 13px;
    line-height: 18px;
  }

  .who {
    padding: 56px var(--pad-m);
  }

  .who-label {
    color: rgba(245, 237, 216, 0.65);
    letter-spacing: 0.14em;
  }

  .who-headline {
    font-size: 32px;
    line-height: 1.12;
    width: 100%;
    max-width: 342px;
    margin: 0 0 40px;
  }

  .who-grid {
    flex-direction: column;
    max-width: 342px;
    width: 100%;
    gap: 20px;
  }

  .who-card {
    width: 100%;
    gap: 8px;
  }

  .who-card-title {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .who-card-body {
    font-size: 14px;
    line-height: 20px;
    color: rgba(245, 237, 216, 0.9);
  }

  .philo {
    padding: 56px var(--pad-m);
  }

  .philo-inner {
    flex-direction: column;
    gap: 0;
    max-width: none;
  }

  /* Paper 3O-0: quote block then 56px before “How it works” */
  .philo-quote {
    margin-bottom: 56px;
    padding-left: 22px;
    max-width: 342px;
    width: 100%;
    box-sizing: border-box;
  }

  .philo-quote p {
    max-width: 318px;
    font-size: 22px;
    line-height: 30px;
  }

  .how {
    gap: 40px;
    width: 100%;
    max-width: 342px;
  }

  .how .section-label {
    letter-spacing: 0.14em;
  }

  .how-row {
    border-top-color: rgba(184, 150, 62, 0.2);
  }

  .how-row:last-child {
    border-bottom-color: rgba(184, 150, 62, 0.2);
  }

  .how-num {
    color: rgba(184, 150, 62, 0.35);
  }

  .how-copy {
    max-width: 296px;
  }

  .how-q {
    font-size: 15px;
    line-height: 22px;
  }

  .how-a {
    font-size: 14px;
    line-height: 21px;
  }

  .quote-section {
    padding: 56px var(--pad-m);
    gap: 32px;
    align-items: center;
  }

  .quote-mark--d {
    display: none;
  }

  .quote-mark--m {
    display: block;
    width: auto;
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    margin-bottom: 24px;
  }

  .quote-body {
    max-width: 342px;
    width: 100%;
    font-size: 22px;
    line-height: 30px;
    text-align: left;
  }

  .quote-by {
    max-width: 267px;
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.06em;
    line-height: 15px;
    text-align: left;
  }

  .cta {
    padding: 64px var(--pad-m);
    border-top-color: rgba(184, 150, 62, 0.12);
  }

  .cta-title {
    max-width: 302px;
    font-size: 36px;
    line-height: 44px;
  }

  .cta-lead {
    width: 342px;
    max-width: 100%;
    font-size: 15px;
    line-height: 24px;
    color: rgba(245, 237, 216, 0.75);
  }

  .btn-gold--footer {
    padding: 15px 28px;
    font-size: 14px;
    line-height: 18px;
  }

  .cta-foot {
    margin-top: 40px;
    padding-top: 20px;
    border-top-color: rgba(245, 237, 216, 0.07);
  }

  .cta-disclaimer {
    max-width: 342px;
    font-size: 12px;
    line-height: 18px;
    color: rgba(245, 237, 216, 0.55);
  }
}

/* About page — Paper MU-0 (desktop) / NZ-0 (mobile) */

.nav-link--active {
  color: rgba(245, 237, 216, 0.95);
}

.about-main {
  flex: 1;
}

.about-body--desktop {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  padding: 72px max(80px, calc((100% - 1100px) / 2)) 100px;
}

.about-body--mobile {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
  padding: 40px 24px 80px;
}

.about-hero {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.about-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--muted);
}

.about-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.about-portrait {
  width: 387px;
  height: 479px;
  align-self: flex-start;
  background: url("/assets/rajesh-portrait.png") center / cover no-repeat;
}

.about-subtitle {
  margin: 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 28px;
  color: #3b2a1a;
}

.about-glance {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 28px;
  background: var(--cream-dark);
  border: 1px solid rgba(26, 18, 9, 0.08);
  box-sizing: border-box;
}

.about-glance-label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--muted);
}

.about-glance-line {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: var(--ink);
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 820px;
  width: 100%;
}

.about-h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

.about-p {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: var(--ink);
}

.about-quote {
  margin: 0;
  max-width: 720px;
  padding: 8px 0 8px 20px;
  border-left: 3px solid var(--gold);
  box-sizing: border-box;
}

.about-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 34px;
  color: #3b2a1a;
}

.about-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-top: 48px;
}

.about-cta-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

.about-cta-lead {
  margin: 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 26px;
  color: var(--muted);
}

.btn-gold--about {
  width: fit-content;
  padding: 16px 32px;
  font-size: 15px;
  line-height: 18px;
}

.about-disclaimer {
  width: 100%;
  margin: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(122, 110, 96, 0.35);
}

.about-disclaimer p {
  margin: 0;
  max-width: 900px;
  font-size: 13px;
  line-height: 22px;
  color: var(--muted);
}

/* About — mobile */

.about-eyebrow--m {
  font-size: 10px;
  line-height: 13px;
}

.about-intro-m {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.about-title-m {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
}

.about-subtitle-m {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: #3b2a1a;
}

.about-glance--m {
  gap: 12px;
  padding: 22px 20px;
}

.about-glance-label--m {
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.12em;
}

.about-glance-one-line {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: var(--ink);
}

.about-p--m {
  font-size: 15px;
  line-height: 26px;
}

.about-investors-m {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.about-investors-m p {
  margin: 0;
  font-size: 15px;
  line-height: 26px;
  color: var(--ink);
}

.about-investors-m p + p {
  margin-top: 24px;
}

.about-quote--m {
  max-width: none;
  padding: 0 0 0 16px;
}

.about-quote--m p {
  font-size: 20px;
  line-height: 30px;
}

.about-cta--m {
  padding-top: 16px;
  gap: 12px;
}

.about-cta-title--m {
  font-size: 28px;
  line-height: 34px;
}

.about-disclaimer--m {
  padding-top: 8px;
  border-top: none;
}

.about-disclaimer--m p {
  max-width: none;
  font-size: 12px;
  line-height: 20px;
}

/* FAQ — Paper FZ-0 (desktop) / FY-0 (mobile) */

.page--faq {
  background: var(--forest);
}

.faq-main {
  flex: 1;
  width: 100%;
  background: var(--forest);
}

.faq-shell {
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px max(28px, calc((100% - 1100px) / 2)) 100px;
}

.faq-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  margin-bottom: 64px;
}

.faq-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--gold);
}

.faq-title {
  margin: 0;
  max-width: 580px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--cream);
}

.faq-intro-note {
  margin: 0;
  max-width: 340px;
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
  color: var(--muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1100px;
}

.faq-item {
  border-top: 1px solid rgba(184, 150, 62, 0.4);
  box-sizing: border-box;
}

.faq-item--last {
  border-bottom: 1px solid rgba(184, 150, 62, 0.4);
}

.faq-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  list-style: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.faq-item[open] .faq-summary {
  padding-bottom: 0;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary:focus {
  outline: none;
}

.faq-summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.faq-q {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
  color: var(--cream);
}

.faq-chev {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 14px 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center / 1.5px 14px no-repeat;
}

.faq-item[open] .faq-chev {
  background: linear-gradient(var(--gold), var(--gold)) center / 14px 1.5px no-repeat;
}

.faq-body {
  padding: 16px 0 22px;
}

.faq-body p {
  margin: 0;
  max-width: 820px;
  font-size: 16px;
  font-weight: 300;
  line-height: 27px;
  color: var(--cream-dark);
}

@media (min-width: 1100px) {
  .faq-hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
  }

  .faq-hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 580px;
  }

  .faq-title {
    max-width: 580px;
  }
}

@media (max-width: 1099px) {
  .faq-shell {
    padding: 64px 28px 80px;
  }

  .faq-hero {
    gap: 24px;
    margin-bottom: 0;
  }

  .faq-title {
    max-width: 334px;
    font-size: 36px;
    line-height: 1.12;
  }

  .faq-item {
    border-top-color: var(--gold);
  }

  .faq-item--last {
    border-bottom: 1px solid var(--gold);
  }

  .faq-summary {
    gap: 12px;
    padding: 20px 0;
  }

  .faq-item[open] .faq-summary {
    padding-bottom: 0;
  }

  .faq-q {
    max-width: 304px;
    font-size: 18px;
    line-height: 24px;
  }

  .faq-chev {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    background:
      linear-gradient(var(--gold), var(--gold)) center / 12px 1.5px no-repeat,
      linear-gradient(var(--gold), var(--gold)) center / 1.5px 12px no-repeat;
  }

  .faq-item[open] .faq-chev {
    background: linear-gradient(var(--gold), var(--gold)) center / 12px 1.5px no-repeat;
  }

  .faq-body {
    padding: 14px 0 20px;
  }

  .faq-body p {
    max-width: 334px;
    font-size: 15px;
    line-height: 24px;
  }

}
