.mental-home .hero {
  min-height: min(760px, 82vh);
  padding: clamp(42px, 9vw, 112px) 0 clamp(56px, 9vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.mental-home .mental-home-topbar {
  min-height: 98px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-kicker::before {
  content: "";
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, var(--rust), transparent);
}

.hero-title {
  max-width: 900px;
  margin: 22px 0 0;
  color: #eadcc5;
  font-family: var(--font-serif);
  font-size: clamp(5rem, 13vw, 10.6rem);
  line-height: 0.82;
  text-transform: none;
  font-weight: 500;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.62);
}

.hero-title span {
  display: block;
  margin-left: clamp(2.2rem, 6vw, 5.6rem);
  color: #c8beaa;
  font-size: 0.56em;
  font-style: italic;
  text-transform: none;
}

.hero-copy {
  max-width: 620px;
  margin: 30px 0 0;
  color: #c8beaa;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.hero-copy strong {
  color: #efdec3;
  font-weight: 600;
}

.hero-home-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  color: var(--amber);
  font-family: var(--font-cond);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-home-link::after {
  width: 48px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero-home-link:hover,
.hero-home-link:focus-visible {
  color: #efdec3;
  outline: none;
}

.hero-side {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.paper-note {
  position: relative;
  padding: 30px 28px 26px;
  color: #1f1710;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 34%),
    #b9a787;
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.45);
  transform: rotate(-0.7deg);
}

.paper-note::before {
  content: "";
  position: absolute;
  width: 94px;
  height: 24px;
  left: 50%;
  top: -13px;
  transform: translateX(-50%) rotate(1deg);
  background: rgba(190, 174, 145, 0.58);
}

.paper-note blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.64rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.14;
}

.paper-note small {
  display: block;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0.62;
}

.mental-menu {
  padding: 62px 0 124px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  color: #e0ceb2;
  font-family: var(--font-cond);
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 700px;
  margin: 18px 0 0;
  color: #aa9b85;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.26rem;
  line-height: 1.58;
}

.pinboard {
  position: relative;
  min-height: 850px;
  padding: 42px;
  perspective: 1100px;
  --light-x: 52%;
  --light-y: 24%;
  background:
    radial-gradient(circle at var(--light-x) var(--light-y), rgba(235, 215, 178, 0.16), transparent 21%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.34)),
    radial-gradient(circle at 18% 26%, rgba(196, 183, 158, 0.08), transparent 17%),
    radial-gradient(circle at 82% 72%, rgba(138, 73, 59, 0.13), transparent 18%),
    #1a140f;
  border: 1px solid rgba(228, 215, 191, 0.15);
  box-shadow:
    inset 0 0 120px rgba(0, 0, 0, 0.66),
    0 44px 110px rgba(0, 0, 0, 0.42);
}

.pinboard::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(132, 107, 78, 0.38);
  box-shadow: inset 0 0 64px rgba(0, 0, 0, 0.26);
}

.pinboard::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background: radial-gradient(circle at 8% 88%, rgba(0, 0, 0, 0.38), transparent 18%);
}

.scrap {
  position: absolute;
  z-index: 2;
  width: 340px;
  padding: 30px;
  color: #1d1510;
  text-decoration: none;
  backface-visibility: hidden;
  transform: translate3d(0, var(--lift, 0px), 0) rotate(var(--base-rotate));
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  will-change: transform;
}

.scrap::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0 36%, rgba(255, 244, 213, 0.1) 45%, transparent 56%);
  transition: opacity 0.2s ease;
}

.scrap:hover,
.scrap:focus-visible {
  --lift: -8px;
  z-index: 5;
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.58);
}

.scrap:hover::after,
.scrap:focus-visible::after {
  opacity: 0.38;
}

.scrap h3 {
  margin: 0;
  font-family: var(--font-cond);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 0.98;
  text-transform: uppercase;
}

.scrap p {
  margin: 14px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.38;
}

.scrap-arrow {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-cond);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 500;
  transition: transform 0.18s ease;
}

.scrap:hover .scrap-arrow,
.scrap:focus-visible .scrap-arrow {
  transform: translateX(8px);
}

.scrap-paper {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 38%),
    #bcae91;
  --base-rotate: -2deg;
}

.scrap-poster {
  width: 390px;
  color: #dccdb5;
  border: 6px solid #15100c;
  background:
    linear-gradient(145deg, rgba(255, 244, 213, 0.07), transparent 46%),
    #2a2119;
  --base-rotate: 1.4deg;
}

.scrap-metal {
  color: #ddd3c1;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.075), transparent 16% 84%, rgba(255, 255, 255, 0.03)),
    #30302b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  --base-rotate: -0.8deg;
}

.scrap-dark {
  color: #d8cab5;
  background:
    linear-gradient(180deg, rgba(255, 244, 213, 0.045), transparent 44%),
    #120e0b;
  border: 1px solid rgba(138, 73, 59, 0.3);
  --base-rotate: 1deg;
}

.scrap-note {
  background: #90795e;
  --base-rotate: -1.4deg;
}

.pos-1 { left: 6%; top: 8%; }
.pos-2 { right: 5%; top: 12%; }
.pos-3 { left: 34%; top: 39%; }
.pos-4 { left: 7%; bottom: 8%; }
.pos-5 { right: 6%; bottom: 8%; }

@media (max-width: 980px) {
  .mental-home .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pinboard {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 24px;
  }

  .scrap {
    position: relative;
    inset: auto;
    width: auto;
  }
}

@media (max-width: 760px) {
  .mental-home .hero {
    min-height: auto;
    padding: 54px 0 68px;
  }

  .hero-title {
    font-size: clamp(4.2rem, 17vw, 6.2rem);
  }

  .hero-title span {
    margin-left: 22px;
  }

  .hero-copy {
    font-size: 1.18rem;
  }

  .hero-side {
    padding-left: 0;
    border-left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 3.2rem;
  }

  .pinboard {
    grid-template-columns: 1fr;
  }
}
