/* Magazine-Style Photography Portfolio */

:root {
    --magazine-bg: #fefefe;
    --paper-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #8a8a8a;
    --accent-gold: #d4af37;
    --accent-red: #c41e3a;
    --line-color: #e0e0e0;
    --shadow-light: 0 2px 20px rgba(0,0,0,0.05);
    --shadow-medium: 0 5px 30px rgba(0,0,0,0.1);
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--magazine-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Primary Navigation */
.primary-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(254, 254, 254, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--line-color);
    z-index: 1001;
    font-family: var(--font-sans);
}

.primary-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-icon {
    transform: scale(1.05);
    color: var(--text-dark);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-top: 0.1rem;
}

.primary-nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Navigation Tagline */
.nav-tagline {
    position: absolute;
    top: 100%;
    right: 0;
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 400;
    white-space: nowrap;
    margin-top: -6px;
    pointer-events: none;
}

.nav-actions {
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .nav-tagline {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .nav-tagline {
        display: none;
    }
}

    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}

button.nav-cta,
.nav-cta {
    background: #c41e3a !important;
    color: #ffffff !important;
    border: 2px solid #c41e3a !important;
    border-radius: 6px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    text-decoration: none !important;
    display: inline-block !important;
    outline: none !important;
}

button.nav-cta:hover,
.nav-cta:hover {
    background: #a01729 !important;
    border-color: #a01729 !important;
    transform: translateY(-1px) !important;
}

.nav-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Magazine Navigation (Secondary) */
.magazine-nav {
    position: fixed;
    top: 130px; /* Below primary nav (80px) + tagline bar (~50px) */
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(248, 248, 248, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-color);
    z-index: 997;
    font-size: 0.85rem;
}

.magazine-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.current-issue {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
    font-style: italic;
}

.nav-button {
    background: none;
    border: 1px solid var(--line-color);
    padding: 0.5rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-medium);
}

.nav-button:hover {
    background: var(--text-dark);
    color: var(--paper-white);
    border-color: var(--text-dark);
}

.page-counter {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.page-counter #currentPage {
    font-weight: 500;
}

/* Tagline Bar */
.tagline-bar {
    position: fixed;
    top: 80px; /* Directly below primary nav */
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.04) 0%, rgba(196, 30, 58, 0.02) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 998;
    font-family: var(--font-sans);
    backdrop-filter: blur(12px);
}

.tagline-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    text-align: center;
    position: relative;
}

.tagline-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 20%, rgba(212, 175, 55, 0.6) 50%, rgba(212, 175, 55, 0.3) 80%, transparent 100%);
    transform: translateY(-50%);
    z-index: -1;
}

.tagline-container p {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.03em;
    line-height: 1.4;
    background: var(--paper-white);
    display: inline-block;
    padding: 0 1.5rem;
    position: relative;
}

.tagline-container p::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--accent-gold);
    position: absolute;
    left: 0.2rem;
    top: -0.1rem;
    font-weight: 400;
}

.tagline-container p::after {
    content: '"';
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--accent-gold);
    position: absolute;
    right: 0.2rem;
    top: -0.1rem;
    font-weight: 400;
}

/* Magazine Container */
.magazine-container {
    margin-top: 180px; /* 80px nav + 50px tagline + 50px magazine nav */
    position: relative;
}

.magazine-page {
    min-height: calc(100vh - 180px); /* Account for both navs + tagline */
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.magazine-page.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* Page 1: Cover */
.page-cover {
    height: calc(100vh - 170px);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--paper-white);
}

.cover-image {
    position: relative;
    overflow: hidden;
}

.cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) saturate(0.9);
}

.cover-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--paper-white);
    border-left: 1px solid var(--line-color);
}

.cover-headline {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cover-subline {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.4;
}

.cover-feature {
    border-top: 2px solid var(--accent-gold);
    padding-top: 2rem;
}

.feature-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.feature-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.feature-location {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

/* Page 2: Contents */
.page-contents {
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 130px);
}

.contents-left h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.content-item:hover {
    background: #f8f8f8;
    padding-left: 1rem;
    margin-left: -1rem;
    padding-right: 1rem;
    margin-right: -1rem;
}

.item-number {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-gold);
}

