/* 关于我们 / 联系我们 — 与全站统一的「雅金 + 墨绿」气质 */

.page-hero {
    padding: clamp(100px, 14vw, 132px) 0 clamp(36px, 6vw, 48px);
    background:
        radial-gradient(ellipse 90% 80% at 50% 0%, rgba(196, 163, 90, 0.12), transparent 55%),
        linear-gradient(180deg, #f3efe6 0%, #ebe4d8 100%);
    text-align: center;
    border-bottom: 1px solid rgba(42, 74, 48, 0.08);
}

.page-hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.55em;
    color: var(--gold);
    margin-bottom: 14px;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.22em;
    margin-bottom: 18px;
}

.page-hero-line {
    width: 48px;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* —— 关于我们 —— */
.about-body {
    padding: clamp(56px, 9vw, 88px) 0 clamp(72px, 11vw, 100px);
    background: linear-gradient(180deg, #fff 0%, #faf8f4 55%, #f5f1ea 100%);
}

.about-story {
    display: grid;
    grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    min-height: 320px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 28%, rgba(196, 163, 90, 0.2), transparent 65%),
        linear-gradient(165deg, #f7f4ec 0%, #e8e2d5 48%, #f0ebe2 100%);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 5vw, 40px);
}

.about-visual::after {
    content: '';
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(168, 137, 61, 0.22);
    border-radius: 50%;
    pointer-events: none;
}

.about-visual-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-visual-svg {
    width: min(220px, 58vw);
    height: auto;
    color: var(--primary);
    opacity: 0.92;
    filter: drop-shadow(0 12px 28px rgba(42, 74, 48, 0.1));
}

.about-visual-caption {
    margin-top: 16px;
    font-size: 13px;
    letter-spacing: 0.6em;
    color: var(--text-muted);
    text-indent: 0.6em;
}

.about-copy .about-kicker {
    font-size: 12px;
    letter-spacing: 0.42em;
    color: var(--gold);
    margin-bottom: 12px;
}

.about-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3.2vw, 30px);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.14em;
    margin-bottom: 22px;
    line-height: 1.45;
}

.about-intro {
    line-height: 2.05;
    color: var(--text-body);
    font-size: 15px;
    margin-bottom: 36px;
    max-width: 40em;
}

.about-intro p {
    margin-bottom: 0.9em;
    text-align: justify;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 3vw, 28px);
    padding-top: 8px;
    border-top: 1px solid rgba(42, 74, 48, 0.1);
}

.about-pillar {
    text-align: left;
    padding-top: 20px;
}

.about-pillar-ico {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    color: var(--primary);
    opacity: 0.88;
}

.about-pillar h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.about-pillar p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* —— 联系我们（复用 about-body / about-story 左右布局）—— */
.contact-page .contact-rule {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 28px;
}

.contact-dl {
    margin: 0 0 32px;
}

.contact-dl > div {
    padding: 18px 0;
    border-bottom: 1px solid rgba(42, 74, 48, 0.08);
}

.contact-dl > div:first-child {
    padding-top: 0;
}

.contact-dl dt {
    font-size: 11px;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-dl dd {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
    margin: 0;
}

.contact-dl a {
    color: var(--primary);
    font-weight: 500;
}

.contact-dl a:hover {
    color: var(--gold-light);
}

.contact-qr-inline {
    padding-top: 8px;
}

.contact-qr-inline .qr-label {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.contact-qr-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 132px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-qr-box img {
    max-width: 118px;
    max-height: 118px;
    border-radius: 6px;
}

.contact-qr-placeholder {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    padding: 8px;
}

.contact-map-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 360px;
    background: #e8e4dc;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-map-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 2;
    display: none;
}

.contact-map-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 55% at 50% 40%, rgba(42, 74, 48, 0.08), transparent 70%),
        linear-gradient(160deg, #e5e0d6 0%, #d8d2c6 45%, #ebe6dc 100%);
}

.contact-map-fallback::before {
    content: '';
    position: absolute;
    inset: 14%;
    border: 1px dashed rgba(42, 74, 48, 0.12);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.contact-map-pin {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: var(--primary);
}

.contact-map-fallback h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.2em;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-map-fallback .map-addr {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.75;
    max-width: 22em;
    margin-bottom: 22px;
}

.contact-map-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.contact-map-actions .btn-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 14px;
    letter-spacing: 0.12em;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-family: var(--font-cn);
    transition: var(--transition);
    text-decoration: none;
}

.contact-map-actions .btn-map:hover {
    background: var(--primary-light);
    box-shadow: 0 8px 24px rgba(42, 74, 48, 0.25);
}

.contact-map-hint {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    max-width: 28em;
    line-height: 1.65;
}

.contact-baidu-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
}

.contact-map-wrap.has-baidu-map .contact-baidu-map {
    display: block;
}

.contact-map-wrap.has-baidu-map .contact-map-fallback {
    display: none;
}

.contact-map-wrap.has-embed .contact-map-frame {
    display: block;
}

.contact-map-wrap.has-embed .contact-map-fallback {
    display: none;
}

@media screen and (max-width: 900px) {
    .about-pillars {
        grid-template-columns: 1fr;
    }
}

/* 手机端：关于我们 / 联系我们 隐藏左侧 SVG「玉韵」装饰 */
@media screen and (max-width: 768px) {
    .about-body .about-visual {
        display: none;
    }

    .about-story {
        grid-template-columns: 1fr;
    }
}

/* 超窄屏微调 */
@media screen and (max-width: 640px) {
    .about-story {
        gap: clamp(24px, 5vw, 36px);
    }
}
