@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/InstrumentSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/InstrumentSerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/JetBrainsMono.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #f3eee5;
  --surface: #faf7f0;
  --surface-2: #e9e1d3;
  --text: #26221e;
  --text-muted: #6e655a;
  --brick: #b0502f;
  --brick-dark: #7a4030;
  --brick-soft: #d4967c;
  --copper: #c97b4a;
  --btn: #3e5a48;
  --btn-dark: #2e4536;
  --graphite: #23201c;
  --graphite-soft: #3a362f;
  --light: #f1ebdf;
  --cream: #f8f3e8;
  --border: #d8cdbc;
  --border-strong: #a69a86;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-accent: "Instrument Serif", serif;
  --font-mono: "JetBrains Mono", monospace;
  --fs-display: clamp(2.1rem, 4.6vw, 3.6rem);
  --fs-h1: clamp(1.9rem, 4vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.3rem);
  --fs-h3: clamp(1.05rem, 1.6vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.85rem;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 28px;
  --space-lg: 48px;
  --space-xl: 80px;
  --radius-sm: 0px;
  --radius-md: 2px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 10px rgba(38, 34, 30, 0.08);
  --shadow-md: 0 10px 30px rgba(38, 34, 30, 0.12);
  --shadow-lg: 0 20px 50px rgba(38, 34, 30, 0.18);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(176, 80, 47, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}
main {
  flex: 1 0 auto;
  position: relative;
  z-index: 1;
}
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  color: inherit;
}
h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.12;
  font-weight: 700;
}
h1 {
  font-size: var(--fs-h1);
  margin: 14px 0 18px;
  letter-spacing: -0.01em;
}
h2 {
  font-size: var(--fs-h2);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
h3 {
  font-size: var(--fs-h3);
  letter-spacing: 0;
  color: #d4967c;
}
.accent, .accent-light {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
}
.accent {
  color: var(--brick);
}
.accent-light {
  color: #e8a184;
}
.wrap {
  width: min(1180px, 92%);
  margin-inline: auto;
  position: relative;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--graphite);
  color: var(--light);
  padding: 10px 18px;
  z-index: 200;
  font-family: var(--font-display);
  text-decoration: none;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}
