/* ============================================
   EVERYDAY IN SHAPE - PREMIUM HOMEPAGE DESIGN
   Custom non-template aesthetic 2026
   ============================================ */

/* CSS Variables - Extended Palette */
:root {
    --color-primary: #2d6a4f;
    --color-primary-dark: #1b4332;
    --color-primary-light: #40916c;
    --color-accent: #74c69d;
    --color-warm: #f8f6f3;
    --color-cream: #faf9f7;
    --color-sage: #b7e4c7;
    --color-forest: #081c15;
    
    --gradient-hero: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%);
    --gradient-soft: linear-gradient(180deg, rgba(183, 228, 199, 0.3) 0%, transparent 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 48px 96px rgba(0, 0, 0, 0.16);
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   BASE STYLES
   ============================================ */

.homepage-body {
    background: var(--color-cream);
    overflow-x: hidden;
}

/* ============================================
   HEADER - Glass Morphism v2
   ============================================ */

.hp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease-out-expo);
}

.hp-header-scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.hp-header-top {
    background: var(--color-primary);
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.hp-header-top a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hp-header-top a:hover {
    border-bottom-color: #fff;
}

.hp-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.hp-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lora', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-decoration: none;
}

.hp-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-hero);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: var(--shadow-md);
}

.hp-nav {
    display: flex;
    gap: 8px;
}

.hp-nav-link {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
}

.hp-nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-sage);
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s var(--ease-out-expo);
    z-index: -1;
}

.hp-nav-link:hover::before,
.hp-nav-link-active::before {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   HERO - Asymmetric Split with Depth
   ============================================ */

.hp-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.hp-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 0;
}

.hp-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orb-float 20s ease-in-out infinite;
}

.hp-hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--color-accent);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hp-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--color-sage);
    bottom: -100px;
    left: 10%;
    animation-delay: -5s;
}

.hp-hero-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.3);
    top: 40%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hp-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hp-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hp-hero-title {
    font-family: 'Lora', serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hp-hero-title-accent {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 16px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.02em;
}

.hp-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hp-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hp-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--color-primary-dark);
    padding: 18px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.hp-cta-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s var(--ease-out-expo);
    z-index: 0;
}

.hp-cta-primary:hover::after {
    width: 300px;
    height: 300px;
}

.hp-cta-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.hp-cta-primary span,
.hp-cta-primary i {
    position: relative;
    z-index: 1;
}

.hp-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #fff;
    padding: 18px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s var(--ease-out-expo);
}

.hp-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

/* Hero Visual Side */
.hp-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hp-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hp-hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.hp-hero-image-deco {
    position: absolute;
    border-radius: 24px;
    z-index: 1;
}

.hp-hero-image-deco-1 {
    inset: -20px;
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hp-hero-image-deco-2 {
    inset: -40px;
    background: rgba(116, 198, 157, 0.2);
    z-index: 0;
}

.hp-hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: card-float 6s ease-in-out infinite;
}

.hp-hero-floating-card-1 {
    top: 10%;
    left: -40px;
    animation-delay: 0s;
}

.hp-hero-floating-card-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: -3s;
}

@keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hp-floating-card-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-hero);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 12px;
}

.hp-floating-card-text {
    font-size: 13px;
    color: var(--color-primary-dark);
    font-weight: 600;
}

.hp-floating-card-sub {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

/* ============================================
   DISCLAIMERS - Horizontal Scroll Strip
   ============================================ */

.hp-disclaimers {
    background: var(--color-cream);
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.hp-disclaimers-track {
    display: flex;
    gap: 24px;
    animation: scroll-track 30s linear infinite;
    width: max-content;
}

.hp-disclaimers:hover .hp-disclaimers-track {
    animation-play-state: paused;
}

@keyframes scroll-track {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hp-disclaimer-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    white-space: nowrap;
}

.hp-disclaimer-icon {
    color: var(--color-primary-light);
    font-size: 14px;
}

/* ============================================
   POPULAR TOPICS - Staggered Masonry
   ============================================ */

.hp-topics {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, #fff 50%, var(--color-cream) 100%);
    position: relative;
    overflow: hidden;
}

.hp-topics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 106, 79, 0.2), transparent);
}

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

.hp-section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary-light);
    margin-bottom: 16px;
}

.hp-section-title {
    font-family: 'Lora', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hp-section-desc {
    font-size: 16px;
    color: #666;
    max-width: 400px;
    line-height: 1.6;
    margin-top: 16px;
}

.hp-topics-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 20px;
}

.hp-topic-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    text-decoration: none;
    color: var(--color-primary-dark);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.hp-topic-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-hero);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.hp-topic-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-sage);
}

.hp-topic-card:hover::after {
    transform: scaleX(1);
}

/* Asymmetric Grid Placement */
.hp-topic-card:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
}

.hp-topic-card:nth-child(2) {
    grid-column: 7 / 10;
    grid-row: 1 / 2;
}

.hp-topic-card:nth-child(3) {
    grid-column: 10 / 13;
    grid-row: 1 / 2;
}

.hp-topic-card:nth-child(4) {
    grid-column: 7 / 9;
    grid-row: 2 / 3;
}

