/*
  Page-specific styles for /contact/. Shared reset, tokens, header, footer
  and the reveal-animation system live in /common/css/base.css.
*/

body {
  color: var(--ink7);
}

.contact-page {
  padding-top: 76px;
}

.contact-section {
  padding: 138px 0 130px;
  background: var(--base);
}

.contact-inner {
  width: 1180px;
  max-width: 86vw;
  margin: 0 auto;
}

.page-heading {
  margin-bottom: 54px;
  text-align: center;
}

.page-heading .en {
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: 4px;
}

.page-heading .jp {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.8;
}

.contact-layout {
  width: 786px;
  max-width: 100%;
  margin: 0 auto;
}

.contact-lead-text {
  text-align: center;
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 24px;
}

.phone-box {
  margin-bottom: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid var(--line-14);
  padding: 28px 36px;
  text-align: center;
  background: rgba(255, 255, 255, .58);
}

.phone-label {
  font-size: 15px;
  color: var(--ink7);
}

.phone-number {
  font-family: "Host Grotesk", Arial, sans-serif;
  font-size: 34px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.phone-hours {
  font-size: 14px;
  white-space: nowrap;
  color: var(--ink7);
}

.contact-form-wrap h2 {
  font-size: 27px;
  line-height: 1.5;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-form-wrap h2::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.contact-form {
  border: 1px solid var(--line-14);
  background: rgba(255, 255, 255, .58);
  padding: 26px;
}

.form-step {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-14);
}

.form-step:first-child {
  padding-top: 4px;
}

.form-step:last-of-type {
  border-bottom: 0;
}

.form-step h3 {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.form-step > p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.radio-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-card {
  display: flex;
  width: 100%;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--line-14);
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: .2s;
}

.radio-card:hover {
  border-color: var(--green);
}

.radio-card:has(input:checked) {
  border-color: var(--green);
  background: rgba(7, 61, 52, .04);
}

.radio-card input {
  margin-top: 3px;
  accent-color: var(--green);
}

.option-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.option-title {
  font-size: 15px;
  color: var(--ink7);
}

.option-sub {
  font-size: 12.5px;
  color: #6f6a62;
}

.required-badge {
  display: inline-block;
  padding: 2px 8px;
  background: #c0392b;
  color: #fff;
  font-size: 10px;
  letter-spacing: .5px;
  vertical-align: middle;
}

.field {
  margin-bottom: 13px;
}

.field label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-14);
  background: #fff;
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
}

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

.submit-btn {
  display: block;
  width: 55%;
  min-width: 280px;
  margin: 22px auto 0;
  border: none;
  background: linear-gradient(88deg, #2C7B64 13.03%, #61B953 59.54%, #86CAB6 100.07%);
  color: #fff;
  padding: 17px 24px;
  font-family: inherit;
  font-size: 18px;
  letter-spacing: 4px;
  cursor: pointer;
  transition: .3s;
}

.submit-btn:hover {
  background: var(--green);
  color: #fff;
}


@media (max-width: 640px) {
  .contact-section {
    padding: 90px 0;
  }

  .page-heading .en {
    font-size: 32px;
  }

  .contact-form {
    padding: 14px;
  }

  .submit-btn {
    width: 100%;
    min-width: 0;
  }
}
