/* =====================================================================
 * About + Contact page block widgets — mirrors about.html / contact.html.
 * Loaded site-wide (and in the Elementor editor) so the ss_about_* and
 * ss_contact_* widgets render correctly anywhere they're placed.
 * ===================================================================== */

/* ===================================================================
 * ABOUT
 * =================================================================== */

/* ---- Hero ---- */
.about-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: #2a241d;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
.about-hero__inner { position: relative; z-index: 2; padding: 80px 24px; max-width: 760px; }
.about-hero__eyebrow {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #e7cfa0;
  margin-bottom: 18px;
}
.about-hero__title {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.12;
  margin-bottom: 22px;
}
.about-hero__sub { font-size: 16px; line-height: 1.9; color: rgba(255, 255, 255, .85); }

/* ---- Shared section scaffolding ---- */
.apg-section { max-width: 1180px; margin: 0 auto; padding: 92px 24px; }
.about-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a063;
  margin-bottom: 14px;
}
.about-heading {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 500;
  letter-spacing: 1px;
  color: #2a241d;
  line-height: 1.2;
}
.about-text { font-size: 15px; line-height: 1.95; color: #5b5048; }
.about-text p + p { margin-top: 16px; }

/* ---- Intro / craft split ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-split--reverse .about-split__media { order: 2; }
.about-split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f0ece5;
}
.about-split__media img { width: 100%; height: 100%; object-fit: cover; }
.about-split__media::after {
  content: "";
  position: absolute;
  left: 18px; top: 18px; right: -18px; bottom: -18px;
  border: 1px solid #d9c7a6;
  z-index: -1;
}
.about-split__body .about-heading { margin-bottom: 22px; }
.about-split__media--noframe::after { display: none; }

/* ---- Values ---- */
.about-values { background: #fafaf7; }
.about-values__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.about-values__head .about-heading { margin-bottom: 16px; }
.apg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.about-card {
  background: #fff;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #efe8dc;
  transition: transform .35s ease, box-shadow .35s ease;
}
.about-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(42, 36, 29, .1); }
.about-card__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5eddf;
  color: #b08c4f;
}
.about-card__icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.about-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .5px;
  color: #2a241d;
  margin-bottom: 12px;
}
.about-card p { font-size: 14px; line-height: 1.8; color: #6b6258; }

/* ---- Stats band ---- */
.about-stats { position: relative; color: #fff; background: #2a241d; overflow: hidden; }
.about-stats__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.about-stats__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.about-stat__num { font-size: clamp(32px, 4vw, 48px); font-weight: 600; color: #e7cfa0; letter-spacing: 1px; }
.about-stat__label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  margin-top: 8px;
}

/* ---- Quote ---- */
.about-quote { text-align: center; max-width: 880px; }
.about-quote blockquote {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.6;
  color: #2a241d;
  font-style: italic;
}
.about-quote blockquote span { color: #c9a063; }
.about-quote cite {
  display: block;
  margin-top: 26px;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8178;
}

/* ---- CTA ---- */
.about-cta { text-align: center; background: #f7f1e9; }
.about-cta .about-heading { margin-bottom: 18px; }
.about-cta p { font-size: 15px; line-height: 1.9; color: #5b5048; max-width: 560px; margin: 0 auto 30px; }
.about-btn {
  display: inline-block;
  background: #2a241d;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: background .25s ease;
}
.about-btn:hover { background: #c9a063; }

/* ===================================================================
 * CONTACT
 * =================================================================== */

.contact-head { text-align: center; padding: 46px 24px 6px; }
.contact-head .breadcrumb { font-size: 13px; letter-spacing: .4px; color: #8a8178; margin-bottom: 18px; }
.contact-head .breadcrumb a { color: #8a8178; transition: color .2s ease; }
.contact-head .breadcrumb a:hover { color: #c9a063; }
.contact-head .breadcrumb .sep { margin: 0 8px; color: #c9bfb2; }
.contact-head .breadcrumb .current { color: #2a241d; }
.contact-eyebrow { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: #c9a063; margin-bottom: 12px; }
.contact-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #2a241d;
  line-height: 1.18;
  margin-bottom: 16px;
}
.contact-intro { max-width: 620px; margin: 0 auto; font-size: 15px; line-height: 1.9; color: #5b5048; }

.contact-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 96px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.contact-layout--info-only,
.contact-layout--form-only { grid-template-columns: 1fr; max-width: 760px; }

.contact-info__lead { font-size: 15px; line-height: 1.9; color: #5b5048; margin-bottom: 34px; }
.contact-method { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid #efe8dc; }
.contact-method:first-of-type { border-top: 1px solid #efe8dc; }
.contact-method__icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f5eddf;
  color: #b08c4f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-method__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.contact-method__body h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2a241d;
  margin-bottom: 6px;
}
.contact-method__body p { font-size: 14px; line-height: 1.75; color: #6b6258; }
.contact-method__body a { color: #6b6258; transition: color .2s ease; }
.contact-method__body a:hover { color: #c9a063; }

.contact-social { display: flex; gap: 12px; margin-top: 30px; }
.contact-social a {
  width: 42px;
  height: 42px;
  border: 1px solid #e2dccf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b5048;
  transition: color .2s ease, border-color .2s ease, transform .25s ease;
}
.contact-social a:hover { color: #c9a063; border-color: #c9a063; transform: translateY(-3px); }
.contact-social svg { width: 18px; height: 18px; fill: currentColor; }

.contact-form-card { background: #fafaf7; border: 1px solid #efe8dc; padding: 42px 40px 46px; }
.contact-form-card h2 { font-size: 20px; font-weight: 600; letter-spacing: .6px; color: #2a241d; margin-bottom: 6px; }
.contact-form-card > p { font-size: 14px; line-height: 1.7; color: #8a8178; margin-bottom: 28px; }
.contact-form { display: grid; gap: 20px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form .field { display: flex; flex-direction: column; }
.contact-form .field label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5b5048;
  margin-bottom: 8px;
}
.contact-form .field input,
.contact-form .field textarea {
  font-family: inherit;
  font-size: 14px;
  color: #2a241d;
  background: #fff;
  border: 1px solid #e2dcd2;
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form .field textarea { resize: vertical; min-height: 140px; }
.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder { color: #b3aa9d; }
.contact-form .field input:focus,
.contact-form .field textarea:focus { border-color: #c9a063; box-shadow: 0 0 0 3px rgba(201, 160, 99, .12); }
.contact-submit {
  justify-self: start;
  background: #2a241d;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 15px 40px;
  border: none;
  cursor: pointer;
  transition: background .25s ease;
}
.contact-submit:hover { background: #c9a063; }
.contact-submit:disabled { opacity: .6; cursor: default; }
.contact-form__status { font-size: 13px; line-height: 1.5; min-height: 1em; margin-top: 4px; }
.contact-form__status.is-ok { color: #4a8f5b; }
.contact-form__status.is-error { color: #c0392b; }

.contact-map { width: 100%; aspect-ratio: 1400 / 360; overflow: hidden; background: #f0ece5; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.25); }

/* ===================================================================
 * Responsive
 * =================================================================== */
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .about-split--reverse .about-split__media { order: 0; }
  .about-split__media { aspect-ratio: 16 / 11; }
  .about-split__media::after { display: none; }
  .apg-grid { grid-template-columns: 1fr; }
  .about-stats__inner { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 560px) {
  .apg-section { padding: 64px 20px; }
  .about-stats__inner { grid-template-columns: 1fr 1fr; }
  .contact-layout { padding: 40px 20px 72px; }
  .contact-form-card { padding: 30px 22px 34px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .contact-map { aspect-ratio: 4 / 3; }
}

/* ===================================================================
 * Elementor compatibility — Elementor's `.elementor img { height:auto }`
 * reset collapses our full-bleed media. Re-assert it for the page blocks.
 * =================================================================== */
.about-hero__bg,
.about-stats__bg,
.about-split__media img {
  height: 100% !important;
  width: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block;
}

/* ===================================================================
 * FAQ
 * =================================================================== */
.faq-section { max-width: 860px; margin: 0 auto; padding: 72px 24px 96px; }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-eyebrow { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: #c9a063; margin-bottom: 12px; }
.faq-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #2a241d;
  line-height: 1.18;
  margin-bottom: 16px;
}
.faq-intro { max-width: 620px; margin: 0 auto; font-size: 15px; line-height: 1.9; color: #5b5048; }

.faq-group__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b08c4f;
  padding-bottom: 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid #e7dcc8;
}
.faq-list { margin: 0; }
.faq-item { border-bottom: 1px solid #efe8dc; }
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 2px;
  font-size: 16px;
  font-weight: 600;
  color: #2a241d;
  transition: color .2s ease;
}
.faq-item > summary:hover { color: #c9a063; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #c9a063;
  transition: transform .25s ease;
}
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-a { padding: 2px 2px 24px; font-size: 15px; line-height: 1.85; color: #5b5048; }
.faq-a p { margin: 0 0 12px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: #c9a063; }
.faq-a a:hover { text-decoration: underline; }

/* FAQ help card */
.faq-cta {
  margin-top: 56px;
  text-align: center;
  background: #f7f1e9;
  padding: 46px 24px;
}
.faq-cta h3 { font-size: 22px; font-weight: 500; letter-spacing: .6px; color: #2a241d; margin-bottom: 12px; }
.faq-cta p { font-size: 15px; line-height: 1.8; color: #5b5048; max-width: 520px; margin: 0 auto 26px; }
.faq-btn {
  display: inline-block;
  background: #2a241d;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 15px 38px;
  transition: background .25s ease;
}
.faq-btn:hover { background: #c9a063; }

@media (max-width: 560px) {
  .faq-section { padding: 52px 20px 72px; }
  .faq-item > summary { font-size: 15px; }
}

/* The theme renders its own header language/currency switcher (wired to the
   百翻货 plugin), so hide the plugin's auto-injected standalone switcher and
   its floating language switcher to avoid duplicates. */
.bfh-currency-switcher.bfh-position-header,
.bfh-currency-switcher.bfh-position-footer,
.bfh-language-switcher-floating { display: none !important; }
