/* ============================================================
   contact.html - page-specific stylesheet
   PC-first / breakpoints: 1200px, 960px, 568px
============================================================ */

/* ------------------------------------------------------------
   Partnership (wholesale info)
------------------------------------------------------------ */
.wholesale_info { padding: 120px 0; background: var(--c_bg_alt); }
.wholesale_info_inner { max-width: 980px; margin: 0 auto; }
.wholesale_info_head { text-align: center; margin-bottom: 64px; }
.wholesale_info_head .section_label { text-align: center; margin-bottom: 16px; }
.wholesale_info_heading {
  font-size: 48px;
  font-weight: 500;
  color: var(--c_accent);
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 0 24px;
}
.wholesale_info_lead {
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 auto;
}

.wholesale_block {
  border-left: 2px solid var(--c_accent);
  padding-left: 34px;
}
.wholesale_block + .wholesale_block { margin-top: 64px; }
.wholesale_block-alt { border-left-color: #93764f; }
.wholesale_block_title { font-size: 20px; font-weight: 500; color: var(--c_black); letter-spacing: 0.03em; margin: 0 0 12px; }
.wholesale_block_label { font-size: 14px; letter-spacing: 0.1em; color: var(--c_label); margin: 0 0 16px; }
.wholesale_block_text { color: var(--c_text_strong); line-height: 2; margin: 0; }
.wholesale_block_group + .wholesale_block_group { margin-top: 16px; }
.wholesale_block_subtitle { font-size: 14px; font-weight: 500; color: var(--c_dark); margin: 0 0 4px; }

.wholesale_info_note {
  text-align: center;
  color: var(--c_text);
  margin: 80px 0 0;
}

@media (max-width: 1200px) {
  .wholesale_info { padding: 96px 0; }
}
@media (max-width: 568px) {
  .wholesale_info { padding: 72px 0; }
  .wholesale_info_head { margin-bottom: 48px; }
  .wholesale_info_heading { font-size: 25px; }
  .wholesale_block { padding-left: 24px; }
  .wholesale_block + .wholesale_block { margin-top: 48px; }
  .wholesale_info_note { margin-top: 56px; }
}

/* ------------------------------------------------------------
   Contact form
------------------------------------------------------------ */
.contact_form_section { padding: 80px 0; background: var(--c_white); }
.contact_form_wrap { max-width: 900px; margin: 0 auto; }
.contact_form_head { text-align: center; margin-bottom: 48px; }
.contact_form_head .section_label { text-align: center; margin-bottom: 16px; }
.contact_form_heading {
  font-size: 48px;
  font-weight: 500;
  color: var(--c_accent);
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 0 24px;
}
.contact_form_lead {
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 576px;
  margin: 0 auto;
}

.contact_form_notice {
  max-width: 640px;
  margin: 32px auto 0;
  padding: 20px 24px;
  border: 1px solid var(--c_border);
  background: var(--c_bg_alt);
  color: var(--c_text_strong);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: center;
}

.form_row { padding-top: 48px; }
.form_label {
  display: block;
  letter-spacing: 0.15em;
  color: var(--c_label);
  margin-bottom: 16px;
}
.form_required { color: var(--c_gold); }
.form_label_note { letter-spacing: 0.05em; color: var(--c_label); margin-left: 8px; }

.form_radio_group { display: flex; flex-wrap: wrap; gap: 24px; }
.form_radio { display: flex; flex-wrap: wrap; gap: 24px; }
.form_radio .wpcf7-list-item { display: inline-flex; }
.form_radio .wpcf7-list-item label { display: inline-flex; align-items: center; gap: 8px; color: var(--c_black); cursor: pointer; }
.form_radio input { width: 16px; height: 16px; accent-color: var(--c_accent); cursor: pointer; }

.form_sublabel { display: block; color: var(--c_text); margin: 0 0 8px; }
.form_subrow + .form_subrow { margin-top: 24px; }

.form_input,
.form_select,
.form_textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--c_border);
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: var(--c_black);
  padding: 12px 4px 13px;
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
}
.form_input::placeholder,
.form_textarea::placeholder { color: var(--c_muted); }
.form_input:focus,
.form_select:focus,
.form_textarea:focus { outline: none; border-color: var(--c_accent); }
.form_select { appearance: none; cursor: pointer; background-image: none; }
.form_select_wrap { position: relative; }
.form_select_wrap::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--c_text);
  border-bottom: 1px solid var(--c_text);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.form_select_wrap-narrow { width: 172px; }
.form_select_hint { margin: 12px 0 0; }
.form_select_hint li { font-size: 14px; color: var(--c_label); }

.form_postal_row { display: flex; align-items: flex-end; gap: 12px; margin-bottom: 12px; }
.form_postal_mark { color: var(--c_text_strong); padding-bottom: 13px; }
.form_input-postal { width: 160px; }

.form_date_row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.form_input-num { width: 80px; text-align: center; }
.form_date_unit { color: var(--c_text_strong); }

.form_textarea { resize: vertical; min-height: 100px; }
.form_hint { font-size: 10px; letter-spacing: 0.02em; color: var(--c_label); margin: 4px 0 0; text-align: right; }

/* Conditional blocks (order item / pickup service) dim and lock until
   their related "inquiry type" radio is selected. Visible/usable by
   default so the form works fully without JS. Fields inside are also
   disabled via JS (see common.js) so they can't be tabbed into or
   submitted while dimmed. */
.form_conditional { transition: opacity 0.3s var(--ease); }
html.has_js .form_conditional { opacity: 0.4; pointer-events: none; }
html.has_js .form_conditional.is_active { opacity: 1; pointer-events: auto; }

.form_submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c_accent);
  color: var(--c_white);
  border: 0;
  letter-spacing: 0.15em;
  padding: 16px 40px;
  margin-top: 48px;
  cursor: pointer;
  transition: background-color 0.3s var(--ease);
}
.form_submit:hover { background: #897c32; }

@media (max-width: 1200px) {
  .contact_form_section { padding: 120px 0; }
}
@media (max-width: 568px) {
  .contact_form_section { padding: 80px 0; }
  .contact_form_head { margin-bottom: 40px; }
  .contact_form_heading { font-size: 32px; }
  .contact_form_notice { margin-top: 24px; padding: 16px 20px; }
  .form_row { padding-top: 32px; }
  .form_radio_group { gap: 16px; row-gap: 12px; }
  .form_postal_row { flex-wrap: wrap; }
}
