:root {
  --bg: #f5f1ea;
  --text: #1c1814;
  --muted: #7a7268;
  --accent: #3f5840;
  --line: rgba(28, 24, 20, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 18px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-serif, Charter, 'Iowan Old Style', Georgia, serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 0.05em;
  text-underline-offset: 0.18em;
}

a:hover { text-decoration-thickness: 0.1em; }

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 0.18rem;
}

/* ---------- Home (studio) layout ---------- */

.studio {
  max-width: 36rem;
  margin: 0 auto;
  padding: 6.5rem 2rem 3.5rem;
}

.corner-mark {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: block;
  width: 3.2rem;
  height: auto;
  mix-blend-mode: multiply;
  text-decoration: none;
}

.corner-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.studio-header {
  margin-bottom: 3.5rem;
}

.studio h1 {
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 0.6rem;
}

.tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  margin: 0;
}

.studio section {
  margin-bottom: 3.25rem;
}

.about p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0;
}

.studio h2 {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin: 0 0 1.75rem;
}

.products ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.products li { margin-bottom: 1.5rem; }
.products li:last-child { margin-bottom: 0; }

.products h3 {
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0 0 0.15rem;
}

.products .description {
  font-size: 1rem;
  margin: 0 0 0.3rem;
}

.contact p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.studio-footer {
  margin-top: 4rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.studio-footer p { margin: 0 0 0.25rem; }
.studio-footer a { color: var(--accent); }
.studio-footer a:hover { text-decoration-thickness: 0.1em; }

@media (max-width: 600px) {
  .corner-mark {
    top: 1.5rem;
    left: 1.5rem;
    width: 2.75rem;
  }

  .studio { padding: 6rem 1.5rem 3rem; }
  .studio-header { margin-bottom: 3.25rem; }
  .studio h1 { font-size: 3.75rem; }
  .studio section { margin-bottom: 3rem; }
  .studio-footer { margin-top: 3rem; }
}

/* ---------- Legal pages (extend studio aesthetic) ---------- */

.studio.legal h1 {
  font-size: 3rem;
}

.studio.legal section p,
.studio.legal section li {
  font-size: 1rem;
  line-height: 1.7;
}

.studio.legal section ul {
  margin: 0;
  padding-left: 1.25rem;
}

.studio.legal section li {
  margin-bottom: 0.5rem;
}

.studio-footer a[aria-current="page"] {
  color: var(--text);
}

@media (max-width: 600px) {
  .studio.legal h1 { font-size: 2.4rem; }
}
