/*
Theme Name: L'oulibo
Theme URI: https://loulibo.co.kr
Author: L'oulibo
Description: L'oulibo 르올리보 - 남프랑스 장인 올리브 농장 공식 홍보 사이트
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: leolivo
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
    --green-dark:   #1A3320;
    --green-mid:    #2C5016;
    --green-light:  #4A7A2A;
    --green-pale:   #E8F0E0;
    --gold:         #C4963A;
    --gold-light:   #E8C97A;
    --gold-pale:    #FBF5E6;
    --cream:        #F7F3EC;
    --cream-dark:   #EDE5D4;
    --white:        #FEFDFB;
    --text:         #1C1C1A;
    --text-mid:     #4A4A46;
    --text-light:   #7A7A74;
    --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg:    0 24px 64px rgba(0,0,0,0.16);
    --radius:       12px;
    --radius-lg:    24px;
    --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: 'Noto Sans KR', sans-serif;
    background-color: var(--white);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.serif { font-family: 'Playfair Display', serif; }

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.25; }

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 1.25rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 620px;
    line-height: 1.8;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 70px 0; }

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-nav.scrolled {
    background: rgba(254, 253, 251, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.85rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0.25rem;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    object-position: left;
    filter: brightness(0) invert(1);
    transition: filter var(--transition);
}

.site-nav.scrolled .nav-logo-img {
    filter: brightness(1) invert(0);
}

.nav-logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition);
    letter-spacing: 0.02em;
}

.site-nav.scrolled .nav-logo-main { color: var(--green-dark); }

.nav-logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
    margin-top: 2px;
}

.site-nav.scrolled .nav-logo-sub { color: var(--text-light); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    transition: background var(--transition), transform var(--transition);
    letter-spacing: 0.03em;
}

.nav-cta:hover {
    background: var(--gold-light);
    color: var(--green-dark);
    transform: translateY(-1px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--green-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 51, 32, 0.85) 0%,
        rgba(26, 51, 32, 0.5) 60%,
        rgba(196, 150, 58, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(196, 150, 58, 0.6);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.75rem;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.hero-title {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: clamp(3rem, 8vw, 6rem);
}

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

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    font-weight: 400;
    font-style: italic;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    max-width: 540px;
    margin-bottom: 3rem;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.25rem;
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 150, 58, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.25rem;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all var(--transition);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
    background: var(--green-dark);
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    background: var(--white);
    overflow: hidden;
}

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

.about-image-wrap {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* 보조 이미지 (about 섹션) */
.about-image-secondary {
    position: absolute;
    bottom: -2.5rem;
    left: -2rem;
    width: 140px;
    height: 100px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--gold);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-image-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-image-badge span {
    font-size: 0.75rem;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

.about-content { padding: 2rem 0; }

.epv-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold-pale);
    border: 1px solid var(--gold-light);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 2.5rem;
}

.epv-badge-icon {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.epv-badge-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.epv-badge-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green-dark);
}

.epv-badge-text span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-highlight {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--green-mid);
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    margin: 2rem 0;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

/* =============================================
   INSIGHT CALLOUT SECTION
   ============================================= */
.insight-section {
    background: var(--green-dark);
    position: relative;
    overflow: hidden;
}

.insight-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 15% 50%, rgba(196,150,58,0.09) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 85% 50%, rgba(74,122,42,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.insight-inner {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.insight-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.insight-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.insight-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.insight-body {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.78);
    line-height: 2.1;
    margin-bottom: 0;
}

.insight-divider {
    margin: 2.5rem auto;
    font-size: 2rem;
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.insight-divider::before,
.insight-divider::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: rgba(196,150,58,0.4);
}

.insight-sub {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.95;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {
    .insight-inner     { padding: 70px 0; }
    .insight-body      { font-size: 0.97rem; }
    .insight-divider   { margin: 2rem auto; }
    .insight-divider::before,
    .insight-divider::after { width: 36px; }
}

/* =============================================
   WHY SECTION (DIFFERENTIATORS)
   ============================================= */
.why {
    background: var(--cream);
}

.why-header { text-align: center; margin-bottom: 4rem; }
.why-header .section-desc { margin: 0 auto; }

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

.why-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-mid), var(--gold));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
    width: 56px;
    height: 56px;
    background: var(--green-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 0.85rem;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* =============================================
   PRODUCTS - OLIVE
   ============================================= */
.products-olive {
    background: var(--white);
}

.products-header {
    margin-bottom: 3.5rem;
}

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

.product-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.product-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: var(--cream);
}

