*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--ahuramazda-clay);
}

/* Header */
.ahuramazda-header {
    background: var(--ahuramazda-gradient-hero);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px var(--ahuramazda-shadow);
}

.ahuramazda-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ahuramazda-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.ahuramazda-logo__icon {
    width: 40px;
    height: 40px;
}

.ahuramazda-logo__text {
    color: var(--ahuramazda-gold);
    font-weight: 700;
    font-size: var(--ahuramazda-font-size-lg);
}

.ahuramazda-nav {
    display: flex;
    gap: 2rem;
}

.ahuramazda-nav__link {
    color: var(--ahuramazda-white);
    text-decoration: none;
    font-size: var(--ahuramazda-font-size-sm);
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.ahuramazda-nav__link:hover {
    opacity: 1;
    color: var(--ahuramazda-gold);
}

/* Hero */
.ahuramazda-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--ahuramazda-gradient-hero);
    overflow: hidden;
}

.ahuramazda-hero__overlay {
    position: absolute;
    inset: 0;
    background-image: url('../images/ahuramazda-cover.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.ahuramazda-hero__content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.ahuramazda-hero__title {
    font-size: var(--ahuramazda-font-size-3xl);
    color: var(--ahuramazda-gold);
    margin-bottom: 1rem;
}

.ahuramazda-hero__subtitle {
    font-size: var(--ahuramazda-font-size-lg);
    color: var(--ahuramazda-white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.ahuramazda-hero__quote {
    font-size: var(--ahuramazda-font-size-xl);
    color: var(--ahuramazda-gold-light);
    font-style: italic;
}

/* Post Card */
.ahuramazda-post-card__title {
    margin-top: 1.5rem;
}

.ahuramazda-post-card__title a {
    color: var(--ahuramazda-purple);
    text-decoration: none;
    font-size: var(--ahuramazda-font-size-lg);
    transition: color 0.3s;
}

.ahuramazda-post-card__title a:hover {
    color: var(--ahuramazda-gold);
}

.ahuramazda-post-card__excerpt {
    color: var(--ahuramazda-black);
    opacity: 0.7;
    margin: 1rem 0;
    line-height: var(--ahuramazda-line-height-base);
}

.ahuramazda-post-card__meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.ahuramazda-post-card__theme {
    background: var(--ahuramazda-clay-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: var(--ahuramazda-font-size-xs);
    color: var(--ahuramazda-blue);
    font-weight: 700;
}

/* Footer */
.ahuramazda-footer {
    background: var(--ahuramazda-black);
    color: var(--ahuramazda-clay);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.ahuramazda-footer__inner {
    max-width: 600px;
    margin: 0 auto;
}

.ahuramazda-footer__text {
    font-size: var(--ahuramazda-font-size-lg);
    color: var(--ahuramazda-gold);
    margin-bottom: 1rem;
    font-style: italic;
}

.ahuramazda-footer__copyright {
    font-size: var(--ahuramazda-font-size-sm);
    opacity: 0.6;
}