/* ========================================
   England Ranch - Main Stylesheet
   ======================================== */

/* --- Variables --- */
:root {
    --color-earth: #2C1810;
    --color-sage: #4A5D23;
    --color-sage-light: #5C7A2E;
    --color-cream: #F7F4ED;
    --color-gold: #C9A227;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, sans-serif;
    --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.1);
    --shadow-md: 0 8px 24px rgba(44, 24, 16, 0.12);
    --shadow-lg: 0 30px 60px rgba(44, 24, 16, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* --- Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: var(--font-body); 
    background: var(--color-cream); 
    color: var(--color-earth); 
    line-height: 1.6; 
}

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.bg-white { background: white; }
.bg-cream { background: var(--color-cream); }

/* --- Header --- */
header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    z-index: 1000; 
    background: rgba(247, 244, 237, 0.95); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid rgba(44, 24, 16, 0.1); 
}
.header-inner { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 16px 24px; 
    max-width: 1400px; 
    margin: 0 auto; 
}
.logo { 
    font-family: var(--font-display); 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--color-earth); 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}
.logo-icon { 
    width: 40px; 
    height: 40px; 
    background: var(--color-sage); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.2rem; 
}

/* --- Desktop Navigation --- */
.nav-desktop { 
    display: flex; 
    gap: 32px; 
    align-items: center; 
}
.nav-desktop a { 
    font-weight: 500; 
    font-size: 0.95rem; 
    color: var(--color-earth); 
    text-decoration: none;
    transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--color-sage); }
.nav-desktop a.active { color: var(--color-sage); }
.nav-cta { 
    background: var(--color-sage); 
    color: white !important; 
    padding: 12px 24px !important; 
    border-radius: 6px;
    transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
    background: var(--color-sage-light);
    transform: translateY(-2px);
}

/* --- Mobile Menu Button --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-earth);
    position: relative;
    transition: background 0.2s;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-earth);
    left: 0;
    transition: transform 0.3s, top 0.3s;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* Hamburger animation when open */
.mobile-menu-btn.active .hamburger { background: transparent; }
.mobile-menu-btn.active .hamburger::before { 
    top: 0; 
    transform: rotate(45deg); 
}
.mobile-menu-btn.active .hamburger::after { 
    top: 0; 
    transform: rotate(-45deg); 
}

/* --- Mobile Navigation --- */
.nav-mobile {
    display: none;
    flex-direction: column;
    background: white;
    padding: 20px 24px;
    border-top: 1px solid rgba(44, 24, 16, 0.1);
    box-shadow: var(--shadow-md);
}
.nav-mobile.active { display: flex; }
.nav-mobile a {
    padding: 16px 0;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-earth);
    text-decoration: none;
    border-bottom: 1px solid rgba(44, 24, 16, 0.1);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--color-sage); }
.nav-mobile .nav-cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
}

/* --- Buttons --- */
.btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    padding: 16px 32px; 
    border-radius: var(--radius-sm); 
    font-weight: 600; 
    font-size: 1rem; 
    text-decoration: none; 
    transition: all 0.3s; 
    cursor: pointer; 
    border: none; 
}
.btn-primary { 
    background: var(--color-sage); 
    color: white; 
    box-shadow: 0 4px 14px rgba(74, 93, 35, 0.4); 
}
.btn-primary:hover { 
    background: var(--color-sage-light); 
    transform: translateY(-3px); 
}
.btn-secondary { 
    background: transparent; 
    color: white; 
    border: 2px solid white; 
}
.btn-secondary:hover { 
    background: white; 
    color: var(--color-earth); 
}
.btn-white { background: white; color: var(--color-earth); }
.btn-gold { background: var(--color-gold); color: var(--color-earth); }

