@import url("/assets/admin.css");
:root {
  --ink: #1e282a;
  --muted: #646e6d;
  --paper: #f6f5f0;
  --red: #be3e32;
  --line: #d9ded6;
  --sage: #dce4d9;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
input,
select,
textarea {
  font: inherit;
}
.wrap {
  max-width: 1280px;
  margin: auto;
  padding-left: 40px;
  padding-right: 40px;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 110px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: 1.7px;
  margin-top: 2px;
}
.brand-mark {
  width: 42px;
  height: 44px;
  background: var(--red);
  color: white;
  display: grid;
  place-items: center;
  font-size: 30px;
  clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
}
nav {
  display: flex;
  gap: 23px;
  font-size: 12px;
}
nav a {
  text-decoration: none;
}
nav a[aria-current="page"] {
  color: var(--red);
}
.contact {
  font-size: 12px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-top: 62px;
  padding-bottom: 64px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.9px;
  margin: 0 0 26px;
}
.hero h1 {
  font-size: clamp(46px, 5.1vw, 72px);
  line-height: 1.04;
  letter-spacing: -3.6px;
  margin: 0 0 26px;
  font-weight: 700;
}
em {
  color: var(--red);
  font-style: normal;
}
.intro {
  font-size: 16px;
  max-width: 430px;
  color: var(--muted);
  margin: 0 0 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 17px 23px;
  background: var(--red);
  color: white;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  min-height: 54px;
}
.button:hover {
  background: #9e3028;
}
.button:disabled {
  opacity: 0.5;
  cursor: wait;
}
.button span {
  font-size: 23px;
  line-height: 1;
}
.micro {
  font-size: 11px;
  color: var(--muted);
  margin: 12px 0;
}
.hero-art {
  align-self: stretch;
  min-height: 475px;
  background: var(--sage);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-art:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 54px,
      #a5b6a322 55px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 54px,
      #a5b6a322 55px
    );
}
.art-caption,
.art-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 26px 28px;
  font-size: 9px;
  letter-spacing: 1.4px;
}
.hero-art img {
  position: relative;
  width: 112%;
  height: auto;
  margin-left: -5%;
  margin-top: -15px;
}
.art-bottom {
  font-size: 17px;
  letter-spacing: -0.4px;
  font-weight: 700;
  padding-top: 0;
}
.round-arrow {
  border: 1px solid #92a08e;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-size: 25px;
}
.illustration-note {
  position: relative;
  text-align: right;
  margin: 0 26px 14px;
  font-size: 9px;
  color: var(--muted);
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 24px;
  padding-bottom: 24px;
}
.facts div {
  display: flex;
  gap: 24px;
  align-items: center;
}
.facts b {
  font-size: 12px;
  color: var(--red);
}
.facts span {
  font-size: 13px;
}
.section {
  padding-top: 82px;
  padding-bottom: 82px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 38px;
}
.section-head .eyebrow {
  padding-top: 12px;
}
h2 {
  font-size: 37px;
  line-height: 1.16;
  letter-spacing: -1.4px;
  margin: 0 0 25px;
}
h3 {
  font-size: 19px;
  letter-spacing: -0.5px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cards article {
  border: 1px solid var(--line);
  padding: 25px;
  min-height: 205px;
}
.card-number {
  font-size: 11px;
  color: var(--red);
}
.cards p {
  font-size: 14px;
  color: var(--muted);
  max-width: 300px;
}
.process {
  background: var(--ink);
  color: var(--paper);
  padding: 65px 0;
}
.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.process p:not(.eyebrow) {
  font-size: 14px;
  color: #b9c2bf;
  max-width: 400px;
}
.process ol {
  margin: 0;
  padding-left: 26px;
}
.process li {
  padding: 0 0 22px 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #45504e;
}
.process li::marker {
  color: #d98373;
}
.process li b,
.process li span {
  display: block;
}
.process li span {
  font-size: 13px;
  color: #b9c2bf;
  margin-top: 6px;
}
.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
  scroll-margin-top: 24px;
}
.form-layout > div > p:not(.eyebrow) {
  max-width: 350px;
  font-size: 15px;
  color: var(--muted);
}
.form-layout > div > a {
  font-size: 13px;
}
.hint {
  border-left: 2px solid var(--red);
  padding-left: 16px;
  margin: 30px 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
input:not([type="checkbox"]),
select,
textarea {
  display: block;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0;
  width: 100%;
  padding: 12px;
  color: var(--ink);
  margin-top: 7px;
  min-width: 0;
}
textarea {
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
  line-height: 1.5;
}
.check input {
  margin-top: 3px;
  accent-color: var(--red);
}
.consent {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 23px;
}
.upload {
  padding: 18px;
  border: 1px dashed #a4aea0;
}
.upload span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 11px;
}
.upload input {
  font-size: 11px;
  border: 0;
  padding: 0;
  background: transparent;
}
.photo-preview {
  display: flex;
  gap: 8px;
}
.photo-preview img {
  width: 65px;
  height: 55px;
  object-fit: cover;
}
.honeypot {
  position: absolute;
  left: -10000px;
}
.notice {
  background: #fff0d4;
  padding: 16px;
  border: 1px solid #d6c69f;
  font-size: 12px !important;
}
.footer {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  padding-bottom: 35px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: var(--muted);
}
#form-result {
  font-size: 14px;
  white-space: pre-line;
}
.legal {
  max-width: 800px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.legal h1 {
  font-size: 38px;
}
.legal h2 {
  font-size: 23px;
  margin-top: 34px;
}
.legal p {
  font-size: 15px;
}
[hidden] {
  display: none !important;
}
@media (max-width: 1000px) {
  nav {
    display: none;
  }
  .hero {
    gap: 26px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .form-layout {
    gap: 40px;
  }
  .hero-art {
    min-height: 430px;
  }
}
@media (max-width: 700px) {
  .wrap {
    padding-left: 22px;
    padding-right: 22px;
  }
  .header {
    min-height: 85px;
  }
  .contact {
    max-width: 105px;
    font-size: 11px;
  }
  .brand {
    font-size: 14px;
  }
  .brand small {
    font-size: 6px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .hero h1 {
    font-size: 57px;
  }
  .hero-art {
    min-height: 340px;
  }
  .hero-art img {
    max-height: 300px;
  }
  .facts {
    gap: 18px;
    grid-template-columns: 1fr;
  }
  .facts br {
    display: none;
  }
  .facts div {
    gap: 20px;
  }
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .section-head {
    display: block;
  }
  .cards,
  .process-inner,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  h2 {
    font-size: 31px;
  }
  .process {
    padding: 45px 0;
  }
  .form-grid {
    gap: 12px;
  }
  .form-grid label {
    font-size: 11px;
  }
  .footer {
    flex-direction: column;
    gap: 8px;
  }
  .button {
    width: 100%;
  }
  .hero .button {
    width: auto;
  }
}
@media (max-width: 700px) {
  .hero h1 {
    font-size: clamp(39px, 8.5vw, 57px);
    letter-spacing: -2px;
  }
}

#cases:empty {
  display: none;
}
#cases img {
  width: 100%;
  height: auto;
}
#questions details {
  margin: 12px 0;
  padding: 16px;
  border: 1px solid var(--line);
}
#questions summary {
  cursor: pointer;
}
#questions h2:not(:first-child) {
  margin-top: 36px;
}
@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
}

.price-scroll {
  overflow-x: auto;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th,
.price-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.service-promise {
  font-weight: 700;
  max-width: 500px;
}
