:root {
  --ink: #111316;
  --muted: #5b6470;
  --paper: #f3f5f4;
  --panel: #ffffff;
  --line: #d8dddb;
  --dark: #08090a;
  --surface: #ffffff;
  --surface-soft: #f6f8f7;
  --surface-tint: #e8eeeb;
  --surface-deep: #151b1e;
  --surface-guide: #26353f;
  --accent: #1f8a70;
  --warm: #ef7d35;
  --steel: #486174;
  --shadow: 0 18px 45px rgba(17, 19, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface-soft);
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: #fff;
  background: rgba(8, 9, 10, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav-toggle {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 124px;
  min-width: 92px;
  height: 48px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

.form-page {
  min-height: 100vh;
}

.form-page-header {
  position: sticky;
}

.form-page-main {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 68px) clamp(18px, 4vw, 36px) 56px;
}

.form-page-intro {
  max-width: 700px;
  margin-bottom: 26px;
}

.form-page-intro h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 6vw, 4rem);
}

.form-page-intro p:last-child {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.form-route-note {
  max-width: 700px;
  margin: 0 0 24px;
  padding: 18px 20px;
  color: var(--ink);
  line-height: 1.6;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  background: var(--surface-soft);
}

.form-route-note strong {
  display: block;
  margin-bottom: 4px;
}

.form-embed {
  min-height: 760px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.form-embed iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
}

.form-embed iframe[hidden],
.form-upload-gate[hidden] {
  display: none;
}

.form-embed.is-upload-locked {
  min-height: 0;
}

.form-upload-gate {
  display: grid;
  gap: 6px;
  margin: 24px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  background: var(--surface-soft);
}

.form-upload-gate strong {
  font-size: 1.05rem;
}

.form-upload-gate span {
  color: var(--muted);
  line-height: 1.55;
}

body.is-upload-blocked [data-form-direct] {
  pointer-events: none;
  opacity: 0.45;
}

.form-page-help {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.form-page-help a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-privacy-note {
  margin: 0;
  padding: 14px 0 16px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  border-top: 1px solid var(--line);
}

.form-privacy-note a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-shortcut {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.form-shortcut a {
  color: var(--accent);
  font-weight: 800;
}

.form-context {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  background: #eef7f4;
  color: var(--ink);
}

.form-loading {
  margin: 28px 0;
  color: var(--muted);
  text-align: center;
}

.form-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 28px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.form-fallback[hidden],
.form-context[hidden],
.form-loading[hidden],
.large-upload[hidden],
[data-legacy-file-upload][hidden],
.native-form[hidden],
.native-form-success[hidden] {
  display: none;
}

.large-upload {
  margin: 28px 0 34px;
  padding: 26px 0;
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid var(--line);
}

.large-upload-heading {
  max-width: 680px;
  margin-bottom: 20px;
}

.large-upload-heading h2,
.large-upload-heading h3 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.large-upload-heading p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.large-upload-picker {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.large-upload-picker input[type="file"] {
  width: 100%;
  padding: 15px;
  color: var(--muted);
  font: inherit;
  font-weight: 650;
  border: 1px dashed #8d9995;
  border-radius: 5px;
  background: var(--surface-soft);
}

.large-upload-picker input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 10px 13px;
  color: #fff;
  font: inherit;
  font-weight: 800;
  border: 0;
  border-radius: 4px;
  background: var(--ink);
  cursor: pointer;
}

.large-upload-summary,
.large-upload-status {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.large-upload-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.large-upload-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.large-upload-list strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.large-upload-list span {
  flex: 0 1 auto;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

.large-upload-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.large-upload-actions .button {
  min-width: 150px;
  border: 0;
  cursor: pointer;
}

.large-upload-actions .button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.large-upload-actions .button[hidden] {
  display: none;
}

.large-upload-progress {
  position: relative;
  height: 28px;
  margin-top: 18px;
  overflow: hidden;
  color: #fff;
  border-radius: 4px;
  background: #d8dedc;
}

.large-upload-progress i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--accent);
  transition: width 160ms ease;
}

.large-upload-progress span {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100%;
  place-items: center;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.large-upload-progress[aria-valuenow="100"] span {
  color: #fff;
}

.large-upload-status.is-error {
  color: #8a2f28;
  font-weight: 800;
}

.large-upload-status.is-success {
  color: #126b56;
  font-weight: 800;
}

.large-upload.is-complete {
  border-top-color: #126b56;
}

.large-upload-native {
  margin: 0;
  padding: 0 0 22px;
  border-top: 0;
}

@media (max-width: 640px) {
  .large-upload-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .large-upload-actions .button {
    width: 100%;
  }

  .large-upload-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .large-upload-list span {
    text-align: left;
  }
}

.reorder-page-main {
  width: min(100%, 980px);
}

.native-form {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.native-form-section {
  display: grid;
  grid-template-columns: minmax(210px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(24px, 5vw, 68px);
  padding: clamp(30px, 5vw, 54px) 0;
  border-bottom: 1px solid var(--line);
}

.native-form-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.native-form-section-heading > span {
  min-width: 30px;
  padding-top: 5px;
  color: var(--accent);
  font-weight: 900;
}

.native-form-section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.native-form-section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.native-form-grid {
  display: grid;
  gap: 22px;
}

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

.native-field {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
}

.native-field > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.native-field em,
.native-field small,
.native-choice small {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
}

.native-field em {
  color: #6c3730;
}

.native-field input,
.native-field textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid #aeb7b4;
  border-radius: 5px;
  background: #fff;
}

.native-field textarea {
  min-height: 112px;
  resize: vertical;
}

.native-field input:focus,
.native-field textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(20, 129, 107, 0.16);
}

.native-choice-fieldset {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.native-choice {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
}

.native-choice:has(input:checked) {
  border-color: var(--accent);
  background: #eef7f4;
  box-shadow: inset 4px 0 0 var(--accent);
}

.native-choice input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.native-choice span {
  display: grid;
  gap: 3px;
}

.reorder-details-grid {
  grid-column: 2;
  grid-template-columns: minmax(0, 1fr) 120px;
  margin-top: -4px;
}

.native-field-quantity input {
  text-align: center;
}

.native-file-field input[type="file"] {
  padding: 12px;
  border-style: dashed;
  background: var(--surface-soft);
}

.native-file-field input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 9px 12px;
  color: #fff;
  font: inherit;
  font-weight: 800;
  border: 0;
  border-radius: 4px;
  background: var(--ink);
  cursor: pointer;
}

.native-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.native-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.native-consent a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.native-form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.native-form-submit .button {
  min-width: 190px;
  border: 0;
  cursor: pointer;
}

.native-form-submit .button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.native-form-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.native-form-status.is-error {
  color: #8b2f26;
  font-weight: 800;
}

.native-form-success {
  padding: clamp(30px, 5vw, 56px) 0;
  border-block: 1px solid var(--line);
  outline: 0;
}

.native-form-success h2 {
  max-width: 18ch;
  margin: 0 0 16px;
}

.native-form-success > p:not(.eyebrow) {
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.65;
}

.native-form-success strong {
  display: inline-block;
  color: var(--ink);
  font-size: 1.15em;
}

.native-form-success-note {
  padding-left: 14px;
  border-left: 3px solid var(--warm);
}

.native-form-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.reorder-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 640px) {
  .form-shortcut {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .native-form-section {
    grid-template-columns: 1fr;
  }

  .native-form-grid.two-columns,
  .reorder-details-grid {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .native-form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .native-form-submit .button {
    width: 100%;
  }
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 28px);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.76);
}

nav a:hover {
  color: #fff;
}

nav a[aria-current="page"]:not(.nav-form-link) {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.nav-form-link {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 6px;
  color: #fff;
  font-weight: 800;
}

.nav-form-link:hover,
.nav-form-link:focus-visible {
  color: var(--dark);
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  min-height: min(590px, calc(100svh - 110px));
  padding: clamp(34px, 6vw, 82px) clamp(18px, 5vw, 72px) clamp(24px, 4vw, 54px);
  background: var(--surface-soft);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}

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

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

h1 {
  max-width: 14ch;
  margin-bottom: 18px;
  font-size: 4rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.75rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.lead {
  max-width: 58ch;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.55;
}

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

.hero-price {
  width: fit-content;
  margin: 14px 0 0;
  padding-left: 12px;
  border-left: 3px solid var(--warm);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
}

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

.button.secondary {
  background: transparent;
}

.hero-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid #ccd3d0;
  border-radius: 8px;
  background-color: #dfe3e1;
  background-image: url("assets/hero/ak3d-printerrum-hero-v1.webp");
  background-size: 142% auto;
  background-position: 80% center;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  background: rgba(8, 9, 10, 0.72);
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.75);
  text-align: right;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-strip div {
  min-height: 112px;
  padding: 22px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.42;
}

.work-showcase {
  padding: clamp(30px, 4vw, 48px) clamp(18px, 5vw, 72px);
  border-top: 1px solid #cfd8d3;
  border-bottom: 1px solid #cfd8d3;
  background: var(--surface-tint);
}

.work-showcase-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  column-gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 24px;
}

.work-showcase-heading .eyebrow {
  grid-column: 1;
  margin-bottom: 8px;
}

.work-showcase-heading h2 {
  grid-column: 1;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.work-showcase-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 56ch;
  margin-bottom: 4px;
  color: var(--muted);
  line-height: 1.6;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.work-example {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.work-example img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #d9dedc;
}

.work-example figcaption {
  display: grid;
  gap: 5px;
  min-height: 98px;
  padding: 15px 16px 17px;
}

.work-example figcaption strong,
.work-example figcaption span {
  display: block;
}

.photo-strip.is-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
}

.work-showcase-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.work-showcase-actions .button {
  min-width: 190px;
}

.work-example figcaption strong {
  font-size: 1.02rem;
}

.work-example figcaption span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.personal-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(42px, 6vw, 74px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--surface-deep);
}

.personal-band .eyebrow {
  color: #7ce0c7;
}

.personal-band h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.personal-band p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.65;
}

.personal-band .personal-note {
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.about-ak3d {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--surface-soft);
}

.about-ak3d-media {
  overflow: hidden;
  margin: 0;
  border-radius: 6px;
  background: #d9dedc;
}

.about-ak3d-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.about-ak3d-copy h2 {
  max-width: 16ch;
  margin-bottom: 18px;
}

.about-ak3d-copy > p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.65;
}

