:root {
  --bg: #f7f7f4;
  --bg-white: #fcfcfa;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #111111;
  --muted: #666968;
  --line: rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 40px 110px rgba(140, 145, 152, 0.12);
  --shadow-card: 0 30px 70px rgba(95, 102, 110, 0.12);
  --accent: #1456dd;
  --accent-soft: rgba(20, 86, 221, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.92), transparent 34%),
    radial-gradient(circle at 20% 22%, rgba(198, 206, 216, 0.2), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(206, 212, 223, 0.22), transparent 21%),
    linear-gradient(180deg, #fcfcfb 0%, #f4f4f1 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.7), transparent 34%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.32) 50%, transparent 100%);
  mix-blend-mode: screen;
}

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

.page-shell {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 24px 0 32px;
}

.site-header,
.site-footer,
.service-row,
.hero,
.closing {
  position: relative;
  z-index: 1;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 6px 32px;
  z-index: 40;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1a2746, #0f1830 72%);
  box-shadow: 0 8px 20px rgba(15, 24, 48, 0.14);
}

.brand-word {
  font-size: 1.45rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: #2e3032;
  font-size: 0.98rem;
}

.main-nav a,
.footer-links a,
.text-link,
.button {
  transition: transform 160ms ease, opacity 160ms ease, background-color 160ms ease;
}

.main-nav a:hover,
.footer-links a:hover,
.text-link:hover,
.button:hover {
  transform: translateY(-1px);
}

.locale-chip {
  appearance: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  color: #2d2f31;
  backdrop-filter: blur(16px);
}

.locale-switcher {
  position: relative;
  justify-self: end;
}

.locale-switcher.is-open .locale-chip {
  background: rgba(255, 255, 255, 0.9);
}

.locale-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: grid;
  gap: 4px;
  min-width: 164px;
  padding: 8px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(83, 90, 99, 0.16);
  backdrop-filter: blur(18px);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.locale-switcher.is-open .locale-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.locale-option {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border-radius: 14px;
  background: transparent;
  color: #26292d;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.locale-option:hover,
.locale-option.is-active {
  background: rgba(20, 86, 221, 0.08);
  color: #123e9f;
}

.locale-icon {
  font-size: 0.8rem;
  color: #55595e;
}

.section-frame {
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: center;
  min-height: 78vh;
  padding: 56px 6px 44px;
}

.hero-kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(4.4rem, 8vw, 8.3rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

html[lang="zh"] .hero h1,
html[lang="ja"] .hero h1,
html[lang="ko"] .hero h1 {
  max-width: 10.5ch;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy {
  padding-top: 28px;
}

.hero-emblem {
  width: 74px;
  margin: 0 0 18px;
  opacity: 0.95;
}

.hero-emblem img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-summary {
  max-width: 22ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.18;
}

.hero-detail {
  max-width: 34ch;
  margin: 18px 0 0;
  color: #3f4347;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 600;
}

.button-dark {
  color: #ffffff;
  background: #111111;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.14);
}

.button-light {
  color: #111111;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
}

.hero-art {
  position: relative;
  min-height: 600px;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 6% 2% 12% 18%;
  border-radius: 44px;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.95), rgba(214, 220, 228, 0.18) 52%, transparent 74%);
  filter: blur(16px);
}

.workflow-board {
  position: absolute;
  inset: 8% 0 6% 12%;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(245, 247, 249, 0.54)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(199, 207, 216, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 32px 90px rgba(149, 158, 169, 0.18);
  backdrop-filter: blur(24px);
}

.workflow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #2e3236;
  font-size: 0.92rem;
  font-weight: 600;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.workflow-card {
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 250, 0.76)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(122, 129, 136, 0.1);
}

.workflow-card-wide {
  grid-column: 1 / -1;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 86% 28%, rgba(202, 220, 245, 0.48), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 250, 0.82));
}

