@font-face {
  font-family: "Golos Text";
  src: url("../assets/fonts/golos-text-cyrillic.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Golos Text";
  src: url("../assets/fonts/golos-text-latin.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Caveat";
  src: url("../assets/fonts/caveat-cyrillic.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Caveat";
  src: url("../assets/fonts/caveat-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;
  --bg: #11100f;
  --surface: #1b1916;
  --deep: #090909;
  --text: #f3efe7;
  --muted: #c2bab0;
  --line: #4a443d;
  --paper: #e7d8be;
  --paper-light: #f2e8d6;
  --ink: #28231d;
  --warm: #d6a366;
  --amber: #e7ba80;
  --cardboard: #9a714a;
  --red: #a34435;
  --error: #7a2e2a;
  --container: 1320px;
  --gutter: 60px;
  --header-top: 20px;
  --header-height: 72px;
  --radius: 6px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-ui: cubic-bezier(.2, .7, .2, 1);
  --section-space: clamp(96px, 8vw, 120px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--bg);
  font-family: "Golos Text", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 40;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

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

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

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.header-space {
  position: absolute;
  top: 0;
  width: 1px;
  height: calc(var(--header-top) + var(--header-height));
}

.site-header {
  position: fixed;
  z-index: 50;
  top: var(--header-top);
  left: 50%;
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  transform: translateX(-50%);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 10px 0 24px;
  border: 1px solid rgba(231, 186, 128, .28);
  border-radius: var(--radius);
  background: rgba(17, 16, 15, .92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
  transition: height 200ms var(--ease-ui), background 200ms var(--ease-ui), box-shadow 200ms var(--ease-ui);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.site-header.is-compact .site-header__inner {
  height: 60px;
  background: rgba(17, 16, 15, .985);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .38);
}

.brand-wordmark {
  width: max-content;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  text-decoration: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  height: 100%;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 180ms var(--ease-ui);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-ui);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible { color: var(--text); }
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); }

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 4px;
  color: #171512;
  background: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms var(--ease-ui), transform 100ms ease;
}

.header-cta i,
.button i { font-style: normal; transition: transform 180ms var(--ease-ui); }
.header-cta:hover { background: #ded6ca; }
.header-cta:hover i,
.button:hover i { transform: translateX(4px); }
.header-cta:active,
.button:active { transform: translateY(1px); }

.menu-toggle,
.mobile-menu { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(680px, 88svh, 900px);
  margin-top: 0;
  overflow: hidden;
  background: var(--deep);
}

.hero__picture,
.hero__picture img,
.hero__shade,
.hero__light {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__picture { z-index: -4; overflow: hidden; }

.hero__picture img {
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-bg-y, 0), 0) scale(1.025);
}

.hero__shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, .92) 0%, rgba(9, 9, 9, .82) 25%, rgba(9, 9, 9, .22) 58%, rgba(9, 9, 9, .06) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(17, 16, 15, .36) 17%, rgba(9, 9, 9, 0) 48%);
}

.hero__light {
  z-index: -2;
  opacity: .85;
  background: radial-gradient(circle at 79% 18%, rgba(214, 163, 102, .09), transparent 28%);
  transition: opacity 700ms var(--ease-out);
}

.hero.is-ready .hero__light { opacity: 1; }

.hero__inner {
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-top: calc(var(--header-top) + var(--header-height) + 38px);
  padding-bottom: 72px;
}

.hero__copy { width: min(620px, 50vw); }

.eyebrow {
  margin: 0 0 22px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.form-success h3 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -.045em;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(56px, 5.2vw, 80px);
  line-height: .98;
  text-wrap: balance;
}

.hero__lead {
  max-width: 470px;
  margin: 28px 0 32px;
  color: var(--muted);
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms var(--ease-ui), background 180ms var(--ease-ui), transform 100ms ease;
}

