/* ========================================
   Financeclarity Magazine - Premium Styles
   ======================================== */

:root {
    --midnight-ink: #0B1020;
    --paper-sand: #F3EFE6;
    --electric-saffron: #FFB000;
    --arctic-mint: #3FF2C2;
    --violet-carbon: #5E3AFF;
    --graphite: #1B1F2A;
    
    --gradient-primary: linear-gradient(135deg, var(--electric-saffron), var(--violet-carbon));
    --gradient-accent: linear-gradient(135deg, var(--arctic-mint), var(--violet-carbon));
    --gradient-dark: linear-gradient(135deg, var(--midnight-ink), var(--graphite));
    
    --shadow-sm: 0 2px 8px rgba(11, 16, 32, 0.1);
    --shadow-md: 0 4px 20px rgba(11, 16, 32, 0.15);
    --shadow-lg: 0 8px 40px rgba(11, 16, 32, 0.2);
    --shadow-glow: 0 0 30px rgba(255, 176, 0, 0.3);
    
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-display: Georgia, 'Times New Roman', serif;
    
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--paper-sand);
    color: var(--midnight-ink);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Grain Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--midnight-ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

p { margin-bottom: 1rem; }

a {
    color: var(--violet-carbon);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--electric-saffron);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--midnight-ink);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: var(--midnight-ink);
}

.btn-secondary {
    background: transparent;
    color: var(--paper-sand);
    border: 2px solid var(--paper-sand);
}

.btn-secondary:hover {
    background: var(--paper-sand);
    color: var(--midnight-ink);
}

.btn-dark {
    background: var(--midnight-ink);
    color: var(--paper-sand);
}

.btn-dark:hover {
    background: var(--graphite);
    color: var(--electric-saffron);
}

/* Gradient Border Effect */
.gradient-border {
    position: relative;
    background: var(--paper-sand);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 3px;
    background: var(--gradient-primary);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

/* Diagonal Cut */
.diagonal-cut {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
}

.diagonal-cut-reverse {
    clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 16, 32, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--paper-sand);
    text-transform: lowercase;
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--electric-saffron);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--paper-sand);
    transition: var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--midnight-ink);
    padding: 5rem 2rem;
    transition: var(--transition-base);
}

.nav.active {
    right: 0;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-link {
    color: var(--paper-sand);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric-saffron);
    transition: var(--transition-base);
}

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

.nav-link:hover {
    color: var(--electric-saffron);
}

@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }
    
    .nav {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        padding: 0;
    }
    
    .nav-list {
        flex-direction: row;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(94, 58, 255, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(255, 176, 0, 0.1) 0%, transparent 60%);
    animation: pulse 10s ease-in-out infinite reverse;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--paper-sand);
    animation: fadeInUp 1s ease forwards;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 176, 0, 0.15);
    border: 1px solid var(--electric-saffron);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--electric-saffron);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-title {
    color: var(--paper-sand);
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-3deg);
    transition: var(--transition-base);
}

.hero-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: var(--gradient-primary);
    border-radius: 12px;
    z-index: -1;
    transform: rotate(3deg);
    opacity: 0.5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-dark {
    background: var(--midnight-ink);
    color: var(--paper-sand);
}

.section-dark h2,
.section-dark h3 {
    color: var(--paper-sand);
}

.section-graphite {
    background: var(--graphite);
    color: var(--paper-sand);
}

.section-graphite h2,
.section-graphite h3 {
    color: var(--paper-sand);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--violet-carbon);
    margin-bottom: 0.75rem;
}

.section-dark .section-label {
    color: var(--arctic-mint);
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    opacity: 0.8;
    font-size: 1.1rem;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-card {
    background: var(--paper-sand);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    color: var(--midnight-ink);
}

.benefit-card h3,
.benefit-card .benefit-title {
    color: var(--midnight-ink);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

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

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.benefit-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.benefit-text {
    opacity: 0.8;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   FEATURED ISSUE SECTION
   ======================================== */
.featured-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-image {
    position: relative;
}

.featured-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.featured-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--electric-saffron);
    border-radius: 8px;
    z-index: -1;
}

.featured-info {
    color: var(--paper-sand);
}

.featured-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--electric-saffron);
    color: var(--midnight-ink);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.featured-title {
    color: var(--paper-sand);
    margin-bottom: 1.5rem;
}

.featured-highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.featured-highlights li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(243, 239, 230, 0.1);
}