.product-card-body {
    padding: 2rem;
}

.product-variety {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-mid);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.85rem;
}

.product-card h3 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.product-name-fr {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.product-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--cream);
    color: var(--text-mid);
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

/* =============================================
   PRODUCTS - OIL
   ============================================= */
.products-oil {
    background: var(--green-dark);
    position: relative;
    overflow: hidden;
}

.products-oil::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196,150,58,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.products-oil .section-label { color: var(--gold-light); }
.products-oil .section-title { color: var(--white); }
.products-oil .section-desc { color: rgba(255,255,255,0.65); }

.oil-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem;
}

.oil-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: background var(--transition), transform var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.oil-card-img-wrap {
    border-radius: 0 !important;
    margin-bottom: 1rem !important;
}

.oil-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-4px);
}

.oil-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* 오일 카드 제품 이미지 */
.oil-card-img-wrap {
    width: 100%;
    height: 220px;
    background: #F7F5F0;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.oil-card-img-wrap img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform var(--transition);
}

.oil-card:hover .oil-card-img-wrap img {
    transform: scale(1.04);
}

.oil-card-img-wrap--placeholder {
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(255,255,255,0.15);
}

.oil-card-img-wrap--placeholder span {
    font-size: 2.5rem;
}

.oil-card-img-wrap--placeholder p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.08em;
}

/* 올리브 절임 카드 */
.products-olive-jar {
    background: var(--cream);
    padding-top: 0;
}

.product-card--jar .product-card-image {
    height: 280px;
    object-fit: contain;
    background: var(--white);
    padding: 1.5rem;
}

.oil-badge {
    display: inline-block;
    background: rgba(196,150,58,0.2);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(196,150,58,0.3);
    margin-bottom: 1rem;
}

.oil-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.oil-card .oil-variety-fr {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    font-style: italic;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.oil-card p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.oil-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.oil-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
}

.oil-feature::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* =============================================
   ARTISAN / PHILOSOPHY SECTION
   ============================================= */
