/* ========================================
   空き家問題ページ - Specific Styles
   VacantHouse.tsx 忠実再現
   ======================================== */

/* ─── Hero ─── */
.vacant-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    padding-top: 68px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.vacant-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1757922585316-583b0597edf1?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxhYmFuZG9uZWQlMjB3b29kZW4lMjBvbGQlMjBob3VzZSUyMGNvdW50cnlzaWRlJTIwSmFwYW58ZW58MXx8fHwxNzczMzExMzg5fDA&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
}

.vacant-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 20, 40, 0.42) 0%,
        rgba(10, 20, 40, 0.28) 40%,
        rgba(10, 20, 40, 0.65) 100%
    );
}

.vacant-hero-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

.vacant-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 64px 24px 56px;
}

.vacant-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.vacant-hero-eyebrow-line {
    display: block;
    height: 1px;
    width: 32px;
    background-color: #c9a84c;
    opacity: 0.7;
}

.vacant-hero-eyebrow-text {
    font-size: 10px;
    letter-spacing: 0.22em;
    color: #c9a84c;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

.vacant-hero-title {
    font-size: clamp(26px, 4.5vw, 46px);
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    color: white;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin: 0 0 12px;
}

.vacant-hero-subtitle {
    font-size: clamp(13px, 1.8vw, 16px);
    font-family: 'Noto Sans JP', sans-serif;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0;
}

/* ─── Main ─── */
.vacant-main {
    background: #fafbfc;
    min-height: 40vh;
}

.vacant-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 112px 24px;
}

/* ─── Under construction card ─── */
.vacant-card-wrap {
    max-width: 448px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    background: white;
    box-shadow: 0 8px 40px rgba(26, 49, 82, 0.1);
    border: 1px solid rgba(26, 49, 82, 0.06);
}

.vacant-card-top-bar {
    height: 6px;
    background: linear-gradient(90deg, #1a3152, #c9a84c, #1a3152);
}

.vacant-card-body {
    padding: 64px 40px;
}

.vacant-card-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    background: rgba(201, 168, 76, 0.1);
}

.vacant-card-icon-wrap svg {
    color: #c9a84c;
}

.vacant-card-heading {
    font-size: 20px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    color: #1a3152;
    letter-spacing: 0.06em;
    line-height: 1.8;
    margin: 0 0 8px;
}

.vacant-card-sub {
    font-size: 16px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    color: #6b7280;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin: 0;
}

.vacant-card-divider {
    width: 40px;
    height: 2px;
    background-color: #c9a84c;
    border-radius: 50px;
    margin: 24px auto 0;
}

/* ─── CTA area ─── */
.vacant-cta {
    text-align: center;
    margin-top: 48px;
}

.vacant-cta-note {
    font-size: 13px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #9ca3af;
    font-weight: 300;
    margin: 0 0 24px;
}

.vacant-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    border-radius: 50px;
    background: linear-gradient(135deg, #c9a84c, #d4b566);
    color: white;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
    transition: box-shadow 0.3s, transform 0.3s;
}

.vacant-cta-button:hover {
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.45);
    transform: translateY(-2px);
}
