@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@500;600&display=swap');

:root {
  --black: #080808;
  --dark: #111111;
  --gold: #c49a4a;
  --gold-light: #e0bd72;
  --white: #f5f2ec;
  --muted: #99938b;
  --line: rgba(255, 255, 255, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "DM Sans", sans-serif;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(8, 8, 8, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

.nav a:hover {
  color: var(--gold-light);
}

.menu-button {
  display: none;
  border: 0;
  background: none;
  padding: 6px;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--gold);
}

.hero {
  min-height: calc(100svh - 67px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 22px 70px;
  text-align: center;
}

.hero-logo {
  width: min(62vw, 280px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 30px;
  box-shadow: 0 20px 70px rgba(196, 154, 74, .16);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(54px, 15vw, 100px);
  line-height: .9;
  letter-spacing: -.07em;
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

.intro {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 15px 18px;
  color: var(--black);
  background: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  transition: .2s ease;
}

.button:hover {
  color: var(--white);
  background: var(--gold);
  transform: translateY(-2px);
}

.button span {
  font-size: 17px;
}

.about,
.work {
  padding: 85px 22px;
}

.about {
  background: var(--dark);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 11vw, 72px);
  line-height: 1;
  letter-spacing: -.06em;
}

.body-text {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.work {
  background: var(--black);
}

.work-list {
  border-top: 1px solid var(--line);
}

.work-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.work-item span {
  color: var(--gold);
  font-size: 11px;
}

.work-item h3 {
  margin: 0;
  font-size: clamp(18px, 5vw, 27px);
  font-weight: 500;
}

.work-item:hover h3 {
  color: var(--gold-light);
}

.closing {
  padding: 75px 22px;
  text-align: center;
  background: var(--gold);
}

.closing img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
}

.closing p {
  margin: 0;
  color: var(--black);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-style: italic;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  color: var(--muted);
  background: var(--black);
  font-size: 10px;
  letter-spacing: .08em;
}

@media (min-width: 700px) {
  .header {
    padding: 18px 6vw;
  }

  .hero {
    padding: 80px 8vw;
  }

  .hero-logo {
    width: min(30vw, 360px);
  }

  .about,
  .work {
    padding: 120px 12vw;
  }

  .about {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    column-gap: 8vw;
  }

  .about .eyebrow {
    grid-column: 1 / -1;
  }

  .about h2 {
    grid-column: 1;
  }

  .about .body-text {
    align-self: end;
    grid-column: 2;
  }

  .work-item {
    grid-template-columns: 60px 1fr;
    padding: 28px 0;
  }
}

@media (max-width: 560px) {
  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 66px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 18px 22px;
    background: var(--dark);
    border: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }
}
