/* ========================================
   NATURE-BIASED Purple Cow Land Flyer
   Organic. Earthy. Remarkable.
   ======================================== */

:root {
    /* Organic Color Palette */
    --forest-deep: #1a3a2f;
    --forest-medium: #2d5a47;
    --forest-light: #4a7c59;
    --sage: #87a878;
    --meadow: #c4d7a4;
    --cream: #f8f5e6;
    --sand: #e8dcc4;
    --bark: #5c4033;
    --earth: #8b7355;
    --sunset: #e07b53;
    --golden: #d4a857;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #fdfcf7;
    --warm-gray: #6b6b5e;
    --dark: #2c2c27;

    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-organic: 40% 60% 55% 45% / 55% 45% 55% 45%;

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(45, 90, 71, 0.1);
    --shadow-md: 0 8px 32px rgba(45, 90, 71, 0.15);
    --shadow-nature: 0 12px 40px rgba(26, 58, 47, 0.2);
}

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

html {
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg,
            var(--meadow) 0%,
            var(--sage) 30%,
            var(--forest-light) 70%,
            var(--forest-deep) 100%);
    min-height: 100vh;
    padding: var(--space-xl);
    display: flex;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

/* Floating Leaf Decorations */
.leaf-decoration {
    position: fixed;
    font-size: 3rem;
    opacity: 0.15;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.leaf-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 40%;
    right: 3%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Flyer Container */
.flyer {
    width: 100%;
    max-width: 780px;
    background: var(--cream);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-nature);
    overflow: hidden;
    position: relative;
}

/* ===== HOOK SECTION ===== */
.hook-section {
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-medium) 100%);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.hook-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(135, 168, 120, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.hook-section::after {
    content: '🌿';
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 4rem;
    opacity: 0.1;
}

.organic-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    margin-bottom: var(--space-lg);
}

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

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--meadow);
}

.hook-content {
    position: relative;
    z-index: 1;
}

.hook-whisper {
    color: var(--sage);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.hook-headline {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

.highlight-word {
    color: var(--meadow);
    font-style: italic;
}

.hook-tagline {
    font-size: 1.125rem;
    color: var(--sage);
    font-weight: 500;
}

.price-natural {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--golden);
    max-width: 280px;
}

.price-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--sage);
    text-transform: uppercase;
}

.price-value {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--golden);
}

.price-note {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding: var(--space-md);
    background: var(--sand);
}

.nature-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-image {
    width: 100%;
    height: 280px;
}

.placeholder-image {
    background: linear-gradient(145deg, var(--sage) 0%, var(--forest-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    text-align: center;
}

.placeholder-content svg {
    opacity: 0.6;
}

.placeholder-content span {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.placeholder-tip {
    font-size: 0.75rem !important;
    font-weight: 400 !important;
    opacity: 0.7;
    font-style: italic;
}

.hero-tag {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--forest-deep);
}

/* ===== SLOGAN SECTION ===== */
.slogan-section {
    padding: var(--space-xl) var(--space-2xl);
    background: var(--off-white);
    text-align: center;
}

.nature-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    color: var(--forest-light);
    font-size: 0.875rem;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--sage);
}

.divider-icon {
    font-size: 1.5rem;
}

.slogan-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--forest-deep);
    line-height: 1.6;
    border: none;
    margin: 0;
    padding: 0;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: var(--space-2xl);
    background: var(--cream);
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--forest-deep);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.benefit-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-illustration {
    margin-bottom: var(--space-md);
}

.benefit-emoji {
    font-size: 3rem;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: var(--space-xs);
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.5;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: var(--space-2xl);
    background: var(--sand);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 110px);
    gap: var(--space-md);
}

.gallery-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.gallery-image.main {
    grid-row: span 2;
}

.gallery-label {
    position: absolute;
    bottom: var(--space-sm);
    left: var(--space-sm);
    background: var(--white);
    color: var(--forest-deep);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 600;
}

/* ===== PRACTICAL SECTION ===== */
.practical-section {
    padding: var(--space-2xl);
    background: var(--off-white);
}

.practical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.practical-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.practical-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest-medium);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.practical-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.practical-content strong {
    font-size: 0.9375rem;
    color: var(--forest-deep);
}

.practical-content span {
    font-size: 0.8125rem;
    color: var(--warm-gray);
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: var(--space-xl) var(--space-2xl);
    background: var(--cream);
}

.story-card {
    background: linear-gradient(135deg, var(--forest-light) 0%, var(--forest-medium) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
}

.story-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.story-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--meadow);
}

.story-card p {
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    opacity: 0.95;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: var(--off-white);
    align-items: start;
}

.location-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.location-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.location-emoji {
    font-size: 1.75rem;
}

.location-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest-deep);
}

.address-content {
    margin-bottom: var(--space-lg);
}

.address-main {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: var(--space-xs);
}

.address-sub {
    font-size: 1rem;
    color: var(--dark);
}

.address-region {
    font-size: 0.875rem;
    color: var(--warm-gray);
}

.location-perks {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.perk {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--meadow);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--forest-deep);
}

.qr-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-nature-frame {
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 3px solid var(--sage);
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    background: var(--cream);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-medium);
}

.qr-cta {
    margin-top: var(--space-md);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--forest-deep);
}

.qr-detail {
    font-size: 0.75rem;
    color: var(--warm-gray);
    margin-top: var(--space-xs);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--forest-medium) 0%, var(--forest-deep) 100%);
    text-align: center;
    color: var(--white);
}

.contact-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.contact-promise {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: var(--space-xl);
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
}

.contact-btn.primary {
    background: var(--white);
    color: var(--forest-deep);
    box-shadow: var(--shadow-md);
}

.contact-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

.btn-value {
    font-size: 1rem;
    font-weight: 600;
}

.contact-footer {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ===== FOOTER ===== */
.flyer-footer {
    padding: var(--space-xl);
    background: var(--bark);
    text-align: center;
    color: var(--sand);
}

.footer-leaf {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.footer-wisdom {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    color: var(--cream);
}

.footer-legal {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body {
        padding: var(--space-md);
    }

    .leaf-decoration {
        display: none;
    }

    .hook-headline {
        font-size: 2.25rem;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-image.main {
        grid-row: auto;
        height: 180px;
    }

    .gallery-image:not(.main) {
        height: 120px;
    }

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

    .location-section {
        grid-template-columns: 1fr;
    }

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

    .location-header {
        justify-content: center;
    }

    .location-perks {
        justify-content: center;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===== PRINT ===== */
@media print {
    body {
        background: white;
        padding: 0;
    }

    .flyer {
        box-shadow: none;
        border-radius: 0;
    }

    .leaf-decoration {
        display: none;
    }
}