/* ---------- Variables (Modern Premium Palette) ---------- */
:root {
    --hp-primary: #00AEEF;
    --hp-primary-dark: #0089BC;
    --hp-secondary: #212529;
    --hp-accent: #E9C46A;
    --hp-success: #2A9D8F;
    --hp-white: #FFFFFF;
    --hp-bg: #FFFFFF;
    --hp-bg-alt: #F8FAFC;
    --hp-text: #0F172A;
    --hp-text-light: #64748B;
    --hp-border: #E2E8F0;
    --hp-radius-sm: 12px;
    --hp-radius: 20px;
    --hp-radius-lg: 32px;
    --hp-font-display: 'ABeeZee', serif;
    --hp-font-main: 'ABeeZee', sans-serif;
    --hp-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --hp-shadow-lg: 0 20px 50px -10px rgba(0, 0, 0, 0.12);
    --hp-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body { font-family: var(--hp-font-main); color: var(--hp-text); overflow-x: hidden; }

/* ---------- HERO ---------- */
.hp-hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 0 110px;
    overflow: hidden;
    color: var(--hp-white);
    background: #000;
}

.hp-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/Cap_carbon.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    animation: heroImmersive 20s linear infinite alternate;
}

@keyframes heroImmersive {
    from { transform: scale(1.1) translateX(0); }
    to { transform: scale(1.2) translateX(-20px); }
}

.hp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 15, 30, 0.4) 0%, 
        rgba(0, 15, 30, 0.2) 40%, 
        rgba(0, 15, 30, 0.8) 100%);
    mix-blend-mode: multiply;
}

.hp-hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, transparent 20%, rgba(0,0,0,0.4) 100%);
}
 
.hp-hero__chips {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.hp-chip {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--hp-radius-sm);
    padding: 12px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--hp-transition);
}

.hp-chip:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.hp-chip__icon {
    font-size: 1.5rem;
}

.hp-chip__num {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.hp-chip__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Hero Social Rail */
.hp-hero__social {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 12;
}

.hp-hero__social-label {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 3px;
    opacity: 0.7;
    margin-bottom: 8px;
}

.hp-social {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--hp-white);
    transition: var(--hp-transition);
}

.hp-social svg {
    width: 16px;
    height: 16px;
}

.hp-social:hover {
    background: var(--hp-primary);
    border-color: var(--hp-primary);
    color: var(--hp-white);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.45);
}

.hp-hero__content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hp-hero__logo {
    display: block;
    width: clamp(150px, 24vw, 260px);
    height: auto;
    margin: 0 auto 22px;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.3));
}

.hp-hero__slogan {
    margin-bottom: 14px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--hp-accent);
}

.hp-hero__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hp-hero__tag {
    background: var(--hp-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
}

.hp-hero__location {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.hp-hero__title {
    font-family: var(--hp-font-display);
    font-size: clamp(2.4rem, 6.5vw, 4.6rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-wrap: balance;
    margin: 0 0 22px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5), 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hp-hero__title em {
    font-style: italic;
    color: var(--hp-accent);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hp-hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto 45px;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.hp-hero__tagline {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--hp-accent);
    margin-bottom: 12px;
}

/* Premium Search Bar */
.hp-search-premium {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}

.hp-search-glass {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--hp-radius-lg);
    padding: 8px 8px 8px 25px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: var(--hp-transition);
}

.hp-search-glass:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hp-search-icon {
    color: white;
    opacity: 0.6;
}

.hp-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1.1rem;
    padding: 15px 20px;
    font-family: inherit;
}

.hp-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hp-search-submit {
    background: var(--hp-white);
    color: var(--hp-text);
    border: none;
    padding: 15px 35px;
    border-radius: var(--hp-radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--hp-transition);
}

.hp-search-submit:hover {
    background: var(--hp-primary);
    color: white;
    transform: scale(1.05);
}

.hp-search-loader {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: hp-spin 0.7s linear infinite;
}
@keyframes hp-spin { to { transform: translateY(-50%) rotate(360deg); } }

.hp-hero__quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.hp-hero__quick-links .label {
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.6;
}

.hp-hero__quick-links a {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--hp-transition);
}

.hp-hero__quick-links a:hover {
    opacity: 1;
    color: var(--hp-accent);
}

/* Hero : responsif rail social */
@media (max-width: 1279px) {
    .hp-hero__social { display: none; }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .hp-hero__social { left: 14px; }
    .hp-social { width: 38px; height: 38px; }
    .hp-hero__social-label { display: none; }
}

/* ---------- SECTIONS COMMON ---------- */
.hp-section {
    padding: 120px 0;
}

.hp-section--alt {
    background: var(--hp-bg-alt);
}

.hp-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.hp-section__eyebrow {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--hp-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hp-section__title {
    font-family: var(--hp-font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
}

.hp-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--hp-primary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--hp-transition);
}

.hp-link-arrow:hover {
    gap: 15px;
    color: var(--hp-primary-dark);
}

/* ---------- LANDMARKS GRID ---------- */
.hp-landmarks {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-auto-rows: 500px;
    gap: 24px;
}

.hp-landmark {
    position: relative;
    border-radius: var(--hp-radius);
    overflow: hidden;
    box-shadow: var(--hp-shadow);
}

.hp-landmark__link {
    display: block;
    height: 100%;
}

