:root {
  color-scheme: dark;
  --bg: #000;
  --text: #fff;
  --muted: #b8b8b8;
  --highlight: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Garamond, "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  background: var(--highlight);
  color: var(--bg);
  outline: 0;
  text-decoration: none;
}

.page {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 38px 0 90px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 72px;
  font-size: clamp(22px, 2vw, 28px);
}

.nav a {
  text-decoration: none;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(64px, 10vw, 104px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 3vw, 42px);
  font-weight: 400;
}

p {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--muted);
}

.intro p {
  text-align: justify;
}

.intro img {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin: 0 0 34px;
  filter: grayscale(100%);
}

section {
  padding-top: 56px;
}

#connect p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.coming-soon {
  padding-top: 72px;
}

.coming-soon p {
  color: var(--text);
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.45;
}

 @media (max-width: 560px) {
   body {
     font-size: 18px;
     line-height: 1.5;
   }
 
   .page {
     width: min(100% - 28px, 760px);
     padding-top: 24px;
     padding-bottom: 64px;
   }
 
   .nav {
     margin-bottom: 42px;
     gap: 6px 14px;
     font-size: 18px;
   }
 
   .intro p {
     text-align: left;
   }
 }