/* --- Hero Section --- */
.hero { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    position: relative; 
    background-size: cover; 
    background-position: center right; 
    padding-top: 80px; 
}
.hero::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%); 
}
.hero-content { 
    position: relative; 
    z-index: 1; 
    max-width: 650px; 
    color: white; 
}
.hero-content.hero-split {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80vh;
    padding-top: 20px;
    padding-bottom: 40px;
}
.hero-top {
    /* Headline at top */
}
.hero-bottom {
    /* Description and buttons at bottom */
}
.hero-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    background: rgba(74, 93, 35, 0.9); 
    padding: 8px 16px; 
    border-radius: 30px; 
    font-size: 0.85rem; 
    font-weight: 600; 
    margin-bottom: 24px; 
}
.hero h1 { 
    font-family: var(--font-display); 
    font-size: clamp(2.8rem, 6vw, 4.5rem); 
    font-weight: 700; 
    line-height: 1.05; 
    margin-bottom: 24px; 
    text-shadow: 0 2px 20px rgba(0,0,0,0.3); 
}
.hero h1 span { color: var(--color-gold); display: block; }
.hero-description { 
    font-size: 1.25rem; 
    margin-bottom: 36px; 
    max-width: 500px; 
    line-height: 1.7; 
    opacity: 0.95; 
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Page Hero (for inner pages) --- */
.page-hero {
    padding: 140px 0 60px;
    background: var(--color-earth);
    color: white;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}
.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { 
    font-size: 0.85rem; 
    font-weight: 600; 
    color: var(--color-sage); 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-bottom: 12px; 
}
.section-title { 
    font-family: var(--font-display); 
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: 700; 
    margin-bottom: 16px; 
}
.section-subtitle { 
    font-size: 1.1rem; 
    color: #6B5B4F; 
    max-width: 600px; 
    margin: 0 auto; 
}

/* --- Social Proof Strip --- */
.social-proof { background: var(--color-earth); padding: 20px 0; }
.social-proof-inner { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 48px; 
    flex-wrap: wrap; 
}
.proof-item { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    color: var(--color-cream); 
}
.proof-text strong { 
    display: block; 
    font-size: 1.1rem; 
    color: var(--color-gold); 
}

/* --- Product Cards --- */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.product-card { 
    background: var(--color-cream); 
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    transition: all 0.4s; 
    cursor: pointer; 
    text-decoration: none; 
    color: inherit; 
}
.product-card:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--shadow-lg); 
}
.product-image { height: 280px; overflow: hidden; position: relative; }
.product-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s; 
}
.product-card:hover .product-image img { transform: scale(1.08); }
.product-badge { 
    position: absolute; 
    top: 16px; 
    left: 16px; 
    background: var(--color-gold); 
    color: var(--color-earth); 
    padding: 6px 14px; 
    border-radius: 20px; 
    font-size: 0.8rem; 
    font-weight: 600; 
}
.product-content { padding: 28px; }
.product-title { 
    font-family: var(--font-display); 
    font-size: 1.5rem; 
    font-weight: 600; 
    margin-bottom: 12px; 
}
.product-description { color: #6B5B4F; margin-bottom: 20px; line-height: 1.6; }
.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; }
.price-main { font-size: 1.8rem; font-weight: 700; color: var(--color-sage); }
.price-unit { color: #8B7B6B; font-size: 0.95rem; }
.product-link { color: var(--color-sage); font-weight: 600; }

/* --- Story Section --- */
.story-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-image-container { position: relative; }
.story-image-main { 
    width: 100%; 
    height: 550px; 
    object-fit: cover; 
    border-radius: var(--radius-lg); 
    box-shadow: var(--shadow-lg); 
}
.story-text h2 { 
    font-family: var(--font-display); 
    font-size: clamp(2rem, 4vw, 2.8rem); 
    margin-bottom: 24px; 
}
.story-text p { font-size: 1.1rem; color: #5C4A3D; margin-bottom: 20px; line-height: 1.8; }
.story-signature { 
    margin-top: 32px; 
    padding-top: 32px; 
    border-top: 1px solid rgba(44, 24, 16, 0.1); 
    display: flex; 
    align-items: center; 
    gap: 16px; 
}
.signature-icon { 
    width: 60px; 
    height: 60px; 
    background: var(--color-sage); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
}
.signature-text { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.signature-text span { 
    display: block; 
    font-family: var(--font-body); 
    font-size: 0.9rem; 
    font-weight: 400; 
    color: #8B7B6B; 
}

/* --- Grazing/Stats Section --- */
.grazing-section { 
    position: relative; 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
}
.grazing-section::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: rgba(0,0,0,0.6); 
}
.grazing-section .container { position: relative; z-index: 1; }
.grazing-section .section-label { color: var(--color-gold); }
.grazing-section .section-title { color: white; }
.grazing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 50px; }
.grazing-stat { text-align: center; color: white; }
.grazing-stat .number { 
    font-family: var(--font-display); 
    font-size: 4rem; 
    font-weight: 700; 
    color: var(--color-gold); 
    line-height: 1; 
}
.grazing-stat .label { font-size: 1.1rem; margin-top: 8px; opacity: 0.9; }

/* --- Values Section --- */
.values { background: var(--color-sage); color: white; }
.values .section-label { color: var(--color-gold); }
.values .section-title, .values .section-subtitle { color: white; }
.values .section-subtitle { opacity: 0.85; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.value-card { 
    text-align: center; 
    padding: 32px 24px; 
    background: rgba(255,255,255,0.1); 
    border-radius: 16px; 
}
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-title { 
    font-family: var(--font-display); 
    font-size: 1.25rem; 
    font-weight: 600; 
    margin-bottom: 12px; 
}
.value-text { font-size: 0.95rem; opacity: 0.9; }

/* --- Comparison Table --- */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.comparison-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.comparison-image img { width: 100%; height: 400px; object-fit: cover; }
.comparison-table { background: var(--color-cream); padding: 40px; border-radius: var(--radius-lg); }
.comparison-table h3 { font-family: var(--font-display); margin-bottom: 24px; color: var(--color-sage); }
.comparison-row { 
    display: flex; 
    justify-content: space-between; 
    padding: 16px 0; 
    border-bottom: 1px solid rgba(44,24,16,0.1); 
}
.comparison-row:last-child { border-bottom: none; }
.bad { color: #c53030; font-weight: 600; }
.good { color: var(--color-sage); font-weight: 600; }

/* --- Pricing Box --- */
.beef-hero { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: stretch; }
.pricing-box { 
    background: var(--color-sage); 
    color: white; 
    padding: 40px; 
    border-radius: var(--radius-lg); 
    text-align: center; 
    position: sticky; 
    top: 100px; 
}
.pricing-box .price { 
    font-size: 4rem; 
    font-weight: 700; 
    font-family: var(--font-display); 
    line-height: 1; 
    margin-bottom: 8px; 
}
.pricing-box .price-unit { font-size: 1.1rem; opacity: 0.9; margin-bottom: 24px; }
.pricing-box .btn { width: 100%; margin-bottom: 16px; }
.pricing-box .price-note { font-size: 0.85rem; opacity: 0.8; }

/* --- Process Steps --- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.process-step { text-align: center; padding: 32px 20px; background: white; border-radius: 16px; }
.step-number { 
    width: 48px; 
    height: 48px; 
    background: var(--color-sage); 
    color: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 700; 
    font-size: 1.2rem; 
    margin: 0 auto 16px; 
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: #6B5B4F; margin: 0; }

/* --- FAQ --- */
.faq-item { background: white; border-radius: var(--radius-md); margin-bottom: 16px; overflow: hidden; }
.faq-question { 
    width: 100%; 
    padding: 24px 32px; 
    background: white; 
    border: none; 
    text-align: left; 
    font-size: 1.1rem; 
    font-weight: 600; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    font-family: var(--font-body); 
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--color-sage); }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 32px 24px; color: #5C4A3D; line-height: 1.7; }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card { background: var(--color-cream); padding: 36px; border-radius: var(--radius-lg); }
.testimonial-stars { color: var(--color-gold); font-size: 1.2rem; margin-bottom: 16px; }
.testimonial-text { font-size: 1.05rem; line-height: 1.7; color: #5C4A3D; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    background: var(--color-sage); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    font-weight: 600; 
}
.testimonial-name { font-weight: 600; }
.testimonial-location { font-size: 0.85rem; color: #8B7B6B; }

/* --- CTA Section --- */
.cta { 
    background: linear-gradient(135deg, var(--color-earth) 0%, #1A0E08 100%); 
    color: white; 
    text-align: center; 
}
.cta h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.cta p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 40px; }
.email-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; }
.email-form input { flex: 1; padding: 18px 24px; border: none; border-radius: var(--radius-sm); font-size: 1rem; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 24px; }
.contact-item { 
    display: flex; 
    gap: 16px; 
    padding: 20px 0; 
    border-bottom: 1px solid rgba(44,24,16,0.1); 
}
.contact-item:last-child { border-bottom: none; }
.contact-icon { 
    width: 50px; 
    height: 50px; 
    background: var(--color-cream); 
    border-radius: var(--radius-md); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.3rem; 
}
.contact-item a { color: var(--color-sage); font-weight: 500; text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

/* --- Forms --- */
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-weight: 600; margin-bottom: 8px; }
.form-input, .form-textarea { 
    width: 100%; 
    padding: 16px 20px; 
    border: 2px solid rgba(44,24,16,0.15); 
    border-radius: var(--radius-sm); 
    font-size: 1rem; 
    font-family: var(--font-body);
    transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-sage);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* --- Footer --- */
footer { background: var(--color-earth); color: white; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 16px; }
.footer-brand p { opacity: 0.8; margin-bottom: 24px; }
.footer-column h4 { font-family: var(--font-display); margin-bottom: 20px; color: var(--color-gold); }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 12px; }
.footer-column a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-column a:hover { color: white; }
.footer-column p { opacity: 0.8; line-height: 1.6; }
.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding-top: 30px; 
    display: flex; 
    justify-content: space-between; 
    opacity: 0.7; 
    font-size: 0.9rem; 
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 1024px) {
    .nav-desktop { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero-content { max-width: 100%; }
    .story-content, .beef-hero, .contact-grid, .comparison-grid { grid-template-columns: 1fr; }
    .products-grid, .values-grid, .process-steps, .grazing-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid, .footer-grid { grid-template-columns: 1fr; }
    .pricing-box { position: static; }
}

/* --- Cuts & Extras Side by Side --- */
.cuts-comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.cuts-combined-box {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(44, 24, 16, 0.08);
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--color-cream);
    border-bottom: 1px solid rgba(44, 24, 16, 0.1);
}