.about-ak3d-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.about-ak3d-facts li {
  padding: 15px 14px 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.section {
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

body[data-ak3d-page="site"] .section {
  padding-block: clamp(36px, 5vw, 62px);
}

.fold-section {
  padding-block: clamp(28px, 4vw, 48px);
}

.section-fold > summary,
.preview-fold > summary {
  list-style: none;
}

.section-fold > summary::-webkit-details-marker,
.preview-fold > summary::-webkit-details-marker {
  display: none;
}

.section-fold-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  min-height: 124px;
  cursor: pointer;
}

.section-fold-summary-copy {
  display: block;
}

.section-fold-summary .eyebrow {
  display: block;
}

.fold-heading {
  display: block;
  max-width: 18ch;
  margin-bottom: 12px;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.08;
}

.fold-summary-lead {
  display: block;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.fold-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 116px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  font-weight: 800;
}

.fold-toggle::before {
  content: "+";
  width: 20px;
  font-size: 1.4rem;
  line-height: 1;
}

.fold-toggle::after {
  content: "Åbn guide";
}

.section-fold[open] .fold-toggle::before {
  content: "−";
}

.section-fold[open] .fold-toggle::after {
  content: "Luk guide";
}

.section-fold-summary:focus-visible,
.preview-fold > summary:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 6px;
}

