:root {
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  --bg: #f2eee7;
  --bg-soft: #f7f3ed;
  --surface: #f5f0e8;
  --surface-2: #e9e1d5;
  --text: #292520;
  --muted: #6a6258;
  --line: #d7ccbe;
  --wood: #9a7a5e;
  --shadow: 0 24px 56px rgba(47, 39, 31, 0.08);
  --radius: 22px;
  --container: min(
    1180px,
    calc(100% - clamp(28px, 5vw, 56px) - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  --section-gap: clamp(68px, 9.2vw, 120px);
  --space-2xs: clamp(8px, 1vw, 10px);
  --space-xs: clamp(12px, 1.4vw, 16px);
  --space-sm: clamp(18px, 1.8vw, 24px);
  --space-md: clamp(24px, 2.6vw, 34px);
  --space-lg: clamp(34px, 3.8vw, 52px);
  --space-xl: clamp(48px, 5vw, 76px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
  overflow-x: clip;
}

html {
  scroll-behavior: auto;
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 252, 0.65) 0%, rgba(255, 255, 252, 0) 38%),
    radial-gradient(circle at 82% 4%, rgba(233, 225, 213, 0.55) 0%, rgba(233, 225, 213, 0) 35%),
    linear-gradient(125deg, #f7f2ea 0%, var(--bg-soft) 38%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

body.no-anim,
body.no-anim * ,
body.no-anim *::before,
body.no-anim *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease, filter 0.55s ease, transform 0.55s ease;
}

.site-loader__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 13, 10, 0.74);
  backdrop-filter: blur(10px) saturate(112%);
}

.site-loader__shell {
  position: relative;
  display: grid;
  place-items: center;
  min-width: min(100%, 280px);
  min-height: min(100%, 280px);
  isolation: isolate;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(10px);
  transform: scale(0.985);
}

.site-loader__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(144px, 24vw, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(249, 242, 231, 0.22) 0%, rgba(243, 233, 219, 0.12) 32%, rgba(243, 233, 219, 0.04) 56%, rgba(243, 233, 219, 0) 78%);
  filter: blur(18px);
  opacity: 0.92;
  animation: loader-glow 2.8s ease-in-out infinite;
}

.site-loader__mark {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: clamp(14px, 2.6vw, 18px);
  padding: clamp(22px, 3vw, 30px);
}

.site-loader__spinner {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(58px, 8vw, 72px);
  aspect-ratio: 1;
}

.site-loader__spinner::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(247, 240, 231, 0.1);
}

.site-loader__spinner-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid rgba(246, 240, 232, 0.16);
  border-top-color: rgba(255, 249, 241, 0.96);
  border-right-color: rgba(223, 197, 166, 0.88);
  animation: loader-spin 1.15s cubic-bezier(0.42, 0, 0.22, 1) infinite;
}

.site-loader__name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.32rem);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(248, 241, 232, 0.94);
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loader-glow {
  0%,
  100% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(0.96);
  }

  50% {
    opacity: 0.96;
    transform: translate(-50%, -50%) scale(1);
  }
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-gap);
}

.kicker {
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
}

h1,
h2,
h3,
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 5rem);
  line-height: 0.95;
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  line-height: 0.98;
  font-weight: 600;
}

h3 {
  font-size: clamp(1.35rem, 3.2vw, 1.9rem);
  line-height: 1.06;
  font-weight: 600;
}

p {
  color: var(--muted);
  line-height: 1.8;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  color: #f4efe8;
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.header::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: clamp(56px, 9vw, 110px);
  pointer-events: none;
  background:
    radial-gradient(68% 120% at 50% 0%, rgba(250, 245, 238, 0.42) 0%, rgba(250, 245, 238, 0) 72%),
    linear-gradient(180deg, rgba(246, 240, 232, 0.26) 0%, rgba(246, 240, 232, 0.14) 36%, rgba(246, 240, 232, 0) 100%);
  opacity: 0.95;
  transition: opacity 0.35s ease, background 0.35s ease;
}

/* Kitchen planner mobile fallback */
.planner-blocked {
  padding-top: calc(var(--section-gap) + 76px);
}

.planner-blocked__panel {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 34px);
  border-radius: clamp(18px, 4vw, 26px);
  border: 1px solid rgba(215, 204, 190, 0.82);
  background:
    radial-gradient(120% 120% at 12% 18%, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(140deg, rgba(245, 240, 232, 0.92) 0%, rgba(233, 225, 213, 0.66) 100%);
  box-shadow: var(--shadow);
}

.planner-blocked__lead {
  margin-top: 10px;
  font-size: clamp(1.02rem, 2.8vw, 1.15rem);
}

.planner-blocked__tips {
  margin-top: var(--space-sm);
  padding: clamp(14px, 2.8vw, 18px);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(215, 204, 190, 0.72);
}

.planner-blocked__tips strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.planner-blocked__tips ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.planner-blocked__tips li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.planner-blocked__tips li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(154, 122, 94, 0.85);
  transform: translateY(-50%);
}

.planner-blocked__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-md);
}

.header.is-hidden {
  transform: translateY(-100%);
}

.header.is-solid {
  background: rgba(247, 242, 234, 0.96);
  color: var(--text);
  border-bottom-color: rgba(215, 204, 190, 0.68);
}

.header.is-solid::after {
  background:
    radial-gradient(72% 120% at 50% 0%, rgba(255, 251, 245, 0.72) 0%, rgba(255, 251, 245, 0) 76%),
    linear-gradient(180deg, rgba(247, 242, 234, 0.92) 0%, rgba(247, 242, 234, 0.52) 42%, rgba(247, 242, 234, 0) 100%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-height: 88px;
}

.brand {
  display: grid;
  gap: 4px;
}

.brand__name {
  font-size: 1.55rem;
}

.brand__city {
  font-size: 0.71rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.72;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: currentColor;
  opacity: 0.92;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 2px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: currentColor;
  white-space: nowrap;
  opacity: 0.92;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.header__phone:hover {
  opacity: 1;
}

.header.is-solid .header__phone:hover {
  color: #2a2520;
}

.hero {
  min-height: 100svh;
  padding: 0;
  background: #d8cec0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: #2a2520;
  color: #f6f1ea;
  border-color: #2a2520;
}

.btn--ghost {
  border-color: #cdbfad;
  color: #38322c;
  background: rgba(255, 255, 255, 0.28);
}

.btn--cta {
  border-color: rgba(126, 97, 68, 0.72);
  background: #d9bf9a;
  color: #1a1510;
  box-shadow: 0 16px 34px rgba(45, 38, 32, 0.18);
}

.btn--cta:hover {
  transform: translateY(-1px);
  background: #e6cfad;
  border-color: rgba(126, 97, 68, 0.82);
  box-shadow: 0 18px 40px rgba(45, 38, 32, 0.22);
}

.btn--cta:focus-visible {
  outline: none;
  box-shadow:
    0 18px 40px rgba(45, 38, 32, 0.2),
    0 0 0 4px rgba(217, 191, 154, 0.34);
}

.hero .btn--cta {
  border-color: rgba(126, 97, 68, 0.72);
  background: #d9bf9a;
  color: #1a1510;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
}

.hero__visual {
  margin: 0;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #dbd2c4;
}

.hero__visual img,
.project img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.95) brightness(0.97) sepia(0.06);
}

.hero__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  filter: saturate(0.72) contrast(0.9) brightness(0.72) sepia(0.1);
}

