/* =========================================================
   IBACOFFEE — Warm Coffee Shop Aesthetic
   Parchment backgrounds · Espresso text · Caramel accents
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Warm Light Palette */
    --parchment-50:  #fdfcfa;
    --parchment-100: #f8f5f0;
    --parchment-200: #f0ebe3;
    --parchment-300: #e5ddd2;
    --parchment-400: #d4ccc0;
    --parchment-500: #c4b8a8;

    /* Espresso for text & accents */
    --espresso-900: #1a0f0a;
    --espresso-800: #2d1b14;
    --espresso-700: #3d2419;
    --espresso-600: #4a2c1f;
    --espresso-500: #5c3a2a;
    --espresso-400: #7a5540;
    --espresso-300: #a0806a;
    --espresso-200: #c4a894;
    --espresso-100: #e0d5ce;

    /* Caramel Accents */
    --caramel-600: #8b5e3c;
    --caramel-500: #a67c52;
    --caramel-400: #c8956c;
    --caramel-300: #d4a574;
    --caramel-200: #e8c9a0;
    --caramel-100: #f5e6d0;
    --caramel-50:  #faf3e8;

    /* Cream for muted text */
    --cream-800: #5a5048;
    --cream-700: #7a6e64;
    --cream-600: #9a8e84;
    --cream-500: #b5aaa0;
    --cream-400: #d4ccc4;
    --cream-300: #e8e2dc;
    --cream-200: #f5f1ed;

    /* Functional */
    --forest: #4a6741;
    --forest-light: #6b8f62;
    --danger: #a05050;
    --success: #5a7a52;
    --warning: #a08040;

    /* Light Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-bg-light: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(60, 40, 25, 0.08);
    --glass-border-light: rgba(60, 40, 25, 0.15);
    --glass-shadow: 0 8px 32px rgba(60, 40, 25, 0.08);
    --glass-shadow-lg: 0 20px 60px rgba(60, 40, 25, 0.12);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing & Effects */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(60, 40, 25, 0.06);
    --shadow-md: 0 8px 24px rgba(60, 40, 25, 0.08);
    --shadow-lg: 0 16px 48px rgba(60, 40, 25, 0.10);
    --shadow-glow: 0 0 40px rgba(200, 149, 108, 0.12);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--parchment-50);
    color: var(--espresso-700);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background: var(--caramel-200);
    color: var(--espresso-900);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--parchment-200);
}

::-webkit-scrollbar-thumb {
    background: var(--parchment-500);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--caramel-500);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== HEADER — Light Glassmorphism Sticky ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 250, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(253, 252, 250, 0.95);
    box-shadow: 0 4px 30px rgba(60, 40, 25, 0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--espresso-800);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: brightness(1) contrast(1.1);
    transition: var(--transition-base);
}

.logo:hover img {
    transform: rotate(-5deg) scale(1.05);
    filter: brightness(1.1) contrast(1.2) drop-shadow(0 0 8px rgba(200, 149, 108, 0.3));
}

.nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--espresso-400);
    position: relative;
    padding: 10px 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--caramel-500);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    opacity: 0;
}

.nav a:hover,
.nav a.active {
    color: var(--espresso-800);
    background: rgba(200, 149, 108, 0.08);
}

.nav a:hover::after,
.nav a.active::after {
    width: 24px;
    opacity: 1;
}

.nav .btn-sm {
    margin-left: 8px;
    padding: 10px 22px;
    font-size: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    border: none;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--espresso-700);
    color: var(--parchment-50);
    box-shadow: 0 4px 16px rgba(45, 27, 20, 0.2);
}

