html {
    scroll-behavior: smooth;
}

:root {
    --color-primary: #000000;
    --color-text: #111111;
    --color-bg: #ffffff;
    --color-light-gray: #f4f4f4;
    --color-border: #e0e0e0;

    --font-heading: 'Playfair Display', 'Times New Roman', serif;
    --font-body: 'Lato', Helvetica, Arial, sans-serif;

    --container-width: 1400px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

/* Typography Utility */
.uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.serif {
    font-family: var(--font-heading);
}

.bold {
    font-weight: 700;
}

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

/* Header */
header {
    background-color: white;
    color: black;
    padding: 1.5rem 0 0;
    position: relative;
    z-index: 10000 !important;
}

.header-top-bar {
    display: flex;
    justify-content: space-between;
    padding: 12px 2rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10001 !important;
}

.header-top-bar a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
    cursor: pointer !important;
    position: relative;
    z-index: 10002 !important;
    pointer-events: auto !important;
}

.header-top-bar a:hover {
    opacity: 0.6;
}

.header-top-bar .active {
    font-weight: 900;
    border-bottom: 2px solid #000;
}


.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: black;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.8;
    margin-bottom: 1.5rem;
    display: block;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2.5rem;
    padding: 1rem 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    width: 100%;
    justify-content: center;
}

nav a {
    color: black;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

/* Main Layout */
main {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    /* Slightly shorter than full viewport for better flow */
    background-color: #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-floating-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-img {
    position: absolute;
    width: 180px;
    height: 240px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.floating-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-1 {
    top: 8%;
    left: 5%;
    transform: rotate(-12deg);
    width: 240px;
    height: 320px;
}

.img-2 {
    top: 12%;
    right: 5%;
    transform: rotate(8deg);
    width: 220px;
    height: 300px;
}

.img-3 {
    bottom: 8%;
    left: 10%;
    transform: rotate(6deg);
    width: 200px;
    height: 280px;
}

.img-4 {
    bottom: 12%;
    right: 10%;
    transform: rotate(-9deg);
    width: 230px;
    height: 310px;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 2rem;
}

.hero-tag {
    font-size: 0.8rem;
    letter-spacing: 6px;
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 12rem;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    line-height: 0.8;
    letter-spacing: -6px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    margin: 1.5rem 0;
    font-weight: 300;
}

.hero-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.7);
}

.read-more-btn {
    display: inline-block;
    border: 1px solid white;
    padding: 0.8rem 2.5rem;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: white;
    transition: all 0.3s ease;
    background: transparent;
}

.read-more-btn:hover {
    background: white;
    color: black;
    opacity: 1;
}

/* Section Common */
.section-header {
    text-align: center;
    margin: 6rem 0 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-border);
    z-index: 0;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.6rem;
    letter-spacing: 4px;
    display: inline-block;
    padding: 0 2rem;
    background: white;
    position: relative;
    z-index: 1;
}

/* Editors' Choice (5 Columns) */
.editors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.editor-card {
    text-align: center;
}

.editor-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 1rem;
}

.editor-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin: 0.5rem 0;
    line-height: 1.3;
}

.editor-card .meta {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Fashion Week */
.fashion-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
}

.fashion-main {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.fashion-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fashion-main:hover img {
    transform: scale(1.05);
}

.fashion-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
}

.fashion-main-content .uppercase {
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
    display: block;
    opacity: 0.9;
}

.fashion-main h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    font-weight: 400;
}

.fashion-side-logo-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    height: 100%;
}

.fashion-logo-circle {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background: white;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.7rem;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 10px;
}

.fashion-logo-circle::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid #eee;
    border-radius: 50%;
}

.fashion-side-item {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex: 1;
}

.fashion-side-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.fashion-side-text .uppercase {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #888;
}

.fashion-side-text h4 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-transform: uppercase;
    margin: 0.5rem 0;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.fashion-side-text .meta {
    font-size: 0.65rem;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Travel & Living */
.travel-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #000;
    margin-bottom: 6rem;
}