.hero__visual > picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero__visual > picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  filter: saturate(0.72) contrast(0.9) brightness(0.72) sepia(0.1);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: none;
}

.hero__layout {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  padding-top: 146px;
  padding-bottom: var(--space-lg);
}

.hero__stage {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: var(--space-lg);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-md);
  align-content: center;
  justify-items: center;
}

.hero__mobile-cta {
  display: none;
  width: min(460px, 100%);
}

.hero__discuss-cta {
  width: 100%;
  min-height: 54px;
}

.hero__copy {
  display: grid;
  align-content: center;
  justify-items: center;
  max-width: min(860px, 100%);
  margin-inline: auto;
  gap: var(--space-xs);
  color: #f4efe8;
  text-align: center;
}

.hero .kicker {
  margin-bottom: 0;
  color: rgba(244, 239, 232, 0.76);
}

.hero__intro {
  max-width: 42ch;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: rgba(244, 239, 232, 0.72);
}

.hero h1 {
  max-width: 9ch;
  margin-inline: auto;
  text-wrap: balance;
}

.hero__lead {
  margin-top: 0;
  max-width: 46ch;
  font-size: clamp(1.02rem, 1.9vw, 1.18rem);
  line-height: 1.88;
  color: rgba(244, 239, 232, 0.82);
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.hero__works-cta {
  min-width: clamp(220px, 34vw, 320px);
  padding-inline: clamp(22px, 3vw, 30px);
}

.hero__rail {
  display: grid;
  justify-items: center;
  gap: var(--space-sm);
  align-items: end;
  width: min(980px, 100%);
  margin-inline: auto;
  padding-top: var(--space-sm);
}

.hero__proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xs);
  width: 100%;
}

.hero-proof {
  position: relative;
  display: grid;
  gap: var(--space-2xs);
  justify-items: center;
  align-content: center;
  min-width: 0;
  min-height: 138px;
  padding: 22px 16px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 0%, rgba(229, 197, 158, 0.16), rgba(229, 197, 158, 0) 58%);
}

.hero-proof::before,
.hero-proof::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(229, 197, 158, 0), rgba(229, 197, 158, 0.92), rgba(229, 197, 158, 0));
}

.hero-proof::before {
  top: 0;
}

.hero-proof::after {
  bottom: 0;
}

.hero-proof__value {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.8vw, 2.7rem);
  line-height: 0.95;
  color: #f6eee2;
}

.hero-proof__label {
  max-width: 18ch;
  font-size: 0.84rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-transform: none;
  color: rgba(244, 239, 232, 0.72);
  text-align: center;
}

.hero .btn--primary:not(.btn--cta) {
  background: rgba(20, 18, 16, 0.72);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #f6f1ea;
  background: rgba(255, 255, 255, 0.08);
}

.hero .btn--cta,
.hero .btn--primary.btn--cta {
  background: #d9bf9a;
  border-color: rgba(126, 97, 68, 0.72);
  color: #1a1510;
}

.hero__caption {
  font-size: 0.82rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: rgba(244, 239, 232, 0.66);
  max-width: none;
  text-align: center;
}

.hero-quiz {
  width: min(360px, 100%);
  display: grid;
  gap: 12px;
  padding: 14px 13px 13px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px) saturate(118%);
  color: rgba(244, 239, 232, 0.9);
}

.hero-quiz__head {
  display: grid;
  gap: 4px;
}

.hero-quiz__title {
  font-family: var(--font-display);
  font-size: 1.06rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: rgba(246, 238, 226, 0.96);
}

.hero-quiz__meta {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(244, 239, 232, 0.7);
}

.hero-quiz__fields {
  display: grid;
  gap: 8px;
}

.hero-quiz__field {
  display: grid;
  gap: 5px;
}

.hero-quiz__label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 239, 232, 0.66);
}

.hero-quiz__control {
  width: 100%;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 12, 10, 0.36);
  color: rgba(246, 238, 226, 0.94);
  outline: none;
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-quiz__control::placeholder {
  color: rgba(244, 239, 232, 0.52);
}

.hero-quiz__control:focus-visible {
  border-color: rgba(217, 191, 154, 0.84);
  background: rgba(15, 12, 10, 0.48);
  box-shadow: 0 0 0 3px rgba(217, 191, 154, 0.16);
}

.hero-quiz__control[aria-invalid="true"],
.hero-quiz.is-submitted .hero-quiz__control:invalid {
  border-color: rgba(255, 180, 167, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 180, 167, 0.1);
}

textarea.hero-quiz__control.hero-quiz__control--multiline {
  min-height: 56px;
  padding: 9px 13px;
  border-radius: 14px;
  resize: vertical;
  line-height: 1.4;
  font-size: 0.88rem;
}

.hero-quiz__actions {
  display: grid;
  gap: 7px;
}

.lead-quiz__social {
  display: grid;
  gap: 6px;
}

.hero-quiz .hero-quiz__submit.btn {
  width: 100%;
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(45, 38, 32, 0.14);
}

.hero-quiz__submit {
  width: 100%;
}

.hero-quiz__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(246, 238, 226, 0.9);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 12px;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-quiz__link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(217, 191, 154, 0.48);
}

.lead-quiz--contact {
  border-color: rgba(205, 191, 173, 0.88);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg, rgba(250, 246, 239, 0.96) 0%, rgba(236, 227, 215, 0.9) 100%);
  box-shadow: 0 14px 36px rgba(45, 38, 32, 0.1);
  backdrop-filter: none;
  color: var(--text);
}

.lead-quiz--contact .hero-quiz__title {
  color: #2c2621;
}

.lead-quiz--contact .hero-quiz__meta,
.lead-quiz--contact .hero-quiz__label,
.lead-quiz--contact .hero-quiz__note,
.lead-quiz--contact .hero-quiz__status {
  color: rgba(74, 67, 59, 0.82);
}

.lead-quiz--contact .hero-quiz__control {
  border-color: rgba(205, 191, 173, 0.92);
  background: rgba(255, 255, 255, 0.72);
  color: #2c2621;
}

.lead-quiz--contact .hero-quiz__control::placeholder {
  color: rgba(74, 67, 59, 0.6);
}

.lead-quiz--contact .hero-quiz__link {
  border-color: rgba(205, 191, 173, 0.92);
  background: rgba(255, 255, 255, 0.74);
  color: rgba(74, 67, 59, 0.92);
}

.lead-quiz--contact .hero-quiz__link:hover {
  background: rgba(238, 230, 220, 0.78);
  border-color: rgba(183, 157, 126, 0.72);
}

.hero-quiz__note {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(244, 239, 232, 0.62);
}

.hero-quiz__status {
  min-height: 16px;
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(244, 239, 232, 0.72);
}

.hero-quiz__status.is-success {
  color: rgba(217, 191, 154, 0.92);
}

.manifesto__panel {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(18px, 2.2vw, 32px) 0 0;
  text-align: center;
}

.manifesto__grid {
  display: grid;
  gap: var(--space-md);
  align-items: start;
}

.manifesto__copy {
  display: grid;
  gap: var(--space-md);
  align-items: start;
}

.manifesto__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(47, 39, 31, 0.06);
  aspect-ratio: 16 / 9;
}

.manifesto__figure picture {
  display: block;
  width: 100%;
  height: 100%;
}

.manifesto__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.manifesto__text {
  display: grid;
  gap: var(--space-sm);
  justify-items: center;
  text-align: center;
}

.manifesto__headline-accent {
  color: var(--wood);
}