.btn-primary:hover {
    background: var(--espresso-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(45, 27, 20, 0.25);
}

.btn-gold {
    background: var(--caramel-500);
    color: var(--parchment-50);
    box-shadow: 0 4px 20px rgba(166, 124, 82, 0.3);
}

.btn-gold:hover {
    background: var(--caramel-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(166, 124, 82, 0.4);
}

.btn-outline {
    color: var(--espresso-700);
    border: 1.5px solid var(--parchment-400);
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--glass-bg-light);
    border-color: var(--caramel-400);
    color: var(--espresso-800);
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
}

/* ===== HERO — Warm Coffee Experience ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 149, 108, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(74, 103, 65, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, var(--parchment-100) 0%, var(--parchment-200) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 149, 108, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 103, 65, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    line-height: 1.08;
    margin-bottom: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--espresso-900);
}

.hero-content h1 span {
    font-style: italic;
    font-weight: 500;
    color: var(--caramel-600);
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(200, 149, 108, 0.2);
    border-radius: var(--radius-full);
    z-index: -1;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--espresso-400);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-badges {
    display: flex;
    gap: 24px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--parchment-300);
}

.badge {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.badge:hover {
    background: var(--glass-bg-light);
    transform: translateY(-3px);
    box-shadow: var(--glass-shadow);
    border-color: var(--glass-border-light);
}

.badge-icon {
    font-size: 1.6rem;
    margin-bottom: 2px;
}

.badge-text {
    font-size: 0.7rem;
    color: var(--espresso-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.badge-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--espresso-800);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    font-family: var(--font-display);
    margin-top: 2px;
}

/* Hero Visual — Light Glassmorphism Circle */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-visual .coffee-circle {
    width: 360px;
    height: 360px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        var(--glass-shadow-lg),
        inset 0 0 60px rgba(200, 149, 108, 0.05);
}

.hero-visual .coffee-circle::before {
    content: '';
    position: absolute;
    inset: -40px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

.hero-visual .coffee-circle::after {
    content: '';
    position: absolute;
    inset: -80px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    animation: spin 50s linear infinite reverse;
    opacity: 0.5;
}

.hero-visual .coffee-circle img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    opacity: 0.9;
    filter: brightness(1) contrast(1.1);
    position: relative;
    z-index: 2;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--espresso-900);
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--espresso-400);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

.gold-line {
    width: 48px;
    height: 3px;
    background: var(--caramel-400);
    margin: 24px auto 0;
    border-radius: var(--radius-full);
    position: relative;
}

.gold-line::before,
.gold-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--caramel-400);
    border-radius: 50%;
}

.gold-line::before { left: -16px; }
.gold-line::after { right: -16px; }

/* ===== PRODUCT CARDS — Light Glassmorphism Grid ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--caramel-500), var(--caramel-300), var(--caramel-500));
    opacity: 0;
    transition: var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow-lg), var(--shadow-glow);
    border-color: var(--glass-border-light);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    height: 280px;
    background:
        linear-gradient(135deg, var(--parchment-300) 0%, var(--parchment-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(253, 252, 250, 0.6) 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(253, 252, 250, 0.9);
    backdrop-filter: blur(8px);
    color: var(--caramel-600);
    padding: 6px 14px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    z-index: 2;
}

.product-info {
    padding: 28px;
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--espresso-800);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.product-origin {
    font-size: 0.78rem;
    color: var(--caramel-600);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-notes {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--espresso-400);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.5;
    font-weight: 400;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--glass-border);
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--caramel-600);
    letter-spacing: -0.02em;
}

.product-price span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--espresso-400);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-left: 4px;
}

/* ===== ORIGIN STORY ===== */
.origin-section {
    background:
        linear-gradient(180deg, var(--parchment-200) 0%, var(--parchment-100) 100%);
    position: relative;
    overflow: hidden;
}

.origin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(200, 149, 108, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(74, 103, 65, 0.03) 0%, transparent 50%);
}

.origin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.origin-visual { position: relative; }

.origin-visual .map-placeholder {
    width: 100%;
    height: 359px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow-lg);
}

.origin-visual .map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(200, 149, 108, 0.08) 0%, transparent 60%);
}

.origin-visual .map-placeholder img {
    width: 45%;
    height: 45%;
    object-fit: contain;
    /* opacity: 0.12; */
    /* filter: brightness(2); */
}

.origin-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--espresso-900);
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.origin-content p {
    color: var(--espresso-400);
    margin-bottom: 20px;
    font-size: 1.02rem;
    line-height: 1.8;
    font-weight: 400;
}

.origin-content .btn {
    margin-top: 10px;
}

