:root {
  color-scheme: light;
  --paper: #efeee6;
  --paper-deep: #d8d7ce;
  --ink: #171714;
  --ink-soft: #292924;
  --muted: #68675f;
  --line: #171714;
  --orange: #ff5a1f;
  --orange-dark: #c7370d;
  --light-line: #77766e;
  --placeholder: #aaa99e;
  --error: #ff9675;
  --success: #71d5a4;
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  display: grid;
  grid-template-rows: 64px 1fr 38px;
  background: var(--paper);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  min-width: 0;
  padding: 0 clamp(18px, 3.2vw, 52px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 2px solid var(--line);
}

.wordmark {
  width: max-content;
  color: var(--ink);
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1;
  text-decoration: none;
}

.header-status {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-status span {
  width: 11px;
  height: 11px;
  display: block;
  background: var(--orange);
  border: 1px solid var(--line);
}

.sale-shell {
  min-height: calc(100dvh - 102px);
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(420px, 0.88fr);
}

.hero {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(320px, 1fr);
  border-right: 2px solid var(--line);
}

.hero-copy {
  min-width: 0;
  padding: clamp(30px, 4vw, 64px) clamp(22px, 4vw, 64px) clamp(34px, 4vw, 58px);
}

.eyebrow,
.section-number,
.visual-index,
.asset-data dt,
.site-footer {
  font-family: Consolas, "Courier New", monospace;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 clamp(18px, 2vw, 30px);
  color: var(--orange-dark);
  font-size: 0.72rem;
}

h1,
h2,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(4.7rem, 8.25vw, 8.8rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.78;
  overflow-wrap: normal;
  white-space: nowrap;
}

.hero-summary {
  max-width: 560px;
  margin: clamp(28px, 3vw, 42px) 0 0;
  font-size: clamp(1.08rem, 1.45vw, 1.38rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.hero-actions {
  margin-top: clamp(30px, 3vw, 44px);
  display: grid;
  grid-template-columns: max-content minmax(280px, 1fr);
  align-items: stretch;
  gap: clamp(20px, 3vw, 42px);
}

.primary-button,
.submit-button {
  min-height: 54px;
  border: 2px solid var(--line);
  border-radius: 0;
  background: var(--orange);
  color: var(--ink);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease, transform 120ms ease;
}

.primary-button {
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.primary-button:hover,
.submit-button:hover:not(:disabled) {
  background: var(--ink);
  color: var(--paper);
}

.primary-button:active,
.submit-button:active:not(:disabled) {
  transform: translate(2px, 2px);
}

.asset-data {
  min-width: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.asset-data div {
  min-width: 0;
  padding: 8px 12px 9px;
}

.asset-data div + div {
  border-left: 2px solid var(--line);
}

.asset-data dt {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.58rem;
}

.asset-data dd {
  margin: 0;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  border-top: 2px solid var(--line);
  background: var(--paper-deep);
}

.hero-visual::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: clamp(12px, 1.15vw, 18px);
  height: 68%;
  border-left: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: var(--orange);
  content: "";
}

.hero-visual img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 54%;
  filter: grayscale(1) contrast(1.18);
  mix-blend-mode: multiply;
}

.visual-index {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 13px;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: var(--paper);
  font-size: 0.62rem;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(12px, 1.15vw, 18px);
  bottom: 0;
  left: 0;
  min-height: 52px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 2px solid var(--line);
  background: var(--paper);
}

.hero-visual figcaption strong {
  font-size: 0.9rem;
  letter-spacing: -0.03em;
}

.hero-visual figcaption span {
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.inquiry {
  min-width: 0;
  padding: clamp(30px, 3.2vw, 52px) clamp(24px, 3.2vw, 48px);
  background: var(--ink);
  color: var(--paper);
  scroll-margin-top: 0;
}

.section-number {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.66rem;
}

.inquiry h2 {
  margin: 0;
  max-width: 430px;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.9rem, 4.4vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.inquiry-intro > p:last-child {
  max-width: 440px;
  margin: 22px 0 0;
  color: #bbb9ae;
  font-size: 0.95rem;
  line-height: 1.48;
}

#offer-form {
  margin-top: clamp(26px, 3.4vw, 42px);
}

.no-js #offer-form {
  display: none;
}

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

.field {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 7px;
}

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

.field label {
  color: var(--paper);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field label span {
  color: #98978f;
  font-weight: 400;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--light-line);
  border-radius: 0;
  outline: 0;
  background: var(--ink-soft);
  color: var(--paper);
  transition: border-color 120ms ease, background-color 120ms ease;
}

.field input {
  min-height: 44px;
  padding: 0 11px;
}

.field textarea {
  min-height: 104px;
  padding: 11px;
  line-height: 1.45;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--placeholder);
  opacity: 1;
}

.field input:hover,
.field textarea:hover {
  border-color: #aaa99e;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--orange);
  background: #32322c;
  outline: 2px solid var(--orange);
  outline-offset: 0;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  min-height: 1.15em;
  color: var(--error);
  font-size: 0.7rem;
  line-height: 1.15;
}

.form-footer {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(150px, 0.62fr) minmax(150px, 1fr);
  align-items: center;
  gap: 18px;
}

.submit-button {
  width: 100%;
  padding: 0 18px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.privacy-note {
  margin: 0;
  color: #9e9d94;
  font-size: 0.7rem;
  line-height: 1.4;
}

.form-status {
  min-height: 1.3em;
  margin: 13px 0 0;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--error);
}

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

.noscript-notice {
  margin: 24px 0 0;
  padding: 12px;
  border: 1px solid var(--orange);
  color: var(--paper);
  font-size: 0.8rem;
}

.site-footer {
  padding: 0 clamp(18px, 3.2vw, 52px);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 20px;
  border-top: 2px solid var(--line);
  color: var(--muted);
  font-size: 0.58rem;
}

.site-footer span:nth-child(2) {
  text-align: center;
}

.site-footer span:last-child {
  color: var(--orange-dark);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  body {
    display: block;
  }

  .site-header {
    height: 64px;
  }

  .sale-shell {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100dvh - 64px);
    border-right: 0;
  }

  .inquiry {
    min-height: auto;
    padding: 56px clamp(30px, 8vw, 96px) 64px;
  }

  .inquiry-intro,
  #offer-form,
  .noscript-notice {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  #offer-form {
    margin-top: 36px;
  }

  .site-footer {
    min-height: 38px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-inline: 18px;
  }

  .header-status {
    gap: 7px;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .header-status span {
    width: 9px;
    height: 9px;
  }

  .hero {
    min-height: auto;
    grid-template-rows: auto 48dvh;
  }

  .hero-copy {
    padding: 34px 18px 38px;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  h1 {
    font-size: clamp(3.2rem, 15.8vw, 6.8rem);
    letter-spacing: -0.095em;
    line-height: 0.82;
  }

  .hero-summary {
    max-width: 360px;
    margin-top: 28px;
    font-size: 1.03rem;
  }

  .hero-actions {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .primary-button {
    width: 100%;
  }

  .asset-data {
    min-width: 0;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-visual figcaption {
    padding-inline: 11px;
  }

  .hero-visual figcaption span {
    display: none;
  }

  .inquiry {
    padding: 44px 18px 50px;
  }

  .inquiry h2 {
    font-size: clamp(2.9rem, 16vw, 4.6rem);
  }

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

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

  .form-footer {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .site-footer {
    min-height: 74px;
    padding: 14px 18px;
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
  }

  .site-footer span:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