.section-fold-body {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--surface-soft);
}

.home-services {
  background: var(--surface-soft);
}

.home-services .section-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.home-services .section-intro h2 {
  max-width: 18ch;
  margin-bottom: 0;
}

.home-services .service-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-services .service-list article {
  min-height: 155px;
  padding: 22px;
}

.home-services .service-list h3 {
  max-width: 18ch;
}

.home-services .service-summary {
  margin-bottom: 0;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-list p,
.case-copy p,
.contact p,
.steps p {
  color: var(--muted);
  line-height: 1.55;
}

.service-summary {
  margin-bottom: 12px;
}

.service-details {
  border-top: 1px solid var(--line);
}

.service-details summary {
  padding: 12px 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.service-details p {
  margin: 10px 0 0;
}

.section-action {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
}

.business-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  color: #fff;
  background: var(--surface-deep);
}

.business-copy {
  position: sticky;
  top: 104px;
}

.business-entry .eyebrow,
.business-page-hero .eyebrow {
  color: #7ce0c7;
}

.business-copy h2 {
  max-width: 14ch;
}

.business-lead {
  max-width: 58ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.04rem;
  line-height: 1.65;
}

.business-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-steps li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 16px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.business-steps span {
  grid-row: 1 / span 2;
  color: var(--warm);
  font-weight: 900;
}

.business-steps strong {
  font-size: 1.08rem;
}

.business-steps p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.business-actions {
  display: grid;
  grid-column: 2;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.business-primary {
  color: var(--dark);
  background: #fff;
  border-color: #fff;
}

.business-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
}

.business-primary:hover,
.business-primary:focus-visible,
.business-secondary:hover,
.business-secondary:focus-visible {
  color: var(--dark);
  background: #7ce0c7;
  border-color: #7ce0c7;
}

.business-note {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.5;
}

.business-entry-compact {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding-block: clamp(30px, 4vw, 46px) !important;
}

.business-entry-compact .business-copy {
  position: static;
}

.business-entry-compact .business-copy h2 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.business-entry-compact .business-lead {
  max-width: 68ch;
}

.business-entry-compact .business-actions {
  display: flex;
  grid-column: 2;
  min-width: 250px;
}

.business-page {
  min-height: 100vh;
  background: var(--surface-soft);
}

.business-page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(650px, calc(100svh - 72px));
  padding: clamp(52px, 8vw, 104px) clamp(18px, 6vw, 84px);
  overflow: hidden;
  color: #fff;
  background-color: #1a2023;
  background-image:
    linear-gradient(90deg, rgba(8, 9, 10, 0.92) 0%, rgba(8, 9, 10, 0.74) 50%, rgba(8, 9, 10, 0.28) 100%),
    url("assets/hero/ak3d-printerrum-hero-v1.webp");
  background-size: cover;
  background-position: 70% center;
}

