/* ============= Base ============= */

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000000;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* ============= Paper sheet ============= */

.paper {
  max-width: 880px;
  margin: 40px auto 60px;
  padding: 32px 32px 40px;
  background: #000000;
  border: 1px solid #111111;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  margin-left: 90px;
}

/* ============= Header ============= */

.sheet-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #111111;
  margin-bottom: 26px;
}

.brand {
  margin: 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.25;
}

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

.brand em {
  font-style: italic;
  font-weight: 400;
}

/* top-right links */

.sheet-nav {
  display: flex;
  gap: 14px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
 
left: 830px;
top: 90px;

position: absolute;
}

.sheet-nav a {
  color: #eee9e9;
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}

.sheet-nav a:hover {
  border-color: #111111;
  background: #111111;
  color: #fafafa;
}

/* ============= Intro text ============= */

.intro {
  max-width: 620px;
  margin-bottom: 26px;
}

.intro p {
  margin: 0;
  font-size: 26px;
  line-height: 1.7;
  font-weight: 400;
  width: 1200px;
}

/* ============= Sections ============= */

.section {
  max-width: 620px;
  margin-bottom: 18px;
}

/* tiny caps style like Sonia */

.section h2 {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.with-top-rule {
  padding-top: 12px;
  border-top: 1px solid #111111;
}

/* plain list (no bullets) */

.plain {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
}



/* ============= Links reset ============= */

a,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}

/* ============= Responsive ============= */

@media (max-width: 640px) {
  .paper {
    margin: 24px 12px 32px;
    padding: 20px 18px 24px;
    border-radius: 10px;
  }

  .sheet-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sheet-nav {
    padding-top: 2px;
  }

  .intro,
  .section {
    max-width: 100%;
  }
}
