:root {
  --bg: #faf5ee;
  --bg-tint: #f4ead9;
  --surface: #fffdf9;
  --text: #2c2521;
  --muted: #7a6f64;
  --line: #e7dccb;
  --accent: #c2603f;
  --accent-ink: #a84c2c;
  --radius: 16px;
  --maxw: 720px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #18130f;
    --bg-tint: #211913;
    --surface: #211a15;
    --text: #f3e9dd;
    --muted: #ab9c8c;
    --line: #352a21;
    --accent: #e08a5f;
    --accent-ink: #eea579;
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(1100px 520px at 50% -8%, var(--bg-tint) 0%, rgba(0,0,0,0) 62%),
    var(--bg);
  background-attachment: fixed;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 16px; top: 16px; z-index: 10;
  background: var(--surface); color: var(--text);
  padding: 8px 14px; border-radius: 8px; border: 1px solid var(--line);
}

/* Hero */
.hero {
  padding: clamp(76px, 14vw, 140px) 0 clamp(36px, 7vw, 60px);
  text-align: center;
}

.logomark {
  display: inline-block;
  width: 112px;
  height: 112px;
  border-radius: 26px;
  object-fit: cover;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 4px rgba(60, 40, 20, 0.08), 0 16px 36px -18px rgba(80, 50, 25, 0.3);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 10vw, 74px);
  letter-spacing: -0.015em;
  font-weight: 600;
  line-height: 1;
}

.lede {
  margin: 20px auto 0;
  max-width: 30em;
  font-size: clamp(18px, 2.4vw, 21px);
  color: var(--muted);
}

/* Studio statement */
.statement {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  margin: 8px 0 52px;
}
.statement p {
  margin: 0;
  max-width: 32em;
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 23px);
  line-height: 1.5;
}

/* Principles */
.principles { margin: 0 0 72px; }
.principles ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}
.principles li {
  border-top: 2px solid var(--accent);
  padding-top: 16px;
}
.principles h2 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

@media (max-width: 620px) {
  .principles ul { grid-template-columns: 1fr; gap: 28px; }
}

/* Contact */
.contact-card {
  margin: 0 0 52px;
  padding: 36px 28px 40px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 4px rgba(60, 40, 20, 0.05), 0 18px 40px -24px rgba(80, 50, 25, 0.28);
}
.contact-card .ring {
  display: block;
  margin: 0 auto 14px;
  color: var(--accent);
}
.contact-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-card .email {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--accent-ink);
  text-decoration: none;
}
.contact-card .email:hover,
.contact-card .email:focus-visible {
  text-decoration: underline;
}
.back {
  margin: 0 0 64px;
  font-size: 15px;
}
.back a {
  color: var(--muted);
  text-decoration: none;
}
.back a:hover,
.back a:focus-visible {
  color: var(--accent-ink);
  text-decoration: underline;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 52px;
}
.footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-ink);
  text-decoration: underline;
}
.copyright { margin: 0; color: var(--muted); font-size: 14px; }