.artisan {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.artisan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.artisan-content { order: 1; }
.artisan-visual { order: 2; }

.artisan-visual { position: relative; }

.artisan-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.artisan-visual-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    padding: 2.5rem 1.5rem 1.5rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.artisan-visual-caption p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.artisan-steps {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.artisan-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.artisan-step-num {
    width: 40px;
    height: 40px;
    background: var(--green-dark);
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.artisan-step-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.25rem;
}

.artisan-step-text p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* =============================================
   REVIEWS SECTION
   ============================================= */
.reviews-section {
    background: #F0EDE6;
}

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

.reviews-aggregate {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    background: #ffffff;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    border: 1px solid #DDD8CF;
}

.reviews-stars {
    color: #F5A623;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.reviews-score {
    font-weight: 700;
    font-size: 1rem;
    color: #1A3320;
}

.reviews-source {
    font-size: 0.75rem;
    color: #7A7A74;
    padding-left: 0.4rem;
    border-left: 1px solid #DDD8CF;
}

/* 리뷰 그리드 */
.reviews-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    list-style: none;
    padding: 0;
}

/* 일반 카드 */
.review-card {
    background: #ffffff !important;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid #DDD8CF;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex !important;
    flex-direction: column;
    gap: 0.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    list-style: none;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

/* 피처드 카드 — 첫 번째, 전체 너비 */
.review-card--featured {
    grid-column: 1 / -1 !important;
    background: #1A3320 !important;
    border-color: #1A3320 !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.25rem 2.5rem;
}

.review-card--featured .review-stars {
    color: #E8C97A;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.review-card--featured .review-text {
    font-size: 1.2rem;
    color: #ffffff !important;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.review-card--featured .review-meta {
    flex-shrink: 0;
    align-items: flex-end;
    border-top-color: rgba(255,255,255,0.15);
}

.review-card--featured .review-author {
    color: rgba(255,255,255,0.75);
}

.review-stars {
    color: #F5A623;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    display: block;
}

.review-text {
    font-size: 0.92rem;
    color: #4A4A46;
    line-height: 1.8;
    margin: 0;
    flex: 1;
    display: block;
}

.review-meta {
    display: flex !important;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #DDD8CF;
}

.review-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1A3320;
    display: inline;
}

.review-tag {
    font-size: 0.68rem;
    font-weight: 700;
    color: #2C5016;
    background: rgba(74,122,67,0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
    margin-left: auto;
    display: inline-block;
}

/* 더 보기 버튼 */
.reviews-cta { text-align: center; }

.reviews-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border: 1.5px solid #2C5016;
    border-radius: 50px;
    color: #1A3320;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.reviews-more-btn:hover {
    background: #1A3320;
    color: #ffffff;
    border-color: #1A3320;
}

/* 리뷰 반응형 */
@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .review-card--featured {
        flex-direction: column !important;
        gap: 1rem;
        padding: 1.75rem;
    }
    .review-card--featured .review-text { font-size: 1.05rem; }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .reviews-aggregate { flex-wrap: wrap; justify-content: center; }
    .reviews-source { border-left: none; padding-left: 0; }

    .review-card {
        padding: 1.25rem;
    }

    .review-card--featured {
        flex-direction: column !important;
        gap: 0.85rem;
        padding: 1.5rem;
    }

    .review-card--featured .review-text {
        font-size: 1rem;
    }

    .review-stars { font-size: 1rem; }

    .review-card--featured .review-stars {
        font-size: 1.1rem;
    }
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(196,150,58,0.12) 0%, transparent 65%);
    border-radius: 50%;
}

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

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 2.75rem;
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all var(--transition);
    letter-spacing: 0.03em;
}

.cta-btn:hover {
    background: var(--gold-light);
    color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(196,150,58,0.4);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--text);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0;
}

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

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 700;
}

.footer-logo span {
    display: block;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

.footer-info {
    font-size: 0.8rem;
    line-height: 1.9;
    text-align: right;
}

.footer-copy {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.3);
}

/* =============================================
   AWARDS SECTION
   ============================================= */
.awards-section { background: #F0EDE6; }
.awards-header  { text-align: center; margin-bottom: 3.5rem; }
.awards-header .section-desc { margin: 0 auto; }

.awards-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.award-card {
    background: #ffffff !important;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.09);
    border: 1px solid #E0D9CF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.award-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(0,0,0,0.14);
}

/* ── 카드 상단 이미지 영역 (모든 카드 동일 높이) ── */
.award-card-photo-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
    background: #F5F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CGA 수상 사진 — 비율 유지하며 안에 꼭 맞게 */
.award-card-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* ── 로고 전용 wrap: 밝은 배경에 원본 색상 로고 ── */
.award-card-photo-wrap--logo {
    background: #F8F4EE;
    padding: 2rem;
}

.award-card-photo-wrap--eco {
    background: #EEF5EE;
}

/* 로고 이미지: 원본 색상 그대로, 필터 없음 */
.award-card-photo--logo {
    width: auto;
    max-width: 60%;
    height: auto;
    max-height: 110px;
    object-fit: contain;
    display: block;
    margin: auto;
}

/* ── 카드 텍스트 영역 ── */
.award-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 4px solid #EDE5D4;
}

