/* ===========================
   DESIGN TOKENS
   =========================== */
:root {
    --navy:      #1c3557;
    --navy-dark: #111f36;
    --ocean:     #1a6e8e;
    --teal:      #0d8a7d;
    --gold:      #c47f00;
    --amber:     #e8a020;
    --cream:     #faf7f2;
    --warm-gray: #f0ece5;
    --text:      #111820;
    --text-sub:  #4a5568;
    --text-muted:#8a95a3;
    --border:    #e2ddd6;
    --white:     #ffffff;

    --radius-sm: 6px;
    --radius:    12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
    --shadow:    0 4px 20px rgba(0,0,0,.10);
    --shadow-lg: 0 12px 48px rgba(0,0,0,.16);

    --font-sans: 'Noto Sans KR', sans-serif;
    --font-serif:'Noto Serif KR', serif;

    /* Bulma gap 오버라이드 */
    --bulma-grid-gap: 1.5rem;
    --bulma-column-gap: 0.75rem;
}

/* ===========================
   BASE
   =========================== */
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.hidden { display: none !important; }

/* ===========================
   BULMA 연동 전역 보정
   Bulma .columns는 기본적으로
     margin-top: -0.75rem (음수) 을 적용해
     위 요소와 겹치는 현상을 일으킨다.
   이 프로젝트는 섹션 padding으로 여백을 직접 제어하므로
   페이지 내 모든 .columns의 수직 마진을 초기화한다.
   (좌우 음수 마진은 column padding 상쇄에 필요하므로 유지)
   =========================== */
.columns {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* 헤더 column 상하 패딩 제거 (Bulma 기본 0.75rem이 헤더 높이를 늘림) */
.site-header .columns .column {
    padding-top: 0;
    padding-bottom: 0;
}

/* 헤더 상단바·메인 고정 높이 */
.header-top-inner { padding: 0; }
.header-inner     { padding-top: 8px; padding-bottom: 8px; }

/* fixed-grid의 gap을 섹션별로 조정 */
.trust-section .grid { --bulma-grid-gap: 1.25rem; }
.product-grid        { --bulma-grid-gap: 1.75rem; }
.reviews-grid        { --bulma-grid-gap: 1.5rem; }

/* fixed-grid 내부 카드가 늘어나도록 */
.trust-grid > *,
.product-grid > *,
.reviews-grid > * { height: 100%; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.3px;
    transition: all .2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--amber);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(232,160,32,.35);
}
.btn-primary:hover { background: #d48f10; box-shadow: 0 6px 24px rgba(232,160,32,.45); transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,.7);
    color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 12px 32px;
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-cart {
    width: 100%;
    padding: 13px 20px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    transition: background .2s;
}
.btn-cart:hover { background: var(--navy-dark); }

.btn-lg { padding: 18px 48px; font-size: 17px; }

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: background .2s;
    position: relative;
}
.btn-icon:hover { background: var(--warm-gray); }

/* ===========================
   HEADER
   =========================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-top {
    background: var(--navy-dark);
    color: rgba(255,255,255,.85);
    font-size: 12px;
    padding: 5px 0;
}
.header-top strong { color: var(--amber); }
.header-top-links {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}
.header-top-links a { opacity: .75; transition: opacity .2s; }
.header-top-links a:hover { opacity: 1; }

.header-main { border-bottom: 1px solid var(--border); }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon { font-size: 22px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.1;
}
.logo-sub { font-size: 10px; color: var(--text-muted); letter-spacing: .3px; }

.main-nav { display: flex; gap: 4px; justify-content: center; }
.nav-link {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-sub);
    transition: all .2s;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--warm-gray); }

.header-actions { display: flex; align-items: center; gap: 4px; }
.cart-count {
    position: absolute;
    top: 2px; right: 2px;
    background: var(--amber);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ===========================
   HERO
   =========================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 60%, rgba(13,138,125,.25) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 30%, rgba(26,110,142,.2) 0%, transparent 50%),
        linear-gradient(135deg, #0d1e2e 0%, #1c3557 35%, #1a6e8e 70%, #0d8a7d 100%);
}
.hero-bg::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 120px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-bg::after {
    content: '🦀';
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(160px, 22vw, 320px);
    opacity: .08;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,20,35,.15);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 140px;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,160,32,.2);
    border: 1px solid rgba(232,160,32,.5);
    color: var(--amber);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: .5px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.hero-title em {
    font-style: normal;
    color: var(--amber);
    display: block;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,.82);
    line-height: 1.75;
    margin-bottom: 40px;
}

/* CTA 버튼과 통계 사이 간격 */
.hero-cta { padding-bottom: 40px; }
.hero-cta .column { padding-top: 0; padding-bottom: 0; }