.button--light { color: #171512; background: var(--text); }
.button--light:hover { background: #ded6ca; }
.button--ink { color: var(--text); background: #191714; }
.button--ink:hover { background: #302c27; }
.button:disabled { cursor: wait; opacity: .65; }

.hero__explore {
  display: block;
  width: max-content;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  text-underline-offset: 5px;
  transition: color 180ms var(--ease-ui);
}

.hero__explore:hover { color: var(--text); }

.hero__note {
  position: absolute;
  right: 5.5vw;
  bottom: 7.5%;
  margin: 0;
  color: var(--ink);
  font-family: "Caveat", "Segoe Print", cursive;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
  transform: translate3d(0, var(--hero-paper-y, 12px), 0) rotate(-2deg);
  transition: transform 650ms var(--ease-out);
}

.hero.is-ready .hero__note { transform: translate3d(0, var(--hero-paper-y, 0), 0) rotate(-2deg); }

.hero__stamp,
.request-aside__stamp {
  position: absolute;
  display: grid;
  color: rgba(22, 19, 16, .88);
  font-size: clamp(17px, 1.8vw, 28px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.06em;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero__stamp {
  z-index: -1;
  top: 42%;
  right: 14.7%;
  transform: rotate(-.5deg);
}

.hero__next {
  position: absolute;
  bottom: 12px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(243, 239, 231, .58);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__next i { width: 1px; height: 20px; background: currentColor; }

.section { padding-block: var(--section-space); }
.section--compact { padding-block: clamp(78px, 6.5vw, 96px); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 410px);
  column-gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 16px; }

.section-heading h2 {
  max-width: 780px;
  font-size: clamp(38px, 3.35vw, 48px);
  line-height: 1.04;
}

.section-heading > p:last-child {
  max-width: 390px;
  margin: 0 0 3px;
  color: var(--muted);
}

.reveal {
  transform: translateY(14px);
  opacity: .75;
  transition: transform 420ms var(--ease-out), opacity 420ms var(--ease-out);
}

.reveal.is-visible { transform: translateY(0); opacity: 1; }

.categories {
  padding-bottom: 0;
  background: linear-gradient(180deg, rgba(9, 9, 9, .76) 0, var(--bg) 90px);
}

.categories__runway { position: relative; }

.categories__stage {
  top: 80px;
  overflow: clip;
}

.categories__runway.is-pinned .categories__stage { position: sticky; }

.gallery { position: relative; }

.gallery__viewport {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  overscroll-behavior-inline: contain;
}

.gallery__viewport::-webkit-scrollbar { display: none; }

.categories__runway.is-pinned .gallery__viewport {
  width: 100%;
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  padding-right: max(var(--gutter), calc((100vw - var(--container)) / 2));
  overflow: hidden;
}

.gallery__track {
  display: flex;
  gap: 20px;
  width: max-content;
  transform: translate3d(var(--gallery-x, 0), 0, 0);
}

.category-card {
  position: relative;
  flex: 0 0 clamp(280px, 25vw, 340px);
  width: clamp(280px, 25vw, 340px);
  height: clamp(400px, 31vw, 430px);
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--surface);
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 300ms var(--ease-ui), background 300ms var(--ease-ui);
}

.category-card picture,
.category-card img,
.category-card__shade { position: absolute; inset: 0; width: 100%; height: 100%; }

.category-card img {
  object-fit: cover;
  transition: transform 300ms var(--ease-out);
}

.category-card__shade {
  background: linear-gradient(180deg, rgba(9, 9, 9, .78), transparent 31%, transparent 55%, rgba(9, 9, 9, .92));
}

.category-card__title,
.category-card__caption,
.category-card__arrow { position: absolute; z-index: 1; }

.category-card__title {
  top: 22px;
  left: 22px;
  right: 22px;
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.category-card__caption {
  right: 78px;
  bottom: 22px;
  left: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.category-card__arrow {
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(243, 239, 231, .66);
  border-radius: 50%;
  font-size: 20px;
  transition: transform 300ms var(--ease-out), border-color 300ms var(--ease-ui);
}

.category-card:hover,
.category-card:focus-visible { border-color: rgba(231, 186, 128, .85); }
.category-card:hover img,
.category-card:focus-visible img { transform: scale(1.025); }
.category-card:hover .category-card__arrow,
.category-card:focus-visible .category-card__arrow { border-color: var(--text); transform: translate(2px, 2px); }

.gallery__footer {
  display: grid;
  grid-template-columns: auto minmax(210px, 1fr) auto;
  align-items: center;
  gap: 26px;
  margin-top: 24px;
}

.gallery__arrows { display: flex; gap: 10px; }

.round-control {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  transition: color 180ms var(--ease-ui), border-color 180ms var(--ease-ui);
}

.round-control:hover { border-color: var(--text); }
.round-control:disabled { color: #686159; cursor: default; }

.gallery__status { display: grid; grid-template-columns: minmax(120px, 1fr) auto; align-items: center; gap: 16px; }

.gallery__progress {
  grid-column: 1 / -1;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.gallery__progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--amber);
  transform: scaleX(var(--gallery-progress, .1667));
  transform-origin: left;
}

.gallery__status span,
.gallery__status small { color: var(--muted); font-size: 13px; }
.gallery__status small { display: none; }

.gallery__exit,
.text-link {
  color: var(--text);
  font-size: 14px;
  text-decoration-color: rgba(243, 239, 231, .35);
  text-underline-offset: 5px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.brand-card {
  position: relative;
  display: grid;
  min-height: 132px;
  padding: 24px 12px 20px;
  place-items: center;
  gap: 14px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.brand-card:last-child { border-right: 0; }

.brand-card::after {
  position: absolute;
  right: 22%;
  bottom: 14px;
  left: 22%;
  height: 1px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-ui);
}

.brand-card:hover::after,
.brand-card:focus-visible::after { transform: scaleX(1); }

.brand-card img {
  width: min(112px, 72%);
  height: 36px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .92;
}

.brand-card span { font-size: 14px; }
.brands__other { display: inline-block; margin-top: 22px; }

.process {
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg), #17130f 46%, var(--bg));
}

.section-heading--process { grid-template-columns: 1fr; }

.notebook {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 620px;
  max-height: 744px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, .42);
  transform: translateY(16px);
  transition: transform 550ms var(--ease-out);
}

.notebook.is-visible { transform: translateY(0); }

.notebook__image,
.notebook__image img { position: absolute; inset: 0; width: 100%; height: 100%; }
.notebook__image img { object-fit: cover; }

.notebook__paper {
  position: absolute;
  inset: 20% 15.5% 13%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10%;
  color: var(--ink);
}

.notebook__page { min-width: 0; }
.notebook__page:first-child { padding-left: 28px; }

.notebook__kicker {
  margin: 0 0 32px;
  color: #6f604e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.steps { display: grid; gap: clamp(32px, 4vw, 54px); margin: 0; padding: 0; list-style: none; }

.steps li { display: grid; grid-template-columns: 38px 1fr; gap: 18px; align-items: start; }

.steps li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(40, 35, 29, .56);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.steps h3 { margin: 0 0 7px; font-size: clamp(19px, 1.5vw, 23px); line-height: 1.1; letter-spacing: -.025em; }
.steps p { max-width: 280px; margin: 0; color: #5f5549; font-size: 15px; line-height: 1.42; }

.notebook__note {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  font-family: "Caveat", "Segoe Print", cursive;
  font-size: clamp(25px, 2.25vw, 34px);
  line-height: 1;
  transform: rotate(-2deg);
}

.notebook__note span {
  display: block;
  width: 0;
  height: 3px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--red);
  transform: rotate(-1deg);
  transition: width 400ms var(--ease-out) 450ms;
}

.notebook.is-visible .notebook__note span { width: 100%; }

.request { background: linear-gradient(180deg, var(--bg), #0d0c0b); }

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(300px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.paper {
  position: relative;
  color: var(--ink);
  background: var(--paper);
  background-image:
    linear-gradient(110deg, rgba(255, 255, 255, .25), transparent 42%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.42' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='.075'/%3E%3C/svg%3E");
}

.request-form {
  min-width: 0;
  padding: clamp(34px, 4.1vw, 58px);
  border-radius: 4px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
}

.selection-chips:empty { display: none; }
.selection-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

.selection-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(40, 35, 29, .38);
  border-radius: 4px;
  background: rgba(242, 232, 214, .65);
  font-size: 13px;
}

.selection-chip button {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.form-block { min-width: 0; margin: 0 0 26px; padding: 0; border: 0; }
.form-block legend,
.form-label,
.field > span { display: block; margin-bottom: 9px; font-weight: 700; }

.contact-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 330px;
  margin-bottom: 20px;
  padding: 3px;
  border: 1px solid rgba(40, 35, 29, .55);
  border-radius: 5px;
  background: rgba(40, 35, 29, .06);
}

.contact-toggle button {
  min-height: 40px;
  border: 0;
  border-radius: 3px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: color 180ms var(--ease-ui), background 180ms var(--ease-ui);
}

.contact-toggle button[aria-checked="true"] { color: var(--text); background: var(--ink); }

.field { display: block; margin-bottom: 24px; }
.field input,
.field textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(40, 35, 29, .42);
  border-radius: 4px;
  color: var(--ink);
  background: rgba(242, 232, 214, .82);
  caret-color: var(--ink);
  transition: border-color 160ms var(--ease-ui), background 160ms var(--ease-ui);
}

.field input { min-height: 50px; padding: 0 14px; }
.field textarea { min-height: 118px; padding: 13px 14px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #807466; opacity: 1; }
.field input:focus,
.field textarea:focus { outline: 0; border: 2px solid var(--ink); background: var(--paper-light); }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border: 2px solid var(--error); }

.field-hint,
.photo-field small,
.data-note { color: #6f6559; font-size: 13px; }
.field-error { display: block; min-height: 0; margin-top: 7px; color: var(--error); font-size: 13px; font-weight: 600; }
.field-error:not(:empty)::before { content: "! "; }

.photo-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 24px;
  align-items: center;
  margin-bottom: 26px;
}

.photo-field > div:first-child small { display: block; }

.file-button {
  display: inline-flex;
  min-height: 46px;
  padding: 0 16px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(40, 35, 29, .58);
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}

.photo-previews,
.photo-field > .field-error { grid-column: 1 / -1; }

.photo-previews { display: grid; gap: 8px; }

.photo-preview {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 36px;
  gap: 12px;
  align-items: center;
  min-height: 56px;
  padding: 4px 6px 4px 4px;
  border: 1px solid rgba(40, 35, 29, .24);
  border-radius: 4px;
  background: rgba(242, 232, 214, .58);
}

.photo-preview img { width: 48px; height: 48px; object-fit: cover; border-radius: 2px; }
.photo-preview span { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.photo-preview button { width: 34px; height: 34px; border: 0; color: var(--ink); background: transparent; font-size: 22px; cursor: pointer; }

.more-fields-toggle {
  display: flex;
  width: 100%;
  min-height: 50px;
  margin-bottom: 18px;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid rgba(40, 35, 29, .3);
  border-bottom: 1px solid rgba(40, 35, 29, .3);
  color: var(--ink);
  background: transparent;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.more-fields-toggle i { font-style: normal; transition: transform 220ms var(--ease-ui); }
.more-fields-toggle[aria-expanded="true"] i { transform: rotate(45deg); }

.more-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  overflow: clip;
}

.more-fields[hidden] { display: none; }
.more-fields .field { margin-bottom: 18px; }

.submit-button { width: 100%; min-height: 54px; }
.data-note { margin: 13px 0 0; text-align: center; }

.form-status { margin-top: 14px; color: var(--ink); font-size: 14px; }
.form-status.is-error { color: var(--error); font-weight: 600; }

.form-success { display: grid; min-height: 520px; place-content: center; justify-items: start; }
.form-success h3 { margin: 22px 0 10px; font-size: clamp(34px, 4vw, 52px); }
.form-success p { margin: 0 0 28px; font-size: 18px; }

.accepted-stamp {
  display: inline-block;
  padding: 8px 13px 6px;
  border: 3px solid var(--red);
  border-radius: 4px;
  color: var(--red);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: rotate(-4deg) scale(.98);
  animation: stamp-in 180ms var(--ease-out) both;
}

@keyframes stamp-in { to { transform: rotate(-4deg) scale(1); } }

.request-aside {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.request-aside__photo,
.request-aside__photo picture,
.request-aside__photo img { position: absolute; inset: 0; width: 100%; height: 100%; }
.request-aside__photo img { object-fit: cover; }
.request-aside__photo::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,9,9,.04), rgba(9,9,9,.28) 45%, rgba(9,9,9,.92)); content: ""; }
.request-aside__stamp { top: 62%; right: 12%; color: rgba(243, 239, 231, .78); mix-blend-mode: normal; }

.direct-contacts {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 32px;
  left: 24px;
  padding: 24px;
  border: 1px solid rgba(231, 186, 128, .28);
  border-radius: 5px;
  background: rgba(17, 16, 15, .9);
}

.direct-contacts h3 { margin: 0 0 16px; font-size: 22px; }
.direct-contacts a { display: block; padding: 9px 0; color: var(--text); }

.request-aside__note {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  margin: 0;
  font-family: "Caveat", "Segoe Print", cursive;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1;
  text-align: right;
  transform: rotate(-3deg);
}

.request-aside:has(.direct-contacts:not([hidden])) .request-aside__note { display: none; }

.site-footer { border-top: 1px solid var(--line); background: #0c0b0a; }

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: center;
  min-height: 150px;
  padding-block: 34px;
}

.site-footer__inner > div:first-child { display: flex; flex-direction: column; gap: 12px; }
.site-footer__inner > div:first-child span,
.site-footer__meta { color: var(--muted); font-size: 13px; }

.site-footer__hand {
  margin: 0;
  color: var(--muted);
  font-family: "Caveat", "Segoe Print", cursive;
  font-size: 24px;
  transform: rotate(-2deg);
}

.site-footer__meta { justify-self: end; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.site-footer__meta a { text-underline-offset: 4px; }

.mobile-bottom-cta { display: none; }

.noscript-note {
  position: fixed;
  z-index: 70;
  right: 16px;
  bottom: 16px;
  max-width: 360px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--surface);
  font-size: 13px;
}