.award-card--gold     .award-card-body { border-top-color: #C4963A; }
.award-card--epv      .award-card-body { border-top-color: #2C5016; }
.award-card--bio      .award-card-body { border-top-color: #5A9E3A; }
.award-card--michelin .award-card-body { border-top-color: #C0392B; }

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

.award-card h3 {
    font-size: 1.1rem;
    color: #1A3320;
    margin-bottom: 0.3rem;
}

.award-card-sub {
    font-size: 0.78rem;
    font-weight: 700;
    color: #C4963A;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.award-card p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* 카드 내부 아로마 이미지 */
.oil-aroma-wrap {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0 0 1.5rem;
    background: rgba(255,255,255,0.04);
}

.oil-aroma-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* 아로마 아래 텍스트 영역 */
.oil-card-text {
    padding: 1.75rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 오일 가격 */
.oil-price {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

.oil-price strong {
    color: var(--gold-light);
    font-size: 0.95rem;
}

/* 제품 가격 */
.product-price {
    margin-top: 1rem;
    font-size: 0.88rem;
    color: var(--text-light);
    border-top: 1px solid var(--cream-dark);
    padding-top: 0.85rem;
}

.product-price strong {
    color: var(--green-mid);
    font-size: 1rem;
}

/* =============================================
   USAGE SECTION
   ============================================= */
.usage-section { background: var(--white); }

.usage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 0;
}

.usage-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.usage-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 1rem;
}

.usage-card h3 {
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 0.6rem;
}

.usage-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* CTA 링크 */
.cta-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cta-link-sub {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.cta-link-sub:hover { color: var(--gold-light); }

.cta-link-divider {
    color: rgba(255,255,255,0.2);
}

/* Awards/Usage 반응형 */
@media (max-width: 768px) {
    .awards-grid { grid-template-columns: 1fr; }
    .usage-grid  { grid-template-columns: 1fr 1fr; }

}

@media (max-width: 480px) {
    .usage-grid  { grid-template-columns: 1fr; }
}

/* =============================================
   STORY / ESSAY SECTION
   ============================================= */
.story-section {
    background: var(--white);
}

/* 풀스크린 인트로 이미지 */
.story-hero-img {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
}

.story-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.story-hero-caption {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    background: rgba(26, 51, 32, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.75);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

/* 에세이 본문 영역 */
.story-body {
    padding: 80px 0 100px;
}

.story-header {
    max-width: 720px;
    margin: 0 auto 5rem;
    text-align: center;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.story-lead {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-style: italic;
}

/* 에세이 블록 공통 */
.story-block {
    margin-bottom: 5rem;
}

.story-block--text-only {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.story-block--img-left,
.story-block--img-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-block--img-right .story-essay { order: 1; }
.story-block--img-right .story-img-wrap { order: 2; }

.story-block--closing {
    margin-bottom: 0;
}

/* 에세이 텍스트 */
.story-essay {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.story-essay--center {
    text-align: center;
    align-items: center;
}

.story-subheading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 2;
    margin-bottom: 1.4rem;
}

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

/* 드롭캡 첫 문단 */
.story-p--dropcap::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--green-dark);
    float: left;
    line-height: 0.75;
    margin-right: 0.1em;
    margin-top: 0.12em;
}

/* 클로징 문단 */
.story-p--closing {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--green-mid);
    margin-top: 0.5rem;
}

/* 인용문 */
.story-quote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--gold);
    background: var(--gold-pale);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--green-dark);
    line-height: 1.8;
}

.story-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-style: normal;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* 이미지 래퍼 */
.story-img-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.story-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.story-img-wrap figcaption {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

/* 풀 와이드 이미지 */
.story-fullwidth-img {
    position: relative;
    margin: 0 calc(-50vw + 50%);
    height: 55vh;
    min-height: 320px;
    overflow: hidden;
    margin-bottom: 5rem;
}

.story-fullwidth-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.story-fullwidth-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,51,32,0.7) 0%, rgba(26,51,32,0.2) 60%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 0 calc(50vw - 590px + 2rem);
}

.story-fullwidth-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    max-width: 480px;
}

.story-fullwidth-text span {
    display: block;
    font-size: 0.9rem;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-top: 0.75rem;
    font-style: normal;
    letter-spacing: 0.03em;
}

/* 풀쿼트 강조 */
.story-pullquote {
    text-align: center;
    padding: 4rem 2rem;
    margin: 0 0 5rem;
    background: var(--green-dark);
    border-radius: var(--radius-lg);
}

.story-pullquote p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
}