.item-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.2rem;
}

.item-description {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
}

.contents-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.editor-note {
    background: #f8f8f8;
    padding: 2.5rem;
    border-left: 3px solid var(--accent-gold);
}

.editor-note h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.editor-note p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.editor-note p:last-of-type {
    margin-bottom: 1.5rem;
}

.signature {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Story Pages (3, 4) */
.page-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 130px);
}

.story-image {
    position: relative;
    background: #f0f0f0;
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--paper-white);
    padding: 2rem;
}

.caption-text {
    display: block;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.photo-details {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    font-family: var(--font-sans);
    font-style: italic;
}

.story-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--paper-white);
}

.story-text h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-text p {
    margin-bottom: 1.2rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.story-facts,
.story-facts {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.fact {
    font-size: 0.9rem;
    color: var(--text-light);
}

.fact strong {
    color: var(--text-medium);
}

.technical-note {
    background: #f8f8f8;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 3px solid var(--accent-gold);
}

.technical-note h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.technical-note p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Page 5: Spread Layout */
.page-spread {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 130px);
}

.spread-left {
    background: #f0f0f0;
}

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

.spread-right {
    background: var(--paper-white);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spread-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.spread-content p {
    margin-bottom: 1.2rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.detail-callout {
    background: #f8f8f8;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 3px solid var(--accent-red);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
}

/* Page 6: Landscape Layout */
.page-landscape {
    position: relative;
    min-height: calc(100vh - 130px);
}

.landscape-image {
    width: 100%;
    height: 100%;
}

.landscape-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.landscape-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        transparent 0%, 
        rgba(0,0,0,0.6) 60%
    );
    display: flex;
    align-items: flex-end;
    padding: 4rem;
}

.overlay-content {
    color: var(--paper-white);
    max-width: 600px;
}

.overlay-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.overlay-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.landscape-facts {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.landscape-fact {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.landscape-fact strong {
    color: var(--accent-gold);
}

/* Page 7: Services */
.page-services {
    padding: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 130px);
    background: var(--paper-white);
}

.services-container h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--paper-white);
    border: 1px solid var(--line-color);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-features li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-pricing {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-gold);
    border-top: 1px solid var(--line-color);
    padding-top: 1rem;
}

.services-note {
    background: var(--magazine-bg);
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--line-color);
}

.services-note h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-note p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.services-cta {
    background: var(--accent-gold);
    color: var(--paper-white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-cta:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Page 8: Process Grid */
.page-process {
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 130px);
}

.page-process h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.process-step {
    padding: 2rem;
    background: var(--paper-white);
    border: 1px solid var(--line-color);
    transition: all 0.3s ease;
}

.process-step:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.process-step h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.6;
}

.process-quote {
    background: #f8f8f8;
    padding: 3rem;
    text-align: center;
    border-left: 3px solid var(--accent-gold);
}

.process-quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.process-quote cite {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
}

/* Page 8: Commission */
.page-commission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 130px);
}

.commission-left {
    padding: 4rem;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.commission-left h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.commission-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.upcoming-projects h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.project-preview {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line-color);
    line-height: 1.6;
}

.project-preview strong {
    color: var(--accent-gold);
}