.box-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-earth);
    margin: 0;
}

.price-badge {
    background: var(--color-sage);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

.cuts-list {
    padding: 12px 20px;
}

.cut-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    font-size: 0.9rem;
}

.cut-row:last-child {
    border-bottom: none;
}

.cut-row span:last-child {
    color: var(--color-sage);
    font-weight: 600;
}

.cuts-note {
    padding: 12px 20px;
    font-size: 0.8rem;
    color: rgba(44, 24, 16, 0.6);
    background: var(--color-cream);
    margin: 0;
}

/* Optional Extras within combined box */
.optional-section {
    background: var(--color-earth);
}

.optional-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    color: white;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.optional-header span:last-child {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: normal;
}

.optional-list {
    padding: 8px 20px 12px;
}

.optional-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: white;
}

.optional-row:last-child {
    border-bottom: none;
}

.optional-row span:last-child {
    color: var(--color-gold);
    font-weight: 600;
}

/* Comparison Box */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(44, 24, 16, 0.08);
}

.comparison-box h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-earth);
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.1);
    font-size: 0.9rem;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row .bad {
    color: #c44;
}

.comparison-row .good {
    color: var(--color-sage);
    font-weight: 600;
}

/* Why Dexter Box */
.why-dexter-box {
    background: var(--color-earth);
    border-radius: 12px;
    padding: 20px;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.why-dexter-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.why-dexter-box h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: white;
}

