:root {
  color-scheme: light dark;
  --bg: #f7f8f4;
  --panel: #ffffff;
  --text: #1d241f;
  --muted: #5d665f;
  --line: #d9dfd6;
  --accent: #19743d;
  --accent-strong: #0f5f2f;
  --accent-soft: #e4f3e6;
  --button-text: #ffffff;
  --shadow: 0 20px 60px rgba(29, 36, 31, 0.12);
  --max: 1120px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111511;
    --panel: #1a201b;
    --text: #eef3ec;
    --muted: #b6c0b8;
    --line: #313a33;
    --accent: #62c67e;
    --accent-strong: #8ee2a1;
    --accent-soft: #1f3426;
    --button-text: #0c130f;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--accent-strong);
}

.language-link {
  padding-left: 18px;
  border-left: 1px solid var(--line);
  color: var(--accent-strong);
  font-weight: 700;
}

main > section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

main > section:first-child {
  border-top: 0;
  padding-top: 42px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: 52px;
}

.intro-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 16ch;
  font-size: 3rem;
}

h2 {
  max-width: 13ch;
  font-size: 2.2rem;
}

p {
  margin: 18px 0 0;
  color: var(--muted);
}

.lead {
  max-width: 42rem;
  color: var(--text);
  font-size: 1.28rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 12px 18px;
  border: 1px solid var(--accent-strong);
  border-radius: 4px;
  background: var(--accent-strong);
  color: var(--button-text);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--button-text);
}

.studio-figure {
  margin: 0;
  justify-self: end;
  width: min(100%, 420px);
}

.studio-figure img {
  width: 100%;
  aspect-ratio: 661 / 533;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.content-grid,
.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
}

.pill-list,
.check-list,
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}

.pill-list li {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  color: var(--text);
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.steps-section {
  display: grid;
  gap: 34px;
}

.section-heading {
  max-width: 760px;
}

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

.steps li {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.steps p {
  margin: 0;
  color: var(--text);
}

.supporting-copy {
  max-width: 740px;
}

.facts {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
}

.facts div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.facts dt {
  color: var(--text);
  font-weight: 800;
}

.facts dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
}

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

input:focus,
textarea:focus {
  outline: 3px solid var(--accent-soft);
  border-color: var(--accent);
}

.contact-form .button {
  width: fit-content;
  margin-top: 4px;
}

.contact-response {
  width: min(100% - 32px, 680px);
  margin: 0 auto;
  padding: 72px 0;
}

.contact-response h1 {
  max-width: none;
  font-size: 3rem;
}

@media (max-width: 900px) {
  .intro,
  .content-grid,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: none;
  }

  .intro,
  .content-grid,
  .split-section,
  .contact-section {
    gap: 34px;
  }

  h1,
  h2 {
    max-width: 720px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .lead {
    font-size: 1.18rem;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  main > section {
    padding: 52px 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.12rem;
  }

  .contact-form {
    padding: 20px;
  }

  .studio-figure img {
    max-height: 360px;
  }

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

  .steps li {
    min-height: auto;
  }

  .steps span {
    margin-bottom: 16px;
  }

  .contact-form .button {
    width: 100%;
  }
}
