/* Artisan Craft - WordPress Theme - nk.studio inspired */

:root {
    --bg-dark: #041819;
    --bg-darker: #020d0e;
    --accent: #00FFC2;
    --accent-dim: rgba(0, 255, 194, 0.6);
    --text: #e8f4f3;
    --text-muted: #8ba5a3;
    --border: rgba(0, 255, 194, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    perspective: 1200px;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg-dark);
    background-image: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 255, 194, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(0, 255, 194, 0.02) 0%, transparent 50%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}
body::after {
    content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9998;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
}

h1, h2, h3 { font-family: 'Syne', sans-serif; font-weight: 700; }
.accent { color: var(--accent); }

.scroll-progress {
    position: fixed; top: 0; left: 0; width: 0%; height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(0, 255, 194, 0.8));
    z-index: 1000; transition: width 0.08s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav {
    position: fixed; top: 0; left: 0; right: 0;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 3rem; z-index: 100;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 100%);
    transition: background 0.3s;
}
.nav.scrolled { background: var(--bg-dark); }

.nav-logo {
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.25rem;
    color: var(--text); text-decoration: none; letter-spacing: 0.02em;
}
.nav-logo-img img { height: 32px; width: auto; }
.nav-logo-svg { height: 28px; width: auto; }

.nav-links { display: flex; gap: 2.5rem; }
.nav-links .nav-menu {
    display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: 0;
}
.nav-links a, .nav-menu a {
    color: var(--text-muted); text-decoration: none; font-size: 0.9rem;
    font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-menu a:hover { color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.nav-cta {
    color: var(--accent); text-decoration: none; font-weight: 600; font-size: 0.9rem;
    padding: 0.5rem 1rem; border: 1px solid var(--accent); transition: all 0.2s;
}
.nav-cta:hover { background: var(--accent); color: var(--bg-dark); }

.nav-cart {
    background: none; border: none; color: var(--text);
    cursor: pointer; padding: 0.5rem; transition: color 0.2s; text-decoration: none;
}
.nav-cart:hover { color: var(--accent); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 8rem 3rem 4rem; position: relative;
}
.hero--creative { overflow: hidden; }
.hero-meta {
    display: flex; gap: 1.5rem; margin-bottom: 1rem;
}
.hero-meta-item {
    font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em;
    display: flex; align-items: center; gap: 0.5rem;
}
.hero-meta-dot {
    width: 4px; height: 4px; background: var(--accent); border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
.hero-decor-text {
    position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
    font-family: 'Syne', sans-serif; font-size: clamp(8rem, 18vw, 16rem);
    font-weight: 800; color: rgba(0, 255, 194, 0.04); letter-spacing: -0.04em;
    line-height: 0.9; user-select: none; pointer-events: none;
}
.hero-content {
    max-width: 900px; position: relative; z-index: 2;
    transition: transform 0.15s ease-out;
}
.hero-tag {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
    color: var(--accent); margin-bottom: 1rem; text-transform: uppercase;
}
.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1.2;
    margin-bottom: 1.5rem; letter-spacing: -0.02em;
}

.hero-title-line { display: block; }
.hero-subtitle {
    font-size: 1.15rem; color: var(--text-muted); max-width: 500px;
    margin-bottom: 2rem;
}
.hero-cta {
    display: inline-block; color: var(--accent); text-decoration: none;
    font-weight: 600; font-size: 1rem; padding: 1rem 2rem;
    border: 2px solid var(--accent); transition: all 0.3s;
}
.hero-cta:hover { background: var(--accent); color: var(--bg-dark); }

.hero-scroll {
    position: absolute; right: 3rem; bottom: 4rem;
    font-size: 0.7rem; color: var(--text-muted); line-height: 1.4; letter-spacing: 0.05em;
}

.hero-decor {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none; overflow: hidden;
}
.hero-circle-wrap {
    position: absolute; will-change: transform;
}
.hero-circle-wrap:nth-child(1) { right: -100px; top: 20%; }
.hero-circle-wrap:nth-child(2) { right: 15%; bottom: 25%; }
.hero-circle-wrap:nth-child(3) { right: 25%; top: 40%; }
.hero-circle {
    position: relative; border-radius: 50%;
    border: 1px solid rgba(0, 255, 194, 0.15);
}
.hero-circle--1 {
    width: 400px; height: 400px;
    animation: float 8s ease-in-out infinite;
}
.hero-circle--2 {
    width: 200px; height: 200px;
    border-color: rgba(0, 255, 194, 0.08);
    animation: float 6s ease-in-out infinite reverse;
}
.hero-circle--3 {
    width: 80px; height: 80px;
    background: rgba(0, 255, 194, 0.03);
    animation: float 5s ease-in-out infinite 1s;
}
.hero-bg-layer {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 40% at 80% 30%, rgba(0, 255, 194, 0.04) 0%, transparent 60%);
    pointer-events: none;
    transform-origin: center center;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -15px); }
}

