/**
 * Mark My Words - Custom Styles for BlankSlate
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --color-bg: #EBEBEB;
    --color-black: #000000;
    --color-dark: #1a1a1a;
    --color-accent: #1B9C85;
    --color-white: #FFFFFF;
    --color-gray-medium: #888888;
    --color-gray-light: #f5f5f5;
    --color-gray-dark: #4a4a4a;
    --color-light-gray: #e8e8e8;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --transition-base: all 0.3s ease;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

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

/* Force SVG sizing */
svg {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg);
    padding: 1rem 2rem;
    transition: var(--transition-base);
}

.site-header.scrolled {
    background: rgba(235, 235, 235, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-black);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-base);
}

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

.nav-links a:hover {
    color: var(--color-accent);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: var(--transition-base);
}

.cta-button:hover {
    background: transparent;
    color: var(--color-accent);
}

.cta-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-black);
    transition: var(--transition-base);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 2rem 4rem;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Background Watermark Text */
.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.06);
    white-space: nowrap;
    z-index: 1;
    letter-spacing: 0.02em;
    user-select: none;
    pointer-events: none;
}

.hero-content {
    z-index: 2;
}

.hero-tagline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.hero-title .accent {
    color: var(--color-accent);
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-primary:hover {
    background: #158a74;
    border-color: #158a74;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 156, 133, 0.35);
}

.btn-primary svg {
    width: 18px !important;
    height: 18px !important;
    transition: transform 0.3s ease;
}

.btn-secondary svg {
    width: 18px !important;
    height: 18px !important;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--color-black);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid var(--color-black);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-secondary:hover {
    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-gray-medium);
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-keywords span {
    position: relative;
}

.hero-keywords span:not(:last-child)::after {
    content: '•';
    margin-left: 0.5rem;
    color: var(--color-accent);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 2rem;
    text-align: center;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.site-footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image-wrapper {
        order: 1;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-keywords {
        justify-content: center;
    }
    
    .hero-watermark {
        font-size: clamp(3rem, 15vw, 8rem);
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 1rem 2rem 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-medium);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-section {
        padding: 100px 1rem 3rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-image {
        max-height: 50vh;
    }
}

@media (max-width: 480px) {
    .hero-watermark {
        font-size: 2.5rem;
    }
    
    .hero-keywords {
        font-size: 0.75rem;
    }
    
    .hero-keywords span {
        display: block;
        text-align: center;
    }
    
    .hero-keywords span::after {
        display: none;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image-wrapper {
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-watermark {
    animation: fadeIn 1.2s ease-out 0.5s both;
}

.hero-tagline {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-title {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-description {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero-keywords {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tagline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-gray-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   POEMS SECTION
   ============================================ */
.poems-section {
    padding: 6rem 0;
    background: var(--color-white);
}

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

.poem-card {
    background: var(--color-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-base);
    position: relative;
}

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

.poem-card .card-accent {
    height: 4px;
    background: var(--color-accent);
}

.poem-card .card-content {
    padding: 2rem;
}

.poem-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.poem-card .card-excerpt {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-gray-medium);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-accent);
    transition: var(--transition-base);
}

.card-link:hover {
    gap: 0.75rem;
}

.card-link svg {
    width: 16px !important;
    height: 16px !important;
}

/* ============================================
   BREATH OF FRESH AIR SECTION
   ============================================ */
.breath-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    color: var(--color-white);
}

.breath-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.breath-text .section-tagline {
    color: var(--color-accent);
}

.breath-text .section-title {
    color: var(--color-white);
}

.breath-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.breath-description strong {
    color: var(--color-accent);
}

.breath-description em {
    color: rgba(255, 255, 255, 0.95);
}

.breath-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.breath-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(27, 156, 133, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-accent);
}

.breath-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--color-accent);
}

.breath-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.breath-keywords span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: 6rem 0;
    background: var(--color-bg);
}

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

.blog-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-base);
}

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

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #0d6b5c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

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

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

.blog-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--color-gray-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ============================================
   COMMUNITY/TESTIMONIALS SECTION
   ============================================ */
.community-section {
    padding: 6rem 0;
    background: var(--color-white);
}

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

.testimonial-card {
    background: var(--color-bg);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-base);
}

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

.testimonial-quote {
    margin-bottom: 1.5rem;
}

.quote-icon {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-quote p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-black);
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-black);
}

.author-title {
    font-size: 0.85rem;
    color: var(--color-gray-medium);
}

/* ============================================
   MERCH CTA SECTION
   ============================================ */
.merch-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, var(--color-bg) 100%);
}

.merch-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.merch-content .section-tagline {
    margin-bottom: 1rem;
}

.merch-content .section-title {
    margin-bottom: 1.5rem;
}

.merch-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 1rem;
}

.merch-note {
    font-size: 0.95rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.merch-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.merch-badge {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--color-white);
    border: 3px dashed var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-accent);
}