:focus-visible {
  outline: 2px dashed var(--brick);
  outline-offset: 3px;
}
.overline {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brick);
  display: flex;
  align-items: center;
  gap: 12px;
}
.overline::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--brick);
  position: relative;
}
.overline::after {
  content: "◆";
  color: var(--brick);
  font-size: 0.5rem;
  margin-left: -4px;
}
.overline-light {
  color: #e8a184;
}
.overline-light::before, .overline-light::after {
  background: #e8a184;
  color: #e8a184;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 2px solid var(--graphite);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  width: 50px;
  height: 50px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
}
.logo-line1 {
  color: var(--text);
}
.logo-line2 {
  color: var(--brick);
}
.main-nav {
  display: flex;
  gap: 26px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 10px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  color: var(--brick);
  border-bottom-color: var(--brick);
}
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--graphite);
  color: var(--text);
  font-size: 1.4rem;
  width: 46px;
  height: 46px;
  cursor: pointer;
}
.hero {
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
}
.hero-brick {
  background-color: #8c4a32;
  background-image:
    linear-gradient(rgba(243, 238, 229, 0.92), rgba(243, 238, 229, 0.92)),
    linear-gradient(335deg, #7a4030 23px, transparent 23px),
    linear-gradient(155deg, #7a4030 23px, transparent 23px),
    linear-gradient(335deg, #7a4030 23px, transparent 23px),
    linear-gradient(155deg, #7a4030 23px, transparent 23px);
  background-size: auto, 58px 58px, 58px 58px, 58px 58px, 58px 58px;
  background-position: 0 0, 0 2px, 4px 35px, 29px 31px, 34px 6px;
}
.hero-brick::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(176, 80, 47, 0.15));
  pointer-events: none;
}
.hero-corner-mark {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--brick);
  pointer-events: none;
  z-index: 2;
}
.hero-corner-tl {
  top: 32px;
  left: 32px;
  border-right: none;
  border-bottom: none;
}
.hero-corner-br {
  bottom: 32px;
  right: 32px;
  border-left: none;
  border-top: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: var(--fs-display);
}
.lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 56ch;
  margin-bottom: 28px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 26px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-primary {
  background: var(--btn);
  color: var(--light);
  border-color: var(--btn);
}
.btn-primary:hover {
  background: var(--btn-dark);
  border-color: var(--btn-dark);
  box-shadow: var(--shadow-md);
}
.btn-brick {
  background: var(--brick);
  color: var(--light);
  border-color: var(--brick);
}
.btn-brick:hover {
  background: var(--brick-dark);
  border-color: var(--brick-dark);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--graphite);
}
.btn-ghost:hover {
  background: var(--graphite);
  color: var(--light);
}
.btn-full {
  width: 100%;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-sm);
}
.chip i {
  color: var(--brick);
}
.hero-figure {
  position: relative;
  border: 2px solid var(--graphite);
  aspect-ratio: 4 / 4.6;
  box-shadow: 14px 14px 0 var(--brick), -4px -4px 0 var(--graphite);
}
.float-chip {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  background: var(--graphite);
  color: var(--light);
  box-shadow: var(--shadow-md);
  animation: float-chip 4s ease-in-out infinite;
}
.chip-a {
  top: -18px;
  left: -18px;
}
.chip-b {
  bottom: -18px;
  right: -18px;
  background: var(--brick);
  animation-delay: -2s;
}
@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.section {
  padding: clamp(64px, 9vw, 108px) 0;
  position: relative;
}
.bg-surface {
  background: var(--surface);
}
.bg-surface2 {
  background: var(--surface-2);
  position: relative;
}
.bg-surface2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(166, 154, 134, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(166, 154, 134, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.bg-bg {
  background: var(--bg);
}
.bg-graphite {
  background: var(--graphite);
  color: var(--light);
  position: relative;
}
.bg-graphite::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232, 161, 132, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.section-numbered::before {
  content: attr(data-num);
  position: absolute;
  top: 40px;
  right: 4%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 1;
  color: rgba(176, 80, 47, 0.08);
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 0;
}
.section-numbered-light::before {
  color: rgba(241, 235, 223, 0.12);
}
.section-numbered > .wrap {
  position: relative;
  z-index: 1;
}
.section-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-lead {
  color: var(--text-muted);
  margin-top: 10px;
}
.light {
  color: var(--light);
}
.ruler {
  height: 24px;
  background:
    repeating-linear-gradient(90deg, var(--brick) 0 2px, transparent 2px 14px),
    repeating-linear-gradient(90deg, var(--graphite) 0 2px, transparent 2px 70px);
  background-size: 100% 10px, 100% 24px;
  background-position: bottom left, bottom left;
  background-color: var(--surface-2);
  position: relative;
}
.ruler::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--graphite);
}
.split-media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.split-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
.split-text p {
  color: var(--text-muted);
  margin-bottom: 14px;
}
.split-text h2 {
  margin-top: 12px;
}
.frame-figure {
  border: 2px solid var(--graphite);
  aspect-ratio: 4 / 3;
  box-shadow: 10px 10px 0 var(--brick), -3px -3px 0 var(--graphite);
  background: var(--surface-2);
  position: relative;
}
.frame-figure::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 1px dashed var(--border-strong);
  pointer-events: none;
  z-index: -1;
}
.brick-wall .frame-figure, .bg-graphite .frame-figure {
  box-shadow: 10px 10px 0 var(--light);
}
.grid-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 26px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 4px 4px 0 rgba(38, 34, 30, 0.08);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--brick);
  border-left: 2px solid var(--brick);
}
.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid var(--brick);
  border-right: 2px solid var(--brick);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 rgba(176, 80, 47, 0.25);
  border-color: var(--brick);
}
.card-wide {
  grid-column: span 2;
}
.card-icon {
  font-size: 1.7rem;
  color: var(--brick);
  display: inline-block;
  margin-bottom: 14px;
  position: relative;
  padding-left: 8px;
}
.card-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--brick);
  transform: translateY(-50%);
}
.card h3 {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.more-link {
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.more-link a {
  color: var(--brick);
  text-decoration: none;
  border-bottom: 2px solid var(--brick);
  padding-bottom: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.more-link a:hover {
  color: var(--graphite);
  border-color: var(--graphite);
}
.brick-wall {
  background-color: #8c4a32;
  background-image:
    linear-gradient(rgba(31, 26, 22, 0.82), rgba(31, 26, 22, 0.82)),
    linear-gradient(335deg, #7a4030 23px, transparent 23px),
    linear-gradient(155deg, #7a4030 23px, transparent 23px),
    linear-gradient(335deg, #7a4030 23px, transparent 23px),
    linear-gradient(155deg, #7a4030 23px, transparent 23px);
  background-size: auto, 58px 58px, 58px 58px, 58px 58px, 58px 58px;
  background-position: 0 0, 0 2px, 4px 35px, 29px 31px, 34px 6px;
  color: var(--light);
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}
.stat {
  border-left: 2px solid rgba(241, 235, 223, 0.35);
  padding-left: 20px;
  position: relative;
}
.stat::before {
  content: "◆";
  position: absolute;
  left: -8px;
  top: 4px;
  color: #e8a184;
  font-size: 0.7rem;
  background: #8c4a32;
  padding: 0 4px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  color: #e8a184;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(241, 235, 223, 0.85);
}
.brick-note {
  max-width: 70ch;
  color: rgba(241, 235, 223, 0.9);
  font-size: 1.02rem;
}
.brick-note-dark {
  margin-top: 26px;
  max-width: 70ch;
  color: var(--text-muted);
}
.flagship-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.flagship-list {
  list-style: none;
  margin: 20px 0 28px;
}
.flagship-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  position: relative;
  padding-left: 28px;
}
.flagship-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 2px;
  background: var(--brick);
}
.flagship-list i {
  color: var(--btn);
  font-size: 1.1rem;
  margin-top: 3px;
}
.flagship-visual {
  position: relative;
}
.price-plate {
  margin-top: 26px;
  background: var(--graphite);
  color: var(--light);
  border-top: 4px solid var(--brick);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}
.price-plate::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  width: 40px;
  height: 2px;
  background: var(--brick);
}
.price-plate::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 10px;
  width: 40px;
  height: 2px;
  background: var(--brick);
}
.price-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(241, 235, 223, 0.7);
}
.price-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: #e8a184;
  letter-spacing: -0.02em;
}
.price-note {
  font-size: 0.85rem;
  color: rgba(241, 235, 223, 0.7);
}
.values-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.value-card-new {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  overflow: hidden;
  box-shadow: 6px 6px 0 rgba(38, 34, 30, 0.08);
}
.value-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brick), var(--copper));
}
.value-card-new::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  background: var(--brick);
}
.value-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 10px 10px 0 rgba(176, 80, 47, 0.22);
  border-color: var(--brick);
}
.value-mark {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--brick);
  line-height: 1;
  border-right: 2px solid var(--border-strong);
  padding-right: 14px;
  text-align: center;
}
.value-body h3 {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.value-body h3::before {
  content: "—";
  color: var(--brick);
  font-weight: 400;
}
.value-body p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 14px;
}
.value-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.mono-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.showcase-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px;
  background: var(--graphite);
  border-top: 4px solid var(--brick);
  position: relative;
}
.showcase-footer::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(241, 235, 223, 0.25);
  pointer-events: none;
}
.showcase-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.showcase-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(241, 235, 223, 0.25);
}
.showcase-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: #e8a184;
  letter-spacing: -0.02em;
}
.showcase-stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 235, 223, 0.75);
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--brick);
  padding: 22px 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.step::after {
  content: "◆";
  position: absolute;
  top: -7px;
  right: 14px;
  color: var(--brick);
  font-size: 0.6rem;
  background: var(--surface);
  padding: 0 4px;
}
.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--brick);
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step h3 {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 26px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 4px 4px 0 rgba(38, 34, 30, 0.06);
}
.review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--brick);
  border-left: 2px solid var(--brick);
}
.review::after {
  content: "„";
  font-family: var(--font-accent);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--brick);
  position: absolute;
  top: 14px;
  right: 20px;
}
.review:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 rgba(176, 80, 47, 0.18);
}
.stars {
  color: var(--brick);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.review p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.review-name {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  padding-top: 10px;
  border-top: 1px dashed var(--border);
}
.review-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}
.cta-band {
  text-align: center;
  position: relative;
}
.cta-inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.cta-inner::before, .cta-inner::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(241, 235, 223, 0.25);
  pointer-events: none;
}
.cta-inner::before {
  top: -40px;
  left: -40px;
  border-right: none;
  border-bottom: none;
}
.cta-inner::after {
  bottom: -40px;
  right: -40px;
  border-left: none;
  border-top: none;
}
.cta-inner p {
  color: rgba(241, 235, 223, 0.8);
  margin: 14px 0 26px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.contact-lines {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-lines p {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 500;
}
.contact-lines i {
  color: var(--brick);
}
.contact-lines a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--brick);
  transition: color 0.25s ease;
}
.contact-lines a:hover {
  color: var(--brick);
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--brick);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 8px 8px 0 rgba(38, 34, 30, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px dashed var(--border);
  pointer-events: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--text);
  width: 100%;
  max-width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--btn);
  box-shadow: 0 0 0 3px rgba(62, 90, 72, 0.15);
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}
.consent input[type="checkbox"] {
  flex-shrink: 0;
  margin: 2px 0 0;
  accent-color: var(--btn);
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
}
.consent span {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}
.page-head-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.grid-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brick);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 4px 4px 0 rgba(38, 34, 30, 0.08);
  position: relative;
}
.detail-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--brick);
  border-right: 2px solid var(--brick);
}
.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 rgba(176, 80, 47, 0.2);
}
.detail-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.detail-head i {
  font-size: 1.5rem;
  color: var(--brick);
}
.detail-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
}
.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
}
.detail-list li::before {
  content: "◆";
  color: var(--brick);
  position: absolute;
  left: 2px;
  font-size: 0.55rem;
  top: 6px;
}
.table-wrap {
  overflow-x: auto;
  border: 2px solid var(--graphite);
  background: var(--surface);
  position: relative;
  box-shadow: 8px 8px 0 rgba(176, 80, 47, 0.3);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.price-table th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: left;
  padding: 16px 20px;
  background: var(--graphite);
  color: var(--light);
}
.price-table td {
  padding: 15px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.94rem;
}
.price-table td:last-child {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--brick);
  white-space: nowrap;
}
.price-table tbody tr {
  transition: background 0.25s ease;
}
.price-table tbody tr:hover {
  background: var(--surface-2);
}
.table-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}
.story-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.story-quote {
  background: var(--graphite);
  color: var(--light);
  border-top: 4px solid var(--brick);
  padding: 30px 26px;
  position: sticky;
  top: 100px;
  box-shadow: 8px 8px 0 rgba(176, 80, 47, 0.4);
}
.quote-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.45;
  margin-bottom: 18px;
}
.quote-name {
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #e8a184;
}
.quote-role {
  font-size: 0.8rem;
  color: rgba(241, 235, 223, 0.7);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-card {
  background: rgba(241, 235, 223, 0.06);
  border: 1px solid rgba(241, 235, 223, 0.25);
  padding: 26px 22px;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-top: 2px solid #e8a184;
  border-left: 2px solid #e8a184;
}
.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #e8a184;
  border-right: 2px solid #e8a184;
}
.value-card:hover {
  transform: translateY(-5px);
  background: rgba(241, 235, 223, 0.12);
}
.value-card i {
  font-size: 1.6rem;
  color: #e8a184;
  margin-bottom: 14px;
  display: inline-block;
}
.value-card h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.88rem;
  color: rgba(241, 235, 223, 0.82);
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.fact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--brick);
  padding: 24px 20px;
  position: relative;
  box-shadow: 4px 4px 0 rgba(38, 34, 30, 0.08);
}
.fact::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  background: var(--brick);
}
.fact-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--brick);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.fact p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  box-shadow: 3px 3px 0 rgba(38, 34, 30, 0.06);
}
.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--brick);
  border-left: 2px solid var(--brick);
  z-index: 1;
}
.faq-item[open] {
  border-color: var(--brick);
  box-shadow: 5px 5px 0 rgba(176, 80, 47, 0.18);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--brick);
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 0.94rem;
}
.info-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--btn);
  padding: 28px 26px;
  position: sticky;
  top: 100px;
  box-shadow: 6px 6px 0 rgba(38, 34, 30, 0.08);
}
.info-block p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 16px;
}
.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.info-list li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  align-items: flex-start;
  padding-left: 12px;
  position: relative;
}
.info-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--brick);
  font-size: 0.5rem;
}
.info-list i {
  color: var(--brick);
  margin-top: 2px;
}
.callout {
  background: var(--surface-2);
  border-left: 4px solid var(--brick);
  padding: 16px 18px;
  font-size: 0.9rem;
  position: relative;
}
.callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  right: 0;
  bottom: 0;
  border: 1px dashed var(--border);
  pointer-events: none;
}
.callout p {
  margin: 0;
}
.callout a {
  color: var(--brick);
}
.phases {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
}
.phase {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px 26px;
  align-items: start;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 4px 4px 0 rgba(38, 34, 30, 0.06);
  position: relative;
}
.phase::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: var(--brick);
}
.phase:hover {
  transform: translateX(8px);
  border-color: var(--brick);
  box-shadow: 8px 8px 0 rgba(176, 80, 47, 0.18);
}
.phase-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 2rem;
  color: var(--brick);
  border-right: 1px dashed var(--border);
  padding-right: 14px;
  letter-spacing: -0.02em;
}
.phase h3 {
  margin-bottom: 8px;
}
.phase p {
  color: var(--text-muted);
  font-size: 0.94rem;
}
.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.network-col {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 26px;
  position: relative;
  box-shadow: 4px 4px 0 rgba(38, 34, 30, 0.06);
}
.network-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--brick);
  border-left: 2px solid var(--brick);
}
.network-col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.network-col h3 i {
  color: var(--brick);
  font-size: 1.3rem;
}
.extra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.extra-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--btn);
  padding: 24px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  box-shadow: 4px 4px 0 rgba(38, 34, 30, 0.06);
}
.extra-card::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 5px;
  height: 5px;
  background: var(--btn);
}
.extra-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 rgba(62, 90, 72, 0.2);
}
.extra-card i {
  font-size: 1.5rem;
  color: var(--btn);
  margin-bottom: 12px;
  display: inline-block;
}
.extra-card h3 {
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.extra-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
}
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 4px 4px 0 rgba(38, 34, 30, 0.06);
}
.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--brick);
  border-left: 2px solid var(--brick);
  z-index: 2;
}
.case-card {
  position: relative;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 0 rgba(176, 80, 47, 0.22);
}
.case-card figure {
  aspect-ratio: 4 / 3;
  border-bottom: 3px solid var(--brick);
}
.case-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.case-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.thanks-card {
  max-width: 820px;
  margin-inline: auto;
  background: var(--surface);
  border: 2px solid var(--graphite);
  border-top: 5px solid var(--brick);
  box-shadow: 12px 12px 0 rgba(176, 80, 47, 0.25);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  position: relative;
}
.thanks-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed var(--border);
  pointer-events: none;
}
.thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--btn);
  color: var(--light);
  font-size: 2.1rem;
  margin-bottom: 18px;
  border: 3px solid var(--graphite);
}
.thanks-card .overline {
  justify-content: center;
}
.thanks-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}
.thanks-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
  margin-bottom: 26px;
}
.thanks-step {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 20px;
  position: relative;
}
.thanks-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--brick);
  border-left: 2px solid var(--brick);
}
.thanks-step h3 {
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.thanks-step p {
  font-size: 0.86rem;
  color: var(--text-muted);
}
.thanks-card .callout {
  text-align: left;
  margin-bottom: 26px;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  word-break: break-word;
}
.legal-content h1 {
  font-size: 2rem;
}
.legal-content h2 {
  font-size: 1.35rem;
  margin: 34px 0 12px;
}
.legal-content h2::before {
  content: "§ ";
  color: var(--brick);
}
.legal-content p {
  margin-bottom: 14px;
  color: var(--text-muted);
}
.legal-content a {
  color: var(--brick);
}
.legal-updated {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.legal-content .callout {
  margin: 24px 0;
}
.site-footer {
  margin-top: auto;
  background: var(--graphite);
  color: var(--light);
  padding-top: clamp(44px, 6vw, 72px);
  position: relative;
  z-index: 1;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--brick) 0 20px, var(--copper) 20px 40px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand p {
  color: rgba(241, 235, 223, 0.7);
  font-size: 0.92rem;
  margin-top: 16px;
  max-width: 34ch;
}
.footer-brand .logo-line1 {
  color: var(--light);
}
.footer-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #e8a184;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(232, 161, 132, 0.3);
}
.footer-nav, .footer-legal, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a, .footer-legal a {
  text-decoration: none;
  color: rgba(241, 235, 223, 0.8);
  font-size: 0.92rem;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
  padding-left: 12px;
  position: relative;
}
.footer-nav a::before, .footer-legal a::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--brick);
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #e8a184;
  border-color: #e8a184;
}
.footer-contact p {
  font-size: 0.92rem;
  color: rgba(241, 235, 223, 0.8);
}
.footer-contact a {
  color: rgba(241, 235, 223, 0.95);
  text-decoration: none;
  border-bottom: none;
  transition: color 0.25s ease;
}
.footer-contact a:hover {
  color: #e8a184;
}
.footer-bottom {
  border-top: 1px solid rgba(241, 235, 223, 0.15);
  padding: 22px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.disclaimer-text {
  font-size: 0.85rem;
  color: rgba(241, 235, 223, 0.55);
  max-width: 96ch;
}
.copyright {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(241, 235, 223, 0.7);
}
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  background: var(--btn);
  color: var(--light);
  border: 2px solid var(--graphite);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 90;
  box-shadow: 4px 4px 0 var(--brick);
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover {
  background: var(--btn-dark);
}
@media (max-width: 1020px) {
  .grid-services, .grid-detail, .reviews, .cases {
    grid-template-columns: 1fr 1fr;
  }
  .card-wide {
    grid-column: span 2;
  }
  .steps, .values-grid, .extra-grid, .about-facts {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-showcase {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--surface);
    border-bottom: 2px solid var(--graphite);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px 5vw;
    border-bottom: 1px solid var(--border);
    box-sizing: border-box;
  }
  .main-nav a:last-child {
    border-bottom: none;
  }
  .hero-grid, .split-media, .split-reverse, .flagship-grid, .contact-grid, .page-head-grid, .story-grid, .faq-grid, .network-grid {
    grid-template-columns: 1fr;
  }
  .story-quote, .info-block {
    position: static;
  }
  .hero-figure {
    max-width: 520px;
  }
  .hero-corner-mark {
    width: 40px;
    height: 40px;
  }
  .hero-corner-tl {
    top: 20px;
    left: 20px;
  }
  .hero-corner-br {
    bottom: 20px;
    right: 20px;
  }
}
@media (max-width: 640px) {
  .grid-services, .grid-detail, .reviews, .cases, .steps, .values-grid, .extra-grid, .about-facts, .stats-grid, .thanks-steps, .form-row, .values-showcase, .showcase-footer {
    grid-template-columns: 1fr;
  }
  .card-wide {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .phase {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .phase-num {
    border-right: none;
  }
  .disclaimer-text {
    font-size: 0.85rem;
  }
  .main-nav a {
    min-height: 44px;
  }
  .value-card-new {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .value-mark {
    border-right: none;
    border-bottom: 2px solid var(--border-strong);
    padding: 0 0 12px 0;
    text-align: left;
  }
  .showcase-stat:not(:last-child)::after {
    display: none;
  }
  .hero-corner-mark {
    display: none;
  }
  body::before {
    display: none;
  }
}
.grid-services > .card-fenster {
  grid-column: 3;
  grid-row: 1;
}
@media (max-width: 1020px) {
  .grid-services > .card-fenster {
    grid-column: auto;
    grid-row: auto;
  }
}
.legal-shell {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.legal-shell::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px dashed var(--border-strong);
  pointer-events: none;
}
.legal-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 5px solid var(--brick);
  box-shadow: 12px 12px 0 rgba(176, 80, 47, 0.14);
  padding: clamp(28px, 5vw, 60px) clamp(20px, 5vw, 64px);
}
.legal-card::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--brick);
  border-left: 2px solid var(--brick);
}
.legal-card::after {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 16px;
  height: 16px;
  border-bottom: 2px solid var(--brick);
  border-right: 2px solid var(--brick);
}
.legal-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--graphite);
  color: var(--light);
  padding: 7px 14px;
  box-shadow: 4px 4px 0 var(--brick);
}
.legal-card .legal-content {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
@media (max-width: 640px) {
  .legal-shell::before {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
  }
  .legal-card {
    box-shadow: 8px 8px 0 rgba(176, 80, 47, 0.14);
  }
  .legal-badge {
    right: 14px;
  }
}
[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}
[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}
[data-aos="zoom-in"]:not(.aos-animate) {
  transform: scale(0.95) !important;
}
@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .hero-grid > *,
  .split-media > *,
  .flagship-grid > *,
  .contact-grid > *,
  .story-grid > *,
  .faq-grid > *,
  .network-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .hero-figure {
    display: flex;
    flex-direction: column;
    gap: 10px;
    aspect-ratio: auto;
  }
  .hero-figure img {
    aspect-ratio: 4 / 4.6;
  }
  .float-chip,
  .chip-a,
  .chip-b {
    position: static;
    max-width: 100%;
    animation: none;
  }
  .logo {
    flex-direction: column;
  }
  .logo-text,
  .footer-brand,
  .footer-contact,
  .contact-lines {
    word-break: break-all;
  }
  .logo-text {
    min-width: 0;
    flex: 1;
  }
  .table-wrap {
    overflow-x: visible;
  }
  .price-table {
    min-width: 0;
  }
  .price-table thead {
    display: none;
  }
  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }
  .price-table tr {
    border-top: 1px solid var(--border);
    padding: 12px 0;
  }
  .price-table td {
    border-top: none;
    padding: 4px 16px;
  }
  .price-table td::before {
    content: attr(data-label);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
  }
  input, select, textarea, button, .btn {
    max-width: 100%;
  }
  .form-card input:not([type="checkbox"]),
  .form-card select,
  .form-card textarea,
  .form-card .btn {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .wrap {
    padding-left: 12px;
    padding-right: 12px;
  }
  .form-card {
    padding: 16px;
  }
  .section {
    padding: 48px 0;
  }
  h1, .fs-display {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
}