.why-dexter-box p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px;
    opacity: 0.9;
}

.why-dexter-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cuts-comparison-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero { min-height: 90vh; }
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    
    .products-grid, .values-grid, .process-steps, .grazing-grid { grid-template-columns: 1fr; }
    .email-form { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .social-proof-inner { flex-direction: column; gap: 20px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    .grazing-stat .number { font-size: 3rem; }
    
    .section { padding: 60px 0; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .header-inner { padding: 12px 16px; }
    .logo { font-size: 1.2rem; }
    .logo-icon { width: 32px; height: 32px; font-size: 1rem; }
    
    .container { padding: 0 16px; }
    .hero { padding-top: 60px; }
    .hero h1 { font-size: 2rem; }
    .hero-description { font-size: 1rem; }
    
    .btn { padding: 14px 24px; font-size: 0.95rem; }
    
    .box-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* --- Page Jump Links --- */
.page-jump-links {
    margin-top: 20px;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.page-jump-links a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.page-jump-links a:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
}

/* --- Compact Values Section --- */
.values-compact {
    background: var(--color-cream);
    padding: 60px 0;
}

.values-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.values-text .section-label {
    margin-bottom: 8px;
}

.values-text .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.values-text .section-subtitle {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
}

.values-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.value-card-mini {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(44, 24, 16, 0.06);
}

.value-card-mini .value-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-card-mini h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--color-earth);
}

.value-card-mini p {
    font-size: 0.85rem;
    color: #5C4A3D;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .values-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .values-text .section-title,
    .values-text .section-subtitle {
        text-align: center;
    }
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--color-sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-earth);
    transform: translateY(-50%) translateX(-3px);
}

/* Social Box */
.social-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-link:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-facebook {
    background: #1877f2;
}

.social-link svg {
    flex-shrink: 0;
}

.social-link span {
    font-size: 0.9rem;
}



/* ========================================
   Blog Styles
   ======================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.blog-card-content {
    padding: 32px;
}

.blog-card h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.blog-card h2 a {
    color: var(--color-earth);
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: var(--color-sage);
}

.blog-card p {
    color: #5C4A3D;
    margin-bottom: 16px;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--color-sage);
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-read-more {
    color: var(--color-sage);
    font-weight: 600;
    text-decoration: none;
}

.blog-read-more:hover {
    color: var(--color-gold);
}

/* Blog Post Content */
.blog-content {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-content .lead {
    font-size: 1.3rem;
    color: #5C4A3D;
    margin-bottom: 32px;
    line-height: 1.7;
}

.blog-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin: 48px 0 16px;
    color: var(--color-earth);
}

.blog-content p {
    margin-bottom: 20px;
    color: #3d3d3d;
}

.blog-content ul, .blog-content ol {
    margin: 0 0 24px 24px;
    color: #3d3d3d;
}

.blog-content li {
    margin-bottom: 8px;
}

.blog-content strong {
    color: var(--color-earth);
}