/* ============================================
   WORK WITH MARK SECTION
   ============================================ */
.work-section {
    padding: 5rem 0;
    background: #000000;
}

.work-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.work-section .section-tagline {
    color: var(--color-accent);
    font-weight: 700;
}

.work-section .section-title {
    color: #ffffff;
}

.work-section .section-description {
    color: rgba(255, 255, 255, 0.85);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.work-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent);
}

.work-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.work-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.work-card p {
    font-size: 0.9rem;
    color: var(--color-gray-medium);
    line-height: 1.6;
    margin: 0;
}

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

@media (max-width: 992px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .work-card {
        padding: 1.5rem;
    }
}

/* ============================================
   FOOTER ENHANCED
   ============================================ */
.site-footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 4rem 2rem 2rem;
}

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

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-location svg {
    width: 18px;
    height: 18px;
}

.footer-links {
    display: flex;
    gap: 4rem;
    justify-content: flex-end;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--color-accent);
}

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

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

.footer-column a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition-base);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
    margin: 0;
}

/* ============================================
   RESPONSIVE - NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
    .cards-grid,
    .blog-cards-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .breath-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .breath-visual {
        order: -1;
    }
    
    .merch-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .merch-visual {
        order: -1;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .cards-grid,
    .blog-cards-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .poems-section,
    .breath-section,
    .blog-section,
    .community-section,
    .merch-section {
        padding: 4rem 0;
    }
    
    .business-services {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ============================================
   INNER PAGE STYLES
   ============================================ */