.manifesto__cta {
  margin-top: 4px;
}

.manifesto__panel .manifesto__text p {
  margin: 0;
  max-width: 60ch;
  margin-inline: auto;
}

.manifesto__points {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.manifesto__points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(205, 191, 173, 0.66);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(145deg, rgba(248, 243, 236, 0.92), rgba(233, 223, 209, 0.76));
  text-align: left;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.manifesto__points li:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 157, 126, 0.55);
  box-shadow: 0 14px 32px rgba(47, 39, 31, 0.07);
}

.manifesto__point-index {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(106, 98, 88, 0.72);
  line-height: 1.4;
  padding-top: 0.2em;
}

.manifesto__point-body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.manifesto__points strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: #2c2621;
}

.manifesto__point-body span {
  color: var(--muted);
  line-height: 1.7;
}

.section__head {
  display: grid;
  gap: var(--space-xs);
  margin-bottom: clamp(34px, 4.2vw, 48px);
}

.section__title {
  max-width: 18ch;
}

.section__text {
  max-width: 68ch;
  color: var(--muted);
}

.section__head--center {
  justify-items: center;
  text-align: center;
}

.section__head--center .section__title {
  max-width: 16ch;
}

.section__head--center .section__text {
  margin-top: 2px;
  max-width: 52ch;
}

.projects {
  padding-top: clamp(64px, 7.5vw, 112px);
}

.projects__intro {
  display: grid;
  gap: var(--space-sm);
  margin-bottom: clamp(28px, 5vw, 56px);
  padding-bottom: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid rgba(159, 142, 123, 0.24);
}

.projects__headline {
  display: grid;
  gap: 8px;
  max-width: 16ch;
}

.projects__lede {
  display: grid;
  gap: 16px;
  max-width: 38ch;
  justify-items: start;
}

.projects__catalog-link,
.project__caption em {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4e4338;
}

.projects__catalog-link::after,
.project__caption em::after {
  content: "→";
  transition: transform 0.25s ease;
}

.projects__catalog-link:hover::after,
.projects__catalog-link:focus-visible::after,
.project__link:hover .project__caption em::after,
.project__link:focus-visible .project__caption em::after {
  transform: translateX(4px);
}

.projects-showcase {
  display: grid;
  gap: 22px;
}

.projects-showcase__rail {
  display: grid;
  gap: 22px;
}

.project {
  margin: 0;
  min-width: 0;
}

.project__link,
.project__empty {
  display: grid;
  color: inherit;
}

.project__link--showcase {
  gap: 14px;
}

.project__media {
  overflow: clip;
  background: rgba(229, 220, 209, 0.76);
}

.project__media--featured {
  aspect-ratio: 1.28;
}

.project__media--compact {
  aspect-ratio: 1.42;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease, filter 0.35s ease;
}

.project__link:hover img,
.project__link:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.03);
}

.project__caption {
  display: grid;
  gap: 8px;
}

.project__caption--featured {
  max-width: 34rem;
}

.project__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7c7165;
}

.project__caption strong {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.9rem);
  line-height: 0.94;
  color: var(--text);
  font-weight: 600;
}

.project__summary {
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.65;
}

.project--compact .project__caption strong {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.project--empty {
  display: flex;
}

.project__empty {
  gap: 10px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(205, 191, 173, 0.78);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(150deg, rgba(248, 243, 236, 0.94) 0%, rgba(233, 223, 209, 0.82) 100%);
}

.project__empty strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1;
  color: var(--text);
  font-weight: 600;
}

.project__empty span {
  max-width: 30ch;
  color: var(--muted);
  line-height: 1.6;
}

.projects__meta {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin-top: clamp(30px, 5vw, 50px);
}

.projects__note {
  max-width: 46ch;
  text-align: center;
}

.projects__instagram {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(205, 191, 173, 0.82);
  background:
    linear-gradient(135deg, rgba(250, 246, 239, 0.94), rgba(236, 226, 214, 0.82));
  box-shadow: 0 14px 28px rgba(45, 38, 32, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.projects__instagram:hover {
  transform: translateY(-1px);
  border-color: #b79d7e;
  box-shadow: 0 18px 32px rgba(45, 38, 32, 0.1);
}

.projects__instagram-copy {
  display: grid;
  gap: 2px;
}

.projects__instagram-copy strong {
  font-size: 0.88rem;
  line-height: 1.2;
  color: #2c2621;
  font-weight: 600;
}

.projects__instagram-copy span {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #756b61;
}

.principles__list {
  display: grid;
  gap: var(--space-xs);
}

.principle {
  padding: clamp(24px, 3vw, 32px);
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(247, 242, 235, 0.72);
}

.principle p {
  margin-top: var(--space-2xs);
  max-width: 52ch;
}

.fit {
  padding-top: clamp(28px, 4vw, 64px);
}

.testimonials {
  padding-top: clamp(30px, 5vw, 74px);
  padding-bottom: clamp(30px, 5vw, 74px);
}

.testimonials__reveal {
  margin-top: clamp(18px, 3.8vw, 34px);
}

.testimonials__field {
  position: relative;
}

.testimonials__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 2px 2px 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonials__track::-webkit-scrollbar {
  height: 10px;
}

.testimonials__track::-webkit-scrollbar-track {
  background: rgba(205, 191, 173, 0.22);
  border-radius: 999px;
}

.testimonials__track::-webkit-scrollbar-thumb {
  background: rgba(154, 122, 94, 0.34);
  border-radius: 999px;
}

.testimonial-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  padding: 22px 22px 18px;
  border-radius: 18px;
  border: 1px solid rgba(205, 191, 173, 0.78);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(45, 38, 32, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  min-height: 240px;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 122, 94, 0.56);
  box-shadow: 0 22px 44px rgba(45, 38, 32, 0.1);
}

.testimonial-card__quote {
  margin: 0;
  color: #2c2621;
  line-height: 1.8;
  font-size: 1.02rem;
}

.testimonial-card__footer {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(205, 191, 173, 0.84);
  background: linear-gradient(145deg, rgba(252, 247, 240, 0.98), rgba(233, 218, 200, 0.86));
  box-shadow: 0 12px 22px rgba(45, 38, 32, 0.08);
  display: grid;
  place-items: center;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-card__avatar-fallback {
  font-size: 0.96rem;
  font-weight: 700;
  color: rgba(108, 76, 51, 0.9);
  font-family: var(--font-display);
}

.testimonial-card__who {
  display: grid;
  gap: 2px;
}

.testimonial-card__who strong {
  font-size: 0.9rem;
  line-height: 1.2;
  color: #2c2621;
  font-weight: 650;
}

.testimonial-card__who span {
  font-size: 0.78rem;
  color: rgba(106, 98, 88, 0.78);
  line-height: 1.25;
}

@media (min-width: 900px) {
  .testimonials__track {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-columns: unset;
    overflow: visible;
    scroll-snap-type: none;
  }

  .testimonial-card {
    min-height: 260px;
  }
}

.fit-grid {
  display: grid;
  gap: var(--space-xs);
}

.fit-card {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 3vw, 32px);
  padding-top: clamp(28px, 3.2vw, 36px);
  border-radius: 22px;
  border: 1px solid rgba(205, 191, 173, 0.78);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(150deg, rgba(248, 243, 236, 0.94) 0%, rgba(233, 223, 209, 0.82) 100%);
  box-shadow: 0 18px 34px rgba(45, 38, 32, 0.06);
  overflow: hidden;
}

.fit-card--accent {
  border-color: rgba(154, 122, 94, 0.42);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(148deg, rgba(252, 247, 240, 0.98) 0%, rgba(233, 218, 200, 0.88) 100%);
  box-shadow: 0 20px 40px rgba(45, 38, 32, 0.08);
}

.fit-card__hint {
  margin: 0 0 10px;
  max-width: 42ch;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(106, 98, 88, 0.78);
}

.fit-card--accent .fit-card__hint {
  color: rgba(154, 122, 94, 0.92);
}

.fit-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.45rem, 3.4vw, 1.9rem);
}

