/* Solixor · shared stylesheet
   Pure black & white system. Light theme is the default on :root;
   html[data-theme="dark"] swaps the same semantic tokens.
   Components reference tokens only. No hardcoded hex below this block. */

@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/fonts/geist.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/fonts/geist-mono.woff2') format('woff2');
}

:root {
  --bg:         #FFFFFF;
  --bg-alt:     #F6F6F6;
  --card:       #FFFFFF;
  --card-hover: #FBFBFB;
  --ink:        #0E0E0E;
  --ink-soft:   #3A3A3A;
  --gray:       #5F5F5F;
  --gray-faint: #8C8C8C;
  --rule:       rgba(14, 14, 14, 0.14);
  --field:      rgba(14, 14, 14, 0.03);
  --stat-bg:    rgba(255, 255, 255, 0.85);
  --noise:      0.028;
  /* inverted-surface companions: readable on a var(--ink) background */
  --gray-inv:   #A3A3A3;
  --soft-inv:   #D4D4D4;
  --rule-inv:   rgba(245, 245, 245, 0.16);
}
html[data-theme="dark"] {
  --bg:         #0E0E0E;
  --bg-alt:     #161616;
  --card:       #1C1C1C;
  --card-hover: #212121;
  --ink:        #F5F5F5;
  --ink-soft:   #D4D4D4;
  --gray:       #A3A3A3;
  --gray-faint: #7A7A7A;
  --rule:       rgba(245, 245, 245, 0.14);
  --field:      rgba(245, 245, 245, 0.03);
  --stat-bg:    rgba(14, 14, 14, 0.85);
  --noise:      0.022;
  --gray-inv:   #5F5F5F;
  --soft-inv:   #3A3A3A;
  --rule-inv:   rgba(14, 14, 14, 0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  transition: background-color 0.2s ease, color 0.2s ease;
}

::selection { background: var(--ink); color: var(--bg); }

/* Subtle noise. Keeps the page from feeling like flat CSS. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: var(--noise);
  pointer-events: none;
  z-index: 1000;
}

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

:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 24px;
  z-index: 600;
  background: var(--ink);
  color: var(--bg);
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 20px;
}
.skip-link:focus { top: 12px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ─── NAV ─── */
nav {
  position: relative;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.nav-logo {
  font-family: 'Geist Mono', monospace;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-mark { width: 22px; height: 22px; color: var(--ink); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}
.nav-cta {
  font-family: 'Geist Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--ink);
  padding: 11px 22px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover {
  background: var(--bg);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-lang {
  font-family: 'Geist Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--gray);
  transition: color 0.2s ease;
}
.nav-lang:hover { color: var(--ink); }
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.2s ease;
}
.theme-toggle:hover { color: var(--ink); }
.theme-toggle svg { display: block; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.2s ease;
}
.nav-toggle span + span { margin-top: 7px; }
nav.menu-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
nav.menu-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ─── HERO (home) ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ink);
}
.hero-headline {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 32px;
  text-wrap: balance;
}
.hero-sub {
  font-family: 'Geist', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 440px;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px 28px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--ink);
  padding: 14px 30px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: 0;
}
.btn-primary:hover {
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-ghost {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease;
}
.btn-ghost:hover { color: var(--ink); }
.btn-ghost svg { transition: transform 0.2s ease; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* Hero right. The XOR split: a hard inverted panel, seal in the
   opposite ink. Flips with the theme. */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  transition: background-color 0.2s ease;
}
.hero-seal {
  width: 360px;
  height: 360px;
  color: var(--bg);
}

/* ─── PAGE HEAD (inner pages) ─── */
.page-head {
  padding: 88px 64px 72px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.breadcrumb {
  font-family: 'Geist Mono', monospace;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .crumb-sep { color: var(--gray-faint); }
.breadcrumb .crumb-here { color: var(--ink); }
.page-num {
  position: absolute;
  top: 88px;
  right: 64px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--gray);
}
.page-title {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.026em;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 780px;
  text-wrap: balance;
}
.page-intro {
  font-family: 'Geist', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 600px;
}

/* ─── SECTIONS ─── */
.section-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ─── SERVICES GRID ─── */
.services {
  padding: 140px 64px;
  background: var(--bg-alt);
  position: relative;
}
/* Editorial service index: type-led rows, no boxes. The whole row is
   the link and fully inverts on hover. */
.svc-index {
  border-top: 1px solid var(--rule);
}
.svc-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  column-gap: 32px;
  padding: 40px 24px;
  margin: 0 -24px;
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s ease;
}
.svc-row-num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--gray);
  transition: color 0.3s ease;
}
.svc-row-title {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.3s ease;
}
.svc-row-desc {
  font-family: 'Geist', sans-serif;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray);
  max-width: 580px;
  margin-top: 10px;
  transition: color 0.3s ease;
}
.svc-row-arrow {
  color: var(--gray);
  transition: color 0.3s ease, transform 0.2s ease;
}
.svc-row:hover { background: var(--ink); }
.svc-row:hover .svc-row-title,
.svc-row:hover .svc-row-arrow { color: var(--bg); }
.svc-row:hover .svc-row-num,
.svc-row:hover .svc-row-desc { color: var(--gray-inv); }
.svc-row:hover .svc-row-arrow { transform: translateX(6px); }
.section-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 36px;
}