/* Page Hero - Shared */
.page-hero {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(180deg, var(--color-bg) 0%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(27, 156, 133, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-tagline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.page-description {
    font-size: 1.15rem;
    color: var(--color-gray);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

.blog-intro-section {
    padding: 5rem 0;
    background: #ffffff;
}

.blog-intro-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.intro-text p {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.intro-text p strong {
    color: var(--color-accent);
}

.intro-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.intro-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--color-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.list-icon {
    font-size: 1.2rem;
}

.intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-quote {
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    position: relative;
}

.intro-quote::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 2rem;
    width: 4px;
    height: calc(100% + 16px);
    background: var(--color-accent);
    border-radius: 2px;
}

.intro-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.intro-quote cite {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-style: normal;
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 5rem 0;
    background: var(--color-bg);
}

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

.blog-post-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.post-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.placeholder-image {
    background: linear-gradient(135deg, var(--color-accent) 0%, #148f78 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 3rem;
    opacity: 0.5;
}

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

.post-card-date {
    font-size: 0.8rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0.5rem 0;
    line-height: 1.4;
}

.post-card-title a {
    color: inherit;
    text-decoration: none;
}

.post-card-title a:hover {
    color: var(--color-accent);
}

.post-card-excerpt {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.no-posts-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    color: var(--color-gray);
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, #148f78 100%);
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-content .section-tagline {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-content .section-title {
    color: #ffffff;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input[type="email"]:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn-primary {
    background: #ffffff;
    color: var(--color-accent);
    border: none;
    white-space: nowrap;
}

.newsletter-form .btn-primary:hover {
    background: var(--color-black);
    color: #ffffff;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   POEMS PAGE STYLES
   ============================================ */

.poetry-intro-section {
    padding: 5rem 0;
    background: #ffffff;
}

.poetry-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.poetry-intro-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.poetry-intro-text p {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.poetry-intro-quote {
    background: var(--color-bg);
    padding: 3rem;
    border-radius: 16px;
    border-left: 4px solid var(--color-accent);
}

.poetry-intro-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-black);
    margin: 0;
}

/* Poems Grid */
.poems-grid-section {
    padding: 5rem 0;
    background: var(--color-bg);
}

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

.poem-card-full {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.poem-card-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.poem-card-full .card-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent) 0%, #148f78 100%);
}

.poem-card-full .card-content {
    padding: 2rem;
}

.poem-card-full .card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.poem-preview {
    font-style: italic;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.no-poems-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    color: var(--color-gray);
}

/* Performance CTA */
.performance-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
}

.performance-cta-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.performance-content .section-tagline {
    color: var(--color-accent);
}

.performance-content .section-title {
    color: #ffffff;
}

.performance-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.performance-content .btn-primary {
    margin-top: 1.5rem;
}

.performance-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.performance-icon {
    width: 180px;
    height: 180px;
    background: rgba(27, 156, 133, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-accent);
}

.performance-icon svg {
    width: 80px !important;
    height: 80px !important;
    color: var(--color-accent);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-section {
    padding: 5rem 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.form-intro {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--color-black);
    background: var(--color-bg);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    align-self: flex-start;
    cursor: pointer;
}

.form-submit svg {
    width: 18px !important;
    height: 18px !important;
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card,
.contact-social-card,
.contact-quote-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 16px;
}

.contact-info-card h3,
.contact-social-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.contact-info-card p,
.contact-social-card p {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px !important;
    height: 22px !important;
    color: var(--color-accent);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-text a,
.contact-text span:last-child {
    color: var(--color-black);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-text a:hover {
    color: var(--color-accent);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 22px !important;
    height: 22px !important;
    color: var(--color-gray);
    transition: color 0.3s ease;
}

.social-link:hover {
    background: var(--color-accent);
}

.social-link:hover svg {
    color: #ffffff;
}

/* Contact Quote Card */
.contact-quote-card {
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    color: #ffffff;
    border-left: 4px solid var(--color-accent);
}

.contact-quote-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.contact-quote-card cite {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-style: normal;
}

/* Services CTA Section */
.services-cta-section {
    padding: 5rem 0;
    background: var(--color-bg);
}

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

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(27, 156, 133, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    width: 32px !important;
    height: 32px !important;
    color: var(--color-accent);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   ABOUT PAGE - Fresh Professional Design
   ============================================ */

/* About Hero */
.about-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-dark) 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 4rem;
}

.about-hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 18rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -0.03em;
    user-select: none;
    pointer-events: none;
}

.about-hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(27, 156, 133, 0.15);
    border: 1px solid rgba(27, 156, 133, 0.3);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.about-hero-title .highlight {
    background: linear-gradient(135deg, var(--color-accent) 0%, #16876f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-badges .badge {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* ============================================
   ABOUT PAGE - Consistent with Site Design
   ============================================ */

/* About Hero Section */
.about-hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-dark) 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 4rem;
}

.about-hero-section .hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    letter-spacing: 0.02em;
    user-select: none;
    pointer-events: none;
}

.about-hero-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero-section .hero-tagline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.about-hero-section .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.about-hero-section .hero-title .accent {
    color: var(--color-accent);
    font-style: italic;
}

.about-hero-section .hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

/* About Story Section */
.about-story-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
}

.story-text .section-tagline {
    margin-bottom: 1.5rem;
}

.story-text .section-title {
    margin-bottom: 2.5rem;
}

.story-lead {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-dark);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.story-lead em {
    color: var(--color-accent);
    font-weight: 600;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 1.75rem;
}

.story-text p strong {
    color: var(--color-dark);
}

.story-text p em {
    color: var(--color-dark);
}

.story-text .btn-primary {
    margin-top: 2.5rem;
}

.story-quote-card {
    background: var(--color-dark);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
}

.story-quote-card .quote-icon {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

.story-quote-card blockquote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem 0;
}

.story-quote-card cite {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-style: normal;
}

/* About Pillars Section */
.about-pillars-section {
    padding: 6rem 0;
    background: var(--color-bg);
}

.about-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.work-feature-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.work-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent);
}

.featured-card {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a1a1a 100%);
    border-color: var(--color-accent);
}

.featured-card .feature-title,
.featured-card .feature-description {
    color: var(--color-white);
}

.featured-card .feature-link {
    color: var(--color-accent);
}

.featured-card .feature-tag {
    background: rgba(27, 156, 133, 0.15);
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.feature-card-header {
    position: relative;
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(135deg, rgba(27, 156, 133, 0.1) 0%, rgba(27, 156, 133, 0.05) 100%);
}

.featured-card .feature-card-header {
    background: linear-gradient(135deg, rgba(27, 156, 133, 0.2) 0%, rgba(27, 156, 133, 0.1) 100%);
}

.feature-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.featured-card .feature-number {
    color: rgba(27, 156, 133, 0.15);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.featured-card .feature-icon-large {
    background: var(--color-accent);
}

.feature-icon-large svg {
    width: 40px !important;
    height: 40px !important;
    stroke: var(--color-dark);
}

.featured-card .feature-icon-large svg {
    stroke: var(--color-white);
}

.feature-card-content {
    padding: 2rem;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

.feature-highlights {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-badge {
    flex: 1;
    padding: 1rem;
    background: var(--color-bg);
    border-radius: 12px;
    text-align: center;
}

.featured-card .highlight-badge {
    background: rgba(255, 255, 255, 0.05);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.badge-icon {
    display: block;
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.badge-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-card .badge-label {
    color: rgba(255, 255, 255, 0.7);
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: var(--color-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--color-dark);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.feature-link:hover {
    gap: 0.75rem;
}

.feature-link svg {
    width: 18px;
    height: 18px;
}

/* About Mission Section */
.about-mission-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.mission-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 1.25rem;
}

.mission-text p strong {
    color: var(--color-dark);
}

.mission-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.mission-keywords span {
    padding: 0.6rem 1.25rem;
    background: var(--color-bg);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
}

.mission-keywords span:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

/* About CTA Section */
.about-cta-section {
    padding: 5rem 0;
    background: var(--color-accent);
}

.about-cta-section .cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-section .section-tagline {
    color: rgba(255, 255, 255, 0.9);
}

.about-cta-section .section-title {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.about-cta-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-cta-section .btn-primary {
    background: var(--color-white);
    color: var(--color-accent);
    border-color: var(--color-white);
}

.about-cta-section .btn-primary:hover {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.about-cta-section .btn-secondary {
    border-color: var(--color-white);
    color: var(--color-white);
}

.about-cta-section .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-accent);
}

/* About Page Responsive */
@media (max-width: 992px) {
    .about-story-grid,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-visual {
        order: -1;
    }
    
    .about-work-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 75vh;
        padding: 100px 1.5rem 3rem;
    }
    
    .about-story-section,
    .about-pillars-section,
    .about-mission-section,
    .about-cta-section {
        padding: 4rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
}

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

.mission-content .section-tagline {
    color: var(--color-accent);
}

.mission-content .section-title {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.mission-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pillar {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    background: rgba(27, 156, 133, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pillar-icon svg {
    width: 28px !important;
    height: 28px !important;
    color: var(--color-accent);
}

.pillar h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.pillar p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Journey Timeline */
.journey-section {
    padding: 5rem 0;
    background: var(--color-bg);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-accent) 0%, rgba(27, 156, 133, 0.2) 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translateX(-7px);
    box-shadow: 0 0 0 4px rgba(27, 156, 133, 0.2);
}

.timeline-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.timeline-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.values-content .section-tagline {
    margin-bottom: 0.5rem;
}

.values-content .section-title {
    margin-bottom: 2.5rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.value-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(27, 156, 133, 0.2);
    line-height: 1;
    flex-shrink: 0;
}

.value-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.value-text p {
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.values-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.values-quote {
    background: var(--color-bg);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.values-quote > svg {
    width: 48px !important;
    height: 48px !important;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.values-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-black);
    margin: 0;
}

/* About CTA */
.about-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, #148f78 100%);
    text-align: center;
}

.about-cta-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-wrapper h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-cta-wrapper p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-cta-buttons .btn-primary {
    background: #ffffff;
    color: var(--color-accent);
}

.about-cta-buttons .btn-primary:hover {
    background: var(--color-black);
    color: #ffffff;
}

.about-cta-buttons .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.about-cta-buttons .btn-secondary:hover {
    background: #ffffff;
    color: var(--color-accent);
}

/* ============================================
   INNER PAGES RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .blog-intro-content,
    .poetry-intro-grid,
    .contact-grid,
    .about-grid,
    .values-grid,
    .newsletter-wrapper,
    .performance-cta-wrapper {
        grid-template-columns: 1fr;
    }
    
    .mission-pillars,
    .services-grid,
    .blog-posts-grid,
    .poems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .about-image-accent {
        top: 1rem;
        left: 1rem;
        right: -0.5rem;
        bottom: -0.5rem;
    }
    
    .performance-visual {
        order: -1;
    }
    
    .performance-icon {
        width: 120px;
        height: 120px;
    }
    
    .performance-icon svg {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 8rem 1.5rem 4rem;
    }
    
    .mission-pillars,
    .services-grid,
    .blog-posts-grid,
    .poems-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .timeline {
        padding-left: 2.5rem;
    }
    
    .timeline-marker {
        left: -2.5rem;
    }
    
    .values-visual {
        order: -1;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta-buttons .btn-primary,
    .about-cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ============================================
   MERCH PAGE STYLES
   ============================================ */

.merch-grid-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.merch-card {
    background: var(--color-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.merch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.merch-card-image {
    position: relative;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-accent);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.merch-placeholder-image svg {
    width: 80px !important;
    height: 80px !important;
    color: #ccc;
}

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

.merch-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.merch-description {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.merch-price {
    margin-bottom: 1rem;
}

.merch-price .price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
}

.merch-btn {
    width: 100%;
    justify-content: center;
    cursor: not-allowed;
    opacity: 0.7;
}

.merch-btn:disabled {
    cursor: not-allowed;
}

/* Merch Newsletter */
.merch-newsletter-section {
    padding: 5rem 0;
    background: var(--color-bg);
}

.merch-newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.merch-newsletter-content .section-tagline {
    display: block;
    margin-bottom: 0.5rem;
}

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

.merch-newsletter-content p {
    color: var(--color-gray);
    line-height: 1.7;
}

.merch-newsletter-form form {
    display: flex;
    gap: 1rem;
}

.merch-newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.merch-newsletter-form input[type="email"]:focus {
    border-color: var(--color-accent);
}

/* Merch Page Responsive */
@media (max-width: 992px) {
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .merch-newsletter-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .merch-newsletter-form form {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .merch-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .merch-newsletter-form form {
        flex-direction: column;
    }
    
    .merch-newsletter-form .btn-primary {
        width: 100%;
        justify-content: center;
    }
}


/* ============================================
   BLOG LANDING PAGE - EDITORIAL STYLE
   ============================================ */

/* Blog Hero - Clean Editorial */
.blog-hero-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8faf9 0%, #e8f4f2 100%);
    border-bottom: 3px solid var(--color-accent);
}

.blog-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.blog-hero-content .hero-tagline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(27, 156, 133, 0.1);
    border-radius: 4px;
}

.blog-hero-content .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.blog-hero-content .hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-medium);
    margin-bottom: 2rem;
}

.hero-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-gray-medium);
}

.meta-item svg {
    width: 18px !important;
    height: 18px !important;
    stroke: var(--color-accent);
}

.blog-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(27, 156, 133, 0.2);
}

.visual-card .card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.visual-card span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
}

/* Topics Bar */
.topics-bar {
    background: var(--color-accent);
    padding: 1.25rem 0;
}

.topics-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.topics-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.topics-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.topic-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.topic-tag:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

/* Blog Articles Grid */
.blog-articles-section {
    padding: 5rem 0;
    background: var(--color-white);
}

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

.article-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.article-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.article-card.featured .article-image {
    height: 300px;
}

.article-card.featured .article-title {
    font-size: 1.75rem;
}

.article-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f4f2 0%, #d1ebe6 100%);
}

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

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

.article-image .placeholder-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.placeholder-thumb .placeholder-icon {
    font-size: 3rem;
}

.article-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.article-date,
.article-read-time {
    font-size: 0.8rem;
    color: var(--color-gray-medium);
}

.article-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.article-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: var(--color-accent);
}

.article-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-gray-medium);
    margin-bottom: 1rem;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-link:hover {
    gap: 0.75rem;
}

.article-link svg {
    width: 16px !important;
    height: 16px !important;
}

.no-articles-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(27, 156, 133, 0.05);
    border-radius: 16px;
}

