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

:root {
  --green: #15945f;
  --green-dark: #0f754b;
  --ink: #202124;
  --muted: #727272;
  --line: #dededb;
  --left-bg: #f2f2ef;
  --white: #ffffff;
  --input-bg: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  background: #111;
  color: #fff;
  transform: translateY(-150%);
}

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

.sale-page {
  min-height: 100vh;
}

.sale-panel,
.offer-panel {
  min-height: 100vh;
}

.sale-panel {
  position: fixed;
  inset: 0 auto 0 0;
  width: 50%;
  background: var(--left-bg);
  border-right: 1px solid #e1e1de;
}

.sale-inner {
  width: min(620px, calc(100% - 72px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 52px 0 40px;
}

.seller-top {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #626262;
  font-size: 15px;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.sale-content {
  margin: auto 0;
  padding: 64px 0;
  text-align: center;
}


.sale-heading {
  margin: 0 0 18px;
  color: #2a2a2a;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(58px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 750;
}

h1 span {
  color: var(--green);
}

.subtitle {
  max-width: 480px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.price {
  display: grid;
  gap: 3px;
  margin: 34px 0 30px;
}

.price span {
  color: #828282;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.price strong {
  font-size: 38px;
  letter-spacing: -0.03em;
}

.sale-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 0;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .16s ease, transform .16s ease;
}

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

.primary {
  background: var(--green);
  color: #fff;
}

.primary:hover {
  background: var(--green-dark);
}

.text-action {
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #d8d8d4;
  border-bottom: 1px solid #d8d8d4;
}

.contact-row a {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 20px 18px;
  text-decoration: none;
}

.contact-row a:first-child {
  border-right: 1px solid #d8d8d4;
}

.contact-row a:hover strong {
  color: var(--green-dark);
}

.contact-label {
  color: #838383;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-row strong {
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 700;
}

.seller-credit {
  margin: 18px 0 0;
  color: #8a8a8a;
  font-size: 12px;
  text-align: center;
}

.seller-credit a {
  color: #585858;
  font-weight: 650;
  text-decoration: none;
}

.offer-panel {
  margin-left: 50%;
  display: grid;
  align-items: center;
  background: #fff;
}

.offer-inner {
  width: min(570px, calc(100% - 72px));
  margin: 0 auto;
  padding: 64px 0;
}

.offer-header {
  margin-bottom: 30px;
}

.eyebrow {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.offer-header h2 {
  margin-bottom: 10px;
  font-size: clamp(40px, 4.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.offer-header > p:last-child {
  max-width: 510px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.offer-form {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.offer-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
}

.offer-form label > span {
  color: #3d3d3d;
  font-size: 14px;
  font-weight: 700;
}

.offer-form label small {
  color: #8c8c8c;
  font-weight: 400;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.offer-form input,
.offer-form textarea {
  width: 100%;
  border: 1px solid #d4d4d1;
  border-radius: 7px;
  background: var(--input-bg);
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.offer-form input {
  height: 56px;
  padding: 0 14px;
  font-size: 16px;
}

.offer-form textarea {
  min-height: 130px;
  padding: 14px;
  font-size: 16px;
  resize: vertical;
}

.offer-form input::placeholder,
.offer-form textarea::placeholder {
  color: #a7a7a4;
}

.offer-form input:focus,
.offer-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(21, 148, 95, .09);
}

.money-input {
  position: relative;
}

.money-input > span {
  position: absolute;
  top: 50%;
  left: 14px;
  color: #777;
  font-weight: 650;
  transform: translateY(-50%);
}

.money-input input {
  padding-left: 31px;
}

.consent {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
  gap: 10px !important;
  margin: 1px 0 18px !important;
}

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

.consent span {
  color: #747474 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

.full {
  width: 100%;
}

.form-note {
  margin: 11px 0 0;
  color: #929292;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.direct-contact {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 25px;
  color: #878787;
  font-size: 14px;
}

.direct-contact a {
  color: var(--green-dark);
  font-weight: 650;
  text-decoration: none;
}

@media (max-width: 920px) {
  .sale-panel {
    position: relative;
    width: 100%;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #e1e1de;
  }

  .sale-inner {
    width: min(650px, calc(100% - 40px));
    min-height: 640px;
    padding: 34px 0 26px;
  }

  .sale-content {
    padding: 60px 0 52px;
  }

  .offer-panel {
    min-height: auto;
    margin-left: 0;
  }

  .offer-inner {
    width: min(650px, calc(100% - 40px));
    padding: 64px 0 76px;
  }
}

@media (max-width: 600px) {
  .sale-inner,
  .offer-inner {
    width: min(100% - 28px, 650px);
  }

  .sale-inner {
    min-height: 560px;
    padding-top: 24px;
  }

  .seller-top {
    font-size: 13px;
  }

  .sale-content {
    padding: 48px 0 42px;
  }

  .sale-heading {
    font-size: clamp(28px, 8.5vw, 38px);
    margin-bottom: 14px;
  }

  h1 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .subtitle {
    font-size: 18px;
  }

  .price {
    margin: 27px 0 25px;
  }

  .price strong {
    font-size: 34px;
  }

  .button {
    min-height: 54px;
    padding: 0 18px;
    font-size: 15px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-row a:first-child {
    border-right: 0;
    border-bottom: 1px solid #d8d8d4;
  }

  .contact-row a {
    padding: 15px 4px;
  }

  .offer-inner {
    padding: 54px 0 68px;
  }

  .offer-header h2 {
    font-size: 42px;
  }

  .two-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .direct-contact {
    flex-direction: column;
    align-items: center;
  }
}

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

  .button {
    transition: none;
  }
}


.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-status {
  min-height: 0;
  margin-top: 12px;
  padding: 0;
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.5;
}

.form-status.success,
.form-status.error {
  padding: 12px 13px;
}

.form-status.success {
  border: 1px solid #b8dfce;
  background: #f0faf5;
  color: #0d6842;
}

.form-status.error {
  border: 1px solid #e9c3c3;
  background: #fff5f5;
  color: #a33a3a;
}

.offer-form button:disabled {
  opacity: .65;
  cursor: wait;
  transform: none;
}