.business-page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.business-page-hero h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: 4.4rem;
}

.business-page-hero .lead {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.82);
}

.business-page-hero .button.primary {
  color: var(--dark);
  background: #fff;
  border-color: #fff;
}

.business-page-hero .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.business-page-hero .button:hover,
.business-page-hero .button:focus-visible {
  color: var(--dark);
  background: #7ce0c7;
  border-color: #7ce0c7;
}

.business-page-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--surface);
}

.business-page-flow-copy p:last-child {
  max-width: 57ch;
  color: var(--muted);
  line-height: 1.65;
}

.business-page-flow .business-steps li {
  border-color: var(--line);
}

.business-page-flow .business-steps strong {
  color: var(--ink);
}

.business-page-flow .business-steps p {
  color: var(--muted);
}

.business-form-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.business-form-intro {
  position: sticky;
  top: 102px;
}

.business-form-intro p:not(.eyebrow) {
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.65;
}

.business-form-meta {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.business-form-meta li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.business-form-meta li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.business-contact-panel {
  min-width: 0;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  background: var(--surface);
}

.business-contact-panel > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.35rem;
}

.business-contact-panel > p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.business-contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.business-contact-actions .button {
  width: 100%;
}

.business-contact-panel .business-contact-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.measurement-section {
  color: #fff;
  background: var(--surface-guide);
}

.process + .measurement-section {
  border-top: 4px solid var(--accent);
}

.measurement-section .eyebrow {
  color: #7ce0c7;
}

.measurement-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.measurement-copy h2 {
  max-width: 18ch;
}

.measurement-copy p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.measurement-copy .photo-tip {
  margin: 20px 0 24px;
  padding-left: 14px;
  color: #fff;
  font-weight: 800;
  border-left: 3px solid var(--warm);
}

.photo-check {
  margin: 0 0 28px;
}

.photo-check strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
}

.photo-check ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.photo-check li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.photo-check li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--warm);
  font-weight: 900;
}

.measurement-copy .button {
  color: var(--dark);
  background: #fff;
  border-color: #fff;
}

