.page-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--pearl-white);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(199, 155, 52, 0.22), transparent 18%),
        linear-gradient(135deg, rgba(9, 17, 29, 0.88), rgba(20, 40, 69, 0.78));
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto auto -120px -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-content {
    max-width: 800px;
    padding: 146px 0 92px;
}

.page-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    line-height: 0.98;
}

.page-tag {
    display: inline-block;
    padding: 10px 18px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-section {
    padding: 88px 0;
}

.page-title {
    color: var(--pearl-navy);
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    margin-bottom: 14px;
}

.page-subtitle,
.section-note {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    color: var(--pearl-slate);
    line-height: 1.8;
}

.page-card,
.soft-panel,
.highlight-panel,
.contact-box,
.gallery-banner {
    border-radius: var(--pearl-radius);
}

.page-card {
    height: 100%;
    padding: 30px 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(20, 40, 69, 0.08);
    box-shadow: var(--pearl-shadow);
}

.page-card h4,
.page-card h5 {
    margin: 14px 0 12px;
    color: var(--pearl-navy);
    font-size: 2rem;
}

.page-card p {
    margin-bottom: 0;
    color: var(--pearl-slate);
    line-height: 1.8;
}

.soft-panel {
    padding: 36px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(20, 40, 69, 0.08);
    box-shadow: var(--pearl-shadow);
}

.soft-panel p,
.highlight-panel p,
.contact-box p,
.gallery-banner p {
    color: var(--pearl-slate);
    line-height: 1.8;
}

.soft-panel h3,
.highlight-panel h3,
.gallery-banner h3 {
    color: var(--pearl-navy);
    font-size: 2.2rem;
}

.highlight-panel {
    padding: 36px;
    background: linear-gradient(135deg, rgba(11, 21, 40, 0.98), rgba(20, 40, 69, 0.98));
    box-shadow: var(--pearl-shadow);
}

.highlight-panel h3,
.highlight-panel p,
.highlight-panel li {
    color: var(--pearl-white);
}

.icon-badge {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(20, 40, 69, 0.09), rgba(199, 155, 52, 0.14));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pearl-gold);
    font-size: 1.7rem;
    box-shadow: 0 14px 26px rgba(11, 21, 40, 0.08);
}

.contact-box {
    height: 100%;
    padding: 30px 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(20, 40, 69, 0.08);
    box-shadow: var(--pearl-shadow);
}

.contact-box h5 {
    margin: 16px 0 10px;
    color: var(--pearl-navy);
    font-size: 1.8rem;
}

.contact-box a {
    color: var(--pearl-navy);
    text-decoration: none;
}

.contact-box a:hover {
    color: var(--pearl-gold);
}

.simple-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.simple-list li {
    position: relative;
    padding: 12px 0 12px 24px;
    border-bottom: 1px solid rgba(20, 40, 69, 0.08);
    color: inherit;
}

.simple-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pearl-gold);
}

.simple-list li:last-child {
    border-bottom: none;
}

.image-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--pearl-radius);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 40, 69, 0.08);
    box-shadow: var(--pearl-shadow);
}

.image-card .photo-media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    padding: 14px;
    background: linear-gradient(180deg, rgba(20, 40, 69, 0.05), rgba(199, 155, 52, 0.12));
}

.image-card[data-frame="portrait"] .photo-media {
    aspect-ratio: 4 / 5;
}

.image-card[data-frame="square"] .photo-media {
    aspect-ratio: 1 / 1;
}

.image-card[data-fit="contain"] .photo-media img {
    object-fit: contain;
}

.image-card[data-fit="cover"] .photo-media img {
    object-fit: cover;
}

.image-card[data-focus="top"] .photo-media img {
    object-position: center top;
}

.image-card[data-focus="center"] .photo-media img {
    object-position: center center;
}

.feature-image-card .photo-media {
    aspect-ratio: 16 / 11;
    padding: 0;
}

.feature-image-card .photo-media img {
    border-radius: 0;
}

.image-card .photo-media img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: var(--pearl-white);
}

.image-card .card-body,
.photo-body {
    padding: 24px 22px;
}

.photo-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--pearl-gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.image-card .card-title,
.photo-body h4,
.photo-body h5 {
    color: var(--pearl-navy);
    margin-bottom: 10px;
    font-size: 2rem;
}

.image-card .card-text,
.photo-body p {
    margin-bottom: 0;
    color: var(--pearl-slate);
    line-height: 1.8;
}

.gallery-banner {
    padding: 36px;
    background: linear-gradient(145deg, rgba(199, 155, 52, 0.12), rgba(20, 40, 69, 0.08));
    border: 1px solid rgba(20, 40, 69, 0.08);
    box-shadow: var(--pearl-shadow);
}

@media screen and (max-width: 768px) {
    .page-section {
        padding: 72px 0;
    }

    .page-hero-content {
        padding: 128px 0 74px;
    }

    .soft-panel,
    .highlight-panel,
    .page-card,
    .contact-box,
    .gallery-banner {
        padding: 24px 20px;
    }

    .image-card .photo-media,
    .image-card[data-frame="portrait"] .photo-media,
    .image-card[data-frame="square"] .photo-media {
        aspect-ratio: auto;
        min-height: 220px;
    }
}
