/* ============================================
   雲初馥 Yunchufu — Main Stylesheet
   新中式 × 日式侘寂融合
   ============================================ */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Montserrat', 'Noto Sans SC', -apple-system, sans-serif;
    font-weight: 300;
    background: #F0EBE3;
    color: #2D2D2D;
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.3s ease; }
a:hover { opacity: 0.7; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* --- Variables --- */
:root {
    --color-charcoal: #2D2D2D;
    --color-gold: #C5A55A;
    --color-gold-light: #D4B96A;
    --color-cream: #F0EBE3;
    --color-cream-dark: #E5DED3;
    --color-wood: #8B6E4E;
    --color-moss: #5A7247;
    --color-white: #FFFFFF;
    --color-text: #2D2D2D;
    --color-text-light: #6B6B6B;
    --color-border: rgba(45,45,45,0.1);
    --font-en: 'Montserrat', sans-serif;
    --font-zh: 'Noto Sans SC', sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
    --announcement-height: 40px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* --- Announcement Bar --- */
.announcement-bar {
    height: var(--announcement-height);
    background: var(--color-charcoal);
    color: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.announcement-bar p { margin: 0; }

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(45,45,45,0.97);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    border-bottom: 1px solid rgba(197,165,90,0.15);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
}
.site-logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}
.logo-mark {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-cream);
    letter-spacing: 6px;
    font-family: var(--font-zh);
}
.logo-sub {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 300;
    margin-top: 2px;
}

/* Primary Navigation */
.primary-menu {
    display: flex;
    gap: 36px;
}
.primary-menu li a {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-cream);
    font-weight: 300;
    position: relative;
    padding-bottom: 4px;
}
.primary-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition);
}
.primary-menu li a:hover::after,
.primary-menu li.current-menu-item a::after {
    width: 100%;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 16px; }
.cart-link {
    position: relative;
    color: var(--color-cream);
    display: flex;
    align-items: center;
}
.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--color-gold);
    color: var(--color-charcoal);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-cream);
    transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    background: var(--color-charcoal);
    padding: 100px 32px 32px;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform var(--transition);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-items { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu-items li a {
    color: var(--color-cream);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

/* ============================================
   HOMEPAGE — Dark Background
   ============================================ */
.page-front .site-content {
    background: var(--color-charcoal);
    color: var(--color-cream);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(45,45,45,0.85) 0%, rgba(45,45,45,0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}
.hero-eyebrow {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
    font-weight: 400;
}
.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 2px;
}
.hero-title em {
    font-style: normal;
    color: var(--color-gold);
}
.hero-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 300;
    color: rgba(240,235,227,0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--color-gold);
    color: var(--color-charcoal);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--transition);
}
.hero-cta:hover {
    background: var(--color-gold-light);
    opacity: 1;
}

/* Brand Narrative Section */
.brand-narrative {
    padding: 120px 0;
    background: var(--color-charcoal);
}
.brand-narrative-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.brand-narrative-text .label {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 400;
}
.brand-narrative-text h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 24px;
}
.brand-narrative-text p {
    color: rgba(240,235,227,0.7);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}
.brand-narrative-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}
.brand-narrative-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-narrative-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(197,165,90,0.2);
    transform: translate(12px, 12px);
    z-index: 1;
    pointer-events: none;
}

/* Featured Products Section */
.featured-products {
    padding: 100px 0;
    background: var(--color-cream);
    color: var(--color-charcoal);
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .label {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--color-wood);
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 400;
}
.section-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    letter-spacing: 1px;
}
.section-header p {
    color: var(--color-text-light);
    font-size: 14px;
    margin-top: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}
.category-tab {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-light);
    font-weight: 300;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    background: none;
    cursor: pointer;
}
.category-tab:hover,
.category-tab.active {
    color: var(--color-charcoal);
    border-bottom-color: var(--color-gold);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}
.product-card {
    background: var(--color-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(45,45,45,0.08);
}
.product-card-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--color-cream-dark);
    position: relative;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img {
    transform: scale(1.05);
}
.product-card-info {
    padding: 20px;
}
.product-card-number {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.product-card-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px;
}
.product-card-subtitle {
    font-size: 13px;
    color: var(--color-text-light);
    font-weight: 300;
    margin-bottom: 8px;
}
.product-card-price {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-wood);
}

/* Philosophy Section */
.philosophy-section {
    padding: 120px 0;
    background: var(--color-cream);
}
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.philosophy-card {
    text-align: center;
    padding: 48px 24px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}
.philosophy-card:hover {
    border-color: var(--color-gold);
}
.philosophy-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    color: var(--color-gold);
}
.philosophy-card h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.philosophy-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--color-charcoal);
    color: var(--color-cream);
    text-align: center;
}
.cta-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 300;
    margin-bottom: 16px;
}
.cta-section p {
    color: rgba(240,235,227,0.6);
    margin-bottom: 40px;
    font-size: 15px;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 48px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    transition: var(--transition);
}
.cta-button:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
    opacity: 1;
}