.fit-card p {
  position: relative;
  z-index: 1;
  margin-top: var(--space-2xs);
  max-width: 42ch;
}

.fit-card--slot-1::before,
.fit-card--slot-2::before,
.fit-card--slot-3::before,
.fit-card--slot-4::before {
  content: "";
  position: absolute;
  top: clamp(18px, 2.4vw, 26px);
  right: clamp(18px, 2.4vw, 26px);
  width: 36px;
  height: 36px;
  opacity: 0.22;
  pointer-events: none;
}

.fit-card--slot-1::before {
  background: var(--wood);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.fit-card--slot-2::before {
  width: 40px;
  height: 5px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(154, 122, 94, 0.5), rgba(154, 122, 94, 0.12));
}

.fit-card--slot-3::before {
  border-radius: 50%;
  border: 3px solid rgba(154, 122, 94, 0.45);
  background: transparent;
  opacity: 0.35;
}

.fit-card--slot-4::before {
  width: 34px;
  height: 34px;
  opacity: 0.2;
  background:
    linear-gradient(var(--wood), var(--wood)) 0 0 / 12px 12px no-repeat,
    linear-gradient(var(--wood), var(--wood)) 22px 0 / 12px 12px no-repeat,
    linear-gradient(var(--wood), var(--wood)) 0 22px / 12px 12px no-repeat,
    linear-gradient(var(--wood), var(--wood)) 22px 22px / 12px 12px no-repeat;
}

.directions__scaffold {
  position: relative;
}

.directions__thread--desktop {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  color: rgba(183, 157, 126, 0.48);
  opacity: 0.92;
}

.directions__thread--desktop .directions__thread-path {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  opacity: 1;
  transition: none;
}

.directions__thread--mobile {
  display: none;
  position: absolute;
  left: 8px;
  top: clamp(20px, 5vw, 40px);
  bottom: clamp(20px, 5vw, 40px);
  width: 2px;
  z-index: 0;
  pointer-events: none;
}

.directions__thread-mobile__bar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1px;
  background: linear-gradient(180deg, rgba(215, 204, 190, 0.35) 0%, rgba(183, 157, 126, 0.55) 48%, rgba(215, 204, 190, 0.4) 100%);
  transform: scaleY(1);
  transform-origin: center top;
}

.directions__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-sm);
  min-width: 0;
}

.directions {
  padding-top: clamp(28px, 4vw, 64px);
}

.directions .direction {
  position: relative;
  display: grid;
  gap: var(--space-2xs);
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: 28px;
  border: 1px solid rgba(205, 191, 173, 0.78);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(150deg, rgba(248, 243, 236, 0.94) 0%, rgba(233, 223, 209, 0.82) 100%);
  box-shadow: 0 18px 34px rgba(45, 38, 32, 0.06);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.direction__stage {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: clamp(132px, 22vw, 158px);
  padding: 18px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(22, 20, 18, 0.94), rgba(12, 11, 10, 0.96));
}

.direction__stage-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.direction__stage-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.direction__stage-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.direction__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(10, 9, 8, 0.88) 0%, rgba(10, 9, 8, 0.38) 45%, rgba(10, 9, 8, 0.14) 100%),
    radial-gradient(circle at 78% 22%, rgba(203, 172, 130, 0.2) 0%, rgba(203, 172, 130, 0) 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 42%);
}

.direction__stage::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(217, 191, 154, 0.75));
  pointer-events: none;
}

.direction__stage--kitchen,
.direction__stage--storage,
.direction__stage--interior {
  background: linear-gradient(145deg, rgba(22, 20, 18, 0.94), rgba(12, 11, 10, 0.96));
}

.direction__index,
.direction__accent {
  position: relative;
  z-index: 2;
}

.direction__index {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.1rem);
  line-height: 0.9;
  color: rgba(248, 243, 236, 0.94);
}

.direction__accent {
  align-self: end;
  max-width: 14ch;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 243, 236, 0.62);
}

.directions .direction h3 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.directions .direction p {
  max-width: 34ch;
}

@media (max-width: 759px) {
  .directions__scaffold {
    padding-left: 22px;
  }

  .directions__grid {
    gap: var(--space-xs);
  }

  .directions__thread--mobile {
    display: block;
  }

  .directions__grid .direction::before {
    content: "";
    position: absolute;
    left: -18px;
    top: calc(clamp(18px, 2.4vw, 28px) + clamp(66px, 11vw, 79px));
    width: 9px;
    height: 9px;
    margin-top: -4px;
    border-radius: 50%;
    background: var(--bg);
    border: 1.5px solid rgba(154, 122, 94, 0.55);
    box-shadow: 0 0 0 1px rgba(242, 238, 231, 0.95);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.65);
    transform-origin: center;
  }

  .directions__reveal[data-reveal].is-visible .directions__scaffold .directions__grid .direction:nth-child(1)::before {
    animation: directions-mobile-node 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.35s;
  }

  .directions__reveal[data-reveal].is-visible .directions__scaffold .directions__grid .direction:nth-child(2)::before {
    animation: directions-mobile-node 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.55s;
  }

  .directions__reveal[data-reveal].is-visible .directions__scaffold .directions__grid .direction:nth-child(3)::before {
    animation: directions-mobile-node 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.75s;
  }
}

@media (min-width: 760px) {
  .directions__thread--desktop {
    display: block;
  }

  .directions__scaffold .directions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    gap: clamp(14px, 2vw, 22px);
    align-items: start;
  }

  .directions__scaffold .direction:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: 100%;
    max-width: min(400px, 92%);
  }

  .directions__scaffold .direction:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    width: 100%;
    max-width: min(400px, 92%);
  }

  .directions__scaffold .direction:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    width: 100%;
    max-width: min(400px, 92%);
  }
}

@media (min-width: 760px) {
  .directions .direction:hover,
  .directions .direction:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 26px 52px rgba(45, 38, 32, 0.1);
    border-color: rgba(183, 157, 126, 0.48);
  }
}

@media (prefers-reduced-motion: reduce) {
  .directions .direction {
    transition: border-color 0.01ms, box-shadow 0.01ms;
  }

  .directions .direction:hover,
  .directions .direction:focus-within {
    transform: none;
  }
}

.contact {
  padding-bottom: clamp(56px, 8.5vw, 108px);
}

.contact__panel {
  display: grid;
  gap: var(--space-md);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid #d6cab9;
  border-radius: 26px;
  background: linear-gradient(145deg, #f8f4ed 0%, #e9dfd1 100%);
  box-shadow: var(--shadow);
}

.contact__panels {
  display: grid;
  gap: var(--space-sm);
}

.contact__panel--desktop {
  display: none;
}

.contact__panel--mobile {
  display: grid;
}

.contact__mobile-top {
  display: grid;
  gap: var(--space-md);
  align-items: start;
}

.contact__panel.is-highlighted {
  border-color: rgba(183, 157, 126, 0.9);
  box-shadow:
    var(--shadow),
    0 0 0 6px rgba(217, 191, 154, 0.22);
}

body.lead-success-modal-open {
  overflow: hidden;
}

.lead-success-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.lead-success-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lead-success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 18, 14, 0.52);
  backdrop-filter: blur(8px) saturate(108%);
}

