:root {
  --earth-page: #fbf4e7;
  --earth-panel: #fffaf0;
  --earth-card: #fffdf8;
  --earth-ink: #182421;
  --earth-muted: #4d5953;
  --earth-border: #d9cfbd;
  --earth-accent: #6d1d17;
  --earth-accent-dark: #43130f;
  --earth-shadow: 0 18px 45px rgba(55, 45, 30, 0.12);
}

body:not(.home-page) .main {
  background: var(--earth-page);
  padding: clamp(1.2rem, 4vw, 3rem) 1rem clamp(2.5rem, 5vw, 4rem);
}

body:not(.home-page) .main > .container {
  background: var(--earth-panel);
  border: 1px solid var(--earth-border);
  border-top: 6px solid var(--earth-accent);
  border-radius: 8px;
  box-shadow: var(--earth-shadow);
  margin: 0 auto;
  max-width: 1060px;
  overflow: hidden;
  padding: 0;
}

.acquisition-title {
  align-items: flex-start;
  background:
    linear-gradient(135deg, rgba(109, 29, 23, 0.10), rgba(109, 29, 23, 0) 48%),
    var(--earth-card);
  border-bottom: 1px solid var(--earth-border);
  display: grid;
  justify-content: stretch;
  padding: clamp(1.5rem, 4vw, 2.3rem) clamp(1.2rem, 4vw, 2.25rem);
  text-align: left;
}

.acquisition-title .eyebrow {
  color: var(--earth-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 0.55rem;
  text-transform: uppercase;
}

.acquisition-title h1 {
  color: var(--earth-ink);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  margin: 0;
}

body:not(.home-page) .main .container > hr:first-of-type {
  display: none;
}

body:not(.home-page) .main .center-container {
  display: block;
  margin: 0;
  overflow: visible;
  width: 100%;
}

body:not(.home-page) .main .split-side-left {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 4vw, 2.25rem);
}

body:not(.home-page) .main h2 {
  color: var(--earth-accent);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.15;
  margin: 0;
}

body:not(.home-page) .main p {
  color: var(--earth-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

body:not(.home-page) .main p b,
body:not(.home-page) .main p i {
  color: var(--earth-accent);
  font-style: normal;
  font-weight: 800;
}

.form-row {
  margin: 0;
}

.wrap-input100 {
  background: var(--earth-card);
  border: 1px solid var(--earth-border);
  border-radius: 8px;
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
}

.label-input100 {
  color: var(--earth-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.input100 {
  background: var(--earth-card);
  border: 1px solid #bfc7c0;
  border-radius: 6px;
  color: var(--earth-ink);
  display: block;
  font: inherit;
  min-height: 2.75rem;
  padding: 0.65rem 0.75rem;
  width: 100%;
}

.input100:focus {
  border-color: var(--earth-accent);
  box-shadow: 0 0 0 3px rgba(109, 29, 23, 0.16);
  outline: none;
}

.input100::placeholder {
  color: #8a918b;
}

.export-button {
  align-self: end;
  background: var(--earth-accent);
  border: 1px solid var(--earth-accent);
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  justify-self: end;
  margin: 0;
  min-height: 2.85rem;
  padding: 0.7rem 1.1rem;
  transition: background 120ms ease, box-shadow 120ms ease, transform 120ms ease;
  width: auto;
}

.export-button:hover,
.export-button:focus {
  background: var(--earth-accent-dark);
  box-shadow: 0 10px 22px rgba(55, 45, 30, 0.16);
  outline: none;
  transform: translateY(-1px);
}

hr.gray,
body:not(.home-page) .main hr {
  border: 0;
  border-top: 1px solid var(--earth-border);
  margin: 0.3rem 0;
}

@media (min-width: 760px) {
  body:not(.home-page) .main .split-side-left {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.home-page) .main .split-side-left > h2,
  body:not(.home-page) .main .split-side-left > p,
  body:not(.home-page) .main .split-side-left > hr {
    grid-column: 1 / -1;
  }

  .export-button,
  body:not(.home-page) .main .split-side-left > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  body:not(.home-page) .main {
    padding: 0;
  }

  body:not(.home-page) .main > .container {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
    margin-right: auto;
    margin-left: auto;
    max-width: calc(100vw - 112px);
    width: calc(100vw - 112px);
  }

  body:not(.home-page) .main .split-side-left {
    padding: 1rem;
  }

  .export-button {
    justify-self: stretch;
    width: 100%;
  }
}