/* ─── SERVICE DETAIL PAGES ─── */
.svc-section {
  padding: 110px 64px;
  background: var(--bg-alt);
}
.svc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 72px;
}
.svc-item {
  border-top: 1px solid var(--rule);
  padding: 30px 0 34px;
}
.svc-item h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.svc-item p {
  font-family: 'Geist', sans-serif;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray);
}
.svc-note {
  padding: 88px 64px;
}
.svc-note p {
  font-family: 'Geist', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 640px;
}
.svc-note p + p { margin-top: 18px; }
.svc-note strong { color: var(--ink); font-weight: 500; }

/* ─── ABOUT / STUDIO ─── */
.about {
  padding: 140px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-left { position: relative; }
.about-visual {
  width: 100%;
  aspect-ratio: 1;
  max-width: 460px;
  position: relative;
}
.about-square {
  position: absolute;
  inset: 0;
  border: 1px solid var(--rule);
}
.about-square:nth-child(2) {
  inset: 22px;
  opacity: 0.7;
  transform: rotate(4deg);
}
.about-square:nth-child(3) {
  inset: 44px;
  opacity: 0.85;
  transform: rotate(-2deg);
}
.about-badge {
  position: absolute;
  bottom: 28px;
  right: -18px;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 22px;
  font-family: 'Geist Mono', monospace;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: absolute;
  inset: 64px;
}
.about-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--stat-bg);
  border: 1px solid var(--rule);
}
.about-stat-num {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.about-stat-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}
.about-headline {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.1vw, 2.9rem);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.024em;
  text-wrap: balance;
}
.about-body {
  font-family: 'Geist', sans-serif;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 18px;
}
.about-body em,
.teaser-body em {
  font-family: 'Geist Mono', monospace;
  font-style: normal;
  font-size: 0.9em;
  color: var(--ink-soft);
}

/* ─── STUDIO TEASER (home) ─── */
.teaser {
  padding: 130px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.teaser-headline {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.1vw, 2.9rem);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.024em;
  text-wrap: balance;
}
.teaser-body {
  font-family: 'Geist', sans-serif;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 30px;
}