.project-preview em {
    color: var(--text-light);
    display: block;
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.commission-right {
    padding: 4rem;
    background: var(--paper-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.commission-form h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--line-color);
    background: var(--paper-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.commission-submit {
    background: var(--text-dark);
    color: var(--paper-white);
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.commission-submit:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.direct-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line-color);
    font-size: 0.9rem;
    color: var(--text-light);
}

.direct-contact p {
    margin-bottom: 0.3rem;
}

.direct-contact a {
    color: var(--accent-gold);
    text-decoration: none;
}

.direct-contact a:hover {
    text-decoration: underline;
}

/* Contents Modal */
.contents-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.contents-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--paper-white);
    width: 90%;
    max-width: 500px;
    padding: 3rem;
    border-radius: 0;
    box-shadow: var(--shadow-medium);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.modal-contents .content-item {
    padding: 0.8rem 0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-cover,
    .page-story,
    .page-spread,
    .page-commission {
        grid-template-columns: 1fr;
    }
    
    .page-contents {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-facts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .primary-nav {
        height: 60px;
    }
    
    .primary-nav-container {
        padding: 0 1rem;
        gap: 0.5rem;
    }
    
    .nav-logo {
        gap: 0.5rem;
        flex-shrink: 0;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-name {
        font-size: 1rem;
        line-height: 1.1;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
        letter-spacing: 0.08em;
    }
    
    .primary-nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--paper-white);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        box-shadow: var(--shadow-medium);
        z-index: 1002;
    }
    
    .primary-nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1.5rem 2rem;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--line-color);
        font-size: 1.1rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        display: none; /* Hide on very small screens to save space */
    }
    
    .nav-menu-toggle {
        display: flex;
        padding: 0.25rem;
    }
    
    .nav-menu-toggle span {
        width: 18px;
        height: 2px;
    }
    
    .nav-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .magazine-nav {
        top: 120px; /* Below 70px nav + 50px tagline */
        height: 40px;
        font-size: 0.75rem;
    }
    
    .magazine-nav-container {
        padding: 0 0.5rem;
    }
    
    .nav-left,
    .nav-right {
        gap: 0.5rem;
    }
    
    .nav-button {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .page-counter {
        font-size: 0.75rem;
    }
    
    .current-issue {
        font-size: 0.8rem;
        display: none; /* Hide on very small screens */
    }
    
    .tagline-bar {
        top: 70px; /* Adjust for smaller mobile nav */
    }
    
    .magazine-container {
        margin-top: 160px; /* 70px nav + 50px tagline + 40px magazine nav */
    }
    
    .magazine-page {
        min-height: calc(100vh - 160px);
    }
}