.workflow-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-card strong {
  display: block;
  max-width: 18ch;
  font-size: 1.34rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.workflow-card p {
  margin: 12px 0 0;
  color: #666b70;
  font-size: 0.95rem;
  line-height: 1.55;
}

.services-grid {
  display: grid;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.45fr);
  gap: 42px;
  padding: 44px 6px;
  align-items: center;
}

.service-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.service-copy p {
  max-width: 32ch;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.62;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
  color: #27292b;
  font-size: 0.98rem;
  font-weight: 600;
}

.service-note {
  margin: -6px 0 28px;
  color: #31353a;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.text-link::after {
  content: "→";
  font-size: 1.05rem;
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-card);
}

.subtitles-card {
  background: #1f252b;
}

.subtitle-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scene-photo,
.subtitle-scene::before {
  position: absolute;
}

.scene-photo {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.84);
}

.subtitle-scene::before {
  content: "";
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250, 242, 229, 0.22), rgba(0, 0, 0, 0.06) 42%, rgba(0, 0, 0, 0.18) 100%);
  opacity: 1;
}

.subtitle-box {
  position: absolute;
  left: 9%;
  right: 22%;
  bottom: 12%;
  display: grid;
  gap: 6px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(14, 16, 18, 0.62);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.subtitle-box span {
  font-size: 1.02rem;
}

.language-stack {
  position: absolute;
  top: 13%;
  right: 2.6%;
  display: grid;
  gap: 10px;
  width: 70px;
  padding: 16px 0;
  border-radius: 20px;
  background: rgba(15, 16, 19, 0.56);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  backdrop-filter: blur(12px);
}

.language-stack .active {
  color: #ffffff;
}

.restoration-card {
  position: relative;
  background: #dadcdf;
  overflow: hidden;
}

.before-pane,
.after-pane {
  position: absolute;
  inset: 0;
  min-height: 380px;
}

.before-pane {
  right: 50%;
  background: #767676;
  z-index: 2;
}

.before-pane::before,
.after-pane::before {
  content: "";
  position: absolute;
  inset: 0;
}

.before-pane::before {
  background:
    linear-gradient(180deg, rgba(215, 208, 188, 0.08), rgba(17, 15, 12, 0.28)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 6px);
  opacity: 1;
}

.after-pane {
  z-index: 1;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.46), transparent 18%),
    linear-gradient(180deg, rgba(248, 244, 239, 0.18) 0%, rgba(227, 219, 209, 0.08) 52%, rgba(178, 164, 148, 0.18) 100%),
    linear-gradient(140deg, #e8dfd5 0%, #d7cec3 30%, #cabaa8 68%, #b59f89 100%);
}

.after-pane::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.02));
}

.restoration-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.restoration-photo-before {
  filter: grayscale(0.82) sepia(0.18) contrast(0.68) brightness(0.78) blur(1.15px) saturate(0.18);
  transform: scale(1.02);
}

.restoration-photo-after {
  filter: contrast(1.02) saturate(0.93) brightness(1);
}

.before-pane::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 32%, rgba(255, 255, 255, 0.12), transparent 1.1%),
    radial-gradient(circle at 74% 58%, rgba(255, 255, 255, 0.08), transparent 1%),
    radial-gradient(circle at 61% 22%, rgba(0, 0, 0, 0.18), transparent 1.4%),
    linear-gradient(92deg, transparent 0 32%, rgba(255, 255, 255, 0.12) 32% 32.4%, transparent 32.4% 100%),
    linear-gradient(90deg, transparent 0 68%, rgba(0, 0, 0, 0.14) 68% 68.3%, transparent 68.3% 100%);
  mix-blend-mode: screen;
  opacity: 0.58;
}

