/* ============================================
   マルエイ青果 公式サイト - メインスタイルシート
   Natural Green × Wood Tone Design
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@400;600;700&display=swap');

/* ============================================
   CSS Variables (Design Tokens)
   ============================================ */
:root {
    /* Colors */
    --green-dark: #2d5a3d;
    --green-primary: #4a7c59;
    --green-medium: #6a9e77;
    --green-light: #a8c7b0;
    --green-pale: #dff0e4;

    --wood-dark: #6b4c2a;
    --wood-medium: #9b7345;
    --wood-light: #c9a870;
    --cream: #faf8f3;
    --cream-warm: #f5f0e8;
    --warm-yellow: #e8b84b;
    --warm-orange: #e07b39;

    --text-primary: #2c2c2c;
    --text-secondary: #555555;
    --text-muted: #888888;
    --white: #ffffff;

    /* Typography */
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;

    /* Spacing */
    --section-py: 80px;
    --container: 1160px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Transitions */
    --transition: 0.3s ease;
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-primary);
    background: var(--green-pale);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
}

.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--green-primary);
    transform: translateY(-2px);
}

.btn-wood {
    background: var(--wood-medium);
    color: var(--white);
    border-color: var(--wood-medium);
}

.btn-wood:hover {
    background: var(--wood-dark);
    border-color: var(--wood-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 76, 42, 0.35);
}

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74, 124, 89, 0.12);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--green-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-dark);
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    transition: color var(--transition);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--green-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-list a:hover {
    color: var(--green-primary);
}

.nav-list a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--green-primary);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700 !important;
}

.nav-cta:hover {
    background: var(--green-dark);
    color: var(--white) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--green-pale);
    padding: 16px 24px 24px;
    gap: 4px;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color var(--transition);
}

.mobile-nav a:hover {
    color: var(--green-primary);
}

.mobile-nav a:last-child {
    border-bottom: none;
    margin-top: 8px;
    padding: 14px 24px;
    background: var(--green-primary);
    color: var(--white);
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
}

/* ============================================
   Section 1: Hero
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero.loaded .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(30, 60, 40, 0.78) 0%,
            rgba(30, 60, 40, 0.45) 60%,
            rgba(30, 60, 40, 0.20) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 660px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-badge span {
    color: var(--warm-yellow);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-title em {
    font-style: normal;
    color: var(--warm-yellow);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll::before {
    content: '';
    display: block;
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ============================================
   Section 2: About
   ============================================ */
.about {
    padding: var(--section-py) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 440px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--warm-yellow);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-image-badge .num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--wood-dark);
    line-height: 1;
}

.about-image-badge .lbl {
    font-size: 0.7rem;
    color: var(--wood-dark);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.feature-body h4 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--green-dark);
}

.feature-body p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Section 3: Products
   ============================================ */
.products {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.product-card-body {
    padding: 20px;
}

.product-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--green-dark);
}

.product-card-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.product-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
    background: var(--green-pale);
    color: var(--green-primary);
}

.product-tag.sale {
    background: #fff3e0;
    color: var(--warm-orange);
}

.product-tag.biz {
    background: #e8f0fe;
    color: #3c5fa5;
}

/* Sale Banner */
.sale-banner {
    background: linear-gradient(135deg, var(--warm-orange) 0%, #e8b84b 100%);
    border-radius: var(--radius-md);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--white);
    flex-wrap: wrap;
}

.sale-banner-text h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.sale-banner-text p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ============================================
   Section 4: Mobile Sales
   ============================================ */
.mobile-sales {
    padding: var(--section-py) 0;
    background: var(--green-dark);
    position: relative;
    overflow: hidden;
}

.mobile-sales::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.mobile-sales .section-label {
    background: rgba(255, 255, 255, 0.15);
    color: var(--green-pale);
}

.mobile-sales .section-title {
    color: var(--white);
}

.mobile-sales .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.mobile-sales-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.mobile-sales-image {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.mobile-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0 36px;
}

.mobile-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mobile-feature:hover {
    background: rgba(255, 255, 255, 0.12);
}

.mobile-feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mobile-feature h4 {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 2px;
}

.mobile-feature p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ============================================
   Section 5: Business
   ============================================ */