.no-articles-message .message-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.no-articles-message h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.no-articles-message p {
    color: var(--color-gray-medium);
}

/* Blog About Section */
.blog-about-section {
    padding: 5rem 0;
    background: #fafbfc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content .section-tagline {
    margin-bottom: 0.5rem;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray-medium);
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--color-white);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item .feature-icon {
    font-size: 1.25rem;
}

.feature-item .feature-text {
    font-size: 0.9rem;
    color: var(--color-dark);
}

.about-sidebar .sidebar-quote {
    background: var(--color-accent);
    padding: 2.5rem;
    border-radius: 16px;
    color: var(--color-white);
}

.sidebar-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sidebar-quote cite {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Blog Newsletter Section */
.blog-newsletter-section {
    padding: 5rem 0;
    background: var(--color-accent);
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
}

.newsletter-box .newsletter-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.newsletter-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.newsletter-box p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 2rem;
}

.newsletter-box .newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.newsletter-box .newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-box .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-box .newsletter-form input:focus {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-box .newsletter-note {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 1rem;
}


/* ============================================
   POEMS LANDING PAGE - ARTISTIC GALLERY STYLE
   ============================================ */

/* Poems Hero - Dark & Dramatic */
.poems-hero-section {
    padding: 10rem 0 6rem;
    background: var(--color-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.poems-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(27, 156, 133, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.poems-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-decorative {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.deco-line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.deco-symbol {
    font-size: 2.5rem;
    color: var(--color-accent);
    font-family: Georgia, serif;
}

.poems-hero-section .hero-tagline {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.poems-hero-section .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.poems-hero-section .hero-title em {
    color: var(--color-accent);
    font-style: italic;
}

.poems-hero-section .hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Poem Section */
.featured-poem-section {
    padding: 5rem 0;
    background: #fafbfc;
}

.featured-poem-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.featured-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.featured-label .label-line {
    width: 40px;
    height: 1px;
    background: var(--color-gray-light);
}

.featured-label .label-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
}

.featured-poem {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 16px;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.poem-lines {
    margin-bottom: 2rem;
}

.poem-line {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 2;
    color: var(--color-dark);
    margin-bottom: 0;
}

.poem-ellipsis {
    font-size: 1.5rem;
    color: var(--color-gray-medium);
    letter-spacing: 4px;
    margin-top: 1rem;
}

.poem-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.poem-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
}

.poem-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.poem-link:hover {
    gap: 0.75rem;
}

.poem-link svg {
    width: 16px !important;
    height: 16px !important;
}

/* Poems Collection Gallery */
.poems-collection-section {
    padding: 5rem 0;
    background: var(--color-white);
}

/* Redesigned Poems Grid */
.poems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.poems-collection-section .section-description {
    color: var(--color-gray-dark);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.poem-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.poem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.poem-card-inner {
    padding: 2rem;
}

.poem-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.poem-icon {
    font-size: 2rem;
    color: var(--color-accent);
    line-height: 1;
}

.poem-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.3;
}

.poem-card-excerpt {
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--color-accent);
    padding-left: 1rem;
}

.poem-card-excerpt p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
    margin: 0;
    font-style: italic;
}

.poem-card-excerpt .ellipsis {
    color: var(--color-gray-medium);
    font-style: normal;
}

.poem-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.poem-card-link:hover {
    gap: 0.75rem;
    color: var(--color-dark);
}

.poem-card-link svg {
    width: 16px;
    height: 16px;
}

/* Legacy poems-gallery styles (keeping for compatibility) */
.poems-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.poem-tile {
    position: relative;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.poem-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.poem-tile .tile-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.poem-tile.accent-teal .tile-accent {
    background: var(--color-accent);
}

.poem-tile.accent-dark .tile-accent {
    background: var(--color-dark);
}

.poem-tile.accent-light .tile-accent {
    background: #c4a77d;
}

.tile-content {
    padding: 2rem 2rem 2rem 2.5rem;
}

.tile-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gray-light);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.tile-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.tile-preview {
    margin-bottom: 1.5rem;
}

.tile-preview p {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-gray-medium);
}

.tile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tile-link:hover {
    gap: 0.75rem;
}

.tile-link svg {
    width: 16px !important;
    height: 16px !important;
}

/* Poetry About Section */
.poetry-about-section {
    padding: 5rem 0;
    background: #fafbfc;
}

.poetry-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-quote {
    background: var(--color-dark);
    padding: 3rem;
    border-radius: 16px;
    position: relative;
}

.about-quote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--color-accent);
    opacity: 0.5;
    line-height: 1;
}

