/* ============================================
   清香馆 — Premium Website Stylesheet
   Design: Brand green + gold, Korean heritage
   VI Colors: 墨绿主色, 五色Logo (红/紫/绿/金/蓝)
   ============================================ */

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #122019;
    --bg-section: #162518;
    --bg-card: #1c2e20;
    --bg-light: #f5f2eb;
    --bg-cream: #f8f6f0;
    --gold: #c9a96e;
    --gold-light: #dfc08a;
    --gold-dark: #a6833f;
    --brand-green: #2d6b3f;
    --brand-green-light: #3a8a50;
    --brand-green-dark: #1a4028;
    --brand-coral: #c06050;
    --brand-purple: #7b4078;
    --brand-blue: #4b8bbf;
    --text-white: #f0ece4;
    --text-light: #c8d0c2;
    --text-muted: #7a8a78;
    --text-dark: #1e2a20;
    --text-body: #3a4a3a;
    --accent-red: #c06050;
    --accent-green: #2d6b3f;
    --font-serif: 'Noto Serif SC', 'Songti SC', 'STSong', serif;
    --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-dark);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === Navigation === */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s ease;
}

.main-nav.scrolled {
    background: rgba(18, 32, 25, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: transform var(--transition);
}

.nav-logo:hover .nav-logo-img {
    transform: rotate(5deg);
}

.logo-cn {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-light);
    position: relative;
    padding: 0.3rem 0;
    font-weight: 400;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* === Hero Section === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(18,32,25,0.45) 0%,
        rgba(18,32,25,0.65) 50%,
        rgba(18,32,25,0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    border: 1px solid var(--gold-dark);
    padding: 0.4rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-korean {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5em;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.hero-chinese {
    display: block;
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--text-white);
    letter-spacing: 0.3em;
    font-weight: 900;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.4em;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dark));
}

.hero-divider .divider-line:last-child {
    background: linear-gradient(to left, transparent, var(--gold-dark));
}

.divider-icon {
    color: var(--gold);
    font-size: 0.5rem;
}

.hero-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.3em;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    padding: 0.9rem 3rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    transition: all var(--transition);
    font-weight: 400;
}

.hero-cta:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: var(--text-white);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gold-dark);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* === Section Common === */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header.light .section-label,
.section-header.light .section-title {
    color: var(--text-white);
}

.section-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 300;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    letter-spacing: 0.2em;
    color: var(--text-dark);
    font-weight: 700;
}

.title-underline {
    width: 50px;
    height: 2px;
    background: var(--brand-green);
    margin: 1.5rem auto;
}

.title-underline.gold {
    background: var(--gold);
}

/* Brand decorative border between sections */
.brand-border {
    width: 100%;
    height: 44px;
    background: url('images/border-pattern.png') repeat-x center;
    background-size: auto 44px;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.section-header.light .section-desc {
    color: var(--text-light);
}

/* === About Section === */
.about {
    background: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.about-lead {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    color: var(--text-body);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-dark);
    font-weight: 700;
    line-height: 1;
}

.stat-unit {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 400;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
}

.about-image {
    position: relative;
}

.logo-frame-single {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.logo-frame-single img {
    max-height: 280px;
    width: auto;
}

.image-frame {
    background: white;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: 10px;
    left: 10px;
    border: 1px solid var(--brand-green);
    opacity: 0.4;
    z-index: -1;
}

.image-caption {
    margin-top: 1.5rem;
    text-align: center;
}

.caption-year {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.caption-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
}

/* === Founder Section === */
.founder {
    background: var(--bg-dark);
    color: var(--text-white);
    overflow: hidden;
}

.founder-parallax {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.08;
}

.founder-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18,32,25,0.95) 0%, rgba(22,37,24,0.92) 100%);
}

.founder .container {
    position: relative;
    z-index: 2;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

.photo-frame {
    overflow: hidden;
    position: relative;
}

.photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 169, 110, 0.2);
    pointer-events: none;
}

.photo-frame img {
    width: 100%;
    transition: transform 0.8s ease;
}

.founder-photo:hover .photo-frame img {
    transform: scale(1.03);
}

.photo-caption {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    letter-spacing: 0.1em;
}

.founder-quote {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold);
    border-left: 2px solid var(--gold-dark);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    line-height: 2;
    font-style: italic;
    font-weight: 400;
}

.founder-bio p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 300;
}

.founder-titles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.title-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid var(--gold-dark);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.founder-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-align: center;
}

/* === Heritage Section === */
.heritage {
    background: var(--bg-cream);
}