/* Extra small screens (Pixel 7 and similar) */
@media (max-width: 430px) {
    .primary-nav {
        height: 55px;
    }
    
    .primary-nav-container {
        padding: 0 0.75rem;
        justify-content: space-between;
    }
    
    /* Style primary nav menu for very small screens */
    .primary-nav-menu {
        display: none !important;
        position: fixed !important;
        top: 55px !important; /* Match the smaller nav height */
        right: 0 !important; /* Slide in from the right */
        left: auto !important; /* Override left: 0 from 768px styles */
        bottom: auto !important; /* Override bottom: 0 from 768px styles */
        width: 250px !important; /* Reasonable width instead of full screen */
        max-width: 70vw !important; /* Don't exceed 70% of screen width */
        height: auto !important;
        background: var(--paper-white) !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 1rem 0 !important;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15) !important; /* Left shadow */
        z-index: 1002 !important;
        border-radius: 8px 0 0 8px !important; /* Rounded left corners */
        border-left: 1px solid var(--line-color) !important;
        border-top: 1px solid var(--line-color) !important;
        border-bottom: 1px solid var(--line-color) !important;
    }
    
    .primary-nav-menu.active {
        display: flex !important;
    }
    
    .nav-link {
        padding: 1rem 1.5rem !important;
        width: 100% !important;
        text-align: left !important;
        border-bottom: 1px solid var(--line-color) !important;
        font-size: 0.95rem !important;
        color: var(--text-medium) !important;
        transition: all 0.2s ease !important;
    }
    
    .nav-link:hover {
        background: var(--magazine-bg) !important;
        color: var(--text-dark) !important;
        padding-left: 2rem !important; /* Slide effect */
    }
    
    .nav-link::after {
        display: none !important;
    }
    
    .nav-logo {
        gap: 1rem; /* Even MORE space between icon and text */
        flex-shrink: 0;
    }
    
    .logo-name {
        font-size: 1rem; /* LARGER text */
        line-height: 1.1;
    }
    
    .logo-tagline {
        font-size: 0.6rem; /* Slightly larger tagline */
        letter-spacing: 0.08em;
    }
    
    .logo-icon {
        width: 30px; /* LARGER icon */
        height: 30px;
        flex-shrink: 0;
        align-self: flex-start; /* Align to top of text container */
        margin-top: -2px; /* Fine-tune alignment with "Flexure" text */
    }
    
    .logo-text {
        flex-shrink: 0;
    }
    
    .magazine-nav {
        top: 110px; /* Below 60px nav + 50px tagline */
        height: 35px;
        font-size: 0.7rem;
    }
    
    .nav-button {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .page-counter {
        font-size: 0.7rem;
    }
    
    .tagline-bar {
        top: 60px; /* Adjust for very small mobile nav */
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }
    
    .tagline-container {
        padding: 0.5rem 1rem;
    }
    
    .magazine-container {
        margin-top: 145px; /* 60px nav + 50px tagline + 35px magazine nav */
    }
    
    .magazine-page {
        min-height: calc(100vh - 145px);
    }
    
    /* Simplify magazine nav for very small screens */
    .nav-center {
        display: block !important;
        font-size: 0.7rem;
    }
    
    .magazine-nav-container {
        justify-content: space-between;
        padding: 0 0.75rem;
    }
    
    .nav-right {
        gap: 0.25rem;
    }
    
    /* Optimize nav actions for small screens */
    .nav-actions {
        gap: 0.25rem;
        flex-shrink: 0;
    }
    
    .nav-cta {
        display: none; /* Hide CTA button on very small screens */
    }
    
    /* Make hamburger menu appropriately sized for tapping */
    .nav-menu-toggle {
        padding: 0.4rem;
        min-width: 40px;
        min-height: 40px;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }
    
    .nav-menu-toggle span {
        width: 16px;
        height: 1.5px;
    }
    
    /* Adjust content padding for very small screens */
    .page-contents,
    .commission-left,
    .commission-right,
    .story-text,
    .spread-right,
    .page-process {
        padding: 2rem;
    }
    
    .overlay-content,
    .page-landscape .landscape-overlay {
        padding: 2rem;
    }
    
    .cover-headline {
        font-size: 2.5rem;
    }
    
    .cover-subline {
        font-size: 1.1rem;
    }
}

/* Premium Lightbox Gallery */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 0;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0.8;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    height: 100vh;
    width: 100%;
}