.about-quote blockquote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray-medium);
    margin-bottom: 1rem;
}

/* Poems CTA Section */
.poems-cta-section {
    padding: 5rem 0;
    background: var(--color-accent);
}

.poems-cta-section .cta-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.poems-cta-section .cta-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poems-cta-section .cta-icon svg {
    width: 48px !important;
    height: 48px !important;
    stroke: var(--color-white);
}

.poems-cta-section .cta-content {
    color: var(--color-white);
}

.poems-cta-section .section-tagline {
    color: rgba(255, 255, 255, 0.8);
}

.poems-cta-section .section-title {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.poems-cta-section .cta-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.poems-cta-section .btn-primary {
    background: var(--color-white);
    color: var(--color-accent);
}

.poems-cta-section .btn-primary:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

/* ============================================
   RESPONSIVE - BLOG & POEMS PAGES
   ============================================ */
@media (max-width: 992px) {
    .blog-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-meta {
        justify-content: center;
    }
    
    .blog-hero-visual {
        display: none;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .poetry-about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .poems-cta-section .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 6rem 0 3rem;
    }
    
    .topics-bar {
        padding: 1rem 0;
    }
    
    .topics-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-card.featured {
        grid-column: span 1;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .newsletter-box .newsletter-form {
        flex-direction: column;
    }
    
    .poems-hero-section {
        padding: 7rem 0 4rem;
    }
    
    .poems-gallery {
        grid-template-columns: 1fr;
    }
    
    .featured-poem {
        padding: 2rem;
    }
    
    .poem-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}


/* ============================================
   SINGLE POST TEMPLATES
   ============================================ */

/* ===========================================
   POEM SINGLE POST - ARTISTIC STYLE
   =========================================== */
.poem-single .poem-article {
    background: var(--color-white);
}

/* Poem Header */
.poem-header {
    padding: 10rem 0 5rem;
    background: var(--color-black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.poem-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(27, 156, 133, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.poem-header-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.poem-decorative {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.poem-decorative .deco-line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.poem-decorative .deco-symbol {
    font-size: 3rem;
    color: var(--color-accent);
    font-family: Georgia, serif;
}

.poem-category-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--color-accent);
    border-radius: 50px;
}

.poem-single-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.poem-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Poem Content */
.poem-content-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.poem-content-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.poem-body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.35rem;
    line-height: 2.2;
    color: var(--color-black);
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.poem-body p {
    margin-bottom: 2rem;
    font-style: italic;
}

.poem-body p:last-child {
    margin-bottom: 0;
}

/* Poem Article Footer */
.poem-article-footer {
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.poem-share,
.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--color-gray-medium);
}

.share-btn:hover {
    background: var(--color-accent);
}

.share-btn:hover svg {
    fill: var(--color-white);
}

.back-to-collection,
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.back-to-collection:hover,
.back-to-blog:hover {
    gap: 0.75rem;
}

.back-to-collection svg,
.back-to-blog svg {
    width: 18px;
    height: 18px;
}

/* More Poems Section */
.more-poems-section {
    padding: 5rem 0;
    background: var(--color-black);
    text-align: center;
}

.more-poems-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.more-poems-section > .section-container > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.more-poems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.more-poem-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.more-poem-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.more-poem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.more-poem-card .read-poem {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
}


/* ===========================================
   BLOG SINGLE POST - EDITORIAL STYLE
   =========================================== */
.blog-single .blog-article {
    background: var(--color-white);
}

/* Blog Header */
.blog-header {
    padding: 9rem 0 4rem;
    background: linear-gradient(180deg, #f8faf9 0%, var(--color-white) 100%);
}

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

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.blog-breadcrumb a {
    color: var(--color-gray-medium);
}

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

.blog-breadcrumb span {
    color: var(--color-gray-medium);
}

.blog-breadcrumb .current {
    color: var(--color-black);
    font-weight: 500;
}

.blog-category-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    background: var(--color-accent);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}

.blog-single-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: 2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.meta-author .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.meta-author .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-black);
}

.post-date {
    font-size: 0.85rem;
    color: var(--color-gray-medium);
}

.meta-reading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-medium);
    font-size: 0.9rem;
}