.origin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--parchment-300);
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-light);
    box-shadow: var(--glass-shadow);
}

.stat-item .stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--caramel-600);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-item .stat-label {
    font-size: 0.72rem;
    color: var(--espresso-400);
    margin-top: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ===== FROM FARM TO CUP — Journey Section ===== */
.journey-section {
    background:
        linear-gradient(180deg, var(--parchment-100) 0%, var(--parchment-50) 50%, var(--parchment-100) 100%);
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(200, 149, 108, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 100%, rgba(74, 103, 65, 0.04) 0%, transparent 40%);
}

.journey-section .section-header {
    position: relative;
    z-index: 1;
}

.journey-subtitle {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--caramel-600);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.journey-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--caramel-500), var(--caramel-300));
    opacity: 0;
    transition: var(--transition-base);
}

.journey-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-light);
    box-shadow: var(--glass-shadow-lg), var(--shadow-glow);
}

.journey-card:hover::before {
    opacity: 1;
}

.journey-step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--caramel-500);
    line-height: 1;
    letter-spacing: -0.03em;
    opacity: 0.9;
    transition: var(--transition-base);
}

.journey-card:hover .step-number {
    color: var(--caramel-400);
    text-shadow: 0 0 20px rgba(200, 149, 108, 0.2);
}

.step-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--parchment-400), transparent);
    position: relative;
}

.step-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--caramel-400);
    border-radius: 50%;
    opacity: 0.6;
}

.journey-card:last-child .step-line {
    display: none;
}

.journey-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--espresso-800);
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.journey-card p {
    color: var(--espresso-400);
    font-size: 0.92rem;
    line-height: 1.75;
    font-weight: 400;
}

/* Journey connecting line between cards (desktop) */
@media (min-width: 969px) {
    .journey-grid::before {
        content: '';
        position: absolute;
        top: 68px;
        left: 12%;
        right: 12%;
        height: 1px;
        background: linear-gradient(90deg, var(--glass-border), var(--caramel-400), var(--glass-border));
        opacity: 0.3;
        z-index: 0;
        pointer-events: none;
    }
}

/* ===== SHIPPING BANNER ===== */
.shipping-banner {
    background:
        linear-gradient(135deg, var(--parchment-100) 10%, var(--parchment-500) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.shipping-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 149, 108, 0.08) 0%, transparent 50%);
}

.shipping-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 0px;
    position: relative;
    z-index: 1;
}

.shipping-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.shipping-item:hover {
    transform: translateY(-3px);
    border-color: var(--glass-border-light);
    box-shadow: var(--glass-shadow);
}

.shipping-item .icon {
    font-size: 1.8rem;
    opacity: 0.8;
}

.shipping-item div strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 3px;
    color: var(--cream-100);
}

.shipping-item div span {
    font-size: 0.82rem;
    color: var(--cream-800);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ===== TESTIMONIALS ===== */
.section[style*="background"] {
    background: var(--parchment-100) !important;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding-top: 100px;
    background:
        linear-gradient(180deg, var(--parchment-50) 0%, var(--parchment-100) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(200, 149, 108, 0.06) 0%, transparent 50%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 20px;
    color: var(--espresso-900);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.contact-info > p {
    color: var(--espresso-400);
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.contact-detail:hover {
    border-color: var(--glass-border-light);
    transform: translateX(4px);
}

.contact-detail .icon {
    width: 44px;
    height: 44px;
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    color: var(--caramel-600);
}

.contact-detail div strong {
    display: block;
    color: var(--espresso-800);
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-detail div span {
    color: var(--espresso-400);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 400;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 48px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow-lg);
}

.form-group { margin-bottom: 24px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--espresso-700);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--parchment-400);
    font-family: var(--font-body);
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    color: var(--espresso-800);
    font-weight: 400;
    border-radius: var(--radius-md);
    letter-spacing: 0.01em;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--cream-600);
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--caramel-400);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 4px rgba(200, 149, 108, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.flash-success {
    background: rgba(90, 122, 82, 0.1);
    color: var(--forest);
    padding: 16px 22px;
    margin-bottom: 28px;
    border-left: 3px solid var(--forest);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    backdrop-filter: blur(8px);
}

.flash-error {
    background: rgba(160, 80, 80, 0.1);
    color: var(--danger);
    padding: 16px 22px;
    margin-bottom: 28px;
    border-left: 3px solid var(--danger);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    backdrop-filter: blur(8px);
}

/* ===== PRODUCTS PAGE ===== */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--parchment-300);
}

