/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   template-04 · 과수원·농장
   컬러: 숲그린 + 앰버골드 + 크림
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── VARIABLES ──────────────────────── */
:root {
    --green-dark:   #1a4d08;
    --green-main:   #2d7a0f;
    --green-mid:    #4a9a20;
    --green-light:  #d4edba;
    --green-pale:   #f0f7e8;
    --amber:        #c47c1a;
    --amber-light:  #f0a830;
    --amber-pale:   #fff8ec;
    --cream:        #faf6ee;
    --cream-dark:   #f0e9d8;
    --brown:        #7a5234;
    --brown-light:  #b8845a;
    --text-dark:    #1c1a14;
    --text-mid:     #4a4030;
    --text-light:   #8a7a60;
    --white:        #ffffff;
    --border:       #e0d8c8;
    --shadow-sm:    0 2px 12px rgba(45,122,15,0.08);
    --shadow-md:    0 6px 28px rgba(45,122,15,0.14);
    --shadow-lg:    0 12px 48px rgba(45,122,15,0.18);
    --radius:       12px;
    --radius-lg:    20px;
    --radius-xl:    28px;
    --transition:   all 0.35s cubic-bezier(0.4,0,0.2,1);
    --container:    1200px;
    --header-h:     72px;
}

/* ── RESET & BASE ───────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Pretendard Variable', 'Pretendard', -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-main);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

/* ── SCROLL REVEAL ──────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: none;
}

/* ── HEADER ─────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    transition: var(--transition);
    flex-shrink: 0;
}
.site-header.scrolled .logo { color: var(--green-dark); }

.logo-icon { font-size: 22px; }
.logo-text { letter-spacing: -0.02em; }

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.12); }

.site-header.scrolled .nav-link { color: var(--text-mid); }
.site-header.scrolled .nav-link:hover { color: var(--green-main); background: var(--green-pale); }

.header-cta {
    padding: 10px 20px;
    background: var(--amber);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    flex-shrink: 0;
}
.header-cta:hover { background: var(--amber-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--text-dark); }

.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 */
.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 12px 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 2px;
}
.nav-mobile.open { display: flex; }

.nav-link-mobile {
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius);
    transition: var(--transition);
}
.nav-link-mobile:hover { background: var(--green-pale); color: var(--green-main); }

.nav-cta-mobile {
    margin-top: 8px;
    background: var(--amber);
    color: var(--white) !important;
    text-align: center;
    font-weight: 600;
}
.nav-cta-mobile:hover { background: var(--amber-light) !important; }

/* ── HERO ───────────────────────────── */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -20% 0 -20%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(15,40,5,0.72) 0%,
        rgba(30,77,8,0.55) 50%,
        rgba(60,100,20,0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    max-width: 760px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(44px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    min-width: 160px;
    text-align: center;
}

.hero-btn-primary {
    background: var(--amber);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(196,124,26,0.4);
}
.hero-btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196,124,26,0.5);
}

.hero-btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
}
.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    display: block;
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
    margin: 0 auto;
    animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
    0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50%       { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── ABOUT ──────────────────────────── */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--green-main);
    color: var(--white);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 4px 16px rgba(45,122,15,0.4);
}

.about-desc {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 36px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.stat-item { text-align: center; }

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--green-main);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* ── PRODUCTS ───────────────────────── */
.products-section {
    padding: 100px 0;
    background: var(--cream);
}

.products-section .section-label,
.products-section .section-title {
    text-align: center;
    display: block;
}
.products-section .section-title { margin-bottom: 56px; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.product-img-wrap img {
    transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--amber);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.04em;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-season {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--green-main);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.product-cta {
    display: block;
    text-align: center;
    padding: 10px;
    background: var(--green-pale);
    color: var(--green-main);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
}
.product-cta:hover { background: var(--green-main); color: var(--white); }

/* ── QUALITY ────────────────────────── */
.quality-section {
    padding: 100px 0;
    background: var(--green-dark);
    position: relative;
    overflow: hidden;
}

.quality-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(45,122,15,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(74,154,32,0.2) 0%, transparent 50%);
    pointer-events: none;
}

.quality-section .section-label { color: var(--green-light); }
.quality-section .section-title {
    color: var(--white);
    text-align: center;
    display: block;
    margin-bottom: 60px;
}

.quality-steps {
    display: flex;
    gap: 0;
    justify-content: center;
}

.quality-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.step-num-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--amber);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.step-connector {
    position: absolute;
    top: 50%;
    left: calc(50% + 22px);
    right: calc(-50% + 22px);
    height: 2px;
    background: rgba(255,255,255,0.15);
    transform: translateY(-50%);
}

