/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Lato', sans-serif;
    background-color: #0a1128;
    color: #f8f9fa;
    line-height: 1.6;
}
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #f1c40f;
}

/* Layout */
.pih-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.pih-section-block {
    padding: 80px 0;
}
.pih-alt-bg {
    background-color: #0d1633;
}

/* Header */
.pih-top-nav {
    background-color: #060a18;
    border-bottom: 1px solid #d4af37;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.pih-nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pih-logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.pih-logo-abbr {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #060a18;
    background-color: #d4af37;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 2px;
}
.pih-logo-text {
    display: flex;
    flex-direction: column;
}
.pih-brand {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pih-sub {
    font-size: 12px;
    color: #a0a5b5;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.pih-age-badge {
    border: 2px solid #d4af37;
    color: #d4af37;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

/* Hero Showcase */
.pih-hero-showcase {
    padding: 100px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.pih-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}
.pih-kicker {
    display: inline-block;
    color: #d4af37;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    border-bottom: 1px solid #d4af37;
    padding-bottom: 5px;
}
.pih-main-title {
    font-size: 64px;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.1;
}
.pih-hero-desc {
    font-size: 18px;
    color: #c0c5d5;
    margin-bottom: 60px;
    padding: 0 40px;
}
.pih-hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pih-hcard {
    background: linear-gradient(145deg, #121e42, #0d1633);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.pih-hcard:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
}
.pih-hcard-title {
    color: #d4af37;
    font-size: 20px;
    margin-bottom: 15px;
}
.pih-hcard-txt {
    font-size: 14px;
    color: #a0a5b5;
}

/* Generic Section Styles */
.pih-sec-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}
.pih-sec-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #a0a5b5;
}

/* Grids */
.pih-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.pih-grid-item {
    background-color: #121e42;
    padding: 40px 30px;
    border-radius: 8px;
    border-top: 3px solid #d4af37;
    transition: all 0.3s ease;
}
.pih-grid-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    background-color: #16244f;
}
.pih-item-kicker {
    display: block;
    color: #d4af37;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.pih-item-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}
.pih-item-txt {
    font-size: 15px;
    color: #c0c5d5;
    margin-bottom: 25px;
}
.pih-item-list {
    list-style: none;
}
.pih-item-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #a0a5b5;
}
.pih-item-list li::before {
    content: "•";
    color: #d4af37;
    position: absolute;
    left: 0;
    font-size: 18px;
    top: -2px;
}

/* Footer */
.pih-bottom-area {
    background-color: #050813;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.pih-footer-slogan {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 50px;
    font-style: italic;
}
.pih-footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.pih-foot-title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pih-foot-txt, .pih-foot-address {
    color: #a0a5b5;
    font-size: 14px;
    font-style: normal;
}
.pih-foot-address {
    line-height: 1.8;
}
.pih-foot-links {
    list-style: none;
}
.pih-foot-links li {
    margin-bottom: 10px;
}
.pih-foot-links a {
    color: #a0a5b5;
    font-size: 14px;
}
.pih-foot-links a:hover {
    color: #d4af37;
}
.pih-copyright {
    text-align: center;
    color: #5a627a;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .pih-hero-cards, .pih-grid-three {
        grid-template-columns: repeat(2, 1fr);
    }
    .pih-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .pih-main-title {
        font-size: 48px;
    }
    .pih-hero-cards, .pih-grid-three {
        grid-template-columns: 1fr;
    }
    .pih-footer-grid {
        grid-template-columns: 1fr;
    }
    .pih-nav-wrap {
        flex-direction: column;
        gap: 15px;
    }
}