.vhs-stamp {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: rgba(255, 245, 223, 0.88);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.pane-label {
  position: absolute;
  top: 18px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.before-pane .pane-label {
  left: 18px;
}

.after-pane .pane-label {
  right: 18px;
}

.divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  background: rgba(255, 255, 255, 0.76);
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.divider-knob {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1d2025;
  font-size: 0.95rem;
  font-weight: 700;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 34px rgba(55, 61, 71, 0.18);
}

.scribe-card {
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 250, 248, 0.86));
}

.scribe-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 247, 0.86));
}

.scribe-toolbar-title,
.scribe-toolbar-status {
  color: #2a2d30;
  font-size: 0.88rem;
  font-weight: 600;
}

.scribe-toolbar-status {
  color: #5f666d;
}

.scribe-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.45fr 0.95fr;
  min-height: 400px;
}

.scribe-outline,
.scribe-notes {
  padding: 22px 18px;
  border-right: 1px solid rgba(17, 17, 17, 0.05);
}

.scribe-notes {
  border-right: 0;
  border-left: 1px solid rgba(17, 17, 17, 0.05);
}

.scribe-outline span,
.chat-card span {
  display: block;
  margin-bottom: 14px;
  color: #2a2d30;
  font-size: 0.92rem;
  font-weight: 600;
}

.source-card {
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
}

.source-card + .source-card {
  margin-top: 14px;
}

.source-card strong {
  display: block;
  margin-bottom: 8px;
  color: #17191c;
  font-size: 0.96rem;
  font-weight: 600;
}

.source-card p {
  margin: 0;
  color: #5d6166;
  font-size: 0.9rem;
  line-height: 1.55;
}

.scribe-document {
  padding: 26px 28px;
}

.scribe-doc-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scribe-heading {
  margin: 0 0 14px;
  color: #111111;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.scribe-subheading {
  margin: 0;
  color: #52585e;
  font-size: 0.96rem;
  line-height: 1.6;
}

.scribe-paragraphs {
  margin-top: 20px;
}

.scribe-document p {
  margin: 0;
  color: #3d4246;
  font-size: 1rem;
  line-height: 1.75;
}

.scribe-paragraphs p + p {
  margin-top: 14px;
}

.scribe-evidence-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.evidence-chip {
  padding: 10px 12px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 999px;
  background: rgba(244, 247, 251, 0.88);
  color: #28303a;
  font-size: 0.82rem;
  font-weight: 600;
}

.chat-card {
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.chat-card + .chat-card {
  margin-top: 14px;
}

.chat-card p {
  margin: 0;
  color: #50565d;
  font-size: 0.9rem;
  line-height: 1.6;
}

.chat-card-user {
  background: linear-gradient(180deg, rgba(252, 252, 252, 0.98), rgba(245, 246, 247, 0.88));
}

.chat-card-ai {
  background: linear-gradient(180deg, rgba(239, 245, 255, 0.94), rgba(234, 241, 251, 0.82));
}

.closing {
  padding: 62px 6px 42px;
}

.closing-lead {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.closing-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 920px;
  margin-top: 26px;
}

.closing-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.launch-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding: 30px 32px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.launch-box h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  letter-spacing: -0.05em;
}

.launch-box p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 6px 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-note {
  color: #72767a;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: #313336;
  font-size: 0.96rem;
}