.meta-reading svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-accent);
}

/* Blog Featured Image */
.blog-featured-image {
    background: var(--color-white);
}

.featured-image-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.featured-image-container img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Blog Content */
.blog-content-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.blog-content-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}

.blog-body p {
    margin-bottom: 1.5rem;
}

.blog-body h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 2.5rem 0 1rem;
}

.blog-body h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 2rem 0 0.75rem;
}

.blog-body ul,
.blog-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-body li {
    margin-bottom: 0.75rem;
}

.blog-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--color-bg);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--color-black);
}

.blog-body a {
    color: var(--color-accent);
    text-decoration: underline;
}

.blog-body a:hover {
    text-decoration: none;
}

.blog-body img {
    border-radius: 12px;
    margin: 2rem 0;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.tags-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-black);
}

.tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tags-list a {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--color-bg);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-gray-medium);
    transition: all 0.3s ease;
}

.tags-list a:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

/* Blog Article Footer */
.blog-article-footer {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

/* Related Articles Section */
.related-articles-section {
    padding: 5rem 0;
    background: var(--color-bg);
    text-align: center;
}

.related-articles-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.related-articles-section > .section-container > p {
    color: var(--color-gray-medium);
    margin-bottom: 3rem;
}

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

.related-article-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.related-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.related-image {
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f4f2 0%, #d1ebe6 100%);
}

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

.related-article-card:hover .related-image img {
    transform: scale(1.05);
}

.related-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.related-content {
    padding: 1.5rem;
}

.related-date {
    font-size: 0.8rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.related-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0.5rem 0 1rem;
    line-height: 1.4;
}

.read-article {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* Single Newsletter Section */
.single-newsletter-section {
    padding: 5rem 0;
    background: var(--color-accent);
}

.newsletter-cta-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
}

.newsletter-cta-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

.newsletter-cta-box p {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.newsletter-cta-box .newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-cta-box .newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 1rem;
    outline: none;
}

.newsletter-cta-box .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-cta-box .newsletter-form input:focus {
    border-color: var(--color-white);
}

.newsletter-cta-box .btn-primary {
    background: var(--color-white);
    color: var(--color-accent);
    white-space: nowrap;
}

.newsletter-cta-box .btn-primary:hover {
    background: var(--color-black);
    color: var(--color-white);
}


/* ============================================
   SINGLE POST RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .more-poems-grid,
    .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .poem-header {
        padding: 8rem 0 4rem;
    }
    
    .blog-header {
        padding: 7rem 0 3rem;
    }
    
    .poem-body {
        font-size: 1.15rem;
        line-height: 2;
    }
    
    .poem-article-footer,
    .blog-article-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .more-poems-grid,
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .newsletter-cta-box .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-cta-box .btn-primary {
        width: 100%;
        justify-content: center;
    }
}


/* ============================================
   ABOUT PAGE STYLES - Professional UX/UI Design
   ============================================ */

/* ============================================
   ABOUT PAGE STYLES - Professional UX/UI Design
   ============================================ */

/* About Hero Section - Immersive Full-Height */
.about-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, var(--color-dark) 50%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.about-hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 14rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    letter-spacing: -0.02em;
    user-select: none;
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-accent);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    bottom: -50px;
    left: -50px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--color-accent);
    top: 50%;
    left: 50%;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.about-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(27, 156, 133, 0.15);
    border: 1px solid rgba(27, 156, 133, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
}

