* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17130e;
  background: #f5f1ea;
  line-height: 1.55;
}

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

a:hover {
  color: #b08a3c;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #fffaf2;
  padding: 10px;
  z-index: 100;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(245, 241, 234, 0.94);
  border-bottom: 1px solid #ded4c6;
}

.header-grid {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 14px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #17130e;
  border-radius: 50%;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: #6e6458;
}

.site-nav a.active,
.site-nav a[aria-current="page"] {
  color: #17130e;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #ded4c6;
  padding: 9px 12px;
  border-radius: 999px;
}

/* Hero */

.hero {
  padding-top: 58px;
  padding-bottom: 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: #b08a3c;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  font-size: 72px;
  line-height: 1;
  max-width: 720px;
}

h2 {
  font-size: 52px;
}

h3 {
  font-size: 24px;
}

.lede {
  font-size: 21px;
  color: #6e6458;
  max-width: 680px;
  margin: 24px 0 0;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #17130e;
  background: #17130e;
  color: #fffaf2;
  font-weight: 600;
}

.button:hover {
  background: #b08a3c;
  border-color: #b08a3c;
  color: #fffaf2;
}

.button.secondary {
  background: transparent;
  color: #17130e;
  border-color: #ded4c6;
}

.button.secondary:hover {
  border-color: #b08a3c;
  color: #b08a3c;
}

/* Hero image */

.visual-panel {
  width: 100%;
  height: 500px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)),
    url('../img/hero.png') center center / cover no-repeat;
}

/* Sections */

.section {
  padding: 74px 0;
  border-top: 1px solid #ded4c6;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-header p {
  margin: 12px 0 0;
  color: #6e6458;
  max-width: 640px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: #fffaf2;
  border: 1px solid #ded4c6;
  border-radius: 22px;
  padding: 28px;
}

.card p {
  color: #6e6458;
}

.card .meta,
.meta {
  margin: 0 0 16px;
  color: #b08a3c;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.release-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #fffaf2, #efe3cf);
}

.image-placeholder {
  min-height: 270px;
  border-radius: 0;
  border: 1px solid #ded4c6;
  background: linear-gradient(135deg, #231b12, #b48c42 45%, #f5e3b3 50%, #292016);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.16) 0 1px,
    transparent 1px 34px
  );
}

.work-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.work-title span {
  color: #6e6458;
  font-size: 14px;
}

.list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.list li {
  padding: 14px 0;
  border-bottom: 1px solid #ded4c6;
  color: #6e6458;
}

.statement {
  max-width: 850px;
  font-size: 20px;
  color: #6e6458;
}

/* Forms */

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6e6458;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #ded4c6;
  border-radius: 14px;
  padding: 13px 14px;
  background: #fffaf2;
  color: #17130e;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.notice {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #ded4c6;
  background: #fffaf2;
  margin-bottom: 18px;
}

.notice.success {
  border-color: rgba(39, 124, 77, 0.35);
}

.notice.error {
  border-color: rgba(178, 61, 47, 0.35);
}

/* Private bar */

.private-bar {
  background: #1d1913;
  color: #fffaf2;
  padding: 12px 0;
  font-size: 14px;
}

.private-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

/* Footer */

.site-footer {
  padding: 44px 0;
  border-top: 1px solid #ded4c6;
  color: #6e6458;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.small {
  font-size: 13px;
  color: #6e6458;
}

/* Responsive */

@media (max-width: 1100px) {
  h1 {
    font-size: 64px;
  }

  .visual-panel {
    height: 460px;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .visual-panel {
    height: 440px;
  }

  h1 {
    max-width: 850px;
    font-size: 58px;
  }
}

@media (max-width: 850px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fffaf2;
    border-bottom: 1px solid #ded4c6;
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .section-header {
    display: block;
  }

  .footer-grid {
    display: grid;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 28px);
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  .lede {
    font-size: 17px;
  }

  .visual-panel {
    height: 320px;
  }

  .section {
    padding: 54px 0;
  }

  .card {
    padding: 22px;
  }
}