.hp-landmark__img-wrap {
    position: relative;
    height: 100%;
}

.hp-landmark__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hp-landmark:hover .hp-landmark__img {
    transform: scale(1.1);
}

.hp-landmark__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}

.hp-landmark__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    color: white;
}

.hp-landmark__name {
    font-family: var(--hp-font-display);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hp-landmark--featured .hp-landmark__name {
    font-size: 2.8rem;
}

.hp-landmark__desc {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.5;
    max-width: 450px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hp-landmark__cta {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--hp-accent);
}

/* ---------- BENTO GRID ---------- */
.hp-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 24px;
}

.bento-large {
    grid-row: span 2;
}

.hp-cat-card {
    position: relative;
    border-radius: var(--hp-radius);
    overflow: hidden;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: white;
    background: #000;
}

.hp-cat-card__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: var(--hp-transition);
}

.hp-cat-card:hover .hp-cat-card__bg-img {
    opacity: 0.7;
    transform: scale(1.05);
}

.hp-cat-card__icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.hp-cat-card__content {
    position: relative;
    z-index: 1;
}

.hp-cat-card h3 {
    font-family: var(--hp-font-display);
    font-size: 2rem;
    margin-bottom: 10px;
}

.hp-cat-card p {
    font-size: 1.05rem;
    opacity: 0.8;
    max-width: 300px;
}

/* ---------- STATS BAR ---------- */
.hp-stats-bar {
    padding: 80px 0;
    background: white;
}

.hp-stats-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.hp-stat {
    text-align: center;
}

.hp-stat__num {
    display: block;
    font-family: var(--hp-font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--hp-primary);
    line-height: 1;
}

.hp-stat__label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hp-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- BLOG CARDS ---------- */
.hp-blog-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
}

.hp-blog-card {
    border-radius: var(--hp-radius);
    overflow: hidden;
    background: white;
    box-shadow: var(--hp-shadow);
    transition: var(--hp-transition);
}

.hp-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hp-shadow-lg);
}

.hp-blog-card__img-wrap {
    height: 250px;
    overflow: hidden;
}

.hp-blog-card--featured .hp-blog-card__img-wrap {
    height: 350px;
}

.hp-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-blog-card__cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--hp-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hp-blog-card__body {
    padding: 22px 24px;
}

.hp-blog-card__date {
    display: block;
    font-size: 0.8rem;
    color: var(--hp-text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.hp-blog-card__title {
    font-family: 'ABeeZee', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--hp-text);
    line-height: 1.35;
    margin-bottom: 10px;
}

.hp-blog-card--featured .hp-blog-card__title { font-size: 1.5rem; }

.hp-blog-card__excerpt {
    font-size: 0.88rem;
    color: var(--hp-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.hp-blog-card__read {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--hp-primary);
}

/* ---------- CTA SECTION ---------- */
.hp-cta {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: var(--hp-text);
    background: var(--hp-white);
    overflow: hidden;
}

.hp-cta__bg {
    display: none;
}

.hp-cta__content { position: relative; z-index: 1; }

.hp-cta__icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.hp-cta__title {
    font-family: 'ABeeZee', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 12px;
    font-weight: 700;
}

.hp-cta__sub {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}



.hp-cta__hint {
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 0.3px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hp-landmarks { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
    .hp-landmark--featured { grid-column: span 2; height: 360px; }
    .hp-landmark { height: 280px; }
    .hp-bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bento-large { grid-row: auto; }
    .hp-blog-grid { grid-template-columns: 1fr 1fr; }
    .hp-blog-grid .hp-blog-card--featured { grid-column: span 2; }
    .hp-hero__chips { display: none; }
}

@media (max-width: 768px) {
    .hp-hero { min-height: 0; padding: 120px 0 70px; }
    .hp-hero__content { padding: 0 20px; }
    .hp-hero__title { font-size: 1.9rem; letter-spacing: 0; }
    .hp-search__btn { padding: 14px 20px; font-size: 0.9rem; }
    .hp-landmarks { grid-template-columns: 1fr; grid-template-rows: auto; }
    .hp-landmark--featured { grid-column: span 1; height: 320px; }
    .hp-landmark { height: 260px; }
    .hp-bento-grid { grid-template-columns: 1fr; }
    .hp-blog-grid { grid-template-columns: 1fr; }
    .hp-blog-grid .hp-blog-card--featured { grid-column: auto; }
    .hp-stat__divider { display: none; }
    .hp-stats-bar__inner { gap: 32px; }
    .hp-section__header { flex-direction: column; align-items: flex-start; gap: 12px; }

}

@media (max-width: 640px) {
    .hp-hero { padding: 110px 0 60px; }
    .hp-hero__logo { width: 160px; }
    .hp-hero__slogan { font-size: 0.66rem; letter-spacing: 3px; }
    .hp-hero__title { font-size: 1.7rem; }
    .hp-hero__subtitle { margin-bottom: 30px; }
    .hp-search-glass { padding: 6px 6px 6px 14px; }
    .hp-search-input { font-size: 0.95rem; padding: 12px 12px; }
    .hp-search-submit { padding: 12px 16px; font-size: 0.9rem; }
    .hp-hero__quick-links { gap: 8px 12px; }
    .hp-hero__quick-links .label { width: 100%; text-align: center; }
}