.lead-success-modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: clamp(28px, 5vw, 40px);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(214, 202, 185, 0.95);
  background:
    linear-gradient(155deg, rgba(255, 252, 247, 0.97) 0%, rgba(245, 238, 228, 0.98) 48%, rgba(236, 226, 212, 0.99) 100%);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  text-align: center;
  transform: translateY(14px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.lead-success-modal.is-open .lead-success-modal__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lead-success-modal__mark {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: rgba(126, 97, 68, 0.92);
}

.lead-success-modal__check {
  display: block;
}

.lead-success-modal__kicker {
  margin-bottom: 10px;
  color: rgba(106, 98, 88, 0.88);
}

.lead-success-modal__heading {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.lead-success-modal__lead {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: var(--space-xs);
  text-wrap: balance;
}

.lead-success-modal__note {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(106, 98, 88, 0.9);
  margin-bottom: var(--space-md);
  text-wrap: balance;
}

.lead-success-modal__action {
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  .lead-success-modal,
  .lead-success-modal__card {
    transition: none;
  }

  .lead-success-modal__card {
    transform: none;
    opacity: 1;
  }

  .lead-success-modal:not(.is-open) .lead-success-modal__card {
    opacity: 0;
  }
}

.contact__copy p {
  margin-top: var(--space-xs);
  max-width: 64ch;
}

.contact__links {
  display: grid;
  gap: var(--space-2xs);
}

.contact__quiz {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid #d6cab9;
  padding: 0 20px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4a433b;
  background: rgba(250, 246, 239, 0.72);
  transition: background-color 0.28s ease, border-color 0.28s ease;
}

.contact__links a:hover {
  background: rgba(238, 230, 220, 0.82);
  border-color: #bba991;
}

.contact__panel--mobile .contact__links a[href^="tel"] {
  border-color: rgba(126, 97, 68, 0.62);
  background: #d9bf9a;
  color: #1a1510;
  box-shadow: 0 16px 34px rgba(45, 38, 32, 0.12);
}

.contact__panel--mobile .contact__links a[href^="tel"]:hover {
  background: #e6cfad;
  border-color: rgba(126, 97, 68, 0.72);
}

@media (min-width: 900px) {
  .contact__panel--desktop {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    align-items: center;
  }

  .contact__panel--mobile {
    display: none;
  }
}

@media (min-width: 760px) and (max-width: 899px) {
  .contact__mobile-top {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    align-items: center;
  }

  .contact__quiz {
    max-width: 460px;
    justify-self: end;
  }

  .contact__links {
    justify-self: end;
  }
}

.seo-section {
  padding-top: clamp(22px, 3vw, 34px);
}

.seo-panel,
.seo-card,
.legal-panel {
  border: 1px solid rgba(205, 191, 173, 0.76);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, rgba(248, 243, 236, 0.98), rgba(233, 223, 209, 0.86));
  box-shadow: 0 18px 40px rgba(45, 38, 32, 0.08);
}

.seo-panel,
.legal-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.seo-panel__grid,
.seo-grid,
.legal-panel {
  display: grid;
  gap: 18px;
}

.seo-grid--2,
.seo-grid--3,
.seo-grid--4 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.seo-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.seo-card__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7d6f62;
}

.seo-list {
  display: grid;
  gap: 12px;
  padding-left: 1.1rem;
}

.seo-list li {
  color: var(--muted);
}

.seo-projects {
  display: grid;
  gap: 18px;
}

.seo-project {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(205, 191, 173, 0.76);
  background: rgba(250, 246, 239, 0.82);
  box-shadow: 0 18px 40px rgba(45, 38, 32, 0.08);
}

.seo-project figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 20px 22px;
}

.seo-faq {
  display: grid;
  gap: 14px;
}

.seo-faq details {
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(205, 191, 173, 0.76);
  background: rgba(250, 246, 239, 0.82);
}

.seo-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #302b25;
}

.seo-faq p {
  margin-top: 12px;
  color: var(--muted);
}

.legal-panel__intro {
  display: grid;
  gap: 12px;
}

.legal-section p {
  max-width: 72ch;
}

.legal-facts {
  display: grid;
  gap: 14px;
}

.legal-facts div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(205, 191, 173, 0.66);
  background: rgba(255, 255, 255, 0.48);
}

.legal-facts dt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7d6f62;
}

.legal-facts dd {
  margin: 0;
  color: #302b25;
}

.cookie-banner {
  position: fixed;
  inset: auto 18px 18px;
  z-index: 110;
}

.cookie-banner__panel {
  display: grid;
  gap: 18px;
  width: min(100%, 560px);
  padding: 22px;
  border: 1px solid rgba(80, 66, 52, 0.22);
  border-radius: 24px;
  background: rgba(39, 33, 28, 0.94);
  box-shadow: 0 28px 80px rgba(24, 18, 14, 0.28);
  color: rgba(248, 243, 236, 0.92);
  backdrop-filter: blur(18px);
}

.cookie-banner__copy {
  display: grid;
  gap: 10px;
}

.cookie-banner__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(217, 191, 154, 0.8);
}

.cookie-banner__copy p,
.cookie-banner__copy a {
  color: rgba(248, 243, 236, 0.74);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner__button {
  min-width: 152px;
}

.footer {
  display: grid;
  gap: 18px;
  padding-top: 8px;
  padding-bottom: 34px;
  color: #7a7268;
  justify-items: center;
  text-align: center;
}

.footer__eyebrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__legal {
  display: grid;
  gap: var(--space-2xs);
  max-width: 880px;
  padding: 20px 22px;
  border: 1px solid rgba(122, 114, 104, 0.18);
  border-radius: 22px;
  background: rgba(250, 246, 239, 0.72);
  font-size: 0.84rem;
  line-height: 1.8;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #4a433b;
}

.footer__legal p {
  margin: 0;
}

.footer__owner {
  font-weight: 600;
  color: #302b25;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

.footer__links a,
.footer__links button {
  border: 0;
  background: transparent;
  padding: 0;
  color: #6b5f52;
  font: inherit;
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.footer__links a:hover,
.footer__links button:hover {
  color: #302b25;
}

.footer__developer {
  border: 0;
  outline: none;
  box-shadow: none;
  background: transparent;
  color: rgba(122, 114, 104, 0.72);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.24s ease;
}

.footer__developer-nick {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.footer__developer:hover {
  color: rgba(108, 76, 51, 0.88);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.68s ease, transform 0.68s ease;
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}


.media-zoom {
  overflow: clip;
}

.media-zoom img {
  transform: scale(1);
  transition: transform 1.4s ease;
}

.media-zoom.is-active img {
  transform: scale(1.04);
}

.planner-info {
  padding-top: clamp(120px, 14vw, 180px);
  padding-bottom: clamp(64px, 9vw, 120px);
}

.planner-hero {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

.planner-hero__copy {
  display: grid;
  gap: var(--space-xs);
}

.planner-hero__lead {
  max-width: 62ch;
  font-size: clamp(1.02rem, 1.85vw, 1.18rem);
  line-height: 1.85;
  color: var(--muted);
}

.planner-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-sm);
}

.planner-notice {
  display: grid;
  gap: 8px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(205, 191, 173, 0.76);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, rgba(248, 243, 236, 0.98), rgba(233, 223, 209, 0.86));
  box-shadow: 0 18px 40px rgba(45, 38, 32, 0.08);
  margin-top: var(--space-sm);
}

.planner-notice__title {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7d6f62;
}

.planner-notice__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.planner-hero__visual {
  min-width: 0;
}

.planner-preview {
  border-radius: 32px;
  overflow: clip;
  border: 1px solid rgba(205, 191, 173, 0.76);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, rgba(250, 246, 239, 0.96), rgba(236, 227, 215, 0.92));
  box-shadow: 0 26px 72px rgba(45, 38, 32, 0.12);
}

.planner-preview__top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(205, 191, 173, 0.66);
  background: rgba(255, 255, 255, 0.36);
}

