/* ========================================
   AIYA PRINT
   SHARED LEGAL PAGES
======================================== */


/* ========================================
   PAGE
======================================== */

.legal-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 85px 5vw 130px;
}


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

.legal-hero {
  max-width: 820px;
  padding-bottom: 60px;
}

.legal-hero h1 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.legal-updated {
  margin-top: 20px;

  font-size: 13px;
  color: rgba(45, 42, 38, 0.5);
}

.legal-intro {
  max-width: 680px;

  margin-top: 28px;

  font-size: 18px;
  line-height: 1.7;

  color: rgba(45, 42, 38, 0.72);
}


/* ========================================
   LAYOUT
======================================== */

.legal-layout {
  display: grid;

  grid-template-columns:
    minmax(190px, 0.3fr)
    minmax(0, 1fr);

  gap: clamp(50px, 8vw, 130px);

  align-items: start;
}


/* ========================================
   SIDE NAVIGATION
======================================== */

.legal-nav {
  position: sticky;
  top: 115px;

  display: flex;
  flex-direction: column;

  max-height: calc(100vh - 150px);

  overflow-y: auto;

  padding-right: 20px;
}

.legal-nav-title {
  margin-bottom: 15px;

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.legal-nav a {
  padding: 7px 0;

  font-size: 12px;
  line-height: 1.4;

  color: rgba(45, 42, 38, 0.55);

  transition: color 0.2s ease;
}

.legal-nav a:hover {
  color: var(--charcoal);
}


/* ========================================
   CONTENT
======================================== */

.legal-content {
  max-width: 820px;
}

.legal-section {
  padding: 0 0 54px;
  margin-bottom: 54px;

  scroll-margin-top: 125px;

  border-bottom:
    1px solid rgba(45, 42, 38, 0.1);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  margin-bottom: 22px;

  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.15;

  letter-spacing: -0.035em;
}

.legal-section p {
  margin-bottom: 17px;

  font-size: 15px;
  line-height: 1.8;

  color: rgba(45, 42, 38, 0.76);
}

.legal-section ul,
.legal-section ol {
  margin: 10px 0 22px;
  padding-left: 24px;
}

.legal-section li {
  margin-bottom: 10px;

  font-size: 15px;
  line-height: 1.75;

  color: rgba(45, 42, 38, 0.76);
}

.legal-section a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ========================================
   CONTACT CARD
======================================== */

.legal-contact-card {
  margin-top: 25px;
  padding: 24px;

  display: flex;
  flex-direction: column;
  gap: 7px;

  background: var(--paper);

  border-radius: var(--radius-medium);

  font-size: 14px;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 850px) {

  .legal-page {
    padding-top: 55px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-nav {
    position: static;

    max-height: none;

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 0 20px;

    padding: 22px;

    background: var(--paper);

    border-radius: var(--radius-medium);
  }

  .legal-nav-title {
    grid-column: 1 / -1;
  }

}


@media (max-width: 520px) {

  .legal-page {
    padding-left: 22px;
    padding-right: 22px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

}