:root {
  --paper: #ffffff;
  --ink: #15120f;
  --muted: #6e665d;
  --line: #e8e2d8;
  --brass: #a77922;
  --soft: #f7f3ec;
  --max: 1160px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

.page-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

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

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.88rem;
}

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

.hero {
  display: grid;
  align-content: center;
  min-height: 78svh;
  padding: 84px 0 72px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 14vw, 12.5rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
}

h2 {
  max-width: 780px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.intro {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-weight: 700;
}

.button-primary {
  background: var(--ink);
  color: var(--paper);
}

.button-secondary {
  background: var(--paper);
  color: var(--ink);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(32px, 8vw, 100px);
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.section-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
}

.clean-list li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.studio-panel {
  margin: 86px 0;
  padding: clamp(32px, 7vw, 72px);
  background: var(--soft);
  border: 1px solid var(--line);
}

.studio-panel p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.12rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 96px;
  background: var(--line);
  border: 1px solid var(--line);
}

.cards article {
  min-height: 250px;
  padding: 28px;
  background: var(--paper);
}

.cards span {
  display: block;
  margin-bottom: 70px;
  color: var(--brass);
  font-weight: 800;
}

.cards p,
.contact p {
  color: var(--muted);
}

.contact {
  padding: 86px 0 118px;
  border-top: 1px solid var(--line);
}

.mail-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--brass);
  font-size: clamp(1.5rem, 4vw, 3.4rem);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 28px 16px 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.footer a:hover {
  color: var(--ink);
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 56px;
  }

  h1 {
    font-size: clamp(4.1rem, 24vw, 6.6rem);
  }

  .split-section {
    grid-template-columns: 1fr;
    padding: 76px 0;
  }

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

  .cards article {
    min-height: 210px;
  }
}