/* Section numbers - decorative */
.section-num {
    position: absolute; left: 3rem; top: 4rem;
    font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 800;
    color: var(--accent); opacity: 0.4; letter-spacing: 0.1em;
}
section[data-section-num] { position: relative; }

.stats { padding: 4rem 3rem; border-top: 1px solid var(--border); }
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.stat-number {
    display: block; font-family: 'Syne', sans-serif; font-size: 2.5rem;
    font-weight: 800; color: var(--accent); margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

.section-header { max-width: 700px; margin-bottom: 4rem; position: relative; padding-left: 1.5rem; }
.section-header::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, var(--accent), transparent);
    opacity: 0.5;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; letter-spacing: -0.02em;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* Section divider - wave */
.section-divider {
    margin: 0; padding: 0; line-height: 0; overflow: hidden;
}
.section-divider svg { width: 100%; height: 80px; display: block; }
.section-divider--wave { background: var(--bg-darker); }

/* Bento grid - creative irregular layout */
.visual-banner--bento { padding: 0; overflow: hidden; background: var(--bg-darker); }
.bento-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(280px, 1fr));
    gap: 0.5rem; padding: 0.5rem; max-width: 1600px; margin: 0 auto;
    perspective: 1800px;
    align-items: stretch;
}
.bento-item {
    transform-style: preserve-3d;
}
.bento-item {
    position: relative; overflow: hidden; min-height: 200px;
}
.bento-item--wide { grid-column: span 2; grid-row: span 2; }
.bento-item--tall { grid-row: span 2; }
.bento-item img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.bento-item:hover img { transform: scale(1.08); }
.bento-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(4,24,25,0.85) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 1.5rem;
}
.bento-label {
    font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 600;
    color: var(--text); letter-spacing: 0.05em; display: block;
}
.bento-detail {
    font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem;
    letter-spacing: 0.05em;
}
.bento-item--accent {
    background: linear-gradient(135deg, rgba(0, 255, 194, 0.08) 0%, rgba(0, 255, 194, 0.02) 100%);
    border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
    position: relative;
}
.bento-item--accent::before {
    content: ''; position: absolute; top: 1rem; right: 1rem;
    width: 30px; height: 30px; border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent); opacity: 0.4;
}
.bento-quote {
    padding: 2rem; text-align: center;
}
.bento-quote-num {
    display: block; font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800;
    color: var(--accent); opacity: 0.5; margin-bottom: 1rem;
}
.bento-quote p {
    font-size: 1.1rem; line-height: 1.6; color: var(--text-muted);
    font-style: italic;
}
.visual-banner--row2 { padding-top: 0; }
.bento-grid--row2 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: minmax(260px, 1fr);
    padding: 0 0.5rem 0.5rem;
}
.bento-grid--row2 .bento-item--tall { grid-row: span 1; }

.collection { padding: 6rem 3rem; }
.collection-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.collection-grid--6 {
    grid-template-columns: repeat(3, 1fr);
    perspective: 1500px;
    align-items: start;
    overflow: visible;
}
.collection-grid--6 .flip-card {
    overflow: visible;
}
.collection-grid--9 {
    grid-template-columns: repeat(3, 1fr);
    perspective: 1500px;
    align-items: start;
}
.product-card,
.layered-card {
    transform-style: preserve-3d;
    transform: translate3d(0, 0, 0);
}

.product-card { position: relative; overflow: hidden; cursor: pointer; }
.flip-card.product-card { overflow: visible; }
.product-card-link { text-decoration: none; color: inherit; display: block; }