.travel-item {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.travel-item:hover {
    background: #fafafa;
}

.travel-item-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.travel-item img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.travel-item h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.travel-item .meta {
    font-size: 0.7rem;
    color: #999;
    text-align: right;
    padding-right: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.travel-item .arrow {
    font-size: 1.8rem;
    font-weight: 200;
    color: #ccc;
    transition: transform 0.3s ease, color 0.3s ease;
}

.travel-item:hover .arrow {
    transform: translateX(10px);
    color: #000;
}

.travel-featured {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    padding: 6rem 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.travel-featured-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.travel-featured-text h3 {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -1px;
}

.travel-featured-text p {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 90%;
}

.travel-featured-text .meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 2rem;
}

.travel-featured-text .read-more-link {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    width: fit-content;
    font-weight: 700;
}

.travel-featured-imgs {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    position: relative;
}

.img-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.img-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.img-stack img {
    width: 100%;
    height: 292px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Art Section */
.art-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.art-main {
    position: relative;
}

.art-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.art-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5rem 3rem 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: white;
    z-index: 2;
}

.art-main-content h3 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.art-main-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.art-main-content .read-more-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    font-weight: 700;
}

.art-side {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.art-side-item {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
}

.art-side-item:last-child {
    border-bottom: none;
}

.art-side-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.art-side-text h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-transform: uppercase;
    margin: 0.5rem 0;
    line-height: 1.3;
    font-weight: 400;
}

.art-side-text .meta {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
}

/* Magazine Section */
.magazine-section {
    text-align: center;
    padding: 8rem 0;
    overflow: hidden;
    position: relative;
    background: white;
    margin: 4rem 0;
}

.magazine-bg-text {
    font-family: var(--font-heading);
    font-size: 25vw;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px #eee;
    line-height: 0.8;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 0;
    pointer-events: none;
    letter-spacing: -5px;
    opacity: 0.5;
}

.covers-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -60px;
    /* Stronger overlapping effect */
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.cover-item {
    width: 260px;
    height: 350px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cover-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cover-1 {
    transform: rotate(-12deg) translateX(80px);
    z-index: 1;
}

.cover-2 {
    transform: rotate(-6deg) translateX(40px);
    z-index: 2;
}

.cover-3 {
    transform: rotate(0deg) scale(1.15);
    z-index: 5;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.cover-4 {
    transform: rotate(6deg) translateX(-40px);
    z-index: 2;
}

.cover-5 {
    transform: rotate(12deg) translateX(-80px);
    z-index: 1;
}

.cover-item:hover {
    transform: translateY(-30px) scale(1.05) rotate(0deg);
    z-index: 10;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.profile-link {
    display: inline-block;
    margin-top: 5rem;
    font-size: 0.75rem;
    letter-spacing: 4px;
    font-weight: 700;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    position: relative;
    z-index: 2;
}

/* Film & TV Grid */
.film-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.film-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.film-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.film-item:hover img {
    transform: scale(1.1);
}

.film-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.5s ease;
    padding: 2rem;
    text-align: center;
    opacity: 0;
}

.film-item:hover .film-content {
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.film-content h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.film-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.circle-btn {
    width: 60px;
    height: 60px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    margin-top: 1.5rem;
    background: transparent;
}

.film-item:hover .circle-btn {
    background: #000;
    color: #fff;
    transform: scale(1.1) rotate(-45deg);
}

/* Politics & Culture Section */
.politics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.politics-card {
    position: relative;
    background: #000;
    color: white;
    aspect-ratio: 3/4;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: transform 0.5s ease;
}

.politics-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.5s ease;
    z-index: 0;
}

.politics-card:hover img {
    opacity: 0.8;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.politics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    z-index: 1;
}

.politics-card-content {
    position: relative;
    z-index: 2;
}

.politics-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0 0 1rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 400;
    transition: color 0.3s ease;
}

.politics-card:hover h4 {
    text-decoration: none;
    color: #fff;
}

.newsletter {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 3rem;
}

.newsletter h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.email-form input {
    padding: 0.5rem;
    border: none;
    border-bottom: 1px solid #000;
    width: 300px;
    font-family: var(--font-heading);
}

/* Author Profile (moved to bottom) */
.author-profile {
    padding: 4rem 0;
}

.author-header {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 4rem;
}

.author-avatar-large {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.author-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-family: var(--font-heading);
}

.author-info h1 {
    font-size: 3.5rem;
    margin: 0.5rem 0;
    text-transform: uppercase;
}

.author-role {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.author-bio {
    font-size: 1.1rem;
    max-width: 600px;
}

.author-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Footer */
footer {
    background: #fff;
    padding: 8rem 0 4rem;
    border-top: 1px solid #000;
    margin-top: 8rem;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 4rem;
    display: block;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    list-style: none;
    padding: 0;
}

.footer-nav a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .editors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fashion-grid,
    .art-container,
    .travel-featured,
    .film-grid {
        grid-template-columns: 1fr;
    }

    .politics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .covers-grid {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cover-item {
        transform: none !important;
        width: 180px;
        height: 240px;
    }

    .fashion-logo-circle {
        left: 50%;
        top: -45px;
        transform: translateX(-50%);
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 8rem;
        letter-spacing: -4px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 5rem;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .img-1,
    .img-2,
    .img-3,
    .img-4 {
        display: none;
    }

    .editors-grid {
        grid-template-columns: 1fr;
    }

    .travel-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .travel-item-content {
        flex-direction: column;
        gap: 1rem;
    }

    .travel-item .meta {
        text-align: center;
        padding: 0;
    }

    .travel-item .arrow {
        display: none;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ========================================
   CATEGORY PAGE STYLES
   ======================================== */
.category-hero {
    background: #000;
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
    margin-bottom: 60px;
}

.category-hero .section-title {
    color: #fff;
    background: transparent;
    font-size: 4rem;
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.category-hero p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Article Cards */
.articles-grid .editor-card {
    margin-bottom: 20px;
}

.articles-grid .card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.articles-grid .category {
    color: #c00;
    font-weight: 600;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */
.about-hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    padding: 150px 0 100px;
    text-align: center;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.about-hero .lead {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 60px 0 25px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

/* ========================================
   SEARCH PAGE STYLES
   ======================================== */
.search-hero {
    background: #f9f9f9;
    padding: 100px 0 60px;
    text-align: center;
    margin-bottom: 40px;
}

.search-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

#search-input {
    width: 100%;
    max-width: 600px;
    padding: 20px 0;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    border: none;
    border-bottom: 2px solid #000;
    outline: none;
    background: transparent;
    color: #000;
    text-align: center;
}

#search-input::placeholder {
    color: #ccc;
    font-style: italic;
}

.search-results-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
    padding-bottom: 100px;
}

.search-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    text-decoration: none;
    color: inherit;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.search-item:hover {
    opacity: 0.7;
}

.search-meta {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #c00;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.search-item-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0 0 10px 0;
}

.no-results {
    text-align: center;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: #999;
    padding: 60px 0;
}

/* ========================================
   POLICY PAGES
   ======================================== */
.policy-hero {
    background: #000;
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
    margin-bottom: 60px;
}

.policy-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 100px;
}

.policy-content .lead {
    font-size: 1.3rem;
    font-style: italic;
    border-left: 3px solid #000;
    padding-left: 25px;
    margin-bottom: 40px;
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 50px 0 20px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0;
    text-align: center;
}

.contact-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-item a {
    font-weight: 700;
    border-bottom: 1px solid #000;
}

/* Small Container */
.small-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .category-hero .section-title {
        font-size: 2.5rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .search-item {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}