.heritage-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.heritage-card {
    background: white;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.heritage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.heritage-svg {
    width: 80px;
    height: 80px;
    color: var(--brand-green);
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    letter-spacing: 0.1em;
}

.card-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--brand-green);
    background: rgba(45, 107, 63, 0.08);
    padding: 0.3rem 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.card-text {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.9;
}

.heritage-philosophy {
    text-align: center;
}

.philosophy-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    border: 1px solid rgba(201, 169, 110, 0.3);
    position: relative;
}

.philosophy-inner::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.philosophy-inner h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
}

.philosophy-inner p {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 2;
}

/* === Cuisine Section === */
.cuisine {
    background: var(--bg-dark);
    color: var(--text-white);
    position: relative;
}

.cuisine-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.03) 0%, transparent 70%);
}

.cuisine .container {
    position: relative;
    z-index: 2;
}

.cuisine-seasons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.season {
    text-align: center;
    padding: 3rem 1rem;
    border: 1px solid rgba(201, 169, 110, 0.15);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.season-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 32, 25, 0.7);
    transition: background var(--transition);
}

.season:hover .season-overlay {
    background: rgba(18, 32, 25, 0.45);
}

.season:hover {
    border-color: var(--gold);
}

.season-char {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.season-title {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    font-weight: 300;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.cuisine-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.cuisine-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.cuisine-item.large {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.cuisine-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cuisine-item:hover img {
    transform: scale(1.08);
}

.cuisine-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: var(--text-white);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
}

.cuisine-item:hover .cuisine-label {
    opacity: 1;
    transform: translateY(0);
}

.cuisine-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.cuisine-categories span {
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(201, 169, 110, 0.2);
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    transition: all var(--transition);
}

.cuisine-categories span:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* === Products Section === */
.products {
    background: var(--bg-cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.product-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-dark);
    padding: 1.2rem 1.2rem 0.3rem;
    letter-spacing: 0.1em;
}

.product-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0 1.2rem 1.5rem;
}

.products-promise {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto;
    line-height: 2;
    font-style: italic;
    position: relative;
    padding: 2rem 0;
}

.products-promise::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2rem;
}

/* === Awards Section === */
.awards {
    background: var(--bg-dark);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.awards-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(201, 169, 110, 0.03) 0%, transparent 40%);
}

.awards .container {
    position: relative;
    z-index: 2;
}

.awards-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.timeline-line {
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold-dark), transparent);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 1.5rem 0;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 60px;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--gold);
    text-align: right;
    padding-top: 0.2rem;
    font-weight: 600;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 76px;
    top: 1.8rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 1.5px solid var(--gold);
    z-index: 1;
}

.timeline-content {
    padding-left: 0.5rem;
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-white);
    margin-bottom: 0.3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

.awards-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.award-badge {
    text-align: center;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all var(--transition);
    min-width: 160px;
}

.award-badge:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}

.badge-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.award-badge span {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
}

/* === Contact Section === */
.contact {
    background: var(--bg-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brand-green);
    color: var(--brand-green);
}

.contact-item h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    letter-spacing: 0.1em;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-body);
}

.cta-card {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 3rem;
}

.cta-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
}

.cta-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 300;
}

.cta-divider {
    width: 30px;
    height: 1px;
    background: var(--gold-dark);
    margin: 1.5rem 0;
}

.cta-quote {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-muted) !important;
    font-size: 0.85rem !important;
    line-height: 2 !important;
}

/* === Footer === */
.footer {
    background: #0e1a12;
    color: var(--text-muted);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--brand-green);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 2rem;
}

.footer-logo-korean {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 0.3em;
}

.footer-logo-chinese {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin: 0.3rem 0;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.footer-icp {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.15);
}

/* === Animations === */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cuisine-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .cuisine-item.large {
        grid-column: span 1;
        aspect-ratio: 1;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(18, 32, 25, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-chinese {
        font-size: 3rem;
    }

    .hero-korean {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .heritage-cards {
        grid-template-columns: 1fr;
    }

    .cuisine-seasons {
        grid-template-columns: repeat(2, 1fr);
    }

    .cuisine-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        aspect-ratio: 16/9;
    }

    .timeline-line {
        left: 60px;
    }

    .timeline-item::before {
        left: 56px;
    }

    .timeline-year {
        width: 45px;
        font-size: 0.85rem;
    }

    .awards-badges {
        gap: 0.8rem;
    }

    .award-badge {
        padding: 1rem 1.2rem;
        min-width: auto;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-chinese {
        font-size: 2.5rem;
        letter-spacing: 0.15em;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .cuisine-gallery {
        grid-template-columns: 1fr;
    }

    .cuisine-item.large {
        aspect-ratio: 4/3;
    }

    .founder-parallax {
        background-attachment: scroll;
    }
}
