.contactpage-hero {
  padding: 84px 0 72px;
  background: radial-gradient(
      900px 520px at 18% 18%,
      rgba(194, 106, 46, 0.18) 0%,
      rgba(194, 106, 46, 0.08) 50%,
      rgba(194, 106, 46, 0.03) 100%
    ),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 100%);
}

.contactpage-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contactpage-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.08);
  border-radius: 22px;
  padding: 26px;
}

.contactpage-card-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--ink);
}

.contactpage-card-sub {
  margin: 10px 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.contactpage-form {
  display: grid;
  gap: 14px;
}

.contactpage-field label {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(15, 23, 42, 0.72);
}

.contactpage-field input,
.contactpage-field select,
.contactpage-field textarea {
  border-radius: 12px;
}

.contactpage-field input,
.contactpage-field select,
.contactpage-field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.96);
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    transform 0.15s ease;
}

.contactpage-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contactpage-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 14px;
}

.contactpage-field input:focus,
.contactpage-field select:focus,
.contactpage-field textarea:focus {
  border-color: rgba(194, 106, 46, 0.55);
  box-shadow: 0 0 0 4px rgba(194, 106, 46, 0.16);
}

.contactpage-submit {
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  border: none;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.contactpage-submit:hover {
  background: var(--primary-dark);
  transform: translateY(0px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contactpage-note {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.62);
}

.contactpage-copy {
  padding-left: 20px;
  border-left: 1px solid rgba(15, 23, 42, 0.1);
}

.contactpage-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.55);
}

.contactpage-title {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.contactpage-desc {
  max-width: 52ch;
  margin-top: 12px;
  margin-bottom: 14px;
}

.contactpage-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  max-width: 56ch;
}

.contactpage-points li::before {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  border: 2px solid rgba(194, 106, 46, 0.65);
  box-shadow: 0 8px 18px rgba(194, 106, 46, 0.1);
  top: 9px;
}

.contactpage-points li {
  position: relative;
  padding-left: 28px;
  color: rgba(15, 23, 42, 0.82);
  font-weight: 700;
}

.contactpage-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 2px solid rgba(194, 106, 46, 0.8);
  box-shadow: 0 8px 18px rgba(194, 106, 46, 0.16);
}

.contactpage-hours {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.contactpage-small-title {
  margin: 0 0 6px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.62);
}

.contactpage-small {
  margin: 0;
  color: rgba(15, 23, 42, 0.75);
  line-height: 1.7;
}

.contactpage-call-wrap {
  margin-top: 26px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.contactpage-call {
  height: 56px;
  padding: 0 26px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background: var(--primary);
  color: #ffffff;
  border: none;
  text-decoration: none;

  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 14px 30px rgba(194, 106, 46, 0.32);
}

.contactpage-call:hover {
  background: var(--primary-dark);
  transform: translateY(0px);
  box-shadow: 0 20px 44px rgba(194, 106, 46, 0.4);
}

.contactpage-call:active {
  transform: translateY(0px);
}

.contactpage-call:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(194, 106, 46, 0.18),
    0 20px 44px rgba(194, 106, 46, 0.35);
}

.contactpage-call,
.contactpage-call:hover,
.contactpage-call:active,
.contactpage-call:focus-visible {
  color: #ffffff;
}

.contactpage-call svg,
.contactpage-call:hover svg {
  fill: #ffffff;
}

.contactpage-call-ic svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contactpage-call-ic {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.contactpage-call-ic svg {
  width: 22px;
  height: 22px;
}

.contactpage-call-note {
  margin: 0;
  color: rgba(15, 23, 42, 0.62);
  font-size: 13px;
  line-height: 1.6;
  max-width: 70ch;
}

.contactpage-aside {
  padding-top: 32px;
}

/*! MOBILE */
@media (max-width: 980px) {
  .contactpage-hero-inner {
    grid-template-columns: 1fr;
  }

  .contactpage-copy {
    padding: 0;
  }

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

  .contactpage-card-title {
    font-size: 30px;
  }

  .contactpage-call {
    width: 100%;
    justify-content: center;
  }
}