.product-image {
    aspect-ratio: 4/5; background: var(--bg-darker); margin-bottom: 1.5rem;
    overflow: hidden; display: flex; align-items: center; justify-content: center;
    position: relative;
}
.product-image { position: relative; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-image-overlay {
    position: absolute; inset: 0; background: rgba(4, 24, 25, 0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s ease;
}
.product-card:hover .product-image-overlay { opacity: 1; }
.overlay-text {
    font-size: 0.9rem; font-weight: 600; letter-spacing: 0.1em;
    color: var(--accent); padding: 0.75rem 1.5rem; border: 1px solid var(--accent);
    transition: background 0.3s, color 0.3s;
}
.product-card:hover .overlay-text { background: var(--accent); color: var(--bg-dark); }

/* Card badges */
.card-badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 2;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
    padding: 0.35rem 0.75rem; border-radius: 2px;
    text-transform: uppercase;
}
.card-badge--bestseller { background: var(--accent); color: var(--bg-dark); }
.card-badge--new { background: rgba(255,255,255,0.15); color: var(--text); }
.card-badge--handcrafted { background: rgba(0,255,194,0.2); color: var(--accent); }

.product-image--ceramics { background: linear-gradient(180deg, #2d1f1a 0%, #1a1210 50%, #0d0908 100%); }
.craft-shape--bowl {
    width: 55%; height: 45%;
    background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(139, 90, 60, 0.4) 0%, rgba(80, 50, 35, 0.2) 40%, transparent 70%);
    border-radius: 50%; border: 2px solid rgba(139, 90, 60, 0.3);
    box-shadow: inset 0 20px 40px rgba(0,0,0,0.4); transition: all 0.4s;
}
.product-card:hover .craft-shape--bowl { transform: scale(1.05); border-color: rgba(0, 255, 194, 0.2); }

.product-image--textiles { background: linear-gradient(135deg, #1a2528 0%, #0f1618 100%); }
.craft-shape--weave {
    width: 90%; height: 90%;
    background: repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(0, 255, 194, 0.06) 8px, rgba(0, 255, 194, 0.06) 10px),
        repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(139, 165, 163, 0.08) 8px, rgba(139, 165, 163, 0.08) 10px),
        linear-gradient(180deg, #1e2a2d 0%, #0d1416 100%);
    transition: all 0.4s;
}
.product-card:hover .craft-shape--weave {
    background: repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(0, 255, 194, 0.12) 8px, rgba(0, 255, 194, 0.12) 10px),
        repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(0, 255, 194, 0.08) 8px, rgba(0, 255, 194, 0.08) 10px),
        linear-gradient(180deg, #1e2a2d 0%, #0d1416 100%);
}

.product-image--wood { background: linear-gradient(180deg, #1a1410 0%, #0d0a08 100%); }
.craft-shape--bowl-wood {
    width: 50%; height: 40%;
    background: radial-gradient(ellipse 70% 50% at 50% 55%, rgba(139, 100, 60, 0.25) 0%, rgba(80, 55, 30, 0.15) 50%, transparent 80%),
        repeating-linear-gradient(105deg, transparent, transparent 3px, rgba(100, 70, 40, 0.15) 3px, rgba(100, 70, 40, 0.15) 4px);
    border-radius: 50%; border: 1px solid rgba(139, 100, 60, 0.2); transition: all 0.4s;
}
.product-card:hover .craft-shape--bowl-wood { transform: scale(1.05); border-color: rgba(0, 255, 194, 0.15); }

.product-category {
    font-size: 0.75rem; letter-spacing: 0.15em; color: var(--accent);
    text-transform: uppercase; margin-bottom: 0.5rem;
}
.product-tag {
    position: absolute; font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.08em; padding: 0.25rem 0.5rem;
    border-radius: 2px; z-index: 2;
}
.product-tag--material {
    top: 0.75rem; left: 0.75rem;
    background: rgba(0, 255, 194, 0.2); color: var(--accent);
}
.product-tag--origin {
    top: 0.75rem; right: 0.75rem;
    background: rgba(255,255,255,0.1); color: var(--text);
}
.product-price-range {
    font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem;
    display: block; font-weight: 600;
}
.product-info h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.product-link {
    color: var(--accent); text-decoration: none; font-weight: 500;
    font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.5rem;
    transition: gap 0.2s;
}
.product-link:hover { gap: 1rem; }

.categories { padding: 6rem 3rem; border-top: 1px solid var(--border); }
.categories-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.categories-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 3rem; }
.category-icon { font-size: 1.25rem; margin-right: 1rem; opacity: 0.7; }
.categories-list { display: flex; flex-direction: column; }
.category-item {
    display: flex; align-items: center; padding: 2rem 0;
    border-bottom: 1px solid var(--border); text-decoration: none;
    color: var(--text); transition: all 0.2s;
}
.category-item:hover { color: var(--accent); padding-left: 1rem; }
.category-num { font-family: 'Syne', sans-serif; font-size: 0.9rem; color: var(--text-muted); width: 3rem; }
.category-name { flex: 1; font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 600; }
.category-arrow { font-size: 1.5rem; opacity: 0; transform: translateX(-10px); transition: all 0.2s; }
.category-item:hover .category-arrow { opacity: 1; transform: translateX(0); }

/* Shop by region */
.shop-region { padding: 6rem 3rem; border-top: 1px solid var(--border); }
.shop-region .section-header { margin-bottom: 3rem; }
.region-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.region-card {
    text-decoration: none; color: inherit; display: block;
    overflow: hidden; border-radius: 4px; transition: transform 0.3s ease;
}
.region-card:hover { transform: translateY(-6px); }
.region-image {
    aspect-ratio: 4/3; overflow: hidden; margin-bottom: 1rem;
}
.region-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.region-card:hover .region-image img { transform: scale(1.08); }
.region-name {
    font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 600;
    display: block; margin-bottom: 0.25rem;
}
.region-detail {
    font-size: 0.75rem; color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Why ibono */
.why-ibono {
    padding: 6rem 3rem; background: var(--bg-darker);
    border-top: 1px solid var(--border);
}
.why-ibono .section-header { margin-bottom: 3rem; }
.why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.why-item {
    padding: 2rem; background: rgba(0, 255, 194, 0.02);
    border: 1px solid var(--border); border-radius: 4px;
    transition: all 0.3s ease;
}
.why-item:hover {
    border-color: rgba(0, 255, 194, 0.25);
    transform: translateY(-4px);
}
.why-icon {
    font-size: 1.5rem; color: var(--accent); display: block;
    margin-bottom: 1rem; opacity: 0.8;
}
.why-item h3 {
    font-size: 1.15rem; margin-bottom: 0.75rem;
}
.why-item p {
    font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
}

/* How it works */
.how-it-works {
    padding: 6rem 3rem; border-top: 1px solid var(--border);
}
.how-it-works .section-header { margin-bottom: 3rem; }
.how-steps {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 3rem; max-width: 1100px; margin: 0 auto;
}
.how-step {
    text-align: center; padding: 2rem 1.5rem;
    border: 1px solid var(--border); border-radius: 4px;
    transition: border-color 0.3s;
}
.how-step:hover { border-color: rgba(0, 255, 194, 0.3); }
.how-step-num {
    display: block; font-family: 'Syne', sans-serif; font-size: 2rem;
    font-weight: 800; color: var(--accent); opacity: 0.6;
    margin-bottom: 1rem;
}
.how-step h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.how-step p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* Lookbook */
.lookbook {
    padding: 6rem 3rem; background: var(--bg-darker);
    border-top: 1px solid var(--border);
}
.lookbook .section-header { margin-bottom: 3rem; }
.lookbook-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(220px, 1fr));
    gap: 0.75rem; max-width: 1200px; margin: 0 auto;
}
.lookbook-item {
    position: relative; overflow: hidden; border-radius: 4px;
}
.lookbook-item--large { grid-column: span 2; grid-row: span 2; }
.lookbook-item--wide { grid-column: span 4; }
.lookbook-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.lookbook-item:hover img { transform: scale(1.06); }
.lookbook-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(4,24,25,0.8) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 1.5rem;
    opacity: 0; transition: opacity 0.4s;
}
.lookbook-item:hover .lookbook-overlay { opacity: 1; }
.lookbook-overlay span {
    font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 600;
    color: var(--text); letter-spacing: 0.05em;
}

/* FAQ */
.faq-section {
    padding: 6rem 3rem; border-top: 1px solid var(--border);
}
.faq-section .section-header { margin-bottom: 3rem; }
.faq-list {
    max-width: 800px; margin: 0 auto;
}
.faq-item {
    padding: 2rem 0; border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 {
    font-size: 1.15rem; margin-bottom: 0.75rem;
}
.faq-item p {
    font-size: 0.95rem; color: var(--text-muted); line-height: 1.7;
}

.story {
    padding: 8rem 3rem; background: var(--bg-darker);
    position: relative; overflow: hidden;
}
.story::before {
    content: ''; position: absolute; width: 600px; height: 600px;
    border-radius: 50%; border: 1px solid rgba(0, 255, 194, 0.06);
    right: -200px; top: 50%; transform: translateY(-50%);
}
.story-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center; max-width: 1200px; margin: 0 auto;
}
.story-content { max-width: 100%; }
.story-visual {
    position: relative; overflow: hidden; border-radius: 4px;
}
.story-visual img {
    width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5;
    transition: transform 0.6s ease;
}
.story:hover .story-visual img { transform: scale(1.03); }

/* Pull quote - bold typography */
.pull-quote-section {
    padding: 8rem 3rem; text-align: center; position: relative;
}
.pull-quote-inner { max-width: 900px; margin: 0 auto; }
.pull-quote-text {
    font-family: 'Syne', sans-serif; font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600; line-height: 1.5; color: var(--text);
    margin-bottom: 1.5rem; font-style: italic;
}
.pull-quote-attribution {
    font-size: 0.9rem; color: var(--accent); letter-spacing: 0.1em;
}

/* Testimonials - creative */
.testimonials { padding: 6rem 3rem; position: relative; overflow: hidden; }
.testimonials--creative .testimonials-bg {
    position: absolute; inset: 0;
    background: linear-gradient(165deg, rgba(0, 255, 194, 0.03) 0%, transparent 50%);
    transform: skewY(-2deg); transform-origin: center;
}
.testimonials .section-header { margin-bottom: 4rem; position: relative; z-index: 1; }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
    max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
    align-items: start;
}
.testimonials-grid--creative { gap: 1.5rem; }
.testimonials-grid--6 {
    grid-template-columns: repeat(3, 1fr);
}
.testimonials-grid--6 .testimonial-card--featured { grid-column: span 2; }
.testimonial-card {
    padding: 2rem; background: rgba(0, 255, 194, 0.02);
    border: 1px solid var(--border); border-radius: 4px;
    margin: 0; transition: all 0.4s ease;
}
.testimonial-card:hover {
    border-color: rgba(0, 255, 194, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -20px rgba(0, 255, 194, 0.15);
}
.testimonial-card--featured {
    grid-column: span 2; background: rgba(0, 255, 194, 0.04);
    border-color: rgba(0, 255, 194, 0.2);
}
.testimonial-quote-mark {
    font-family: 'Syne', sans-serif; font-size: 4rem; font-weight: 800;
    color: var(--accent); opacity: 0.3; line-height: 1; display: block;
}
.testimonial-card p {
    font-size: 1.05rem; line-height: 1.7; color: var(--text);
    margin-bottom: 1.5rem;
}
.testimonial-card cite {
    font-size: 0.9rem; color: var(--text-muted); font-style: normal;
}
.testimonial-card cite em { font-style: italic; opacity: 0.8; }
.testimonial-stars {
    font-size: 0.9rem; color: var(--accent); margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}
.story-tag {
    font-size: 0.75rem; letter-spacing: 0.2em; color: var(--accent);
    margin-bottom: 1rem; text-transform: uppercase;
}
.story-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.story-text { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.7; }
.story-link {
    color: var(--accent); text-decoration: none; font-weight: 600;
    display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.2s;
}
.story-link:hover { gap: 1rem; }

/* Full-screen sections */
.section-fullscreen { min-height: 100vh; display: flex; align-items: center; justify-content: center; }

.featured { padding: 6rem 0; overflow: hidden; }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }
.featured-card { cursor: pointer; text-decoration: none; color: inherit; display: block; flex-shrink: 0; }
.featured-card.flip-card { overflow: visible; }