/* ============================================
   PRODUCT ARCHIVE
   ============================================ */
.page-product-archive .site-content {
    background: var(--color-cream);
}
.archive-header {
    padding: 80px 0 48px;
    text-align: center;
}
.archive-header h1 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.archive-header p {
    color: var(--color-text-light);
    font-size: 14px;
}
.woocommerce-result-count { display: none; }
.woocommerce-ordering { display: none; }
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    padding: 0 0 80px;
    list-style: none;
}
.product-category-header {
    margin-bottom: 12px;
    grid-column: 1 / -1;
}
.product-category-header h3 {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--color-wood);
}
.product-category-header p {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 4px;
}
.woocommerce-loop-product__link { text-decoration: none; color: inherit; }
.woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 400;
    margin: 12px 0 4px;
}
.price {
    font-size: 14px;
    color: var(--color-wood);
    font-weight: 400;
}
.add_to_cart_button { display: none; }

/* ============================================
   SINGLE PRODUCT
   ============================================ */
.page-product-single .site-content {
    background: var(--color-cream);
}
.single-product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 64px 0;
}
.single-product-gallery {
    position: sticky;
    top: calc(var(--header-height) + 32px);
    align-self: start;
    background: var(--color-charcoal);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-product-gallery img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    padding: 40px;
}
.product-gallery-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.product-gallery-thumbnails img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    padding: 0;
}
.product-gallery-thumbnails img.active,
.product-gallery-thumbnails img:hover {
    opacity: 1;
}

.single-product-summary {
    padding: 32px 0;
}
.single-product-summary .product-number {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.single-product-summary .product-title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 300;
    margin-bottom: 8px;
    line-height: 1.3;
}
.single-product-summary .product-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    font-weight: 300;
    margin-bottom: 24px;
    font-style: italic;
}
.single-product-summary .product-context {
    font-size: 14px;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 32px;
    border-left: 2px solid var(--color-gold);
    padding-left: 20px;
}
.single-product-summary .price {
    font-size: 22px;
    color: var(--color-wood);
    font-weight: 400;
    margin-bottom: 24px;
    display: block;
}
.single-product-summary .cart { margin-bottom: 32px; }
.single-product-summary .quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.single-product-summary .quantity input {
    width: 64px;
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    text-align: center;
    font-size: 14px;
    background: var(--color-white);
}
.single-product-summary .single_add_to_cart_button {
    padding: 16px 48px;
    background: var(--color-gold);
    color: var(--color-charcoal);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--transition);
    border: none;
}
.single-product-summary .single_add_to_cart_button:hover {
    background: var(--color-gold-light);
}

/* Product Meta / Details Grid */
.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}
.product-detail-item {
    padding: 12px 0;
}
.product-detail-item dt {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 4px;
}
.product-detail-item dd {
    font-size: 14px;
    color: var(--color-text);
}

/* Quantity Buttons */
.qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}
.qty-btn:hover {
    background: var(--color-cream-dark);
}

/* Header scroll effect */
.site-header.header-scrolled {
    background: rgba(45,45,45,0.98);
    border-bottom-color: rgba(197,165,90,0.3);
}

/* Product Story Tabs */
.woocommerce-tabs {
    margin: 80px 0;
    padding: 0;
    max-width: 800px;
}
.woocommerce-tabs .tabs {
    display: flex;
    gap: 32px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 16px;
    margin-bottom: 32px;
    list-style: none;
}
.woocommerce-tabs .tabs li a {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-light);
    font-weight: 300;
    padding-bottom: 16px;
    border-bottom: 1px solid transparent;
    margin-bottom: -17px;
    display: block;
}
.woocommerce-tabs .tabs li.active a {
    color: var(--color-charcoal);
    border-bottom-color: var(--color-gold);
}
.woocommerce-tabs .panel h2 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.woocommerce-tabs .panel p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 12px;
}
.woocommerce-tabs .panel ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 14px;
    line-height: 2;
    color: var(--color-text-light);
}

/* ============================================
   BRAND STORY PAGE
   ============================================ */
.page-about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-charcoal);
    color: var(--color-cream);
    text-align: center;
    overflow: hidden;
}
.page-about-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}
.page-about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 0 24px;
}
.page-about-hero-content h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    margin-bottom: 16px;
}
.page-about-hero-content p {
    color: rgba(240,235,227,0.7);
    font-size: 15px;
    line-height: 1.8;
}
.about-content-sections {
    background: var(--color-cream);
}
.about-section {
    padding: 100px 0;
}
.about-section:nth-child(odd) {
    background: var(--color-white);
}
.about-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-section-text h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.about-section-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 16px;
}
.about-section-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}
.about-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-section-image .image-frame {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(197,165,90,0.2);
    transform: translate(-8px, 8px);
    pointer-events: none;
}
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.about-value-item {
    text-align: center;
    padding: 32px 16px;
}
.about-value-item h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
}
.about-value-item p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   KNOWLEDGE (香道百科) PAGE
   ============================================ */