.planner-preview__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(154, 122, 94, 0.34);
}

.planner-preview__title {
  margin-left: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b5f52;
}

.planner-preview__body {
  position: relative;
  padding: clamp(18px, 3vw, 26px);
  min-height: clamp(260px, 32vw, 360px);
  display: grid;
  align-items: end;
}

.planner-preview__grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 191, 154, 0.22) 0%, rgba(217, 191, 154, 0) 44%),
    linear-gradient(90deg, rgba(205, 191, 173, 0.28) 1px, transparent 1px),
    linear-gradient(180deg, rgba(205, 191, 173, 0.28) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  opacity: 0.9;
}

.planner-preview--image .planner-preview__body {
  padding: 0;
  min-height: 0;
  aspect-ratio: 1280 / 644;
  display: block;
}

.planner-preview--image .planner-preview__body::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 48%);
}

.planner-preview__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: linear-gradient(160deg, rgba(246, 240, 232, 0.92) 0%, rgba(226, 216, 203, 0.62) 100%);
  filter: saturate(0.92) contrast(0.96) brightness(0.98);
  transform: none;
}

.planner-preview__card {
  position: relative;
  z-index: 1;
  width: min(320px, 100%);
  display: grid;
  gap: 8px;
  padding: 16px 16px 15px;
  border-radius: 22px;
  border: 1px solid rgba(205, 191, 173, 0.72);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.planner-preview__badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(176, 104, 20, 0.8);
  background: rgba(245, 163, 51, 0.98);
  backdrop-filter: blur(10px) saturate(115%);
  box-shadow:
    0 18px 42px rgba(45, 38, 32, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(26, 21, 16, 0.92);
}

.planner-preview__badge::after {
  content: "Возможны ошибки";
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: max-content;
  max-width: min(240px, calc(100vw - 40px));
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(205, 191, 173, 0.72);
  background: rgba(255, 255, 255, 0.88);
  color: rgba(44, 38, 33, 0.9);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  box-shadow: 0 22px 54px rgba(45, 38, 32, 0.12);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.planner-preview__badge:hover::after,
.planner-preview__badge:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.planner-preview__badge:focus-visible {
  outline: none;
  box-shadow:
    0 18px 42px rgba(45, 38, 32, 0.18),
    0 0 0 4px rgba(217, 191, 154, 0.22);
}

.planner-preview__kicker {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7d6f62;
}

.planner-preview__card strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #2c2621;
}

.planner-preview__card span {
  color: #6a6258;
  line-height: 1.55;
}

.planner-section {
  margin-top: var(--space-xl);
}

.planner-section__head {
  display: grid;
  gap: var(--space-xs);
  margin-bottom: clamp(22px, 3.2vw, 34px);
}

.planner-section__head p {
  max-width: 72ch;
}

.planner-features {
  display: grid;
  gap: 14px;
}

.planner-feature {
  padding: 20px 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(205, 191, 173, 0.76);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(150deg, rgba(248, 243, 236, 0.94) 0%, rgba(233, 223, 209, 0.82) 100%);
  box-shadow: 0 18px 34px rgba(45, 38, 32, 0.06);
}

.planner-feature strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  color: #2c2621;
}

.planner-feature p {
  margin-top: 8px;
  max-width: 44ch;
}

.planner-steps {
  display: grid;
  gap: 14px;
}

.planner-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(205, 191, 173, 0.76);
  background: rgba(250, 246, 239, 0.72);
  box-shadow: 0 18px 34px rgba(45, 38, 32, 0.06);
}

.planner-step__index {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #42362b, #8c6a4c);
  color: #f8f2ea;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
}

.planner-step__body {
  display: grid;
  gap: 8px;
}

.planner-step__body h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.planner-shortcuts {
  margin-top: 14px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(205, 191, 173, 0.76);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, rgba(248, 243, 236, 0.98), rgba(233, 223, 209, 0.86));
  box-shadow: 0 18px 40px rgba(45, 38, 32, 0.08);
}

.planner-shortcuts__head {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.planner-shortcuts__head strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #2c2621;
}

.planner-shortcuts__head span {
  color: #6a6258;
}

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

.planner-shortcuts__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(205, 191, 173, 0.62);
  background: rgba(255, 255, 255, 0.48);
  color: #5f564d;
}

.planner-shortcuts__list li span {
  color: #5f564d;
}

kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid rgba(205, 191, 173, 0.86);
  background: rgba(255, 255, 255, 0.72);
  color: #2c2621;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.planner-cta {
  margin-top: var(--space-xl);
  display: grid;
  gap: var(--space-md);
  padding: clamp(24px, 4.2vw, 44px);
  border-radius: 32px;
  border: 1px solid rgba(205, 191, 173, 0.76);
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(145deg, rgba(250, 246, 239, 0.96), rgba(236, 227, 215, 0.92));
  box-shadow: var(--shadow);
}

.planner-cta__copy {
  display: grid;
  gap: 10px;
}

.planner-cta__copy p {
  max-width: 66ch;
}

.planner-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cases-hero {
  padding-top: clamp(110px, 14vw, 180px);
  padding-bottom: clamp(36px, 6vw, 72px);
}

.cases-hero__panel,
.case-intro__panel,
.case-block,
.case-card {
  border: 1px solid rgba(205, 191, 173, 0.76);
  box-shadow: 0 18px 40px rgba(45, 38, 32, 0.08);
}

.cases-hero__panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 48px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, rgba(248, 243, 236, 0.98), rgba(233, 223, 209, 0.86));
}

.cases-hero__panel h1,
.case-block--hero h1 {
  max-width: 11ch;
}

.cases-hero__panel p {
  max-width: 60ch;
}

.cases-section {
  padding-top: 0;
}

.cases-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.case-card {
  border-radius: 28px;
  overflow: clip;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, rgba(250, 246, 239, 0.98), rgba(236, 227, 215, 0.9));
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.case-card:hover {
  transform: translateY(-2px);
  border-color: #b79d7e;
}

.case-card__link {
  display: grid;
  height: 100%;
  color: inherit;
}

.case-card__image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.case-card__body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.case-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-card__badges span,
.case-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(205, 191, 173, 0.82);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64584d;
}

.case-card__body h3 {
  font-size: clamp(1.55rem, 3vw, 2.05rem);
}

.case-card__body p,
.case-block__text,
.case-section-head p {
  color: var(--muted);
}

.case-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7f6c5a;
}

.case-card__cta::after {
  content: "→";
}

.case-intro {
  padding-top: clamp(110px, 12vw, 148px);
  padding-bottom: 8px;
}

.case-intro__panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 14%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(145deg, rgba(248, 243, 236, 0.96), rgba(233, 223, 209, 0.82));
}