/* ─── PROCESS ─── */
.process {
  padding: 140px 64px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 48px;
  margin-top: 56px;
}
.process-step {
  border-top: 1px solid var(--rule);
  padding: 34px 0 0;
  position: relative;
}
.step-num {
  font-family: 'Geist Mono', monospace;
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: var(--gray);
  margin-bottom: 22px;
}
.step-title {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.step-desc {
  font-family: 'Geist', sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ─── CTA ─── */
.cta-section {
  padding: 150px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
}
.cta-section.cta-first { border-top: 0; padding-top: 110px; }
/* Inverted CTA band: solid opposite-ink block before the footer. */
.cta-invert {
  background: var(--ink);
  border-top: 0;
  transition: background-color 0.2s ease;
}
.cta-invert .cta-headline { color: var(--bg); }
.cta-invert .cta-eyebrow,
.cta-invert .cta-sub { color: var(--gray-inv); }
.cta-invert .btn-primary {
  background: var(--bg);
  color: var(--ink);
}
.cta-invert .btn-primary::after { background: var(--ink); }
.cta-invert .btn-primary:hover {
  color: var(--bg);
  box-shadow: inset 0 0 0 1px var(--bg);
}
.cta-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
}
.cta-headline {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 36px;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.cta-sub {
  font-family: 'Geist', sans-serif;
  font-size: 0.92rem;
  color: var(--gray);
  margin-bottom: 52px;
  line-height: 1.75;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.form-field { display: flex; flex-direction: column; gap: 9px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.label-opt { letter-spacing: 0.14em; }
.form-field input,
.form-field textarea {
  background: var(--field);
  border: 1px solid var(--rule);
  border-radius: 0;
  color: var(--ink);
  font-family: 'Geist', sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  padding: 13px 14px;
  width: 100%;
  transition: border-color 0.2s ease;
}
.form-field textarea { resize: vertical; min-height: 132px; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ink-soft);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 4px;
  flex-wrap: wrap;
}
button.btn-primary { border: 0; cursor: pointer; }
button.btn-primary:disabled { opacity: 0.55; cursor: default; }
.form-note {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--gray);
  text-align: right;
  flex: 1;
  min-height: 1em;
}
.cta-alt {
  font-family: 'Geist Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  position: relative;
  z-index: 1;
}
.cta-alt a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.cta-alt a:hover { border-color: var(--ink); }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--rule);
  padding: 48px 64px 40px;
  background: var(--bg);
}
/* Full-bleed wordmark. SVG textLength pins it edge to edge. */
.footer-word {
  display: block;
  width: 100%;
  height: auto;
  color: var(--ink);
  margin-bottom: 40px;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-row + .footer-row {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-nav a {
  font-family: 'Geist Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--ink); }
.footer-copy {
  font-family: 'Geist Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--gray);
}
.footer-location {
  font-family: 'Geist Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--gray);
  transition: color 0.2s ease;
}
.footer-location:hover { color: var(--ink); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 0 40px; }
  .process-step { padding-bottom: 26px; }
}
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: 10px 24px 18px;
    z-index: 500;
  }
  nav.menu-open .nav-links { display: flex; }
  .nav-links a { display: inline-block; padding: 13px 0; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-right { min-height: 340px; }
  .hero-seal { width: 240px; height: 240px; }
  .hero-left { padding: 72px 28px 64px; }
  .page-head { padding: 64px 28px 56px; }
  .page-num { top: 64px; right: 28px; }
  .services { padding: 88px 28px; }
  .svc-section { padding: 80px 28px; }
  .svc-note { padding: 64px 28px; }
  .svc-list { grid-template-columns: 1fr; gap: 0; }
  .svc-row {
    grid-template-columns: 40px 1fr auto;
    column-gap: 18px;
    padding: 28px 16px;
    margin: 0 -16px;
  }
  .about { grid-template-columns: 1fr; padding: 88px 28px; gap: 60px; }
  .about-visual { max-width: 100%; }
  .teaser { grid-template-columns: 1fr; padding: 88px 28px; gap: 28px; }
  .process { padding: 88px 28px; }
  .cta-section { padding: 110px 28px; }
  footer { padding: 32px 28px; }
  .footer-row { flex-direction: column; text-align: center; gap: 16px; }
  .footer-row + .footer-row { margin-top: 18px; padding-top: 18px; }
}
@media (max-width: 640px) {
  .nav-cta { display: none; }
  .contact-form { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: flex-start; }
  .form-note { text-align: left; }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
}
