@charset "UTF-8";

body {
    background:
        linear-gradient(rgba(8, 26, 39, 0.35), rgba(8, 26, 39, 0.46)),
        url('/Background/Village.webp') center / cover fixed no-repeat;
}

main {
    width: min(var(--content-width), calc(100% - 64px));
    margin: 0 auto;
    padding: clamp(28px, 5vw, 68px) 0;
}

.about-hero,
.story-card,
.team-section,
.locations-section {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.about-hero {
    min-height: 420px;
    padding: clamp(36px, 7vw, 80px);
    display: flex;
    align-items: flex-end;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(7, 23, 35, 0.82), rgba(7, 23, 35, 0.35)),
        url('/Gallery-Main/Longos.webp') center / cover no-repeat;
}

.about-hero-copy {
    max-width: 780px;
}

.about-hero h1 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 5rem);
}

.about-hero p {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.06rem;
}

.property-story-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.story-card {
    padding: clamp(28px, 4vw, 44px);
    border-color: var(--color-border);
    border-radius: var(--radius-lg);
}

.story-card h2 {
    margin-bottom: 1rem;
}

.story-card p {
    max-width: 640px;
}

.text-link {
    display: block;
    width: fit-content;
    margin-top: 0.55rem;
    color: var(--color-sea-600);
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    color: var(--color-navy-900);
    text-decoration: underline;
}

.team-section,
.locations-section {
    margin-top: 22px;
    padding: clamp(28px, 5vw, 52px);
    border-color: var(--color-border);
    border-radius: var(--radius-lg);
}

.section-heading {
    max-width: 800px;
    margin-bottom: 28px;
}

.section-heading h2 {
    margin-bottom: 0.75rem;
}

.section-heading p {
    margin-bottom: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.host-card {
    display: grid;
    grid-template-columns: 210px 1fr;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: var(--color-surface-soft);
}

.host-photo {
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
}

.host-content {
    padding: 24px;
}

.host-role {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--color-sand-500);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.host-content h3 {
    margin-bottom: 0.8rem;
}

.host-content p {
    font-size: 0.95rem;
}

.host-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1rem;
}

.host-meta span {
    padding: 0.35rem 0.65rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
    color: var(--color-navy-800);
    font-size: 0.78rem;
    font-weight: 650;
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.map-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: var(--color-surface-soft);
}

.map-slot,
.map-slot iframe {
    width: 100%;
    height: 360px;
    border: 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.3rem;
    background:
        linear-gradient(135deg, rgba(79, 127, 137, 0.12), rgba(201, 155, 97, 0.14)),
        var(--color-surface-soft);
    color: var(--color-navy-900);
    text-align: center;
}

.map-placeholder span {
    color: var(--color-sand-500);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.map-placeholder strong {
    font-size: 1.25rem;
}

.map-placeholder small {
    color: var(--color-text-muted);
}

.map-card-copy {
    padding: 18px 20px;
}

.map-card-copy h3,
.map-card-copy p {
    margin-bottom: 0;
}

.map-card-copy p {
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

@media (max-width: 1050px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    main {
        width: min(100% - 32px, var(--content-width));
    }

    .property-story-grid,
    .maps-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        min-height: 480px;
        padding: 32px;
    }
}

@media (max-width: 650px) {
    main {
        width: min(100% - 24px, var(--content-width));
    }

    .about-hero {
        min-height: 430px;
        padding: 24px;
        border-radius: 20px;
    }

    .host-card {
        grid-template-columns: 1fr;
    }

    .host-photo {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .team-section,
    .locations-section,
    .story-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .map-slot,
    .map-slot iframe {
        height: 300px;
    }
}