.hp-topic-card:nth-child(5) {
    grid-column: 9 / 11;
    grid-row: 2 / 3;
}

.hp-topic-card:nth-child(6) {
    grid-column: 11 / 13;
    grid-row: 2 / 4;
}

.hp-topic-icon {
    width: 56px;
    height: 56px;
    background: var(--color-sage);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: auto;
    transition: all 0.4s var(--ease-out-back);
}

.hp-topic-card:hover .hp-topic-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--gradient-hero);
    color: #fff;
}

.hp-topic-card:nth-child(1) .hp-topic-icon {
    width: 72px;
    height: 72px;
    font-size: 32px;
}

.hp-topic-title {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: auto;
}

.hp-topic-card:nth-child(1) .hp-topic-title {
    font-size: 28px;
}

.hp-topic-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    opacity: 0.8;
}

.hp-topic-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: var(--color-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s var(--ease-out-expo);
}

.hp-topic-card:hover .hp-topic-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   EDITOR'S PICK - Diagonal Split Design
   ============================================ */

.hp-featured {
    position: relative;
    background: var(--color-forest);
    overflow: hidden;
}

.hp-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(64, 145, 108, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(116, 198, 157, 0.2) 0%, transparent 40%);
}

.hp-featured-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 600px;
    position: relative;
    z-index: 2;
}

.hp-featured-content {
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.hp-featured-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.hp-featured-eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--color-accent);
}

.hp-featured-title {
    font-family: 'Lora', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hp-featured-desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 480px;
}

.hp-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.hp-featured-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.4s var(--ease-out-expo);
    z-index: 0;
}

.hp-featured-cta:hover::before {
    left: 0;
}

.hp-featured-cta:hover {
    color: var(--color-primary-dark);
    border-color: #fff;
}

.hp-featured-cta span,
.hp-featured-cta i {
    position: relative;
    z-index: 1;
}

.hp-featured-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hp-featured-image-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.hp-featured-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.hp-featured-image-border {
    position: absolute;
    inset: -16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    z-index: 1;
}

.hp-featured-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

/* ============================================
   LATEST ARTICLES - Horizontal Flow
   ============================================ */

.hp-articles {
    padding: 120px 0;
    background: var(--color-cream);
    position: relative;
}

.hp-articles-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.hp-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hp-article-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: var(--color-primary-dark);
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.hp-article-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.02) 100%);
    z-index: 1;
    pointer-events: none;
}

.hp-article-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.hp-article-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.hp-article-card:nth-child(1) .hp-article-image-wrap {
    height: 280px;
}

.hp-article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.hp-article-card:hover .hp-article-image {
    transform: scale(1.1);
}

.hp-article-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    z-index: 2;
}

.hp-article-sponsored {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #1a1a1a;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.hp-article-content {
    padding: 28px;
}

.hp-article-title {
    font-family: 'Lora', serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--color-primary-dark);
}

.hp-article-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hp-article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    transition: gap 0.3s ease;
}

.hp-article-card:hover .hp-article-link {
    gap: 12px;
}

/* ============================================
   FOOTER - Layered Dark Design
   ============================================ */

.hp-footer {
    background: var(--color-forest);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hp-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(116, 198, 157, 0.5), transparent);
}

.hp-footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 80px 0 60px;
    position: relative;
    z-index: 2;
}

.hp-footer-brand {
    max-width: 360px;
}

.hp-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lora', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hp-footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-hero);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.hp-footer-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}

.hp-footer-company {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.hp-footer-company p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.hp-footer-company strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.hp-footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.hp-footer-links {
    list-style: none;
}

.hp-footer-links li {
    margin-bottom: 12px;
}

.hp-footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.hp-footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.hp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hp-footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.hp-footer-legal {
    display: flex;
    gap: 32px;
}

.hp-footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hp-footer-legal a:hover {
    color: #fff;
}

/* ============================================
   VIEW ALL LINK
   ============================================ */

.hp-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 100px;
    border: 2px solid var(--color-sage);
}

.hp-view-all:hover {
    background: var(--color-sage);
    gap: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hp-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hp-hero-visual {
        display: none;
    }
    
    .hp-topics-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .hp-topic-card:nth-child(1),
    .hp-topic-card:nth-child(2),
    .hp-topic-card:nth-child(3),
    .hp-topic-card:nth-child(4),
    .hp-topic-card:nth-child(5),
    .hp-topic-card:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
    }
    
    .hp-topic-card:nth-child(1) {
        grid-column: span 2;
    }
    
    .hp-featured-grid {
        grid-template-columns: 1fr;
    }
    
    .hp-featured-visual {
        display: none;
    }
    
    .hp-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hp-nav {
        display: none;
    }
    
    .hp-hero-content {
        padding: 60px 24px;
    }
    
    .hp-hero-title {
        font-size: 36px;
    }
    
    .hp-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .hp-topics-grid {
        grid-template-columns: 1fr;
    }
    
    .hp-topic-card:nth-child(1) {
        grid-column: span 1;
    }
    
    .hp-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .hp-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hp-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