.business {
    padding: var(--section-py) 0;
    background: var(--cream-warm);
}

.business-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.biz-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--green-primary);
    transition: var(--transition);
}

.biz-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.biz-card-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.biz-card h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.biz-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.business-cta-box {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    color: var(--white);
}

.business-cta-box h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.business-cta-box p {
    font-size: 0.95rem;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

/* ============================================
   Section 6: Shop Info
   ============================================ */
.shop-info {
    padding: var(--section-py) 0;
    background: var(--white);
}

.shop-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
}

.info-table tr {
    border-bottom: 1px solid var(--green-pale);
}

.info-table td {
    padding: 16px 0;
    font-size: 0.9rem;
    vertical-align: top;
}

.info-table td:first-child {
    width: 120px;
    font-weight: 700;
    color: var(--green-dark);
    flex-shrink: 0;
}

.info-table td:last-child {
    color: var(--text-secondary);
}

.shop-tel {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-primary);
    font-family: var(--font-serif);
    margin-bottom: 24px;
    text-decoration: none;
}

.shop-tel:hover {
    color: var(--green-dark);
}

.tel-icon {
    font-size: 1.3rem;
}

.instagram-box {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 24px;
}

.instagram-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(131, 58, 180, 0.35);
}

.instagram-icon {
    font-size: 2rem;
}

.instagram-box h4 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.instagram-box p {
    font-size: 0.8rem;
    opacity: 0.85;
}

.map-embed {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 360px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   Section 7: Contact
   ============================================ */
.contact {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.contact-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-label .required {
    display: inline-block;
    background: var(--green-primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    background: var(--cream);
    transition: border-color var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-control:focus {
    border-color: var(--green-primary);
    background: var(--white);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-submit {
    margin-top: 8px;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ============================================
   Blog Section (index page)
   ============================================ */
.blog-preview {
    padding: var(--section-py) 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.blog-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--cream);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    height: 180px;
    object-fit: cover;
    width: 100%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-card-body {
    padding: 20px;
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-card-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.blog-card-body p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 56px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.footer-brand .logo-main-f {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
    max-width: 280px;
    margin-top: 12px;
}

.footer-nav h4,
.footer-contact-info h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-contact-info p {
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================
   Blog Page
   ============================================ */
.blog-page {
    padding-top: 120px;
    padding-bottom: var(--section-py);
    min-height: 100vh;
    background: var(--cream);
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.page-hero {
    background: var(--green-dark);
    padding: 80px 0 60px;
    text-align: center;
    margin-top: 70px;
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Blog post page */
.blog-post-page {
    padding-top: 70px;
    min-height: 100vh;
    background: var(--cream);
}

.blog-post-header {
    background: var(--green-dark);
    padding: 60px 0;
    text-align: center;
}

.blog-post-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--white);
    margin: 16px 0;
    max-width: 700px;
    mx: auto;
}

.blog-post-meta {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-post-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 24px;
}

.blog-post-body p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.9;
}

.blog-post-body h2 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin: 36px 0 16px;
    color: var(--green-dark);
    border-left: 4px solid var(--green-primary);
    padding-left: 16px;
}

.blog-post-body h3 {
    font-size: 1.1rem;
    margin: 24px 0 10px;
    color: var(--text-primary);
}

.blog-post-body ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.blog-post-body ul li {
    list-style: disc;
    margin-bottom: 6px;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   Responsive / Mobile
   ============================================ */
@media (max-width: 900px) {
    :root {
        --section-py: 60px;
    }

    .nav-list {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav.open {
        display: flex;
    }

    .about-grid,
    .mobile-sales-grid,
    .shop-info-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-image-main {
        height: 300px;
    }

    .about-image-badge {
        right: 8px;
    }

    .mobile-sales-image {
        height: 300px;
    }

    .products-grid,
    .business-cards,
    .blog-grid,
    .blog-list-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .sale-banner {
        flex-direction: column;
        text-align: center;
    }

    .business-cta-box {
        padding: 36px 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {

    .products-grid,
    .blog-grid,
    .blog-list-grid {
        grid-template-columns: 1fr;
    }

    .business-cards {
        grid-template-columns: 1fr;
    }

    .map-embed {
        height: 260px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}