:root {
  color-scheme: light dark;
  --bg: #f3f6f6;
  --surface: #e8eeee;
  --surface-strong: #dce5e5;
  --ink: #101719;
  --muted: #526064;
  --faint: #728084;
  --line: rgba(16, 23, 25, 0.16);
  --accent: #086fcd;
  --accent-strong: #075da9;
  --accent-soft: #d8eafb;
  --on-accent: #f7fbff;
  --shadow: 0 24px 70px rgba(39, 55, 59, 0.14);
  --radius: 18px;
  --shell: 1180px;
  --sans: "Aptos", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono: "Aptos Mono", "Cascadia Mono", ui-monospace, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101417;
    --surface: #171d20;
    --surface-strong: #20282b;
    --ink: #edf4f4;
    --muted: #adbabc;
    --faint: #879598;
    --line: rgba(237, 244, 244, 0.15);
    --accent: #55aef5;
    --accent-strong: #83c6fa;
    --accent-soft: #142f43;
    --on-accent: #07131b;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 20px;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.wordmark span {
  font-weight: 450;
}

.wordmark strong {
  color: var(--accent);
  font-weight: 780;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 610;
  color: var(--muted);
}

.site-nav a:hover,
.back-link:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--accent);
}

.nav-contact {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: 650 14px var(--sans);
  padding: 9px 15px;
}

.hero {
  min-height: calc(100dvh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
  padding-block: 52px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.closing h2,
.legal h1 {
  margin: 0;
  font-weight: 660;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(50px, 6.2vw, 82px);
}

.hero-lede {
  max-width: 550px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  background: var(--accent);
  color: var(--on-accent);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-media,
.workshop-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media {
  aspect-ratio: 1.22;
}

.hero-media img,
.workshop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.principles-bar {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principles-grid p {
  margin: 0;
  padding: 25px 28px;
  border-left: 1px solid var(--line);
}

.principles-grid p:last-child {
  border-right: 1px solid var(--line);
}

.principles-grid strong,
.principles-grid span {
  display: block;
}

.principles-grid strong {
  margin-bottom: 5px;
  font-size: 15px;
}

.principles-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding-block: clamp(96px, 12vw, 164px);
}

.section h2,
.closing h2 {
  font-size: clamp(42px, 5.4vw, 68px);
}

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

.section-heading p,
.approach-copy > p,
.company-copy > p,
.products-heading > p,
.closing p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 18px;
  margin-top: 60px;
}

.statement-panel,
.not-panel,
.empty-shelf {
  border-radius: var(--radius);
}

.statement-panel {
  min-height: 440px;
  padding: clamp(32px, 5vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--accent-soft);
}

.statement {
  max-width: 750px;
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.statement-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 38px;
  color: var(--accent-strong);
  font: 700 13px var(--mono);
}

.not-panel {
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.not-panel h3 {
  margin: 0 0 30px;
  font-size: 17px;
}

.not-panel p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.not-panel p:last-child {
  border-bottom: 0;
}

.approach {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.workshop-media {
  aspect-ratio: 4 / 5;
}

.method-list {
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.method-list span {
  color: var(--accent);
  font: 700 14px var(--mono);
}

.method-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.products-section {
  width: 100%;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

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

.empty-shelf {
  margin-top: 56px;
  min-height: 230px;
  padding: clamp(28px, 5vw, 54px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--line);
  background: var(--bg);
}

.shelf-mark {
  display: block;
  width: 50px;
  height: 8px;
  margin-bottom: 40px;
  border-radius: 8px;
  background: var(--accent);
}

.empty-shelf h3 {
  margin: 0;
  font-size: 23px;
}

.empty-shelf p {
  margin: 9px 0 0;
  color: var(--muted);
}

.empty-shelf a,
.text-link {
  color: var(--accent);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  white-space: nowrap;
}

.company-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  gap: clamp(56px, 10vw, 140px);
  align-items: start;
}

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

.company-facts p {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.company-facts span {
  display: block;
  margin-bottom: 6px;
  color: var(--faint);
  font: 700 11px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-facts a {
  color: var(--accent);
}

.closing {
  margin-bottom: clamp(70px, 9vw, 120px);
  padding: clamp(32px, 6vw, 66px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.closing h2 {
  max-width: 780px;
}

.closing p {
  max-width: 620px;
  font-size: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 48px;
  align-items: start;
}

.footer-wordmark {
  font-size: 18px;
}

.footer-grid > div:first-child p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.copyright {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
  line-height: 1.6;
}

.legal-header {
  position: relative;
}

.back-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.legal {
  max-width: 800px;
  padding-block: clamp(72px, 10vw, 120px);
}

.legal h1 {
  font-size: clamp(48px, 7vw, 74px);
}

.updated {
  margin: 18px 0 50px;
  color: var(--faint);
  font: 13px var(--mono);
}

.legal-prose {
  border-top: 1px solid var(--line);
  padding-top: 36px;
}

.legal-prose h2 {
  margin: 42px 0 12px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.legal-prose p,
.legal-prose li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.legal-prose p {
  margin: 0 0 16px;
}

.legal-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-lede {
  color: var(--ink) !important;
  font-size: 19px !important;
}

.legal-footer {
  margin-top: 0;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1fr);
  gap: clamp(54px, 9vw, 128px);
  align-items: start;
  padding-block: clamp(72px, 10vw, 120px);
}

.contact-intro h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(50px, 7vw, 78px);
  font-weight: 660;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.contact-facts {
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.contact-facts p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.contact-facts span {
  display: block;
  margin-bottom: 6px;
  color: var(--faint);
  font: 700 11px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-facts a,
.form-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form-panel {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-form-panel h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.035em;
}

.form-intro {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.field {
  display: grid;
  gap: 9px;
}

.field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.5 var(--sans);
}

.field input {
  min-height: 50px;
  padding: 11px 14px;
}

.field textarea {
  min-height: 170px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:hover,
.field textarea:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: 3px solid color-mix(in srgb, var(--accent) 22%, transparent);
  outline-offset: 1px;
}

.botcheck {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.form-status {
  display: none;
  padding: 13px 15px;
  border-radius: 10px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: color-mix(in srgb, #2f9d75 16%, var(--bg));
  color: var(--ink);
}

.form-status.is-error {
  background: color-mix(in srgb, #c55252 17%, var(--bg));
  color: var(--ink);
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 24px;
    right: 24px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .nav-contact {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 70px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-media {
    aspect-ratio: 16 / 10;
  }

  .studio-grid,
  .approach,
  .company-section,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-page {
    gap: 58px;
  }

  .approach-copy {
    grid-row: 1;
  }

  .workshop-media {
    max-height: 720px;
  }

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

@media (max-width: 660px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .hero {
    padding-block: 52px;
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(43px, 13.2vw, 62px);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

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

  .principles-grid p,
  .principles-grid p:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles-grid p:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 88px;
  }

  .section h2,
  .closing h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .statement-panel {
    min-height: 400px;
  }

  .statement-details {
    flex-direction: column;
  }

  .method-list li {
    grid-template-columns: 78px 1fr;
    gap: 16px;
  }

  .empty-shelf {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }

  .contact-page {
    padding-block: 58px 82px;
  }

  .contact-intro h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .contact-form-panel {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