.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 1.5px solid var(--parchment-400);
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    cursor: pointer;
    font-weight: 500;
    font-family: var(--font-body);
    font-size: 0.78rem;
    transition: var(--transition-base);
    color: var(--espresso-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--caramel-500);
    color: var(--parchment-50);
    border-color: var(--caramel-400);
    box-shadow: 0 4px 16px rgba(166, 124, 82, 0.25);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    background:
        linear-gradient(180deg, var(--parchment-200) 0%, var(--parchment-100) 100%);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--parchment-300);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 149, 108, 0.10) 0%, transparent 60%);
    border-radius: 50%;
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    letter-spacing: -0.02em;
    color: var(--espresso-900);
}

.about-hero p {
    font-size: 1.1rem;
    color: var(--espresso-400);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
    position: relative;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--caramel-500), var(--caramel-300), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: var(--caramel-400);
    border-radius: 50%;
    border: 3px solid var(--parchment-50);
    box-shadow: 0 0 0 3px var(--caramel-500);
}

.timeline-item h3 {
    font-family: var(--font-display);
    color: var(--espresso-800);
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.timeline-item p {
    color: var(--espresso-400);
    line-height: 1.75;
    font-weight: 400;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--espresso-900);
    color: var(--cream-600);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--caramel-500), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--cream-50);
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 24px;
    font-weight: 300;
    color: var(--cream-600);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-base);
    color: var(--cream-500);
    border-radius: var(--radius-sm);
}

.footer-social a:hover {
    background: var(--caramel-500);
    color: var(--parchment-50);
    border-color: var(--caramel-400);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(166, 124, 82, 0.3);
}

.footer h4 {
    color: var(--cream-100);
    margin-bottom: 22px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    opacity: 0.7;
    transition: var(--transition-base);
    font-size: 0.88rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--cream-400);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--caramel-300);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--cream-600);
    letter-spacing: 0.05em;
}

/* ===== CTA SECTIONS ===== */
section[style*="coffee-dark"] {
    background:
        linear-gradient(135deg, var(--espresso-700) 0%, var(--espresso-600) 100%) !important;
    position: relative;
    overflow: hidden;
}

section[style*="coffee-dark"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(200, 149, 108, 0.08) 0%, transparent 60%);
}

section[style*="coffee-dark"] .container {
    position: relative;
    z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-inner,
    .origin-grid,
    .contact-grid { grid-template-columns: 1fr; }

    .hero-content h1 { font-size: 2.6rem; }
    .hero-visual .coffee-circle { width: 260px; height: 260px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav { display: none; }
    .section-header h2 { font-size: 2rem; }
    .hero { padding: 100px 0 60px; }
    .hero-badges { flex-direction: column; gap: 12px; }
    .products-grid { grid-template-columns: 1fr; }
    .origin-stats { grid-template-columns: 1fr; }
    .journey-grid { grid-template-columns: repeat(2, 1fr); }
    .journey-grid::before { display: none; }
    .step-number { font-size: 2.6rem; }
}

@media (max-width: 600px) {
    .hero-content h1 { font-size: 2rem; }
    .section-header h2 { font-size: 1.7rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }
    .about-hero h1 { font-size: 2rem; }
    .section { padding: 80px 0; }
    .hero-visual .coffee-circle { width: 220px; height: 220px; }
    .journey-grid { grid-template-columns: 1fr; }
    .journey-card { padding: 28px 22px; }
    .step-number { font-size: 2.2rem; }
    .journey-subtitle { font-size: 1.15rem; }
}

/* ===== UTILITY ANIMATIONS ===== */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(200, 149, 108, 0.1); }
    50% { box-shadow: 0 0 40px rgba(200, 149, 108, 0.15); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}