/* ============================================
   DESIGN ANALYSIS
   Business: Artisanal Japanese Tea & Ceramics
   Palette: Matcha green, warm cream, charcoal, soft gold
   Typography: Cormorant Garamond (serif headings), Source Sans 3 (body)
   Aesthetic: Traditional Japanese elegance, wabi-sabi, washi texture
   ============================================ */

:root {
    --primary: #5B7C5B;
    --primary-dark: #4A6B4A;
    --primary-light: #E8EFE8;
    --secondary: #2D2D2D;
    --accent: #C4A87D;
    --accent-dark: #A8905F;
    --accent-light: #F0E6D6;
    --text: #3D3D3D;
    --text-light: #6B6B6B;
    --bg: #FDFCFA;
    --bg-alt: #F5F0E8;
    --bg-warm: #FAF7F2;
    --border: #E0D8CC;
    --cream: #F5F0E8;
    --sage: #8FA88B;
    --charcoal: #2D2D2D;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 45, 45, 0.08);
    --shadow-lg: 0 8px 40px rgba(45, 45, 45, 0.12);
    --radius: 4px;
    --radius-lg: 8px;
    --transition: all 0.3s ease;
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', 'Segoe UI', Roboto, sans-serif;
}

/* ============================================
   BASE STYLES
   ============================================ */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 500;
    line-height: 1.2;
}

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

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background-color: var(--primary-light);
    color: var(--secondary);
}

/* ============================================
   WASHI PAPER TEXTURE BACKGROUND
   ============================================ */