.step-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* ── REVIEWS ────────────────────────── */
.reviews-section {
    padding: 100px 0;
    background: var(--white);
}

.reviews-section .section-label,
.reviews-section .section-title {
    text-align: center;
    display: block;
}
.reviews-section .section-title { margin-bottom: 56px; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.review-stars {
    font-size: 18px;
    color: var(--amber);
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green-main);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.review-location {
    font-size: 12px;
    color: var(--text-light);
}

.review-product {
    font-size: 11px;
    color: var(--green-main);
    font-weight: 600;
    background: var(--green-pale);
    padding: 4px 10px;
    border-radius: 100px;
    flex-shrink: 0;
}

/* ── CONTACT ────────────────────────── */
.contact-section {
    padding: 100px 0;
    background: var(--cream);
}

.contact-section .section-label,
.contact-section .section-title {
    text-align: center;
    display: block;
}
.contact-section .section-title { margin-bottom: 56px; }

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.contact-info-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}
a.contact-info-value:hover { color: var(--green-main); }

.contact-notice {
    background: var(--green-pale);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-notice p {
    font-size: 14px;
    color: var(--green-dark);
    font-weight: 500;
}

/* ── ORDER GUIDE ────────────────────── */
.order-guide-section {
    padding: 100px 0;
    background: var(--amber-pale);
}

.order-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.order-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.order-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.order-icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 4px;
}

.order-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.order-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.order-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 24px;
    background: var(--green-main);
    color: var(--white);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.order-btn:hover {
    background: var(--green-dark);
}

.delivery-note {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    border-left: 4px solid var(--green-main);
}

.delivery-note-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.delivery-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
}

.delivery-list li {
    font-size: 14px;
    color: var(--text-mid);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

/* ── CONTACT (위치·문의, 폼 없음) ────── */
.location-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-placeholder {
    background: var(--green-pale);
    padding: 32px 28px;
    text-align: center;
}

.map-address {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 20px;
    font-weight: 500;
}

.map-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.map-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1.5px solid var(--green-main);
    border-radius: 24px;
    color: var(--green-main);
    font-size: 14px;
    font-weight: 600;
    background: var(--white);
    transition: var(--transition);
}
.map-btn:hover {
    background: var(--green-main);
    color: var(--white);
}

.hours-wrap {
    padding: 24px 28px;
}

.hours-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-cta-btns {
    padding: 20px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid var(--border);
}

.cta-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid var(--green-main);
    color: var(--green-main);
    transition: var(--transition);
}
.cta-btn:hover {
    background: var(--green-main);
    color: var(--white);
}
.cta-btn.cta-btn-primary {
    background: var(--green-main);
    color: var(--white);
}
.cta-btn.cta-btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

/* ── FOOTER DEMO NOTICE ─────────────── */
.footer-demo-notice {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    padding: 8px 24px 0;
    opacity: 0.7;
    line-height: 1.6;
}

/* ── FOOTER ─────────────────────────── */
.site-footer {
    background: var(--text-dark);
    color: var(--white);
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 64px 24px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-slogan {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-sns {
    display: flex;
    gap: 12px;
}

.footer-sns a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer-sns a:hover { background: var(--green-main); color: var(--white); }

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}
.footer-col a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.footer-col a:hover { color: var(--green-light); }

.kakao-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #FEE500;
    color: #3A1D1D !important;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.kakao-btn:hover { opacity: 0.9; }

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

/* ── TOP BUTTON ─────────────────────── */
#topBtn {
    position: fixed;
    bottom: 32px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--green-main);
    color: var(--white);
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(45,122,15,0.4);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}
#topBtn.visible { opacity: 1; pointer-events: all; }
#topBtn:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image { order: -1; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .quality-steps { flex-wrap: wrap; }
    .quality-step { flex: 0 0 calc(33.33% - 16px); padding-bottom: 32px; }
    .step-connector { display: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-desktop, .header-cta { display: none; }
    .hamburger { display: flex; }

    .hero-title { font-size: clamp(36px, 10vw, 54px); }

    .about-section,
    .products-section,
    .order-guide-section,
    .quality-section,
    .reviews-section,
    .contact-section { padding: 72px 0; }

    .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .quality-step { flex: 0 0 calc(50% - 14px); }

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

    .contact-wrap { grid-template-columns: 1fr; }
    .order-channels { grid-template-columns: 1fr 1fr; }
    .delivery-list { grid-template-columns: 1fr; }

    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-btns { flex-direction: column; align-items: center; }
    .hero-btn { width: 100%; max-width: 280px; }
    .products-grid { grid-template-columns: 1fr; }
    .quality-step { flex: 0 0 100%; }
    .order-channels { grid-template-columns: 1fr; }
}