.case-intro__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.case-content {
  padding-top: 20px;
}

.case-view {
  display: grid;
  gap: 20px;
}

.case-block {
  display: grid;
  gap: 20px;
  padding: clamp(20px, 4vw, 36px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(145deg, rgba(250, 246, 239, 0.96), rgba(236, 227, 215, 0.92));
}

.case-block--hero {
  overflow: clip;
}

.case-block__hero {
  display: grid;
  gap: 22px;
}

.case-block__hero-copy {
  display: grid;
  gap: 16px;
}

.case-block__lead {
  max-width: 58ch;
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.case-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.case-stat {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(205, 191, 173, 0.68);
  background: rgba(255, 255, 255, 0.5);
}

.case-stat dt {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7d6f62;
}

.case-stat dd {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1;
  color: var(--text);
}

.case-block__hero-media {
  border-radius: 24px;
  overflow: clip;
}

.case-block__hero-media img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.case-section-head {
  display: grid;
  gap: 10px;
}

.case-section-head h2 {
  max-width: 14ch;
}

.case-block__panel {
  display: grid;
  gap: 18px;
}

.case-facts,
.case-grid {
  display: grid;
  gap: 14px;
}

.case-facts {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.case-fact,
.case-mini-card,
.case-metric {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(205, 191, 173, 0.72);
  background: rgba(255, 255, 255, 0.48);
}

.case-fact span,
.case-metric span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7d6f62;
}

.case-fact strong,
.case-metric strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 1.9rem);
  line-height: 1;
}

.case-points {
  display: grid;
  gap: 10px;
  list-style: none;
}

.case-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.case-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9a7a5e;
}

.case-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.case-gallery__item {
  display: grid;
  gap: 12px;
  margin: 0;
}

.case-gallery__item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
}

.case-gallery__item figcaption {
  display: grid;
  gap: 6px;
}

.case-gallery__item strong,
.case-mini-card h3,
.case-metric strong,
.case-timeline__step h3 {
  font-family: var(--font-display);
}

.case-mini-card h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

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

.case-timeline {
  display: grid;
  gap: 14px;
}

.case-timeline__step {
  display: grid;
  gap: 16px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(205, 191, 173, 0.72);
  background: rgba(255, 255, 255, 0.46);
}

.case-timeline__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, #42362b, #8c6a4c);
  color: #f8f2ea;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.case-timeline__step p,
.case-mini-card p,
.case-metric p,
.case-review blockquote,
.case-cta p {
  color: var(--muted);
}

.case-review {
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
}

.case-review__mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(154, 122, 94, 0.14);
  color: #7f654d;
  font-family: var(--font-display);
  font-size: 2rem;
}

.case-review__body {
  display: grid;
  gap: 14px;
}

.case-review blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.12;
  color: var(--text);
}

.case-review cite {
  display: grid;
  gap: 4px;
  font-style: normal;
}

.case-review cite strong {
  color: var(--text);
}

.case-review cite span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7d6f62;
}

.case-cta {
  display: grid;
  gap: 18px;
  align-items: end;
}

.case-cta .btn {
  justify-self: start;
}

.case-related {
  padding-top: 8px;
}

@media (min-width: 760px) {
  .planner-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .planner-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .planner-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .planner-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .planner-step__index {
    width: 58px;
    height: 58px;
    justify-self: start;
  }

  .planner-cta {
    grid-template-columns: minmax(0, 1.1fr) auto;
    align-items: end;
  }

  .planner-cta__actions {
    justify-content: flex-end;
  }

  .seo-panel__grid,
  .legal-panel {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    align-items: start;
  }

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

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

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

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

  .header__nav {
    display: inline-flex;
  }

  .hero__layout {
    padding-bottom: 54px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    justify-items: stretch;
    align-items: center;
    gap: var(--space-lg);
  }

  .hero__copy {
    justify-items: start;
    text-align: left;
    margin-inline: 0;
  }

  .hero h1 {
    margin-inline: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .manifesto__panel {
    text-align: left;
    max-width: none;
  }

  .manifesto__copy {
    grid-template-columns: minmax(180px, 0.46fr) minmax(0, 1fr);
    gap: var(--space-lg);
    align-items: start;
  }

  .manifesto__figure {
    aspect-ratio: 4 / 3;
  }

  .manifesto__text {
    justify-items: start;
    text-align: left;
  }

  .manifesto__panel .manifesto__text p {
    margin-inline: 0;
  }

  .manifesto__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--space-lg);
    align-items: start;
  }

  .manifesto__points {
    padding-left: var(--space-md);
    border-left: 1px solid var(--line);
  }

  .projects__intro {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .projects-showcase {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.78fr);
    align-items: start;
  }

  .principles__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .fit-grid:not(.fit-grid--bento) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fit-grid--bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--space-sm);
    align-items: stretch;
  }

  .fit-grid--bento .fit-card:nth-child(1) {
    grid-column: 1 / span 4;
    grid-row: 1;
  }

  .fit-grid--bento .fit-card:nth-child(2) {
    grid-column: 5 / span 2;
    grid-row: 1;
  }

  .fit-grid--bento .fit-card:nth-child(3) {
    grid-column: 1 / span 3;
    grid-row: 2;
  }

  .fit-grid--bento .fit-card:nth-child(4) {
    grid-column: 4 / span 3;
    grid-row: 2;
  }

  .fit-grid--bento .fit-card--accent h3 {
    font-size: clamp(1.55rem, 2.4vw, 2rem);
  }

  .contact__links {
    width: min(460px, 100%);
  }

  .case-block__hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .case-cta {
    grid-template-columns: minmax(0, 1.2fr) auto;
  }
}

