/* ===== Lenis Smooth Scroll ===== */
html.lenis,
html.lenis-pure {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family:
    "Google Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.7;
  font-size: 19px;
  font-weight: 400;
  position: relative;
}

a {
  color: #1a1a1a;
  text-decoration: none;
}

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

/* ===== Layout Container ===== */
.hero,
.hero-heading,
.now,
.expect,
.collaborations,
.projects,
.testimonials,
.overthinking,
.faq,
.connect {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding-bottom: 40px;
}

.hero-animation-container {
  overflow-anchor: none;
  display: flex;
  flex-direction: column;
}

.hero-heading {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 93px;
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
  letter-spacing: -1px;
  position: sticky;
  top: 0;
  padding: 140px 16px 15px;
  margin-bottom: 0px;
  background-color: transparent;
  z-index: 1000000;
  width: 100%;
}

.hero-heading.scrolled {
  background-color: transparent;
  border-bottom: none;
  box-shadow: none;
}

.hero-heading .line-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.05em;
  margin-bottom: -0.05em;
}

.hero-heading .line {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  animation: lineReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes lineReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image-wrapper {
  margin-top: 65px;
  margin-bottom: 17px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroRevealItem 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
  position: relative;
  width: 380px;
  height: 533px;
  margin-left: auto;
  margin-right: auto;
  overflow-anchor: none;
}

.hero-image {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 220%;
  max-width: 100vw;
  height: auto;
  aspect-ratio: 1100 / 1110;
  pointer-events: none;
}

.hero-bio {
  max-width: 560px;
}

.hero-bio p {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.75;
  color: #2a2a2a;
  opacity: 0;
  transform: translateY(16px);
}

.hero-bio p:nth-child(1) {
  animation: heroRevealItem 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.68s forwards;
}

.hero-bio p:nth-child(2) {
  animation: heroRevealItem 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.86s forwards;
}

.hero-bio p:nth-child(3) {
  animation: heroRevealItem 1.2s cubic-bezier(0.16, 1, 0.3, 1) 2.04s forwards;
}

@keyframes heroRevealItem {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bio-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #1a1a1a;
  font-size: 20px;
}

.bio-link:hover {
  opacity: 0.7;
}

/* ============================================
   WHAT TO EXPECT SECTION
   ============================================ */

.expect {
  padding-top: 60px;
  padding-bottom: 60px;
}

.expect-heading {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 58px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.3px;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.expect-divider {
  width: 100%;
  height: 1px;
  background-color: #d4d4d4;
  margin-bottom: 30px;
}

.expect-content p {
  font-size: 20px;
  line-height: 1.75;
  color: #2a2a2a;
  margin-bottom: 18px;
}

.expect-content p:last-child {
  margin-bottom: 0;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */

.projects {
  padding-top: 40px;
  padding-bottom: 60px;
}

.projects-heading {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 58px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.3px;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.projects-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.project-row {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-row-divider {
  width: 100%;
  height: 1px;
  background-color: #eaeaea;
  transition: background-color 0.3s ease;
}

.project-row-content {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: flex-start;
  padding: 32px 0;
  gap: 40px;
}

.project-row-title {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 34px;
  font-weight: 400;
  color: #777;
  line-height: 1.1;
  letter-spacing: -0.2px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.project-row-details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.project-row-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #888;
  transition: color 0.3s ease;
}

.project-row-arrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 20px;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.project-row:hover .project-row-title {
  color: #1a1a1a;
}

.project-row:hover .project-row-desc {
  color: #2a2a2a;
}

.project-row:hover .project-row-arrow {
  opacity: 1;
  transform: translateX(0);
}

.project-row:hover .project-row-divider {
  background-color: #1a1a1a;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
  padding-top: 40px;
  padding-bottom: 80px;
}

.testimonials-heading {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 58px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.3px;
  color: #1a1a1a;
  margin-bottom: 40px;
}

/* Featured Quote */
.featured-quote {
  background-color: transparent;
  padding: 12px 0 16px;
  margin-bottom: 40px;
  text-align: center;
}

.quote-text-container {
  position: relative;
  display: inline-block;
  max-width: 480px;
  margin: 0 auto 36px;
}

.laurel {
  width: 96px;
  height: auto;
  flex-shrink: 0;
}

.laurel-left {
  position: absolute;
  right: 96%;
  margin-right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.laurel-right {
  position: absolute;
  left: 95%;
  margin-left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.featured-quote-text {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.35;
  color: #1a1a1a;
  margin-bottom: 0;
  font-style: normal;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 2;
}

.featured-quote-author {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 2px;
  line-height: 1.2;
}

.featured-quote-role {
  font-family:
    "Google Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 12px;
  color: #aaa;
  line-height: 1.2;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.review-card {
  background-color: #fafafa;
  border-radius: 10px;
  padding: 24px 28px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.stars {
  font-size: 22px;
  color: #c0c0c0;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 19px;
  line-height: 1.45;
  color: #2a2a2a;
  margin-bottom: 28px;
  font-weight: 400;
  flex-grow: 1;
}

.review-author {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0px;
  line-height: 1.2;
}

.review-role {
  font-size: 12px;
  color: #aaa;
  font-family: "JetBrains Mono", "Courier New", monospace;
  line-height: 1.2;
}

/* ============================================
   OVERTHINKING SECTION
   ============================================ */

.overthinking {
  padding-top: 40px;
  padding-bottom: 80px;
}

.overthinking-heading {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 58px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.3px;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.essay-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: flex-start;
}

.essay-cover-wrapper {
  width: 240px;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fafafa;
  border: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.essay-cover-icon {
  width: 80px;
  height: 80px;
  color: #1a1a1a;
  stroke-width: 1.2px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.essay-container:hover .essay-cover-icon {
  transform: scale(1.08);
}

.essay-container:hover .essay-title {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.essay-info {
  display: flex;
  flex-direction: column;
}

.essay-category {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.essay-title {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.essay-desc {
  font-family:
    "Google Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

/* ============================================
   CONNECT SECTION
   ============================================ */

.connect {
  padding-top: 40px;
  padding-bottom: 80px;
}

.connect-heading {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 58px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.3px;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.connect-subtitle {
  font-family:
    "Google Sans",
    -apple-system,
    sans-serif;
  font-size: 19px;
  color: #555;
  text-align: center;
  max-width: 100%;
  margin: -16px auto 48px;
  line-height: 1.6;
}

.connect-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.connect-row {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  outline: none;
}

.connect-row-divider {
  width: 100%;
  height: 1px;
  background-color: #eaeaea;
  transition: background-color 0.3s ease;
}

.connect-row-content {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  padding: 24px 0;
  gap: 40px;
}

.connect-row-title {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 34px;
  font-weight: 400;
  color: #777;
  line-height: 1.1;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}

.connect-row-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.connect-row-value {
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
  color: #888;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.connect-row-arrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 20px;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.copy-tooltip {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 11px;
  color: #aaa;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.connect-row:hover .connect-row-divider {
  background-color: #1a1a1a;
}

.connect-row:hover .connect-row-title {
  color: #1a1a1a;
}

.connect-row:hover .connect-row-value {
  color: #2a2a2a;
}

.connect-row:hover .connect-row-arrow {
  opacity: 1;
  transform: translateX(0);
}

.connect-row:hover .copy-tooltip,
.copy-tooltip.visible {
  opacity: 1;
}

.copy-tooltip.visible {
  color: #097969;
  border-color: #097969;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 600px) {
  .hero,
  .now,
  .expect,
  .collaborations,
  .projects,
  .testimonials,
  .overthinking,
  .faq,
  .connect {
    padding: 0 20px;
  }

  .collaborations,
  .now {
    padding-inline: 2rem;
  }
  .hero-bio {
    margin-top: 1.5rem;
  }
  .hero {
    padding-bottom: 24px;
  }

  .hero-heading {
    padding-left: 0vw;
    padding-right: 0vw;
    width: 100vw;
    font-size: 13.8vw;
    padding-top: 0px;
    margin-top: 15vh;
    margin-top: 15svh;
    padding-bottom: 10px;
    margin-bottom: 0px;
    top: 15vh;
    top: 15svh;
  }

  .hero-image-wrapper {
    width: 260px;
    height: 100vw;
    margin-top: 40px;
    margin-bottom: 20px;
    overflow-anchor: none;
  }

  .hero-image {
    width: 100vw;
    aspect-ratio: auto;
  }

  .now,
  .expect,
  .collaborations,
  .faq {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .now-heading,
  .expect-heading,
  .collaborations-heading,
  .projects-heading,
  .testimonials-heading,
  .overthinking-heading,
  .faq-heading,
  .connect-heading {
    font-size: 14vw;
  }

  .overthinking-heading {
    font-size: 10vw;
    line-height: 1.1;
  }

  .faq-heading {
    font-size: 10vw;
    line-height: 1.1;
  }

  .expect-content p {
    font-size: 17px;
    line-height: 1.65;
  }

  .now-item,
  .collab-item {
    flex-direction: column;
    gap: 6px;
    padding-bottom: 20px;
  }

  .now-title,
  .collab-title {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .now-desc,
  .collab-desc {
    font-size: 16px;
  }

  .faq-question {
    font-size: 18px;
    padding: 16px 0;
  }

  .faq-answer p {
    font-size: 16px;
  }

  .projects {
    padding-top: 30px;
    padding-bottom: 40px;
    padding-inline: 2rem;
  }

  .project-row-content {
    grid-template-columns: 1fr;
    padding: 24px 0;
    gap: 12px;
  }

  .project-row-title {
    font-size: 26px;
    color: #1a1a1a;
  }

  .project-row-details {
    max-width: 100%;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .project-row-desc {
    font-size: 14px;
    margin-bottom: 0;
    color: #2a2a2a;
  }

  .project-row .project-row-arrow {
    opacity: 0.6;
    transform: translateX(0);
  }

  .project-row:hover .project-row-title {
    transform: translateX(6px);
  }

  .testimonials {
    padding-top: 30px;
    padding-bottom: 50px;
  }

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

  .review-card {
    padding: 20px;
    width: 100%;
    margin-inline: auto;
    min-height: auto;
  }

  .quote-text-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 16px;
    position: relative;
  }

  .laurel-left,
  .laurel-right {
    position: absolute;
    transform: none;
    margin: 0;
    width: 100px;
  }

  .laurel-left {
    left: -15px;
    top: -20px;
  }

  .laurel-right {
    right: -15px !important;
    top: -15px;
    left: unset;
  }

  .featured-quote {
    padding: 20px 0;
  }

  .featured-quote-text {
    font-size: 20px;
    max-width: 70%;
  }

  .review-text {
    font-size: 17px;
  }

  .overthinking {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .essay-container {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    background-color: #fafafa;
    padding: 2rem 2rem;
    border-radius: 17px;
  }

  .essay-cover-wrapper {
    margin: 0 auto;
    width: auto;
    height: auto;
    padding: 1.5rem;
  }

  .essay-title {
    font-size: 30px;
  }

  .connect {
    padding-top: 30px;
    padding-bottom: 60px;
    padding-inline: 2rem;
  }

  .connect-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
    padding: 0 10px;
  }

  .connect-row-content {
    grid-template-columns: 1fr;
    padding: 16px 0;
    gap: 8px;
  }

  .connect-row-title {
    font-size: 26px;
    color: #1a1a1a;
    transition:
      transform 0.3s ease,
      color 0.3s ease;
  }

  .connect-row:hover .connect-row-title {
    transform: translateX(6px);
  }

  .connect-row-value {
    font-size: 14px;
    color: #2a2a2a;
  }

  .connect-row-details {
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .connect-row .connect-row-arrow {
    opacity: 0.6;
    transform: translateX(0);
  }

  .copy-discord .copy-tooltip {
    opacity: 0.7;
    right: 32px;
  }
}

/* ============================================
   PROJECT DETAIL PAGES
   ============================================ */

.project-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 32px 120px;
}

.project-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 13px;
  color: #888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 60px;
  transition: color 0.2s ease;
}

.project-back:hover {
  color: #1a1a1a;
}

.project-back svg {
  width: 16px;
  height: 16px;
}

.project-meta {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 12px;
  color: #999;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.project-title {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.project-intro {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
}

.project-image-container {
  width: 100%;
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.project-section-title {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 32px;
  font-weight: 400;
  color: #1a1a1a;
  margin-top: 48px;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.project-description {
  font-size: 17px;
  line-height: 1.8;
  color: #2a2a2a;
  margin-bottom: 32px;
}

.project-description p {
  margin-bottom: 18px;
}

.project-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

.project-info-block h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 12px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #555;
  background-color: #f5f5f5;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.project-info-value {
  font-size: 16px;
  color: #333;
}

.project-footer {
  margin-top: 80px;
  padding-top: 36px;
  border-top: 1px solid #eee;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
}

.project-footer a {
  color: #888;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.project-footer a:hover {
  color: #1a1a1a;
}

@media (max-width: 600px) {
  .project-page {
    padding: 40px 20px 80px;
  }

  .project-title {
    font-size: 36px;
  }

  .project-intro {
    font-size: 17px;
    margin-bottom: 24px;
  }

  .project-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-image-container {
    margin-bottom: 32px;
  }
}

/* ============================================
   NOW SECTION
   ============================================ */

.now {
  padding-top: 60px;
  padding-bottom: 60px;
}

.now-heading {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 58px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.3px;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.now-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.now-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eaeaea;
}

.now-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.now-number {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 14px;
  color: #888;
}

.now-details {
  flex: 1;
}

.now-title {
  font-family: "Google Sans", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.now-desc {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.6;
}

/* ============================================
   COLLABORATIONS SECTION
   ============================================ */

.collaborations {
  padding-top: 60px;
  padding-bottom: 60px;
}

.collaborations-heading {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 58px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.3px;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.collaborations-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.collab-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eaeaea;
}

.collab-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.collab-number {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 14px;
  color: #888;
}

.collab-details {
  flex: 1;
}

.collab-title {
  font-family: "Google Sans", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.collab-desc {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  padding-top: 60px;
  padding-bottom: 60px;
}

.faq-heading {
  font-family: "Instrument Serif", "Georgia", serif;
  font-size: 58px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.3px;
  color: #1a1a1a;
  margin-bottom: 40px;
}

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

.faq-item {
  border-bottom: 1px solid #eaeaea;
}

.faq-item:first-child {
  border-top: 1px solid #eaeaea;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: "Google Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: #888;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding-bottom 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.6;
}