/* Horizontal scroll - nk.studio style */
.featured-horizontal .section-header { padding: 0 3rem 4rem; }
.featured-horizontal .horizontal-scroll-wrapper {
    overflow: hidden; padding: 0 0 2rem;
}
.featured-horizontal .featured-track {
    display: flex; gap: 2rem; padding: 0 3rem;
    will-change: transform;
}
.featured-horizontal .featured-card {
    width: 400px; min-width: 400px;
}
.featured-horizontal .featured-image { aspect-ratio: 4/5; }

/* Marquee section */
.marquee-section { padding: 3rem 0; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee { overflow: hidden; user-select: none; }
.marquee-track {
    display: flex; width: max-content;
    animation: marquee 20s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-inner { display: flex; gap: 2rem; padding: 0 2rem; flex-shrink: 0; }
.marquee-inner span { white-space: nowrap; font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--text-muted); }
.marquee-dot { color: var(--accent); opacity: 0.6; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.featured-image {
    aspect-ratio: 1; margin-bottom: 1.5rem; overflow: hidden;
    display: flex; align-items: center; justify-content: center; position: relative;
}
.featured-image--product { position: relative; }
.featured-image img { width: 100%; height: 100%; object-fit: cover; }

.featured-image--moroccan { background: linear-gradient(135deg, #1a1f22 0%, #0d1113 100%); }
.featured-image--product { background: var(--bg-darker); }
.product-visual--zellige {
    width: 85%; height: 85%;
    background: linear-gradient(45deg, transparent 48%, rgba(0, 255, 194, 0.08) 48%, rgba(0, 255, 194, 0.08) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 255, 194, 0.08) 48%, rgba(0, 255, 194, 0.08) 52%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(0, 255, 194, 0.06) 48%, rgba(0, 255, 194, 0.06) 52%, transparent 52%),
        linear-gradient(90deg, transparent 48%, rgba(0, 255, 194, 0.06) 48%, rgba(0, 255, 194, 0.06) 52%, transparent 52%);
    background-size: 25% 25%; transition: all 0.4s;
}
.featured-card:hover .product-visual--zellige {
    background: linear-gradient(45deg, transparent 48%, rgba(0, 255, 194, 0.15) 48%, rgba(0, 255, 194, 0.15) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 255, 194, 0.15) 48%, rgba(0, 255, 194, 0.15) 52%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(0, 255, 194, 0.12) 48%, rgba(0, 255, 194, 0.12) 52%, transparent 52%),
        linear-gradient(90deg, transparent 48%, rgba(0, 255, 194, 0.12) 48%, rgba(0, 255, 194, 0.12) 52%, transparent 52%);
    background-size: 25% 25%; transform: scale(1.02);
}

.featured-image--japanese { background: linear-gradient(180deg, #0f1418 0%, #080c0e 100%); }
.product-visual--boro {
    width: 70%; height: 70%;
    background: linear-gradient(135deg, rgba(30, 50, 80, 0.4) 0%, transparent 50%),
        linear-gradient(225deg, rgba(20, 40, 70, 0.3) 0%, transparent 50%),
        linear-gradient(315deg, rgba(25, 45, 75, 0.35) 0%, transparent 50%),
        linear-gradient(45deg, rgba(15, 35, 65, 0.25) 0%, transparent 50%);
    border: 1px solid rgba(50, 80, 120, 0.2); transition: all 0.4s;
}
.featured-card:hover .product-visual--boro { border-color: rgba(0, 255, 194, 0.2); transform: scale(1.02); }

.featured-image--scandinavian { background: linear-gradient(180deg, #1c1815 0%, #0f0d0b 100%); }
.product-visual--birch {
    width: 55%; height: 50%;
    background: radial-gradient(ellipse 75% 55% at 50% 55%, rgba(180, 160, 130, 0.2) 0%, rgba(120, 100, 75, 0.1) 50%, transparent 75%),
        repeating-linear-gradient(92deg, transparent, transparent 2px, rgba(140, 120, 90, 0.12) 2px, rgba(140, 120, 90, 0.12) 3px);
    border-radius: 50%; border: 1px solid rgba(160, 140, 110, 0.2); transition: all 0.4s;
}
.featured-card:hover .product-visual--birch { border-color: rgba(0, 255, 194, 0.15); transform: scale(1.05); }

.featured-quick-view {
    position: absolute; inset: 0; background: rgba(4, 24, 25, 0.8);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; color: var(--accent);
    opacity: 0; transition: opacity 0.4s ease;
}
.featured-card:hover .featured-quick-view { opacity: 1; }
.featured-rating {
    font-size: 0.75rem; color: var(--accent); margin-bottom: 0.5rem;
}
.featured-rating span { color: var(--text-muted); margin-left: 0.25rem; }
.featured-info h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.featured-info p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.featured-price { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--accent); }

.cta {
    padding: 8rem 3rem; text-align: center; border-top: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.cta::before {
    content: ''; position: absolute; width: 400px; height: 400px;
    border-radius: 50%; border: 1px solid rgba(0, 255, 194, 0.06);
    left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.cta::after {
    content: ''; position: absolute; width: 600px; height: 600px;
    border-radius: 50%; border: 1px solid rgba(0, 255, 194, 0.03);
    left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.cta-trust {
    display: flex; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap;
    justify-content: center;
}
.cta-trust-item {
    font-size: 0.85rem; color: var(--text-muted);
    display: flex; align-items: center; gap: 0.5rem;
}
.cta h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
.cta p { color: var(--text-muted); margin-bottom: 2rem; }
.cta-button {
    display: inline-block; padding: 1.25rem 3rem; background: var(--accent);
    color: var(--bg-dark); text-decoration: none; font-weight: 700; font-size: 1rem;
    transition: all 0.2s;
}
.cta-button:hover { background: var(--text); color: var(--bg-dark); }

.contact { padding: 6rem 3rem; background: var(--bg-darker); }
.contact-content { max-width: 600px; }
.contact h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.contact p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-email {
    display: inline-block; font-size: 1.5rem; font-weight: 600; color: var(--accent);
    text-decoration: none; margin-bottom: 2rem; transition: opacity 0.2s;
}
.contact-methods { margin-bottom: 2rem; }
.contact-email:hover { opacity: 0.8; }
.contact-hours {
    font-size: 0.9rem; color: var(--text-muted); margin-top: 0.5rem;
}
.contact-social { display: flex; gap: 2rem; }
.contact-social a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.contact-social a:hover { color: var(--accent); }

/* Horizontal slide section - 立体滑动 */
.slide-section {
    padding: 4rem 0 6rem; overflow: hidden; position: relative;
    min-height: 70vh;
    background: var(--bg-darker); border-top: 1px solid var(--border);
}
.slide-section-header {
    text-align: center; margin-bottom: 2rem; padding: 0 1rem;
}
.slide-section-header h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.slide-section-header p { font-size: 0.85rem; color: var(--text-muted); }
.slide-container { width: 100%; overflow: hidden; flex: 1; }
.slide-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    perspective: 2000px;
}
.slide-track { width: 500%; }
.slide-page {
    transform-style: preserve-3d;
}
.slide-page {
    width: 20%; min-height: 70vh; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(0,255,194,0.03) 0%, transparent 50%);
}
.slide-page--2 { background: linear-gradient(135deg, transparent 0%, rgba(0,255,194,0.02) 50%, transparent 100%); }
.slide-page--3 { background: linear-gradient(225deg, rgba(0,255,194,0.03) 0%, transparent 50%); }
.slide-page--4 { background: linear-gradient(315deg, transparent 0%, rgba(0,255,194,0.02) 50%, transparent 100%); }
.slide-page--5 { background: linear-gradient(45deg, rgba(0,255,194,0.03) 0%, transparent 50%); }
.slide-content {
    max-width: 500px; text-align: center;
}
.slide-num {
    font-family: 'Syne', sans-serif; font-size: 4rem; font-weight: 800;
    color: var(--accent); opacity: 0.3; display: block; margin-bottom: 1rem;
}
.slide-content h2 {
    font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem;
}
.slide-content p { color: var(--text-muted); font-size: 1.1rem; }
.slide-nav {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 1.5rem;
}
.slide-nav-btn {
    width: 48px; height: 48px; border: 1px solid var(--border);
    background: rgba(0,255,194,0.05); color: var(--text);
    cursor: pointer; font-size: 1.25rem; transition: all 0.3s;
    border-radius: 50%;
}
.slide-nav-btn:hover {
    background: var(--accent); color: var(--bg-dark); border-color: var(--accent);
}
.slide-indicator {
    font-size: 0.9rem; color: var(--text-muted);
}
@media (max-width: 768px) {
    .slide-section { min-height: 60vh; }
    .slide-page { padding: 3rem 1.5rem; }
    .slide-nav { bottom: 1.5rem; }
    .slide-nav-btn { width: 40px; height: 40px; font-size: 1rem; }
}

.footer { padding: 0; border-top: 1px solid var(--border); }
.footer-newsletter {
    padding: 4rem 3rem; text-align: center;
    background: linear-gradient(180deg, rgba(0,255,194,0.02) 0%, transparent 100%);
    border-bottom: 1px solid var(--border);
}
.footer-newsletter-title {
    font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 700;
    margin-bottom: 0.5rem;
}
.footer-newsletter-desc {
    font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem;
}
.footer-newsletter-form {
    display: flex; gap: 0.5rem; max-width: 400px; margin: 0 auto;
    justify-content: center;
}
.footer-newsletter-form input {
    flex: 1; padding: 0.75rem 1rem; background: var(--bg-darker);
    border: 1px solid var(--border); color: var(--text); font-size: 0.9rem;
}
.footer-newsletter-form input::placeholder { color: var(--text-muted); }
.footer-newsletter-form button {
    padding: 0.75rem 1.5rem; background: var(--accent); color: var(--bg-dark);
    border: none; font-weight: 600; cursor: pointer; font-size: 0.9rem;
    transition: opacity 0.2s;
}
.footer-newsletter-form button:hover { opacity: 0.9; }
.footer-top { padding: 3rem; }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--text); text-decoration: none; }
.footer-links { display: flex; gap: 2rem; }
.footer-links ul { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 2rem 3rem; border-top: 1px solid var(--border);
    flex-wrap: wrap; gap: 1rem;
}
.footer-badges {
    display: flex; gap: 1.5rem;
}
.footer-badge {
    font-size: 0.75rem; color: var(--text-muted);
    letter-spacing: 0.05em;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--accent); }

/* WordPress / WooCommerce overrides */
body.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .nav { top: 46px; } }

/* Responsive */
@media (max-width: 1024px) {
    .shop-region, .why-ibono { padding: 4rem 2rem; }
    .bento-grid {
        grid-template-columns: 1fr 1fr; grid-template-rows: auto;
    }
    .bento-item--wide { grid-column: span 2; grid-row: span 1; min-height: 40vh; }
    .bento-item--tall { grid-row: span 1; }
    .testimonial-card--featured { grid-column: span 1; }
    .story-inner { grid-template-columns: 1fr; gap: 3rem; }
    .story-visual { order: -1; }
    .testimonials-grid--creative { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .collection-grid--6,
    .collection-grid--9 { grid-template-columns: repeat(2, 1fr); }
    .region-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid--6 { grid-template-columns: 1fr; }
    .testimonials-grid--6 .testimonial-card--featured { grid-column: span 1; }
    .nav { padding: 1rem 2rem; }
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--bg-darker); flex-direction: column;
        padding: 5rem 2rem 2rem; gap: 1.5rem;
        border-left: 1px solid var(--border); transition: right 0.3s; z-index: 99;
    }
    .nav-links .nav-menu { flex-direction: column; }
    .nav-links.open { right: 0; }
    .nav-links.open::before {
        content: ''; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(2, 13, 14, 0.8); z-index: -1;
    }
    .nav-links a, .nav-menu a { font-size: 1.1rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .collection-grid { grid-template-columns: 1fr; }
    .featured-horizontal .featured-track { flex-wrap: nowrap; overflow-x: auto; }
    .featured-horizontal .featured-card { min-width: 320px; }
    .hero { padding: 6rem 2rem 4rem; }
    .hero-scroll { right: 2rem; }
}

@media (max-width: 768px) {
    .nav { padding: 1rem 1.5rem; }
    .hero, .collection, .categories, .story, .featured, .cta, .contact, .testimonials, .visual-banner,
    .shop-region, .why-ibono, .how-it-works, .lookbook, .faq-section {
        padding-left: 1.5rem; padding-right: 1.5rem;
    }
    .how-steps { grid-template-columns: 1fr; }
    .lookbook-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .lookbook-item--large { grid-column: span 2; grid-row: span 1; }
    .lookbook-item--wide { grid-column: span 2; }
    .bento-item--wide { min-height: 35vh; }
    .bento-grid { grid-template-columns: 1fr; }
    .collection-grid--6,
    .collection-grid--9 { grid-template-columns: 1fr; }
    .region-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .section-num { left: 1.5rem; top: 2rem; }
    .footer-newsletter { padding: 3rem 1.5rem; }
    .footer-newsletter-form { flex-direction: column; }
    .footer-top, .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; padding-left: 1.5rem; padding-right: 1.5rem; }
    .footer-badges { justify-content: center; }
    .cta-trust { flex-direction: column; gap: 0.75rem; }
}
