:root {
  --bg: #f5f3ee;
  --surface: #ffffff;
  --surface-soft: #eeece6;
  --ink: #252621;
  --muted: #666861;
  --line: #d9d6ce;
  --line-strong: #c7c3b9;
  --accent: #f47f24;
  --accent-dark: #d96310;
  --accent-soft: #fff0e3;
  --graphite: #50514c;
  --graphite-deep: #41423e;
  --on-dark: #ffffff;
  --on-dark-muted: #e4e3dc;
  --success: #217752;
  --danger: #a63f31;
  --shadow-soft: 0 18px 48px rgba(44, 42, 35, .08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
dl,
dd,
ul,
ol {
  margin-top: 0;
}

button,
summary,
a {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid rgba(244, 127, 36, .62);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

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

.button:active {
  transform: translateY(0);
}

.button[disabled] {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
}

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 9px 22px rgba(244, 127, 36, .22);
}

.button-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 12px 26px rgba(244, 127, 36, .3);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .76);
  border-color: var(--line-strong);
  box-shadow: 0 6px 18px rgba(44, 42, 35, .04);
}

.button-secondary:hover {
  background: #fff;
  border-color: #aca89f;
}

.button-light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button-light:hover {
  background: #f4f2ec;
}

.button-outline-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .6);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(245, 243, 238, .94);
  border-bottom: 1px solid rgba(199, 195, 185, .72);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  min-height: 76px;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand img {
  width: 92px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.site-nav a,
.header-contact {
  font-size: 13px;
  font-weight: 680;
  color: #4f514b;
  transition: color .18s ease;
}

.site-nav a:hover,
.header-contact:hover {
  color: var(--accent-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 84px 0 72px;
  background:
    radial-gradient(circle at 87% 10%, rgba(244, 127, 36, .09), transparent 27%),
    linear-gradient(180deg, #faf8f4 0%, var(--bg) 100%);
}

.hero-grid-bg {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .34;
  background-image:
    linear-gradient(rgba(77, 77, 70, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 77, 70, .05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 78%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.hero-copy {
  max-width: 730px;
}

.eyebrow,
.section-label,
.panel-kicker {
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 820;
  line-height: 1.25;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.4vw, 72px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.052em;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: #585a54;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 17px;
}

.price-freshness {
  display: flex;
  min-height: 24px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: #5a5c56;
  font-size: 13px;
  font-weight: 620;
}

.freshness-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(33, 119, 82, .1);
}

.price-freshness.is-unavailable .freshness-dot {
  background: #a57b33;
  box-shadow: 0 0 0 4px rgba(165, 123, 51, .1);
}

.freshness-separator {
  color: #a3a099;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}

.hero-facts div {
  padding: 19px 20px 0 0;
}

.hero-facts div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 780;
}

.hero-facts dd {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.availability-panel {
  position: relative;
  padding: 27px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(215, 211, 201, .92);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 70px rgba(45, 43, 36, .12);
}

.availability-panel::before {
  position: absolute;
  top: 0;
  right: 35px;
  left: 35px;
  height: 3px;
  content: "";
  background: var(--accent);
  border-radius: 0 0 3px 3px;
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.panel-kicker {
  display: block;
  margin-bottom: 6px;
}

.panel-head h2 {
  margin-bottom: 0;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.live-mark {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  color: var(--success);
  background: #eff7f2;
  border: 1px solid #d4e9dc;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.live-mark i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.article-form {
  padding: 22px 0 18px;
}

.article-form > label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 760;
}

.article-control {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.article-control input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.article-control input::placeholder {
  color: #8f908a;
}

.article-control input:focus {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(244, 127, 36, .1);
  outline: none;
}

.article-hint {
  margin: 9px 0 0;
  color: #6e7069;
  font-size: 12px;
  line-height: 1.45;
}

.search-result {
  min-height: 116px;
  padding: 18px;
  overflow: auto;
  background: #f4f2ed;
  border: 1px solid #dedbd3;
  border-radius: 12px;
}

.result-placeholder {
  display: flex;
  min-height: 78px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #71736c;
  font-size: 12px;
  text-align: center;
}

.result-placeholder-code {
  color: #999a94;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: .16em;
}

.result-state strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.result-state p {
  margin-bottom: 8px;
  color: #5f615b;
  font-size: 12px;
}

.result-state.is-error strong {
  color: #7e372d;
}

.text-button {
  padding: 0;
  color: var(--accent-dark);
  background: none;
  border: 0;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.result-match + .result-match {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.result-match-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.result-code {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .035em;
}

.result-name {
  margin-top: 2px;
  color: #666861;
  font-size: 11px;
}

.result-price {
  flex: 0 0 auto;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 820;
}

.result-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 11px;
}

.result-meta > span {
  color: #7c7e77;
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.result-meta b {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
}

.panel-flow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #74766f;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.panel-flow b {
  color: #b3b0a8;
  font-weight: 500;
}

.panel-download {
  flex: 0 0 auto;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 780;
}

.panel-download span {
  margin-left: 4px;
}

.market-strip {
  background: #ebe9e3;
  border-top: 1px solid #dedbd3;
  border-bottom: 1px solid #dedbd3;
}

.market-strip-inner {
  display: grid;
  min-height: 70px;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 28px;
}

.market-strip-inner > span {
  color: #70716b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.market-strip ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.market-strip li {
  padding: 0 20px;
  color: #383a35;
  font-size: 12px;
  font-weight: 720;
  text-align: center;
}

.market-strip li + li {
  border-left: 1px solid #cfccc4;
}

.section {
  padding: 96px 0;
}

.section-heading {
  margin-bottom: 48px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr);
  align-items: end;
  gap: 64px;
}

.section-heading h2,
.buyout-copy h2,
.request-info h2,
.price-copy h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.045em;
}

.split-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.section-label {
  margin-bottom: 12px;
}

.section-label-on-dark {
  color: #ffbd8c;
}

.supply-section {
  background: #fff;
}

.supply-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: stretch;
  gap: 24px;
}

.supply-list {
  border-top: 1px solid var(--line-strong);
}

.supply-row {
  display: grid;
  min-height: 104px;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.supply-number,
.path-index {
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 840;
  letter-spacing: .12em;
}

.supply-row h3 {
  margin-bottom: 4px;
  font-size: 17px;
  line-height: 1.25;
}

.supply-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.supply-tag {
  min-width: 76px;
  padding: 7px 10px;
  color: #5d5f59;
  background: #f7f6f2;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-align: center;
  text-transform: uppercase;
}

.work-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  color: var(--on-dark);
  background: var(--graphite);
  border-radius: var(--radius-md);
}

.work-card h3 {
  max-width: 250px;
  margin-bottom: 25px;
  color: #fff;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.work-card ul {
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .25);
  list-style: none;
}

.work-card li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.work-card strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 760;
}

.work-card li span {
  display: block;
  color: var(--on-dark-muted);
  font-size: 12px;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.text-link-on-dark {
  color: #fff;
}

.text-link-on-dark span {
  color: #ffbd8c;
}

.process-line {
  display: grid;
  margin: 54px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  list-style: none;
}

.process-line li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 24px 28px 24px 0;
}

.process-line li + li {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.process-line > li > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.process-line strong {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
}

.process-line p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.price-section {
  padding: 56px 0;
  background: #eeece6;
}

.price-panel {
  position: relative;
  display: grid;
  min-height: 382px;
  grid-template-columns: minmax(0, .83fr) minmax(500px, 1.17fr);
  align-items: stretch;
  gap: 54px;
  padding: 54px;
  overflow: hidden;
  color: #fff;
  background: var(--graphite);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.price-panel::after {
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  content: "";
  border: 66px solid rgba(244, 127, 36, .13);
  border-radius: 50%;
  pointer-events: none;
}

.price-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

.price-copy h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(38px, 4vw, 53px);
}

.price-copy > p:not(.section-label) {
  max-width: 500px;
  margin-bottom: 20px;
  color: var(--on-dark-muted);
  font-size: 15px;
  line-height: 1.65;
}

.price-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 720;
}

.price-meta span + span::before {
  margin-right: 14px;
  color: rgba(255, 255, 255, .46);
  content: "·";
}

.price-paths {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.price-paths article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 27px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-md);
}

.price-paths .path-index {
  margin-bottom: 44px;
  color: #ffbd8c;
}

.price-paths h3 {
  margin-bottom: 9px;
  color: #fff;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.price-paths p {
  margin-bottom: 24px;
  color: var(--on-dark-muted);
  font-size: 13px;
  line-height: 1.5;
}

.price-paths .button {
  width: 100%;
  margin-top: auto;
}

.buyout-section {
  background: #faf9f6;
}

.buyout-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(540px, 1.22fr);
  align-items: center;
  gap: 88px;
}

.buyout-copy h2 {
  max-width: 470px;
  margin-bottom: 20px;
}

.buyout-copy > p:not(.section-label) {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--muted);
}

.stock-sheet {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 38px rgba(46, 44, 37, .07);
}

.stock-sheet-head {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  background: #f6f4ef;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stock-table {
  min-width: 600px;
}

.stock-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.35fr;
}