.about-hero-section .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-highlight {
    background: linear-gradient(135deg, var(--color-accent) 0%, #16876f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.meta-icon {
    font-size: 1.25rem;
}

/* Origin Story Section - Split Screen */
.origin-story-section {
    padding: 0;
    background: var(--color-white);
}

.origin-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
}

.origin-left {
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.origin-image-stack {
    position: relative;
    width: 400px;
    height: 500px;
}

.stack-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stack-card:hover {
    transform: translateY(-10px);
}

.card-1 {
    z-index: 2;
    transform: rotate(-3deg) translateX(-20px);
}

.card-2 {
    z-index: 1;
    transform: rotate(3deg) translateX(20px) translateY(20px);
}

.card-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a7ea4 0%, var(--color-accent) 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
}

.card-label {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.origin-right {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title-large {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.story-quote {
    position: relative;
    padding-left: 3rem;
    margin: 2rem 0;
}

.quote-mark {
    position: absolute;
    left: 0;
    top: -0.5rem;
    width: 36px;
    height: 36px;
    color: var(--color-accent);
    opacity: 0.4;
}

.quote-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-dark);
    margin: 0;
}

.quote-text strong {
    color: var(--color-accent);
}

.story-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 1.25rem;
}

.story-paragraph strong {
    color: var(--color-dark);
    font-weight: 600;
}