.measurement-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.measurement-media figure {
  overflow: hidden;
  min-width: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}

.measurement-media .measurement-main {
  grid-column: 1 / -1;
}

.measurement-media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.measurement-media figcaption {
  padding: 15px 16px 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.55;
  border-top: 3px solid var(--warm);
}

.measurement-media figcaption strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 0.94rem;
}

.measurement-media figcaption span {
  display: block;
}

.cases {
  background: var(--surface);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px) 0;
  border-top: 1px solid var(--line);
}

.case-feature.reverse {
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
}

.case-feature.reverse .case-copy {
  order: 2;
}

.case-label {
  margin-bottom: 10px;
  color: var(--warm);
  font-weight: 800;
}

.compact-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.compact-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  line-height: 1.45;
}

.compact-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.case-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.case-images img,
.gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
}

.case-images .wide {
  grid-column: 1 / -1;
  height: 340px;
}

.case-placeholder {
  display: grid;
  align-content: center;
  min-height: 330px;
  padding: 26px;
  border: 1px dashed var(--steel);
  border-radius: 8px;
  color: #fff;
  background: var(--surface-guide);
}

.case-placeholder span {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-placeholder strong {
  margin-bottom: 10px;
  font-size: 2.4rem;
  line-height: 1;
}

.case-placeholder p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

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

.process-summary-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  column-gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 26px;
}

.process-summary-copy .eyebrow {
  grid-column: 1;
  margin-bottom: 8px;
}

.process-summary-copy h2 {
  grid-column: 1;
  margin-bottom: 0;
}

.process .process-lead {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 48ch;
  margin-bottom: 5px;
  color: var(--muted);
  line-height: 1.55;
}

.process .fold-toggle {
  color: var(--ink);
  border-color: var(--ink);
}

.process .section-fold-body {
  border-color: var(--line);
}

.process-fold .fold-toggle::after {
  content: "Se trinene";
}

.process-fold[open] .fold-toggle::after {
  content: "Skjul trinene";
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 165px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.steps span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--warm);
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.process-action {
  display: flex;
  width: min(420px, 100%);
  margin: 22px auto 0;
}

.process-photo-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-photo-guide {
  margin: 0 0 30px;
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
  background: var(--surface-guide);
}

.form-photo-guide > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.form-photo-guide > summary::-webkit-details-marker {
  display: none;
}

.form-photo-guide > summary span,
.form-photo-guide > summary strong,
.form-photo-guide > summary small {
  display: block;
}