.lightbox-image {
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-image.loaded {
    opacity: 1;
    transform: scale(1);
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lightbox-info {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    color: white;
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-content {
    flex: 1;
}

.image-counter {
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.image-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.3;
}

.image-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.image-metadata {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.metadata-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metadata-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.metadata-value {
    font-size: 0.9rem;
    color: white;
    text-align: right;
    font-family: 'Monaco', 'Consolas', monospace;
}

.thumbnail-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.thumbnail {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail.active {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.thumbnail:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

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

/* Mobile Responsive Lightbox */
@media (max-width: 1024px) {
    .lightbox-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
    }
    
    .lightbox-info {
        max-height: 40vh;
        padding: 1.5rem;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .lightbox-info {
        max-height: 50vh;
        padding: 1rem;
        gap: 1rem;
    }
    
    .image-title {
        font-size: 1.4rem;
    }
    
    .thumbnail-strip {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 0.3rem;
    }
    
    .metadata-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .metadata-value {
        text-align: left;
    }
}

/* Gallery Page Styles */
.gallery-main {
    margin-top: 90px; /* Account for fixed nav + tagline (minimal) */
    min-height: calc(100vh - 90px);
    background: var(--paper-white);
}

.gallery-header {
    padding: 4rem 0 2rem;
    background: var(--magazine-bg);
    border-bottom: 1px solid var(--line-color);
}

.gallery-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-light);
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 500;
}

.gallery-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Projects Grid */
.projects-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--paper-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.project-cover {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.project-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-cover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    color: white;
}

.project-image-count {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.project-overlay-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.project-overlay-location {
    font-size: 0.9rem;
    opacity: 0.9;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.project-info p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-metadata {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.project-metadata span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Individual Project Gallery */
.project-gallery {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.project-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line-color);
}

.back-to-projects {
    background: none;
    border: 1px solid var(--line-color);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-family: var(--font-sans);
    flex-shrink: 0;
}

.back-to-projects:hover {
    background: var(--text-dark);
    color: var(--paper-white);
    border-color: var(--text-dark);
}

.project-info {
    flex: 1;
}

.project-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.project-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Project Images Grid */
.project-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-image {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--magazine-bg);
}

.gallery-image:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
        padding: 3rem 1.5rem;
    }
    
    .project-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .project-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .gallery-main {
        margin-top: 80px;
    }
    
    .gallery-title {
        font-size: 2.2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .project-images-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .project-gallery {
        padding: 1rem;
    }
}

@media (max-width: 430px) {
    .gallery-main {
        margin-top: 70px;
    }
    
    .gallery-header {
        padding: 2rem 0 1rem;
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
    .project-images-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

/* Issues Page Styles */
.issues-main {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--magazine-bg);
}

.issues-header {
    background: var(--paper-white);
    border-bottom: 1px solid var(--line-color);
    padding: 3rem 0;
}

.issues-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.issues-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.issues-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
}

.current-issue-section,
.archive-section {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-dark);
}

.issue-badge.current {
    background: var(--accent-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.archive-count {
    background: var(--line-color);
    color: var(--text-medium);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.issue-card {
    display: flex;
    gap: 2rem;
    background: var(--paper-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.issue-cover {
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.issue-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1rem;
}

.issue-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.read-button .btn-primary,
.read-button .btn-secondary {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--accent-red);
    color: white;
}

.btn-primary:hover {
    background: #a01729;
}

.btn-secondary {
    background: rgba(255,255,255,0.9);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: white;
}

.issue-info {
    padding: 1.5rem;
    flex: 1;
}

.issue-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.archive-badge {
    background: var(--text-light);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
}

.issue-info h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.issue-info h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.issue-info h3 a:hover {
    color: var(--accent-red);
}

.issue-description {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.issue-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight {
    font-size: 0.85rem;
    color: var(--text-light);
}

.issues-grid {
    display: grid;
    gap: 2rem;
}

.magazine-about {
    background: var(--paper-white);
    padding: 4rem 0;
    border-top: 1px solid var(--line-color);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.magazine-stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-red);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.upcoming-notice {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--magazine-bg);
    border-radius: 8px;
}

.upcoming-notice h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Issues page responsive */
@media (max-width: 768px) {
    .issues-title {
        font-size: 2.5rem;
    }
    
    .issue-card {
        flex-direction: column;
    }
    
    .issue-cover {
        width: 100%;
        height: 200px;
    }
    
    .magazine-stats {
        gap: 1.5rem;
    }
    
    .current-issue-section,
    .archive-section {
        padding: 2rem 1rem;
    }
}

/* Professional Footer */
.site-footer {
    background: var(--text-dark);
    color: #ffffff;
    margin-top: 6rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold), var(--accent-red));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 5px;
}

.footer-brand-text h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #ffffff;
}

.footer-brand-text p {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin: 0;
}

/* Footer Navigation */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact p {
    margin: 0;
    font-size: 0.9rem;
    color: #d0d0d0;
}

.footer-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent-red);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-align: center;
    margin: 0.5rem 0;
}

.footer-cta:hover {
    background: #a01729;
    transform: translateY(-1px);
}

.footer-location {
    padding-top: 1rem;
    border-top: 1px solid #404040;
    margin-top: 1rem;
}

.footer-location p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-location strong {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #404040;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.85rem;
    color: #b0b0b0;
}

.footer-meta span {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #404040;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-contact {
        grid-column: auto;
        padding-top: 1.5rem;
        border-top: 1px solid #404040;
        margin-top: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .magazine-nav,
    .contents-modal,
    .lightbox-overlay,
    .tagline-bar,
    .site-footer {
        display: none;
    }
    
    .magazine-container,
    .gallery-main {
        margin-top: 0;
    }
    
    .magazine-page {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
        page-break-after: always;
        min-height: auto;
    }
}