:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #64706d;
  --paper: #f7f4ec;
  --panel: #ffffff;
  --line: rgba(23, 33, 31, 0.14);
  --teal: #0b746d;
  --coral: #d95e45;
  --gold: #d7a53f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 78vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 244, 236, 0.96) 0%, rgba(247, 244, 236, 0.84) 42%, rgba(247, 244, 236, 0.20) 100%),
    url("/assets/studio.svg") center right / cover no-repeat;
}

.hero-copy {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 72px;
  align-self: center;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.93;
  font-weight: 820;
  letter-spacing: 0;
}

.lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 760;
}

.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fffaf0;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
}

.band {
  border-top: 1px solid var(--line);
  background: #fffdf8;
  padding: 42px 20px 54px;
}

.grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

article {
  min-height: 220px;
  padding: 28px;
  background: var(--panel);
}

.mark {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--coral);
  font-weight: 850;
}

h2 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

article p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

@media (max-width: 820px) {
  .hero {
    min-height: 74vh;
  }

  .hero-copy {
    width: min(100% - 28px, 640px);
    padding: 54px 0 44px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 5.2rem);
  }

  .lead {
    font-size: 1rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  article {
    min-height: auto;
  }
}