.form-photo-guide > summary strong {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.form-photo-guide > summary small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.form-photo-guide > summary b {
  flex: 0 0 auto;
  font-size: 0.86rem;
}

.form-photo-guide[open] > summary b {
  font-size: 0;
}

.form-photo-guide[open] > summary b::after {
  content: "Luk guiden";
  font-size: 0.86rem;
}

.form-photo-guide .measurement-guide {
  padding: 26px 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.form-photo-guide .measurement-media {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.form-photo-guide .measurement-media figcaption {
  padding: 12px;
}

.form-photo-guide .photo-check {
  margin-bottom: 0;
}

.catalog-preview {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.catalog-preview.cases {
  background: var(--surface-soft);
}

.preview-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.preview-heading h2 {
  max-width: 19ch;
  margin-bottom: 0;
}

.preview-fold {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.preview-fold > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 62px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.preview-fold > summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 22px;
  color: var(--accent);
  font-size: 1.45rem;
  line-height: 1;
  text-align: center;
}

.preview-fold[open] > summary {
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.preview-fold[open] > summary::after {
  content: "−";
}

.preview-fold-open {
  display: none;
}

.preview-fold[open] .preview-fold-closed {
  display: none;
}

.preview-fold[open] .preview-fold-open {
  display: inline;
}

.text-link {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.catalog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.catalog-preview-grid .catalog-empty {
  grid-column: 1 / -1;
}

.catalog-preview-grid .public-case-card {
  grid-column: span 1;
  grid-template-columns: 1fr;
}

.catalog-preview-grid .public-case-card:first-child:last-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.catalog-page {
  min-height: calc(100vh - 190px);
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 72px);
}

.catalog-page-header {
  max-width: 830px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.catalog-page-header h1 {
  max-width: 15ch;
}

.catalog-page-header > p:last-child {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.case-catalog-page {
  padding-top: clamp(34px, 5vw, 64px);
}

.case-catalog-page .catalog-page-header {
  margin-bottom: clamp(26px, 4vw, 42px);
}

.case-catalog-page .catalog-page-header h1 {
  max-width: 18ch;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
}

.case-contact {
  margin-top: clamp(42px, 6vw, 72px);
  padding: clamp(34px, 5vw, 58px);
  border-radius: 8px;
}

.catalog-list {
  display: grid;
  gap: 18px;
}

.product-card,
.public-case-card {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.catalog-preview-grid .product-card {
  grid-template-columns: 1fr;
}

.product-image,
.case-public-image,
.catalog-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.case-public-gallery {
  display: grid;
  min-width: 0;
  max-width: 100%;
  height: 620px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(360px, 1fr) 210px;
  gap: 3px;
  min-height: 0;
  padding: 3px;
  background: #dfe2de;
}

.case-public-gallery.is-single {
  height: 520px;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(420px, 1fr);
}

.case-public-gallery .case-public-image {
  min-height: 0;
  height: 100%;
  object-fit: contain;
  background: #eef0ed;
}

.case-public-gallery .case-public-image:first-child:nth-last-child(3) {
  grid-row: span 2;
}

.case-public-gallery.is-airfilter .case-public-image:first-child {
  grid-column: 1 / -1;
  grid-row: auto;
  min-height: 0;
  object-position: 50% 57%;
}

.case-public-gallery.is-airfilter .case-public-image:nth-child(2) {
  object-position: 50% 48%;
}

.case-public-gallery.is-airfilter .case-public-image:nth-child(3) {
  object-position: 50% 50%;
}

.case-public-gallery.is-training-replica .case-public-image:first-child {
  grid-column: 1 / -1;
  grid-row: auto;
  min-height: 0;
  object-position: 50% 50%;
}

.catalog-preview-grid .product-image,
.catalog-preview-grid .catalog-image-placeholder {
  min-height: 230px;
  height: 230px;
}

.catalog-image-placeholder {
  display: grid;
  place-content: center;
  gap: 4px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  background: var(--surface-guide);
}

.catalog-image-placeholder strong {
  color: #fff;
  font-size: 1.7rem;
}

.product-card-copy,
.public-case-copy {
  display: flex;
  min-width: 0;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 4vw, 42px);
}

.catalog-preview-grid .product-card-copy,
.catalog-preview-grid .public-case-copy {
  padding: 22px;
}

.product-card h2,
.public-case-card h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  overflow-wrap: anywhere;
}

.catalog-preview-grid .product-card h2,
.catalog-preview-grid .public-case-card h2 {
  font-size: 1.45rem;
}

.catalog-label {
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-summary {
  color: var(--muted);
  line-height: 1.55;
}

.catalog-price {
  display: block;
  margin: 5px 0 16px;
  padding-left: 11px;
  border-left: 3px solid var(--warm);
}

.catalog-details {
  width: 100%;
  margin-bottom: 20px;
  border-top: 1px solid var(--line);
}

.catalog-details summary {
  padding: 13px 0 0;
  font-weight: 800;
  cursor: pointer;
}

.catalog-details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.catalog-action {
  width: 100%;
  margin-top: auto;
}

.case-result {
  display: grid;
  gap: 4px;
  margin-top: 8px;
  padding: 12px 14px;
  border-left: 3px solid var(--warm);
  background: var(--surface-soft);
}

.case-result span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-empty {
  padding: clamp(28px, 5vw, 50px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.catalog-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.catalog-empty p {
  max-width: 52ch;
  margin: 0 auto 20px;
  color: var(--muted);
  line-height: 1.55;
}

.intake {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

body[data-ak3d-page="site"] .intake {
  border-top: 4px solid var(--accent);
}

.form-step-heading {
  max-width: 680px;
  padding: 24px 0 18px;
}

.form-step-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.form-step-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.intake-lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.intake-routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.intake-route {
  display: flex;
  flex-direction: column;
  min-height: 205px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.intake-route:hover,
.intake-route:focus-visible {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.intake-route .route-action {
  display: block;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  border-bottom: 1px solid currentColor;
}

.intake-routes p,
.intake-fact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.intake-fact .compact-list {
  margin-top: 15px;
}

.intake-fact .compact-list li {
  color: var(--muted);
  font-size: 0.9rem;
}

.intake-panel {
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid var(--line);
}

.intake-fact {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.intake-fact strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.intake-action {
  width: 100%;
  margin-top: 22px;
}

.intake-contact {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.intake-contact a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.intake-more {
  border-top: 1px solid var(--line);
}

.intake-more > summary {
  padding: 16px 0;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.intake-more-body {
  padding-bottom: 8px;
}

.intake-more .intake-fact:first-child {
  border-top: 1px solid var(--line);
}

.intake-privacy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.intake-privacy a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  color: #fff;
  background: var(--surface-deep);
}

.contact .eyebrow {
  color: #7ce0c7;
}

.contact p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.72);
}

.contact-box {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-link {
  display: block;
  width: fit-content;
  margin-top: 12px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: #7ce0c7;
}

.contact-start {
  width: 100%;
  margin: 10px 0 6px;
  color: var(--dark);
  background: #fff;
  border-color: #fff;
}

.contact-start:hover,
.contact-start:focus-visible {
  background: #7ce0c7;
  border-color: #7ce0c7;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: #101417;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
}

.site-footer > div:first-child,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.site-footer strong,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-links {
  justify-content: flex-end;
}

.legal-page {
  min-height: 100vh;
  background: var(--surface-soft);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: #fff;
  background: #08090a;
}

.legal-header > a:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-header > a:last-child:hover,
.legal-header > a:last-child:focus-visible {
  color: #fff;
}

.legal-main {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px) 0 72px;
}

.legal-main h1 {
  max-width: 14ch;
  margin-bottom: 20px;
  font-size: 4rem;
}

.legal-lead {
  max-width: 62ch;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.legal-summary {
  margin: -12px 0 34px;
  padding: 18px 20px;
  border-left: 4px solid var(--warm);
  background: #fff;
}

.legal-summary strong {
  display: block;
  margin-bottom: 5px;
}

.legal-summary p {
  margin: 0;
  color: #36414b;
  line-height: 1.6;
}

.legal-main section {
  padding: 24px 0;
  border-top: 1px solid #cdd4d8;
}

.legal-main section h2 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.legal-main section p,
.legal-main section li {
  color: #36414b;
  line-height: 1.7;
}

.legal-main section p {
  margin: 0 0 12px;
}

.legal-main section p:last-child {
  margin-bottom: 0;
}

.legal-main section ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 14px;
  padding-left: 22px;
}

.legal-main section a {
  color: #116b57;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (min-width: 961px) and (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    gap: 26px;
    min-height: 560px;
    padding: 42px 30px 34px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: 3.2rem;
    line-height: 1.02;
  }

  .hero-copy .lead {
    max-width: 50ch;
    font-size: 1.06rem;
  }

  .hero-media {
    min-height: 430px;
  }
}

@media (max-width: 960px) {
  .case-public-gallery {
    height: 560px;
    grid-template-rows: minmax(330px, 1fr) 190px;
  }

  .case-public-gallery.is-single {
    height: 500px;
  }

  .hero,
  .split,
  .business-entry,
  .business-page-flow,
  .business-form-section,
  .personal-band,
  .about-ak3d,
  .work-showcase-heading,
  .process-summary-copy,
  .measurement-guide,
  .case-feature,
  .case-feature.reverse,
  .intake,
  .contact {
    grid-template-columns: 1fr;
  }

  .case-feature.reverse .case-copy {
    order: 0;
  }

  .hero {
    min-height: auto;
  }

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

  h2 {
    font-size: 2.35rem;
  }

  .hero-media {
    min-height: 420px;
  }

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

  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .work-showcase-heading {
    gap: 10px;
  }

  .work-showcase-heading .eyebrow,
  .work-showcase-heading h2,
  .work-showcase-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .process-summary-copy .eyebrow,
  .process-summary-copy h2,
  .process .process-lead {
    grid-column: 1;
    grid-row: auto;
  }

  .process .process-lead {
    margin-top: 12px;
  }

  .form-photo-guide .measurement-guide {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .photo-strip.is-two {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .work-example {
    scroll-snap-align: start;
  }

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

  .business-copy,
  .business-form-intro {
    position: static;
  }

  .business-actions {
    grid-column: 1;
  }

  .business-entry-compact .business-actions {
    grid-column: 1;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .public-case-card h2 {
    font-size: 1.6rem;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .site-header {
    align-items: center;
    gap: 16px;
    padding-block: 10px;
    position: relative;
  }

  .brand {
    width: 86px;
    min-width: 86px;
    height: 38px;
  }

  .mobile-nav-toggle {
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    gap: 7px;
    margin-left: auto;
    min-height: 38px;
    padding: 7px 11px;
  }

  .mobile-nav-toggle span[aria-hidden="true"] {
    font-size: 1.15rem;
    line-height: 1;
  }

  .site-header nav {
    align-items: stretch;
    background: #17191a;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
    display: none;
    flex-direction: column;
    font-size: 0.92rem;
    gap: 4px;
    left: 0;
    padding: 10px 20px 14px;
    position: absolute;
    right: 0;
    top: 100%;
    white-space: normal;
    z-index: 20;
  }

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

  .site-header nav a {
    display: block;
    padding: 10px 12px;
    text-align: left;
  }

  .site-header nav .nav-form-link {
    margin-top: 4px;
    text-align: center;
  }

  h1 {
    max-width: none;
    font-size: 2.3rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2rem;
  }

  .legal-main h1 {
    font-size: 2.65rem;
  }

  .hero {
    padding-top: 28px;
  }

  .business-page-hero {
    min-height: 560px;
    padding-top: 72px;
    background-position: 58% center;
  }

  .business-page-hero h1 {
    max-width: none;
    font-size: 2.65rem;
  }

  .hero-actions,
  .hero-badge {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-badge span {
    text-align: left;
  }

  .hero-media {
    min-height: 220px;
  }

  .steps,
  .gallery,
  .case-images,
  .measurement-media,
  .intake-routes,
  .catalog-preview-grid {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: 0;
  }

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

  .form-photo-guide > summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .form-photo-guide .measurement-media {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .home-services .service-list {
    grid-template-columns: 1fr;
  }

  .business-actions {
    grid-template-columns: 1fr;
  }

  .business-entry-compact .business-actions,
  .business-entry-compact .business-primary {
    width: 100%;
  }

  .business-note {
    grid-column: 1;
  }

  .measurement-media .measurement-main {
    grid-column: auto;
  }

  .section-fold-summary {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .fold-heading {
    max-width: none;
    font-size: 2rem;
  }

  .fold-toggle {
    min-width: 0;
  }

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

  .intake-route {
    min-height: 0;
  }

  .catalog-preview-grid .public-case-card:first-child:last-child,
  .product-card,
  .public-case-card {
    grid-template-columns: 1fr;
  }

  .product-image,
  .case-public-image,
  .catalog-image-placeholder {
    min-height: 260px;
    height: 260px;
  }

  .case-public-gallery {
    height: auto;
    min-height: 0;
    grid-template-rows: 230px 170px;
  }

  .case-public-gallery.is-single {
    height: auto;
    grid-template-rows: 280px;
  }

  .case-public-gallery .case-public-image {
    min-height: 0;
    height: 100%;
  }

  .case-public-gallery.is-airfilter .case-public-image:first-child {
    min-height: 0;
    height: 100%;
  }

  .case-public-gallery.is-training-replica .case-public-image:first-child {
    min-height: 0;
    height: 100%;
  }

  .personal-band h2 {
    max-width: none;
  }

  .about-ak3d-copy h2 {
    max-width: none;
  }

  .proof-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .work-example img,
  .case-images img,
  .case-images .wide,
  .gallery img {
    height: 260px;
  }

  .work-showcase-actions {
    justify-content: stretch;
  }

  .work-showcase-actions .button {
    width: 100%;
  }

  .case-catalog-page .catalog-page-header h1 {
    font-size: 2.45rem;
  }
}