.knowledge-header {
    padding: 80px 0 48px;
    text-align: center;
    background: var(--color-charcoal);
    color: var(--color-cream);
}
.knowledge-header h1 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 12px;
}
.knowledge-header p {
    color: rgba(240,235,227,0.6);
    font-size: 14px;
}
.knowledge-list {
    padding: 64px 0 80px;
    background: var(--color-cream);
}
.knowledge-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
}
.knowledge-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.knowledge-card-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}
.knowledge-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.knowledge-card-content h2 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 16px;
}
.knowledge-card-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 12px;
}
.knowledge-card-content .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 400;
    margin-top: 16px;
}

/* ============================================
   PAGE (Default)
   ============================================ */
.page-default-header {
    padding: 80px 0 40px;
    background: var(--color-charcoal);
    color: var(--color-cream);
    text-align: center;
}
.page-default-header h1 {
    font-size: 32px;
    font-weight: 300;
}
.page-default-content {
    padding: 64px 0 80px;
    background: var(--color-cream);
    max-width: 720px;
    margin: 0 auto;
}
.page-default-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 16px;
}
.page-default-content h2 {
    font-size: 22px;
    font-weight: 400;
    margin: 32px 0 16px;
}
.page-default-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}
.page-default-content ul li {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-charcoal);
    color: var(--color-cream);
}
.footer-wave svg { display: block; width: 100%; height: 60px; }
.footer-main {
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
}
.footer-logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 12px;
    font-family: var(--font-zh);
}
.footer-tagline {
    font-size: 13px;
    color: rgba(240,235,227,0.5);
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.social-link {
    color: rgba(240,235,227,0.5);
    transition: color 0.3s;
}
.social-link:hover { color: var(--color-gold); opacity: 1; }
.footer-heading {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 400;
}
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-menu li a {
    font-size: 13px;
    color: rgba(240,235,227,0.6);
    transition: color 0.3s;
}
.footer-menu li a:hover { color: var(--color-cream); opacity: 1; }

.newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(240,235,227,0.2);
    margin-top: 16px;
}
.newsletter-input {
    flex: 1;
    padding: 12px 0;
    background: none;
    border: none;
    color: var(--color-cream);
    font-size: 13px;
    outline: none;
}
.newsletter-input::placeholder { color: rgba(240,235,227,0.3); }
.newsletter-submit {
    padding: 12px 16px;
    color: var(--color-gold);
    transition: color 0.3s;
}
.newsletter-submit:hover { color: var(--color-cream); }

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(240,235,227,0.08);
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(240,235,227,0.3);
}
.footer-payment {
    display: flex;
    gap: 16px;
}
.footer-payment span {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(240,235,227,0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .brand-narrative-inner,
    .about-section-inner,
    .single-product-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .philosophy-grid {
        grid-template-columns: 1fr 1fr;
    }
    .brand-narrative-image {
        order: -1;
    }
    .single-product-gallery {
        position: static;
    }
    .knowledge-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .knowledge-card-image {
        aspect-ratio: 16/9;
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .primary-nav { display: none; }
    .menu-toggle { display: flex; }

    .hero-section {
        min-height: 70vh;
        padding: 48px 0;
    }
    .hero-content { max-width: 100%; }

    .brand-narrative { padding: 64px 0; }
    .featured-products { padding: 64px 0; }
    .philosophy-section { padding: 64px 0; }
    .cta-section { padding: 64px 0; }

    .product-grid,
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .category-tabs {
        gap: 16px;
        flex-wrap: wrap;
    }
    .category-tab {
        font-size: 12px;
    }

    .single-product-wrapper {
        padding: 24px 0;
        gap: 32px;
    }
    .single-product-summary { padding: 0; }
    .product-details-grid { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-section { padding: 48px 0; }
    .about-values {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .about-section-inner { gap: 32px; }

    .archive-header { padding: 48px 0 24px; }
    .archive-header h1 { font-size: 24px; }

    .woocommerce-tabs .tabs {
        gap: 16px;
        flex-wrap: wrap;
    }

    .knowledge-list { padding: 32px 0 48px; }
    .knowledge-card {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .page-default-header { padding: 48px 0 24px; }
    .page-default-content { padding: 32px 0 48px; }

    .footer-bottom .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero-cta, .single_add_to_cart_button {
        width: 100%;
        justify-content: center;
    }

    .product-card-info {
        padding: 12px;
    }
    .product-card-title { font-size: 14px; }
}

@media (max-width: 480px) {
    .product-grid,
    .products {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .container { padding: 0 16px; }
    .hero-title { font-size: 28px; }
    .brand-narrative-text h2 { font-size: 24px; }
}