.bg-warm {
    background-color: var(--bg-alt);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' 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.03'/%3E%3C/svg%3E");
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(253, 252, 250, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.6rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.navbar-brand:hover {
    color: var(--primary);
}

.brand-logo {
    color: var(--primary);
    flex-shrink: 0;
}

.brand-name {
    white-space: nowrap;
}

.nav-link {
    color: var(--text);
    font-size: 0.925rem;
    font-weight: 400;
    padding: 0.5rem 1rem;
    position: relative;
    letter-spacing: 0.03em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1.5px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.btn-nav {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
}

.navbar-toggler {
    border: 1px solid var(--border);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px var(--primary-light);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    padding: 0.65rem 1.75rem;
    transition: var(--transition);
    min-height: 44px;
    min-width: 44px;
}

.btn-accent:hover,
.btn-accent:focus {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    border-width: 1.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    min-height: 44px;
    min-width: 44px;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    padding: 0.5rem 0;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition);
    min-height: 44px;
}

.btn-text:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-parallax {
    position: absolute;
    inset: -20% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(45, 45, 45, 0.3) 0%,
        rgba(45, 45, 45, 0.55) 60%,
        rgba(45, 45, 45, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 0 4rem;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 540px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-padding {
    padding: 5rem 0;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-text {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.rounded-subtle {
    border-radius: var(--radius-lg);
}

.philosophy-image-wrapper {
    position: relative;
}

.philosophy-image-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ============================================
   PAGE HERO (Interior Pages)
   ============================================ */

.page-hero {
    padding: 8rem 0 3rem;
    background-color: var(--bg-alt);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' 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.03'/%3E%3C/svg%3E");
}

.page-hero-sm {
    padding: 7rem 0 2.5rem;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-artisan {
    background: var(--primary);
}

.badge-gift {
    background: var(--sage);
}

.product-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-region {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
}

/* ============================================
   SEASONAL BANNER
   ============================================ */

.seasonal-banner {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.seasonal-parallax {
    position: absolute;
    inset: -20% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.seasonal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(45, 45, 45, 0.75) 0%,
        rgba(45, 45, 45, 0.4) 50%,
        rgba(45, 45, 45, 0.1) 100%
    );
}

.seasonal-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.seasonal-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.seasonal-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ============================================
   TEA PAIRING GUIDE
   ============================================ */

.pairing-guide {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.pairing-controls {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.pairing-heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 1.25rem;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.slider-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
}

.slider-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    min-width: 2rem;
    text-align: right;
}

.form-range::-webkit-slider-thumb {
    background: var(--primary);
}

.form-range::-moz-range-thumb {
    background: var(--primary);
}

.form-range::-webkit-slider-runnable-track {
    background: var(--border);
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px var(--primary-light);
}

.slider-hints {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-light);
}

.occasion-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.occasion-btn {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    min-height: 44px;
}

.occasion-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.occasion-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pairing-result {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ensemble-view {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.ensemble-item {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ensemble-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.ensemble-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ensemble-details {
    padding: 1rem;
}

.ensemble-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.ensemble-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.ensemble-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.ensemble-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.ensemble-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ensemble-plus {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 600;
}

.ensemble-cta {
    text-align: center;
}

.ensemble-savings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.original-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.bundle-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.discount-badge {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.ensemble-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: flex;
    gap: 0.15rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
    flex: 1;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-author strong {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--secondary);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-parallax {
    position: absolute;
    inset: -20% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 45, 45, 0.65);
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SHOP FILTERS
   ============================================ */

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    min-height: 44px;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ============================================
   ARTISAN CARDS
   ============================================ */

.artisan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.artisan-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.artisan-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.artisan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artisan-card:hover .artisan-image img {
    transform: scale(1.03);
}

.artisan-body {
    padding: 1.5rem;
}

.artisan-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.artisan-role {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

/* ============================================
   VALUES CARDS
   ============================================ */

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.value-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

/* ============================================
   STATS
   ============================================ */

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ============================================
   INQUIRY CARDS
   ============================================ */

.inquiry-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    border-top: 3px solid var(--primary);
}

.inquiry-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.inquiry-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.inquiry-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

/* ============================================
   CONTACT INFO
   ============================================ */

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--text);
}

.contact-info-item a:hover {
    color: var(--primary);
}

.alert-success-custom {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--primary-light);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.alert-icon {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* ============================================
   JOURNAL CARDS
   ============================================ */

.journal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.journal-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.journal-featured {
    display: flex;
    flex-direction: row;
}

.journal-featured .journal-card-image {
    flex: 0 0 50%;
    min-height: 300px;
}

.journal-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.journal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journal-card:hover .journal-card-image img {
    transform: scale(1.05);
}

.journal-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.journal-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.journal-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: block;
}

.journal-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.journal-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.process-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 1rem;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

/* ============================================
   FORMS
   ============================================ */

.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    transition: var(--transition);
    min-height: 48px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 0.35rem;
}

textarea.form-control {
    min-height: 120px;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background-color: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand .brand-logo {
    color: var(--accent);
}

.footer-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    min-width: 44px;
    min-height: 44px;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
    min-height: 32px;
    line-height: 32px;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact i {
    color: var(--accent);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ============================================
   COOKIE CONSENT
   ============================================ */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-consent-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.cookie-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 991.98px) {
    .section-padding {
        padding: 3.5rem 0;
    }

    .hero-section {
        min-height: 80vh;
    }

    .hero-content {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .seasonal-banner {
        min-height: 50vh;
    }

    .pairing-guide {
        padding: 1.5rem;
    }

    .navbar-collapse {
        background: rgba(253, 252, 250, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .nav-link::after {
        display: none;
    }

    .btn-nav {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }

    .ensemble-view {
        flex-direction: column;
    }

    .ensemble-divider {
        padding: 0.5rem 0;
    }

    .journal-featured {
        flex-direction: column;
    }

    .journal-featured .journal-card-image {
        min-height: 200px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-content {
        padding: 5.5rem 0 2.5rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .page-hero {
        padding: 6.5rem 0 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .philosophy-image-wrapper::before {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }

    .stat-number {
        font-size: 2.25rem;
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: 16px;
    }

    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .product-card-body {
        padding: 1rem;
    }

    .pairing-guide {
        padding: 1rem;
    }

    .pairing-controls,
    .pairing-result {
        padding: 1.25rem;
    }

    .occasion-toggles {
        gap: 0.35rem;
    }

    .occasion-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
}