@media (max-width: 759px) {
  .cookie-banner {
    top: auto;
    right: max(14px, env(safe-area-inset-right, 0px));
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
    left: max(14px, env(safe-area-inset-left, 0px));
  }

  .cookie-banner__panel {
    width: 100%;
    padding: 18px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__button {
    width: 100%;
    min-height: 44px;
  }

  .footer {
    gap: 14px;
  }

  .footer__eyebrow {
    gap: 8px 14px;
  }

  .footer__legal {
    padding: 16px;
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .footer__links {
    width: 100%;
    max-width: 340px;
    display: grid;
    gap: 8px;
  }

  .footer__links a,
  .footer__links button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: 100%;
    padding: 8px 14px;
    border: 1px solid rgba(122, 114, 104, 0.22);
    border-radius: 999px;
    background: rgba(250, 246, 239, 0.86);
    text-decoration: none;
    text-align: center;
    line-height: 1.25;
    font-size: 0.8rem;
  }

  .header__inner {
    min-height: 80px;
  }

  .header__phone {
    min-height: 44px;
    min-width: 44px;
    padding: 0 10px;
    font-size: 0.86rem;
    letter-spacing: -0.01em;
  }

  .header__nav {
    display: none;
  }

  h1 {
    max-width: 14ch;
    text-wrap: balance;
  }

  .hero__layout {
    padding-top: 118px;
    padding-bottom: 30px;
  }

  .hero__copy {
    max-width: none;
  }

  .hero__intro {
    max-width: 30ch;
    font-size: 0.84rem;
    letter-spacing: -0.01em;
  }

  .hero__stage {
    gap: 26px;
  }

  .hero__quiz-shell {
    display: none;
  }

  .hero__mobile-cta {
    display: block;
  }

  .hero__rail {
    gap: 18px;
    padding-top: 18px;
  }

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

  .hero-proof {
    min-height: 118px;
    padding: 18px 14px;
  }

  .hero-proof:last-child {
    grid-column: 1 / -1;
  }

  .projects__instagram {
    width: 100%;
    justify-content: center;
  }

  .projects__headline,
  .projects__lede,
  .project__caption--featured {
    max-width: none;
  }

  .projects-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .projects-showcase__rail {
    gap: 28px;
  }

  .project__media--featured,
  .project__media--compact {
    aspect-ratio: 4 / 3;
  }

  .cases-hero {
    padding-top: 94px;
  }

  .case-intro {
    padding-top: 94px;
  }

  .case-stats,
  .case-grid--3 {
    grid-template-columns: 1fr;
  }

  .error-page__shell {
    padding-top: 104px;
    padding-bottom: 24px;
  }

  .error-page__panel {
    gap: 16px;
    padding: 22px;
  }

  .error-page__title {
    max-width: 10ch;
    font-size: clamp(2.45rem, 13vw, 4.6rem);
  }

  .error-page__actions {
    flex-direction: column;
  }

  .error-page__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .error-page__links {
    grid-template-columns: 1fr;
  }

  .error-page__link {
    padding: 15px 16px;
  }

  .case-review,
  .case-timeline__step {
    grid-template-columns: 1fr;
  }

  .case-timeline__index,
  .case-review__mark {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 479px) {
  :root {
    --section-gap: clamp(52px, 11vw, 92px);
  }

  .hero__proofs {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-proof:last-child {
    grid-column: auto;
  }

  .error-page__shell {
    padding-top: 94px;
  }

  .error-page__panel {
    padding: 18px;
    border-radius: 22px;
  }

  .error-page__eyebrow {
    font-size: 0.67rem;
  }

  .error-page__title {
    gap: 4px;
    max-width: 9ch;
    letter-spacing: -0.04em;
  }

  .error-page__lead {
    font-size: 0.96rem;
  }

  .error-page__link-meta {
    font-size: 0.74rem;
  }
}

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

  .manifesto__points li,
  .manifesto__points li:hover {
    transform: none;
  }

  .manifesto__panel[data-reveal] .manifesto__reveal-piece {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  body:not(.home) .directions__reveal[data-reveal]:not(.is-visible) .directions__scaffold .directions__grid .direction {
    opacity: 0 !important;
    transform: translate3d(0, 10px, 0) !important;
  }

  body:not(.home) .directions__reveal[data-reveal].is-visible .directions__scaffold .directions__grid .direction {
    opacity: 1 !important;
    transform: none !important;
  }

  body:not(.home) .directions__reveal[data-reveal] .directions__scaffold .directions__thread--desktop .directions__thread-path {
    opacity: 1 !important;
    transition: none !important;
  }

  body:not(.home) .directions__reveal[data-reveal] .directions__scaffold .directions__thread-mobile__bar {
    transform: scaleY(1) !important;
  }

  body:not(.home) .directions__reveal[data-reveal]:not(.is-visible) .directions__scaffold .directions__grid .direction::before {
    opacity: 0 !important;
    transform: scale(0.65) !important;
  }

  body:not(.home) .directions__reveal[data-reveal].is-visible .directions__scaffold .directions__grid .direction::before {
    opacity: 1 !important;
    transform: none !important;
  }

  .media-zoom img {
    transform: none !important;
  }

  .site-loader {
    transition: none;
  }

  .site-loader__glow,
  .site-loader__spinner-ring {
    animation: none;
  }
}

body.error-page-view {
  background: #0f0d0b;
  color: #f5efe6;
}

body.error-page-view .footer {
  padding-top: 0;
  color: rgba(244, 237, 228, 0.8);
}

body.error-page-view .footer__eyebrow {
  opacity: 0.9;
}

body.error-page-view .footer__legal {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 237, 228, 0.76);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

body.error-page-view .footer__owner {
  color: #f7f1e8;
}

body.error-page-view .footer__links a,
body.error-page-view .footer__links button {
  color: rgba(244, 237, 228, 0.74);
}

body.error-page-view .footer__links a:hover,
body.error-page-view .footer__links button:hover {
  color: #ffffff;
}

body.error-page-view .footer__developer {
  color: rgba(244, 237, 228, 0.56);
}

body.error-page-view .footer__developer:hover {
  color: rgba(244, 237, 228, 0.82);
}

.error-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: clip;
  color: #f5efe6;
  background:
    radial-gradient(circle at 18% 12%, rgba(245, 215, 169, 0.08) 0%, rgba(245, 215, 169, 0) 30%),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 24%),
    #0f0d0b;
}

.error-page__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.error-page__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.72) contrast(0.88) brightness(0.42);
  transform: scale(1.03);
}

.error-page__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 224, 181, 0.22) 0%, rgba(255, 224, 181, 0) 28%),
    linear-gradient(180deg, rgba(10, 8, 7, 0.3) 0%, rgba(10, 8, 7, 0.58) 28%, rgba(10, 8, 7, 0.82) 100%),
    linear-gradient(90deg, rgba(10, 8, 7, 0.62) 0%, rgba(10, 8, 7, 0.22) 18%, rgba(10, 8, 7, 0.22) 82%, rgba(10, 8, 7, 0.62) 100%);
}

.error-page__glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.7;
}

.error-page__glow--one {
  top: 12%;
  left: 12%;
  width: 28vw;
  height: 28vw;
  background: radial-gradient(circle, rgba(224, 186, 136, 0.18) 0%, rgba(224, 186, 136, 0) 68%);
  animation: error-glow-drift 14s ease-in-out infinite alternate;
}

.error-page__glow--two {
  right: 10%;
  bottom: 12%;
  width: 24vw;
  height: 24vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 66%);
  animation: error-glow-drift 18s ease-in-out infinite alternate-reverse;
}

.error-page__shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  align-content: center;
  padding-top: clamp(112px, 14vw, 154px);
  padding-bottom: clamp(28px, 5vw, 44px);
}

.error-page__panel {
  width: min(100%, 760px);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4.6vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(24px, 3vw, 36px);
  background: linear-gradient(180deg, rgba(18, 16, 14, 0.68) 0%, rgba(18, 16, 14, 0.45) 100%);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  animation: error-card-in 0.8s ease both;
}

.error-page__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 236, 226, 0.7);
}

.error-page__title {
  display: grid;
  gap: 6px;
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.9rem, 8vw, 6rem);
  line-height: 0.9;
  text-wrap: balance;
  color: #fff8f1;
}

.error-page__title span {
  display: block;
  color: rgba(244, 233, 221, 0.82);
}

.error-page__lead {
  max-width: 48ch;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.78;
  color: rgba(244, 235, 223, 0.76);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px;
}

.error-page__actions .btn {
  min-width: 172px;
}

.error-page .btn--primary {
  background: #f5efe7;
  border-color: rgba(255, 255, 255, 0.08);
  color: #151210;
}

.error-page .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f8f1e8;
}

.error-page__links-head {
  display: grid;
  gap: 6px;
  padding-top: 4px;
}

.error-page__links-head span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 236, 226, 0.74);
}

.error-page__links-head p {
  max-width: 50ch;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(244, 235, 223, 0.68);
}

.error-page__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.error-page__link {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 16px 18px 17px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.error-page__link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
}

.error-page__link-label {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff8f1;
}

.error-page__link-meta {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(244, 235, 223, 0.66);
}

@keyframes error-card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes error-glow-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -10px, 0) scale(1.06);
  }
}