.story-pullquote p::before { content: '\201C'; color: var(--gold); margin-right: 0.1em; }
.story-pullquote p::after  { content: '\201D'; color: var(--gold); margin-left: 0.1em; }

/* 포토 그리드 */
.story-photo-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 1.25rem;
    margin-bottom: 5rem;
}

.story-photo-grid__main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.story-photo-grid__side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.story-photo-grid__side img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.story-photo-grid figcaption {
    font-size: 0.78rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
}

/* 에세이 섹션 반응형 */
@media (max-width: 1024px) {
    .story-fullwidth-overlay {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .story-hero-img       { height: 50vh; min-height: 280px; }
    .story-body           { padding: 50px 0 70px; }
    .story-header         { margin-bottom: 3rem; }
    .story-lead           { font-size: 0.98rem; }

    .story-block          { margin-bottom: 3rem; }
    .story-block--img-left,
    .story-block--img-right {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .story-block--img-right .story-essay { order: 2; }
    .story-block--img-right .story-img-wrap { order: 1; }

    .story-img-wrap img   { height: 260px; }

    .story-fullwidth-img  { height: 40vh; min-height: 220px; margin: 0 -1.25rem 3rem; }
    .story-fullwidth-overlay { padding: 0 1.5rem; }
    .story-fullwidth-text { font-size: clamp(1.3rem, 5vw, 1.8rem); }

    .story-pullquote      { padding: 2.5rem 1.5rem; margin-bottom: 3rem; border-radius: var(--radius); }

    .story-photo-grid     { grid-template-columns: 1fr; margin-bottom: 3rem; }
    .story-photo-grid__main img { height: 260px; }
    .story-photo-grid__side { flex-direction: row; }
    .story-photo-grid__side img { height: 180px; }

    .story-p              { font-size: 0.97rem; }
    .story-p--dropcap::first-letter { font-size: 3rem; }
    .story-quote          { padding: 1.25rem 1.25rem; }
}

@media (max-width: 480px) {
    .story-photo-grid__side { flex-direction: column; }
    .story-photo-grid__side img { height: 200px; }
    .story-hero-caption   { display: none; }
}

/* =============================================
   RESPONSIVE — 태블릿 (1024px 이하)
   ============================================= */
@media (max-width: 1024px) {
    .about-grid,
    .artisan-grid { gap: 3rem; }

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

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

/* =============================================
   RESPONSIVE — 모바일 (768px 이하)
   ============================================= */
@media (max-width: 768px) {
    /* 공통 */
    .section-padding     { padding: 60px 0; }
    .section-padding-sm  { padding: 40px 0; }
    .container           { padding: 0 1.25rem; }

    /* 네비게이션 */
    .site-nav            { padding: 0.85rem 0; }
    .nav-logo-main       { font-size: 1.2rem; }
    .nav-logo-sub        { display: none; }
    .nav-cta             { padding: 0.55rem 1.1rem; font-size: 0.8rem; }

    /* 히어로 */
    .hero                { min-height: 100svh; }
    .hero-content        { padding-top: 5rem; }
    .hero-badge          { font-size: 0.68rem; }
    .hero-desc           { font-size: 0.95rem; margin-bottom: 2rem; }
    .hero-actions        { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .btn-primary,
    .btn-outline         { width: 100%; justify-content: center; padding: 0.9rem 1.5rem; }

    /* 통계 바 */
    .stats-bar           { padding: 1.75rem 0; }
    .stats-grid          { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .stat-item           { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1rem 0.5rem; }
    .stat-item:nth-child(2),
    .stat-item:nth-child(4) { border-right: none; }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-bottom: none; }
    .stat-number         { font-size: 1.75rem; }

    /* 농장 소개 */
    .about-grid          { grid-template-columns: 1fr; gap: 2rem; }
    .about-image-main    { height: 260px; border-radius: var(--radius); }
    .about-image-badge   { bottom: -1rem; right: 1rem; padding: 0.85rem 1rem; }
    .about-image-badge strong { font-size: 1.8rem; }
    .about-image-secondary { display: none; }
    .about-content       { padding: 1.5rem 0 0; }
    .epv-badge           { flex-wrap: nowrap; gap: 0.5rem; align-items: center; }
    .epv-badge-logo      { width: 44px; height: 44px; flex-shrink: 0; display: block; }
    .about-text          { font-size: 0.95rem; }
    .about-highlight     { font-size: 1.05rem; }

    /* 차별화 */
    .why-header          { margin-bottom: 2.5rem; }
    .why-grid            { grid-template-columns: 1fr; gap: 1.25rem; }
    .why-card            { padding: 1.75rem; }

    /* 올리브 제품 */
    .products-grid       { grid-template-columns: 1fr; gap: 1.5rem; }
    .product-card-image  { height: 200px; }
    .product-card-body   { padding: 1.5rem; }

    /* 오일 제품 */
    .oil-grid            { grid-template-columns: 1fr; gap: 1.25rem; }
    .oil-card-text       { padding: 1.25rem 1.5rem 1.5rem; }
    .oil-card-icon       { width: 52px; height: 52px; font-size: 1.4rem; }

    /* 장인 철학 */
    .artisan-grid        { grid-template-columns: 1fr; gap: 2rem; }
    .artisan-content     { order: 2; }
    .artisan-visual      { order: 1; }
    .artisan-image       { height: 240px; border-radius: var(--radius); }
    .artisan-steps       { gap: 1.25rem; margin-top: 1.75rem; }

    /* CTA */
    .cta-section         { padding: 60px 0; }
    .cta-btn             { width: 100%; justify-content: center; max-width: 360px; }

    /* 푸터 */
    .footer-inner        { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .footer-info         { text-align: left; }
}

/* =============================================
   RESPONSIVE — 소형 모바일 (480px 이하)
   ============================================= */
@media (max-width: 480px) {
    /* 히어로 */
    .hero-title          { font-size: clamp(2.4rem, 11vw, 3rem); }
    .hero-subtitle       { font-size: 0.95rem; }

    /* 통계 바 */
    .stat-number         { font-size: 1.5rem; }
    .stat-label          { font-size: 0.72rem; }

    /* 섹션 타이틀 */
    .section-title       { font-size: clamp(1.5rem, 6vw, 2rem); }

    /* EPV 배지 */
    .epv-badge-text strong { font-size: 0.78rem; }

    /* 제품 태그 */
    .product-tags        { gap: 0.4rem; }
    .tag                 { font-size: 0.7rem; padding: 0.25rem 0.6rem; }

    /* 오일 카드 */
    .oil-features        { gap: 0.4rem; }
    .oil-feature         { font-size: 0.75rem; }

    /* 장인 스텝 */
    .artisan-step-num    { width: 34px; height: 34px; font-size: 0.85rem; flex-shrink: 0; }
    .artisan-step-text strong { font-size: 0.9rem; }
    .artisan-step-text p { font-size: 0.85rem; }

    /* Why 카드 */
    .why-icon            { width: 48px; height: 48px; font-size: 1.25rem; }

    /* CTA */
    .cta-title           { font-size: clamp(1.6rem, 7vw, 2.2rem); }
    .cta-subtitle        { font-size: 0.92rem; }

    /* 푸터 */
    .footer-logo         { font-size: 1.2rem; }
    .footer-info         { font-size: 0.75rem; }
    .footer-copy         { font-size: 0.7rem; }
}

/* =============================================
   TOUCH / HOVER 비활성화 (모바일 터치)
   ============================================= */
@media (hover: none) {
    .why-card:hover,
    .product-card:hover,
    .oil-card:hover      { transform: none; box-shadow: var(--shadow-sm); }
    .why-card:hover::before { transform: scaleX(0); }
    .btn-primary:hover,
    .btn-outline:hover,
    .nav-cta:hover,
    .cta-btn:hover       { transform: none; }
}