@media (max-width: 1080px) {
  .hero,
  .service-row,
  .closing-copy,
  .launch-box,
  .site-footer,
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-header,
  .launch-box,
  .site-footer {
    display: grid;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .hero {
    min-height: unset;
    padding-top: 34px;
  }

  .hero-art {
    min-height: 440px;
  }

  .workflow-board {
    inset: 4% 0 4% 4%;
  }

  .closing-copy {
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 32px), var(--max));
    padding-top: 16px;
  }

  .site-header {
    gap: 14px;
    padding: 4px 0 28px;
  }

  .brand-word {
    font-size: 1.08rem;
    letter-spacing: 0.14em;
  }

  .main-nav {
    flex-wrap: nowrap;
    gap: 18px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
    font-size: 0.94rem;
    line-height: 1.2;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .locale-chip {
    width: fit-content;
    min-width: 88px;
    padding: 11px 14px;
  }

  .locale-menu {
    left: 0;
    right: auto;
    min-width: 154px;
  }

  .hero h1 {
    max-width: 10.5ch;
    margin-inline: auto;
    font-size: clamp(2.95rem, 14vw, 4.35rem);
    line-height: 0.98;
    text-align: center;
  }

  html[lang="zh"] .hero h1,
  html[lang="ja"] .hero h1,
  html[lang="ko"] .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.6rem, 12.4vw, 3.8rem);
    line-height: 1.04;
  }

  .hero-summary {
    margin-top: 18px;
    font-size: 1.16rem;
    text-align: center;
  }

  .hero-emblem {
    width: 54px;
    margin: 0 auto 18px;
  }

  .hero-detail {
    max-width: 30ch;
    margin: 18px auto 0;
    font-size: 0.97rem;
    line-height: 1.72;
    text-align: center;
  }

  .hero-copy {
    padding-top: 16px;
  }

  .hero-kicker {
    margin-bottom: 14px;
    text-align: center;
    letter-spacing: 0.12em;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .hero-art {
    min-height: 0;
    margin-top: 8px;
  }

  .hero-art::before {
    inset: 0;
    border-radius: 30px;
  }

  .workflow-board {
    position: relative;
    gap: 14px;
    padding: 20px;
    border-radius: 30px;
    inset: auto;
  }

  .hero-art,
  .workflow-board {
    height: auto;
    margin-top: 8px;
  }

  .workflow-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .workflow-card {
    padding: 20px 18px;
    border-radius: 24px;
  }

  .workflow-card strong {
    font-size: 1.18rem;
  }

  .workflow-card p {
    font-size: 0.9rem;
  }

  .workflow-card-wide {
    min-height: 0;
  }

  .service-row {
    gap: 26px;
    padding: 54px 0;
  }

  .service-copy {
    order: 1;
  }

  .media-card {
    order: 2;
    min-height: 308px;
    border-radius: 28px;
  }

  .service-copy h2,
  .closing-lead,
  .launch-box h2 {
    max-width: none;
    font-size: clamp(2.3rem, 11vw, 3.15rem);
    line-height: 1.04;
  }

  .service-copy p,
  .closing-copy p {
    font-size: 1rem;
    max-width: none;
    line-height: 1.72;
  }

  .media-card,
  .before-pane,
  .after-pane {
    min-height: 308px;
  }

  .restoration-photo {
    object-position: center center;
  }

  .vhs-stamp {
    left: 12px;
    bottom: 12px;
    font-size: 0.74rem;
  }

  .subtitle-box {
    left: 6%;
    right: 16%;
    bottom: 7%;
    padding: 14px 16px;
  }

  .language-stack {
    top: 8%;
    right: 4%;
    width: 58px;
    gap: 8px;
    padding: 14px 0;
    font-size: 0.84rem;
  }

  .scribe-layout {
    grid-template-columns: 1fr;
  }

  .scribe-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
  }

  .scribe-document {
    padding: 24px 18px;
  }

  .scribe-heading {
    font-size: 1.5rem;
  }

  .scribe-document p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .scribe-outline,
  .scribe-notes {
    padding: 18px;
    border: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  }

  .scribe-notes {
    border-bottom: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.05);
  }

  .feature-list {
    gap: 10px 14px;
    margin: 18px 0 22px;
    font-size: 0.93rem;
  }

  .service-note {
    margin: -4px 0 22px;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .launch-box {
    gap: 18px;
    margin-top: 40px;
    padding: 30px 22px;
    border-radius: 28px;
    text-align: center;
  }

  .closing {
    padding: 72px 0 40px;
  }

  .closing-copy {
    margin-top: 22px;
    gap: 14px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .site-footer {
    gap: 18px;
    padding-top: 26px;
  }
}