.stock-row span {
  padding: 16px 14px;
  border-right: 1px solid var(--line);
  font-size: 12px;
}

.stock-row span:last-child {
  border-right: 0;
}

.stock-header {
  color: #4c4e48;
  background: #fbfaf7;
  border-bottom: 1px solid var(--line);
  font-weight: 780;
}

.stock-row:not(.stock-header) span {
  color: #74766f;
}

.stock-sheet > p {
  margin: 0;
  padding: 15px 20px;
  color: var(--muted);
  background: #fbfaf7;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.request-section {
  background: #fff;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(290px, .65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 82px;
}

.request-info {
  position: sticky;
  top: 116px;
  padding-top: 22px;
}

.request-info h2 {
  margin-bottom: 20px;
}

.request-info > p:not(.section-label) {
  max-width: 420px;
  margin-bottom: 34px;
  color: var(--muted);
}

.contact-list {
  border-top: 1px solid var(--line-strong);
}

.contact-list > * {
  display: grid;
  min-height: 66px;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-list > a:hover strong {
  color: var(--accent-dark);
}

.contact-list span {
  color: #85867f;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 13px;
  line-height: 1.4;
  transition: color .18s ease;
}

.request-form {
  padding: 34px;
  background: #faf9f6;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.form-heading > div > span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin-bottom: 0;
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.form-security {
  max-width: 180px;
  color: #777972;
  font-size: 10px;
  line-height: 1.45;
  text-align: right;
}

.form-notice {
  margin: 0 0 20px;
  padding: 13px 15px;
  color: #654a1d;
  background: #fff7e7;
  border: 1px solid #ebd7ad;
  border-radius: 9px;
  font-size: 13px;
}

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

.fields label {
  display: block;
  min-width: 0;
}

.fields label > span:first-child {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 730;
}

.field-full {
  grid-column: 1 / -1;
}

.fields input,
.fields select,
.fields textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.fields input,
.fields select {
  height: 48px;
  padding: 0 13px;
}

.fields textarea {
  min-height: 120px;
  padding: 12px 13px;
  resize: vertical;
}

.fields input::placeholder,
.fields textarea::placeholder {
  color: #969790;
}

.fields input:focus,
.fields select:focus,
.fields textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(244, 127, 36, .1);
  outline: none;
}

.file-field {
  position: relative;
}

.file-field input[type="file"] {
  position: absolute;
  z-index: 2;
  inset: 25px 0 0;
  width: 100%;
  height: calc(100% - 25px);
  opacity: 0;
  cursor: pointer;
}

.file-control {
  display: flex !important;
  min-height: 54px;
  align-items: center;
  gap: 15px;
  padding: 10px 13px;
  background: #fff;
  border: 1px dashed var(--line-strong);
  border-radius: 9px;
}

.file-control b {
  flex: 0 0 auto;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.file-control em {
  min-width: 0;
  overflow: hidden;
  color: #777972;
  font-size: 11px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.consent {
  display: grid;
  grid-template-columns: 17px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 20px;
  color: #686a63;
  font-size: 10px;
  line-height: 1.45;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.form-footer p {
  margin-bottom: 0;
  color: #83847d;
  font-size: 10px;
}

.form-status {
  min-height: 20px;
  margin-top: 13px;
  font-size: 12px;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.company-section {
  padding: 0 0 70px;
  background: #fff;
}

.company-details {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.company-details summary {
  display: grid;
  min-height: 90px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  cursor: pointer;
  list-style: none;
}

.company-details summary::-webkit-details-marker {
  display: none;
}

.company-details summary .section-label {
  display: block;
  margin-bottom: 6px;
}

.company-details summary strong {
  font-size: 15px;
}

.company-summary-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #676962;
  font-size: 11px;
}

.company-summary-meta i {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.company-summary-meta i::before,
.company-summary-meta i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.company-summary-meta i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .18s ease;
}

.company-details[open] .company-summary-meta i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.requisites-grid {
  display: grid;
  padding: 0 0 32px;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.requisite {
  min-height: 86px;
  padding: 18px;
  background: #faf9f6;
}

.requisite-wide {
  grid-column: span 2;
}

.requisite-full {
  grid-column: 1 / -1;
}

.requisite span {
  display: block;
  margin-bottom: 7px;
  color: #85867f;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.requisite strong {
  font-size: 12px;
  line-height: 1.45;
}

.site-footer {
  padding: 30px 0;
  color: #fff;
  background: var(--graphite-deep);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

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

.footer-brand img {
  width: 76px;
  padding: 4px;
  background: #fff;
  border-radius: 4px;
}

.footer-brand span,
.footer-links a {
  color: #e7e6df;
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 1080px) {
  .header-contact {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(44px, 6vw, 61px);
  }

  .price-panel {
    grid-template-columns: .8fr 1.2fr;
    gap: 34px;
    padding: 44px;
  }

  .buyout-layout {
    gap: 52px;
  }

  .request-layout {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 76px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-inner {
    min-height: 68px;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform .18s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100dvh - 68px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px 18px;
    background: rgba(245, 243, 238, .98);
    backdrop-filter: blur(15px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .hero {
    padding: 62px 0 58px;
  }

  .hero-layout,
  .split-heading,
  .supply-layout,
  .price-panel,
  .buyout-layout,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 42px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    max-width: 750px;
  }

  .availability-panel {
    max-width: 620px;
  }

  .market-strip-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 22px 0;
  }

  .market-strip ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 0;
  }

  .market-strip li:nth-child(3) {
    border-left: 0;
  }

  .section {
    padding: 76px 0;
  }

  .split-heading {
    align-items: start;
    gap: 20px;
  }

  .split-heading > p {
    max-width: 660px;
  }

  .supply-layout {
    gap: 30px;
  }

  .work-card {
    min-height: 420px;
  }

  .process-line {
    margin-top: 38px;
  }

  .price-panel {
    gap: 38px;
  }

  .price-copy {
    max-width: 680px;
  }

  .buyout-layout {
    gap: 42px;
  }

  .stock-sheet {
    overflow-x: auto;
  }

  .request-info {
    position: static;
    padding-top: 0;
  }

  .contact-list {
    max-width: 620px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img {
    width: 78px;
  }

  .hero {
    padding: 46px 0 44px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 9px;
  }

  .hero h1 {
    margin-bottom: 19px;
    font-size: clamp(39px, 12.2vw, 52px);
    line-height: .99;
  }

  .hero-lead {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .price-freshness {
    margin-bottom: 27px;
    font-size: 12px;
  }

  .freshness-separator {
    display: none;
  }

  .price-freshness > span:last-child {
    flex-basis: calc(100% - 16px);
    margin-left: 16px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-facts div + div {
    padding-left: 0;
    border-left: 0;
  }

  .availability-panel {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .panel-head h2 {
    font-size: 23px;
  }

  .live-mark {
    min-height: 26px;
    padding-inline: 8px;
  }

  .article-control {
    grid-template-columns: 1fr;
  }

  .article-control .button {
    width: 100%;
  }

  .search-result {
    min-height: 110px;
  }

  .panel-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-download {
    font-size: 12px;
  }

  .market-strip-inner > span {
    text-align: center;
  }

  .market-strip ul {
    grid-template-columns: 1fr;
  }

  .market-strip li {
    padding: 8px 0;
    border-left: 0 !important;
    border-top: 1px solid #d5d2ca;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .buyout-copy h2,
  .request-info h2,
  .price-copy h2 {
    font-size: 38px;
  }

  .supply-row {
    min-height: auto;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 17px 0;
  }

  .supply-tag {
    grid-column: 2;
    width: fit-content;
    min-width: 0;
    margin-top: 3px;
  }

  .work-card {
    min-height: 0;
    padding: 25px;
  }

  .work-card h3 {
    font-size: 26px;
  }

  .process-line {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .process-line li,
  .process-line li + li {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .price-section {
    padding: 24px 0;
  }

  .price-panel {
    width: calc(100% - 20px);
    gap: 30px;
    padding: 32px 20px;
    border-radius: 18px;
  }

  .price-panel::after {
    right: -180px;
    bottom: -230px;
  }

  .price-paths {
    grid-template-columns: 1fr;
  }

  .price-paths .path-index {
    margin-bottom: 24px;
  }

  .buyout-layout {
    gap: 34px;
  }

  .stock-sheet {
    margin-right: -14px;
    margin-left: -14px;
    border-radius: 12px;
  }

  .request-form {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

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

  .fields {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .file-control {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .file-control em {
    max-width: 100%;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .company-details summary {
    min-height: 108px;
    grid-template-columns: 1fr auto;
  }

  .company-summary-meta {
    gap: 0;
  }

  .company-summary-meta span {
    display: none;
  }

  .requisites-grid {
    grid-template-columns: 1fr;
  }

  .requisite-wide,
  .requisite-full {
    grid-column: auto;
  }

  .footer-inner,
  .footer-brand,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    gap: 24px;
  }

  .footer-links {
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