.btn-story {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: var(--color-dark);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-dark);
}

.btn-story:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(27, 156, 133, 0.3);
}

.btn-story svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-story:hover svg {
    transform: translateX(4px);
}

/* Performer Section - Bento Grid */
.performer-section {
    padding: 6rem 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.performer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
}

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

.section-label-white {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title-white {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.section-desc-white {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.bento-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.bento-hero {
    grid-column: span 3;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(27, 156, 133, 0.15) 0%, rgba(27, 156, 133, 0.05) 100%);
    border-color: rgba(27, 156, 133, 0.3);
}

.bento-award {
    grid-column: span 3;
}

.bento-workshop {
    grid-column: span 3;
}

.bento-location {
    grid-column: span 3;
}

.bento-icon-large {
    width: 80px;
    height: 80px;
    background: var(--color-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.bento-icon-large svg {
    width: 40px !important;
    height: 40px !important;
    stroke: var(--color-white);
}

.bento-badge {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.bento-icon-small {
    width: 50px;
    height: 50px;
    background: rgba(27, 156, 133, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bento-icon-small svg {
    width: 24px !important;
    height: 24px !important;
    stroke: var(--color-accent);
}

.location-pin {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bento-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.bento-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.bento-hero p {
    margin-bottom: auto;
}

.bento-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

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

.btn-accent-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: transparent;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid var(--color-accent);
    transition: all 0.3s ease;
}

.btn-accent-outline:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(27, 156, 133, 0.3);
}

.btn-accent-outline svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-accent-outline:hover svg {
    transform: translateX(4px);
}

/* Poet Section - Magazine Layout */
.poet-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.poet-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 5rem;
    align-items: start;
}

.poet-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 2.5rem;
}

.poet-intro strong {
    color: var(--color-dark);
    font-weight: 600;
}

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

.poet-theme {
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.poet-theme:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.theme-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.poet-theme h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}

.poet-sidebar {
    position: sticky;
    top: 120px;
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.keyword {
    padding: 0.6rem 1.25rem;
    background: var(--color-bg);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.keyword:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
    transform: scale(1.05);
}

.poet-quote {
    padding: 2rem;
    background: var(--color-dark);
    border-radius: 16px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--color-accent);
    margin: 0;
}

/* Mission Section - Card Deck */
.mission-section {
    padding: 6rem 0;
    background: var(--color-bg);
}

.mission-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-centerpiece {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 3.5rem;
    background: var(--color-white);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(27, 156, 133, 0.1);
}

.centerpiece-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #16876f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.centerpiece-icon svg {
    width: 40px !important;
    height: 40px !important;
    stroke: var(--color-white);
}

.centerpiece-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
}

.centerpiece-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
}

.centerpiece-text strong {
    color: var(--color-dark);
}

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

.mission-card {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.card-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(27, 156, 133, 0.1);
    line-height: 1;
}

.mission-card .card-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-card .card-icon svg {
    width: 32px !important;
    height: 32px !important;
    stroke: var(--color-accent);
}

.mission-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.mission-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
    margin: 0;
}

/* Final CTA Section - Immersive */
.final-cta-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-accent);
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--color-white);
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 12px;
    border: 2px solid var(--color-white);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover svg {
    transform: translateX(4px);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: var(--color-white);
    color: var(--color-accent);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* About Page Responsive */
@media (max-width: 1200px) {
    .origin-container {
        grid-template-columns: 1fr;
    }
    
    .origin-left {
        min-height: 60vh;
    }
    
    .bento-hero {
        grid-column: span 6;
    }
    
    .bento-award,
    .bento-workshop,
    .bento-location {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .poet-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .poet-sidebar {
        position: static;
    }
    
    .mission-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 85vh;
        padding: 1rem;
    }
    
    .hero-meta {
        gap: 1rem;
    }
    
    .origin-right {
        padding: 4rem 2rem;
    }
    
    .origin-image-stack {
        width: 300px;
        height: 400px;
    }
    
    .performer-section {
        padding: 4rem 0;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-hero,
    .bento-award,
    .bento-workshop,
    .bento-location {
        grid-column: span 1;
    }
    
    .poet-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-centerpiece {
        padding: 2.5rem 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}