:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.4);
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);

  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
}

/* HEADER */

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 24px;

  z-index: 100;
}

/* PHILOSOPHY PAGE LOGO */

.logo {
  width: 84px;
  height: auto;
}

/* MENU */

.menu {
  position: relative;
}

.menu summary {
  list-style: none;
  cursor: pointer;

  font-size: 16px;
  font-weight: 600;

  user-select: none;
}

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

.menu nav {
  position: absolute;
  right: 0;

  margin-top: 16px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  padding: 16px;

  min-width: 220px;

  background: #000000;
}

.menu a {
  color: white;
  text-decoration: none;

  font-size: 16px;
}

.menu a:hover {
  opacity: 0.7;
}

/* COVER PAGE MENU */

.cover-menu {
  position: fixed;

  top: 24px;
  right: 24px;

  z-index: 100;
}

/* COVER */

.cover-body {
  overflow: hidden;
}

.cover {
  width: 100%;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 32px;
}

/* COVER PAGE LOGO */

.cover-logo {
  width: min(220px, 50vw);
  height: auto;
}

/* PHILOSOPHY PAGE */

.philosophy {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;

  padding:
    200px 24px 120px;
}

.eyebrow {
  color: var(--muted);

  font-size: 14px;

  margin-bottom: 40px;
}

h1 {
  font-size: clamp(42px, 8vw, 88px);

  line-height: 0.95;

  letter-spacing: -0.06em;

  font-weight: 600;

  margin:
    0 0 120px;
}

section {
  margin-bottom: 120px;
}

h2 {
  font-size: clamp(30px, 5vw, 56px);

  line-height: 1;

  letter-spacing: -0.05em;

  font-weight: 600;

  margin:
    0 0 32px;
}

p {
  margin:
    0 0 24px;
}

ul {
  margin:
    0 0 40px;

  padding: 0;

  list-style: none;
}

li {
  margin-bottom: 12px;
}

li::before {
  content: "— ";
  opacity: 0.4;
}

/* MOBILE */

@media (max-width: 768px) {

  body {
    font-size: 20px;
  }

  .site-header {
    padding: 18px;
  }

  .logo {
    width: 64px;
  }

  .cover-logo {
    width: min(180px, 52vw);
  }

  .cover-menu {
    top: 18px;
    right: 18px;
  }

  .philosophy {
    padding:
      160px 20px 100px;
  }

  section {
    margin-bottom: 88px;
  }

}