.featured-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--electric-saffron);
    font-weight: bold;
}

@media (min-width: 768px) {
    .featured-content {
        grid-template-columns: 1fr 1.2fr;
    }
}

/* ========================================
   PLANS SECTION
   ======================================== */
.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.plan-card {
    background: var(--paper-sand);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.plan-card.featured {
    background: var(--midnight-ink);
    color: var(--paper-sand);
    transform: scale(1.02);
}

.plan-card.featured h3 {
    color: var(--paper-sand);
}

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

.plan-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--midnight-ink);
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-period {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(11, 16, 32, 0.1);
}

.plan-card.featured .plan-features li {
    border-bottom-color: rgba(243, 239, 230, 0.1);
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--arctic-mint);
    font-weight: bold;
}

@media (min-width: 768px) {
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
    }
}

/* ========================================
   EDITORIAL STANDARDS
   ======================================== */
.standards-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.standards-text h3 {
    margin-bottom: 1.5rem;
}

.standards-list {
    list-style: none;
}

.standards-list li {
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    border-bottom: 1px solid rgba(11, 16, 32, 0.1);
}

.standards-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.standards-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.standards-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .standards-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: rgba(243, 239, 230, 0.05);
    border: 1px solid rgba(243, 239, 230, 0.1);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    color: var(--electric-saffron);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--midnight-ink);
}

.testimonial-info h4 {
    color: var(--paper-sand);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--paper-sand);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--violet-carbon);
    transition: var(--transition-base);
}

.faq-item:hover .faq-question::after {
    color: var(--electric-saffron);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    opacity: 0.8;
}

/* ========================================
   ORDER FORM SECTION
   ======================================== */
.order-section {
    background: var(--midnight-ink);
    position: relative;
    overflow: hidden;
}

.order-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(94, 58, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 176, 0, 0.15) 0%, transparent 50%);
}

.order-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.order-info {
    color: var(--paper-sand);
}

.order-info h2 {
    color: var(--paper-sand);
    margin-bottom: 1.5rem;
}

.order-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.order-benefits li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
}

.order-benefits li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--electric-saffron);
}

.order-form-wrapper {
    background: var(--paper-sand);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.order-form-title {
    text-align: center;
    margin-bottom: 2rem;
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid rgba(11, 16, 32, 0.1);
    border-radius: 8px;
    background: #fff;
    transition: var(--transition-base);
    font-family: inherit;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--violet-carbon);
    box-shadow: 0 0 0 4px rgba(94, 58, 255, 0.1);
}

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

.form-checkbox input {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    margin-top: 0.2rem;
    accent-color: var(--violet-carbon);
    flex-shrink: 0;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-checkbox a {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.form-error {
    background: #fee;
    border: 1px solid #f88;
    color: #c00;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .order-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--graphite);
    color: var(--paper-sand);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--electric-saffron);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--paper-sand);
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--electric-saffron);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-contact span {
    color: var(--electric-saffron);
}

.footer-bottom {
    border-top: 1px solid rgba(243, 239, 230, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* ========================================
   PAGE HEADERS
   ======================================== */
.page-header {
    background: var(--gradient-dark);
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 176, 0, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    color: var(--paper-sand);
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--paper-sand);
    opacity: 0.8;
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* ========================================
   CONTENT PAGES
   ======================================== */
.content-section {
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--electric-saffron);
}

.content-wrapper h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

/* Archive Page */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.archive-card {
    background: var(--paper-sand);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    color: var(--midnight-ink);
}

.archive-card h3 {
    color: var(--midnight-ink);
}

.archive-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.archive-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.archive-card-content {
    padding: 1.5rem;
}

.archive-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.archive-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info-card {
    background: var(--midnight-ink);
    color: var(--paper-sand);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-info-card h2 {
    color: var(--paper-sand);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--electric-saffron);
    margin-bottom: 0.25rem;
}

.contact-form-card {
    background: var(--paper-sand);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

/* Thank You Page */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-dark);
    width: 100%;
}

.thank-you-content {
    color: var(--paper-sand);
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-content h1 {
    color: var(--paper-sand);
    margin-bottom: 1rem;
}

.thank-you-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--graphite);
    color: var(--paper-sand);
    padding: 1.5rem;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--electric-saffron);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles */
:focus-visible {
    outline: 3px solid var(--electric-saffron);
    outline-offset: 3px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