/* 통계 영역 */
.hero-stat { text-align: center; }
.hero-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.hero-stat span { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; display: block; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }
.hero-stats .column { padding-top: 0; padding-bottom: 0; }

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.5);
    font-size: 12px;
    z-index: 2;
    animation: bounce 2s ease infinite;
}

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

/* ===========================
   TRUST SECTION
   =========================== */
.trust-section {
    padding: 80px 0;
    background: var(--cream);
}

.trust-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.trust-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: transparent;
    transition: background .25s;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trust-card:hover::before { background: linear-gradient(90deg, var(--ocean), var(--teal)); }

.trust-card--highlight {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}
.trust-card--highlight h3 { color: var(--white); }
.trust-card--highlight p { color: rgba(255,255,255,.75); }
.trust-card--highlight .trust-icon { background: rgba(255,255,255,.1); color: var(--amber); }
.trust-card--highlight .trust-badge-tag { background: var(--amber); color: var(--white); }

.trust-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--warm-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--ocean);
}
.trust-icon--fresh  { color: var(--teal); }
.trust-icon--origin { color: var(--navy); }
.trust-icon--photo  { color: var(--ocean); }
.trust-icon--delivery { color: var(--gold); }

.trust-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 10px;
}
.trust-card p {
    font-size: 13.5px;
    color: var(--text-sub);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}
.trust-badge-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--warm-gray);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .3px;
}

/* ===========================
   SECTION HEADER
   =========================== */
.section-header { margin-bottom: 52px; }
.section-header--center { text-align: center; }

.section-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ocean);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-sub);
    line-height: 1.7;
    max-width: 560px;
}
.section-header--center .section-desc { margin: 0 auto; }

/* ===========================
   PRODUCTS SECTION
   =========================== */
.products-section { padding: 100px 0; }

.product-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}
.product-tab {
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-sub);
    border: 2px solid var(--border);
    background: var(--white);
    transition: all .2s;
}
.product-tab.active, .product-tab:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card--best { border-color: var(--amber); border-width: 2px; }

.product-image-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.product-image {
    width: 100%;
    height: 100%;
    transition: transform .4s ease;
}
.product-card:hover .product-image { transform: scale(1.05); }

/* 상품 플레이스홀더 이미지 */
.product-image--crab1 { background: linear-gradient(135deg, #1a4a2e 0%, #2d7a4a 40%, #8b4513 70%, #c0622a 100%); }
.product-image--crab2 { background: linear-gradient(135deg, #1c3557 0%, #2a5080 40%, #b85c20 70%, #e07535 100%); }
.product-image--crab3 { background: linear-gradient(135deg, #0d2b45 0%, #1a6e8e 50%, #8b3a0f 80%, #d4621e 100%); }
.product-image--squid1 { background: linear-gradient(135deg, #0a1628 0%, #1a4060 40%, #c0d8f0 70%, #e8f4ff 100%); }
.product-image--squid2 { background: linear-gradient(135deg, #2d1b69 0%, #5a3a9a 40%, #e0c8e8 70%, #f5e8ff 100%); }
.product-image--squid3 { background: linear-gradient(135deg, #0d2035 0%, #0d8a7d 50%, #a8d8d0 80%, #d0f0eb 100%); }

.product-image--crab1::after { content: '🦀'; }
.product-image--crab2::after { content: '🦀'; }
.product-image--crab3::after { content: '🦀'; }
.product-image--squid1::after { content: '🦑'; }
.product-image--squid2::after { content: '🦑'; }
.product-image--squid3::after { content: '🦑'; }

.product-image--crab1::after,
.product-image--crab2::after,
.product-image--crab3::after,
.product-image--squid1::after,
.product-image--squid2::after,
.product-image--squid3::after {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: .25;
}

.product-tag {
    position: absolute;
    top: 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    letter-spacing: .5px;
    line-height: 1;
}
.product-tag--best   { left: 12px; background: var(--amber); color: var(--white); }
.product-tag--new    { left: 12px; background: var(--teal); color: var(--white); }
.product-tag--sale   { left: 12px; background: #e53e3e; color: var(--white); }
.product-tag--live   { right: 12px; background: rgba(0,0,0,.55); color: var(--white); backdrop-filter: blur(4px); }

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

.product-origin {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--ocean);
    font-weight: 600;
    margin-bottom: 8px;
}
.product-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.4;
    margin-bottom: 4px;
}
.product-weight { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }

.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: var(--amber); font-size: 13px; letter-spacing: 1px; }
.review-count { font-size: 12px; color: var(--text-muted); }

.product-price-wrap { margin-bottom: 10px; flex: 1; }
.price-original { font-size: 13px; color: var(--text-muted); text-decoration: line-through; display: block; margin-bottom: 2px; }
.price-main { display: flex; align-items: center; gap: 8px; }
.price-discount {
    background: #fee2e2;
    color: #c53030;
    font-size: 12px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
}
.price-current { font-size: 22px; font-weight: 900; color: var(--navy-dark); }

.product-delivery {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 16px;
}

.view-all-wrap { text-align: center; margin-top: 48px; }

/* ===========================
   ORIGIN SECTION
   =========================== */
.origin-section {
    padding: 100px 0;
    background: var(--cream);
}

/* Bulma .columns 내부 여백 보정 */
.origin-grid > .column { padding: 1.5rem; }

.origin-visual { position: relative; }

.origin-map-card {
    position: relative;
    background: var(--navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.origin-map-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 40% 40%, rgba(26,110,142,.6) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(13,138,125,.4) 0%, transparent 50%),
        linear-gradient(160deg, #111f36 0%, #1c3557 50%, #1a6e8e 100%);
}
.origin-map-bg::after {
    content: '🗺';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 160px;
    opacity: .06;
}

.origin-map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--amber);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 20px rgba(232,160,32,.5);
    white-space: nowrap;
    z-index: 2;
}

.origin-badges-float {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    z-index: 2;
}
.origin-float-badge {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
}

.origin-cert-card {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    z-index: 3;
}
.origin-cert-card svg { color: var(--teal); flex-shrink: 0; }
.origin-cert-card strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy-dark); }
.origin-cert-card span { font-size: 12px; color: var(--text-muted); }

.origin-content { padding-left: 1rem; }

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

.origin-points { display: flex; flex-direction: column; gap: 16px; }
.origin-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: box-shadow .2s;
}
.origin-point:hover { box-shadow: var(--shadow); }

.point-num {
    font-size: 11px;
    font-weight: 900;
    color: var(--ocean);
    letter-spacing: 1px;
    background: rgba(26,110,142,.08);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    margin-top: 2px;
}
.point-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 3px; }
.point-text span { font-size: 13px; color: var(--text-sub); }

/* ===========================
   FRESHNESS SECTION
   =========================== */
.freshness-section { padding: 100px 0; }

/* 갤러리는 rowspan이 필요한 bento 레이아웃 → CSS Grid 유지 */
.freshness-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 500px;
    margin-bottom: 40px;
}

.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery-item--large { grid-row: span 2; }
.gallery-item--right { grid-column: 3; grid-row: span 2; }

.gallery-img {
    width: 100%;
    height: 100%;
    transition: transform .4s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }

.gallery-img--1 { background: linear-gradient(160deg, #8b3a0f 0%, #c0622a 40%, #e8935a 100%); }
.gallery-img--2 { background: linear-gradient(160deg, #1c3557 0%, #2e6090 60%, #5a9fcc 100%); }
.gallery-img--3 { background: linear-gradient(160deg, #0d2035 0%, #0d8a7d 50%, #a8d8d0 100%); }
.gallery-img--4 { background: linear-gradient(160deg, #f0f4f8 0%, #cbd5e0 50%, #a0aec0 100%); }
.gallery-img--5 { background: linear-gradient(160deg, #fffaf0 0%, #fbd38d 50%, #f6ad55 100%); }

.gallery-img--1::after { content: '🦀'; }
.gallery-img--2::after { content: '📦'; }
.gallery-img--3::after { content: '🦑'; }
.gallery-img--4::after { content: '🧊'; }
.gallery-img--5::after { content: '✨'; }
.gallery-img--1::after,
.gallery-img--2::after,
.gallery-img--3::after,
.gallery-img--4::after,
.gallery-img--5::after {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    opacity: .3;
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}

.freshness-guarantee {
    display: flex;
    justify-content: center;
}
.guarantee-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 28px 48px;
    color: var(--white);
    max-width: 480px;
    width: 100%;
}
.guarantee-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--amber);
}
.guarantee-text h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.guarantee-text p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.55; }
.guarantee-text strong { color: var(--amber); }

/* ===========================
   DELIVERY SECTION
   =========================== */
.delivery-section {
    padding: 100px 0;
    background: var(--cream);
}

/* Bulma columns 기반 배송 스텝 */
.delivery-steps {
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.delivery-steps .column { padding: 8px; }

.delivery-step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--border);
    min-width: 140px;
    box-shadow: var(--shadow-sm);
}
.delivery-step--last {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}
.delivery-step--last .step-label { color: rgba(255,255,255,.85); }
.delivery-step--last .step-time { background: var(--amber); color: var(--white); }

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--warm-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--ocean);
}
.delivery-step--last .step-icon { background: rgba(255,255,255,.12); color: var(--amber); }

.step-label { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.45; margin-bottom: 10px; }
.step-time {
    display: inline-block;
    background: var(--warm-gray);
    color: var(--ocean);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: .3px;
}

.step-arrow {
    font-size: 22px;
    color: var(--text-muted);
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-notes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 40px;
}
.delivery-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-sub);
}
.delivery-note svg { color: var(--teal); flex-shrink: 0; }

/* ===========================
   REVIEWS SECTION
   =========================== */
.reviews-section { padding: 100px 0; }

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}
.reviews-score {
    font-size: 64px;
    font-weight: 900;
    color: var(--navy-dark);
    line-height: 1;
}
.reviews-big-stars { color: var(--amber); font-size: 24px; letter-spacing: 2px; margin-bottom: 6px; }
.reviews-count { font-size: 14px; color: var(--text-muted); }

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean), var(--teal));
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 700; color: var(--navy-dark); }
.review-product { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.review-stars { margin-left: auto; color: var(--amber); font-size: 14px; letter-spacing: 1px; }

.review-text {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.review-photo {
    height: 120px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
}
.review-photo--1 { background: linear-gradient(135deg, #8b3a0f 0%, #e8935a 100%); }
.review-photo--2 { background: linear-gradient(135deg, #0d2035 0%, #0d8a7d 100%); }

.review-date { font-size: 12px; color: var(--text-muted); margin-top: auto; }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}
.cta-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d1e2e 0%, #1c3557 40%, #1a6e8e 70%, #0d8a7d 100%);
}
.cta-banner-bg::after {
    content: '🦀';
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 200px;
    opacity: .05;
    pointer-events: none;
}
.cta-banner-bg::before {
    content: '🦑';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    font-size: 200px;
    opacity: .05;
    pointer-events: none;
}
.cta-banner-content { position: relative; z-index: 2; }
.cta-banner h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.cta-banner p { font-size: 17px; color: rgba(255,255,255,.78); margin-bottom: 40px; }

/* ===========================
   FOOTER
   =========================== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.8); }

.footer-trust-bar {
    background: var(--navy);
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.trust-bar-items { justify-content: space-around; }
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.85);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
}
.trust-bar-item svg { color: var(--amber); flex-shrink: 0; }

.footer-main { padding: 64px 0 48px; }

.footer-brand { padding-bottom: 32px; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo .logo-icon { font-size: 24px; }
.footer-logo .logo-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}
.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
    margin-bottom: 24px;
}

.footer-sns { display: flex; gap: 10px; }
.sns-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    transition: all .2s;
}
.sns-link:hover { background: var(--amber); border-color: var(--amber); color: var(--white); }

.footer-links h4,
.footer-contact h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .5px;
    margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 13.5px;
    color: rgba(255,255,255,.55);
    transition: color .2s;
}
.footer-links a:hover { color: var(--amber); }

.contact-phone {
    font-size: 26px;
    font-weight: 900;
    color: var(--amber);
    letter-spacing: -1px;
    margin-bottom: 10px;
}
.footer-contact p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }

.bank-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    background: rgba(255,255,255,.06);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.1);
}
.bank-info strong { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 2px; }
.bank-info span { font-size: 12px; color: rgba(255,255,255,.5); }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner { flex-wrap: wrap; gap: 8px; }

.footer-info p { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.6; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); white-space: nowrap; }

/* ===========================
   RESPONSIVE 보완
   (Bulma가 처리하지 못하는 부분만)
   =========================== */

/* 모바일: 헤더 공지바 숨김 */
@media screen and (max-width: 768px) {
    .header-top { display: none; }

    .hero-content { padding-top: 60px; padding-bottom: 120px; }
    .hero-desc { font-size: 15px; }

    /* 산지 이야기 인증 카드 위치 조정 */
    .origin-cert-card { right: 0; top: -10px; }

    /* 갤러리 모바일 단순화 */
    .freshness-gallery {
        grid-template-columns: 1fr;
        height: auto;
        gap: 8px;
    }
    .gallery-item--large,
    .gallery-item--right {
        grid-row: span 1;
        grid-column: span 1;
        aspect-ratio: 16/9;
    }
    .gallery-item { aspect-ratio: 16/9; }

    /* 배송 스텝: 모바일에서 세로 정렬 */
    .delivery-steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); }

    /* 보증 카드 패딩 축소 */
    .guarantee-card { padding: 24px 28px; }

    /* 푸터 링크 컬럼 간격 */
    .footer-links, .footer-contact { padding-top: 0; }

    .origin-content { padding-left: 0; }
}

/* 태블릿: 네비게이션 숨김 */
@media screen and (max-width: 1023px) {
    .main-nav { display: none; }

    /* 갤러리 태블릿 2열 */
    .freshness-gallery {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    .gallery-item--large { aspect-ratio: 3/2; }
    .gallery-item--right { grid-column: auto; grid-row: span 1; }
    .gallery-item { aspect-ratio: 1; }
}
