/* ============================================================
   KOREVIR – PREMIUM BRAND EXPERIENCE
   ============================================================ */

:root {
    --ivory: #F7F3EC;
    --warm: #EFE7DC;
    --white: #FFFFFF;
    --text: #1D1D1D;
    --accent: #A67C52;
    --accent-light: #C49A6C;
    --accent-dark: #8A6540;
    --footer: #171717;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: var(--font-sans);
    background: var(--ivory);
    color: var(--text);
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    border-bottom: 2px solid rgba(166, 124, 82, 0.15);
    padding-bottom: 4px;
}

.highlight { color: var(--accent); }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(247, 243, 236, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    padding: 12px 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
}

.logo-svg { width: 40px; height: 40px; }
.logo-svg rect { stroke: var(--accent); stroke-width: 1.5; }
.logo-svg text { fill: var(--text); }
.logo-text { font-size: 22px; }

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

.header-nav a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.header-nav a:hover { color: var(--accent); }
.header-nav a.active { color: var(--accent); }

.btn-amazon {
    background: var(--text);
    color: var(--ivory) !important;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px !important;
    font-weight: 500 !important;
    transition: var(--transition);
    border: 1px solid var(--text);
}

.btn-amazon:hover {
    background: transparent;
    color: var(--text) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text);
    cursor: pointer;
    padding: 4px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--text);
    color: var(--ivory);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border: 1px solid var(--text);
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--text);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border: 1px solid rgba(29, 29, 29, 0.12);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-primary i, .btn-secondary i { margin-left: 6px; }

/* ===== HERO ===== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 40px;
    position: relative;
    background:
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
        linear-gradient(160deg, #F7F3EC 0%, #EFE7DC 50%, #E8DFD3 100%);
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(166, 124, 82, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(166, 124, 82, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content { max-width: 560px; }

.hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(166, 124, 82, 0.08);
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(166, 124, 82, 0.12);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 16px;
}

.hero-title-line { display: block; }
.hero-title .highlight { color: var(--accent); position: relative; }
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    opacity: 0.2;
    border-radius: 2px;
}

.hero-description {
    font-size: 17px;
    color: rgba(29, 29, 29, 0.7);
    max-width: 440px;
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-actions .btn-primary {
    background: var(--text);
    color: var(--ivory);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border: 1px solid var(--text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-actions .btn-primary i { transition: var(--transition); }
.hero-actions .btn-primary:hover i { transform: translateX(4px); }
.hero-actions .btn-primary:hover {
    background: transparent;
    color: var(--text);
    transform: translateY(-2px);
}

.hero-actions .btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border: 1px solid rgba(29, 29, 29, 0.12);
    cursor: pointer;
}

.hero-actions .btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust span {
    font-size: 12px;
    color: rgba(29, 29, 29, 0.5);
    font-weight: 300;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust span::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.5;
}

.hero-trust span:first-child::before { display: none; }

/* ===== HERO GÖRSEL ===== */
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-image-content { position: relative; width: 100%; max-width: 480px; }
.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #E8DFD3, #DDD4C8);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(166, 124, 82, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-image-placeholder span {
    font-size: 14px;
    font-weight: 300;
    color: rgba(29, 29, 29, 0.4);
    margin-top: 10px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.hero-image-placeholder i { position: relative; z-index: 1; }
.hero-image-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--text);
    color: var(--ivory);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    opacity: 0.8;
}

/* ===== CATEGORIES ===== */
.categories-section {
    padding: 30px 24px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.categories-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar { display: none; }

.category-pill {
    padding: 8px 24px;
    border: 1px solid rgba(29, 29, 29, 0.08);
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font-sans);
    color: rgba(29, 29, 29, 0.7);
    transition: var(--transition);
    white-space: nowrap;
}

.category-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.category-pill.active {
    background: var(--text);
    border-color: var(--text);
    color: var(--ivory);
}

/* ===== RECIPES – Görseller düzeltildi ===== */
.recipes-section {
    padding: 0 24px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
    margin-bottom: 24px;
    max-width: 600px;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(29, 29, 29, 0.3);
    font-size: 14px;
}

#search {
    width: 100%;
    padding: 14px 20px 14px 48px;
    font-size: 14px;
    font-weight: 300;
    border: 1px solid rgba(29, 29, 29, 0.06);
    border-radius: 50px;
    transition: var(--transition);
    outline: none;
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--text);
}

#search:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(166, 124, 82, 0.06);
}

.recipes-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.recipe-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1fr 1fr;
    cursor: pointer;
}

.recipe-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.recipe-item:nth-child(even) .recipe-item-image { order: 1; }
.recipe-item:nth-child(even) .recipe-item-content { order: 0; }

.recipe-item-image {
    width: 100%;
    height: 280px;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
    background: var(--warm);
    transition: transform 0.6s ease;
    border-radius: var(--radius) 0 0 var(--radius);
}

.recipe-item:hover .recipe-item-image {
    transform: scale(1.03);
}

.recipe-item-content {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recipe-item-content .category-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.recipe-item-content h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.1;
}

.recipe-item-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: rgba(29, 29, 29, 0.6);
    margin-bottom: 8px;
}

.recipe-item-meta span { display: flex; align-items: center; gap: 4px; }

.recipe-item-description {
    font-size: 14px;
    color: rgba(29, 29, 29, 0.7);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 14px;
}

.recipe-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(29, 29, 29, 0.04);
}

.view-recipe {
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.recipe-item:hover .view-recipe { color: var(--text); }

.amazon-tag {
    font-size: 11px;
    color: rgba(29, 29, 29, 0.5);
}

.amazon-tag a {
    color: var(--accent);
    font-weight: 500;
}

/* ===== MODAL – Görsel düzeltildi ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    z-index: 2000;
    overflow-y: auto;
    padding: 24px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    max-width: 720px;
    width: 100%;
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.35s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.96) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: rgba(29, 29, 29, 0.5);
    transition: var(--transition);
}

.modal-close:hover { color: var(--text); transform: rotate(90deg); }

.modal-body h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 4px;
}

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: rgba(29, 29, 29, 0.6);
    margin-bottom: 16px;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 20px;
    background: var(--warm);
}

.modal-body h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    margin: 24px 0 12px;
    color: var(--text);
}

.modal-body ul,
.modal-body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.modal-body li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: rgba(29, 29, 29, 0.85);
    font-weight: 300;
    font-size: 15px;
}

.chef-tip, .serving-suggestion {
    background: var(--ivory);
    padding: 16px 20px;
    border-radius: 8px;
    margin: 16px 0;
    border-left: 4px solid var(--accent);
}

.chef-tip strong, .serving-suggestion strong {
    color: var(--accent);
    font-weight: 500;
}

.modal-shop {
    margin-top: 24px;
    padding: 24px;
    background: var(--ivory);
    border-radius: 8px;
    text-align: center;
}

/* ===== CARE GUIDE ===== */
.care-section {
    padding: 60px 24px;
    background: var(--warm);
}

.care-container {
    max-width: 900px;
    margin: 0 auto;
}

.care-title {
    font-family: var(--font-serif);
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 8px;
}

.care-description {
    font-size: 16px;
    color: rgba(29, 29, 29, 0.7);
    font-weight: 300;
    max-width: 560px;
    margin-bottom: 36px;
}

.care-timeline {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.care-step {
    display: grid;
    grid-template-columns: 50px 50px 1fr;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.care-step:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(4px);
}

.care-step-number {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--accent);
    opacity: 0.4;
}

.care-step-icon {
    font-size: 24px;
    color: var(--accent);
}

.care-step-content h4 {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 2px;
}

.care-step-content p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(29, 29, 29, 0.75);
    font-weight: 300;
    max-width: 480px;
}

/* ===== WHY TEAK ===== */
.teak-section {
    padding: 60px 24px;
    background: var(--ivory);
    background-image:
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    border-top: 1px solid rgba(29, 29, 29, 0.04);
    border-bottom: 1px solid rgba(29, 29, 29, 0.04);
}

.teak-container {
    max-width: 1200px;
    margin: 0 auto;
}

.teak-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px;
}

.teak-header .section-label { margin-bottom: 8px; }

.teak-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 34px);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 8px;
}

.teak-title .highlight { color: var(--accent); }

.teak-subtitle {
    font-size: 16px;
    color: rgba(29, 29, 29, 0.7);
    font-weight: 300;
    line-height: 1.7;
}

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

.teak-feature {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.teak-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.teak-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    transition: var(--transition);
}

.teak-feature:hover .teak-feature-icon {
    background: var(--accent);
    color: var(--white);
}

.teak-feature-content h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
}

.teak-feature-content p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(29, 29, 29, 0.7);
    font-weight: 300;
    margin: 0;
}

/* ===== BRAND STORY ===== */
.story-section {
    padding: 60px 24px;
    background: var(--white);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 34px);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 12px;
}

.story-text p {
    color: rgba(29, 29, 29, 0.7);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 12px;
}

.story-text strong {
    color: var(--text);
    font-weight: 500;
}

.story-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--warm);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--accent);
}

.story-image-placeholder span {
    font-size: 14px;
    font-weight: 300;
    color: rgba(29, 29, 29, 0.5);
    margin-top: 8px;
}

/* ===== AMAZON CTA ===== */
.amazon-cta {
    padding: 60px 24px;
    background: var(--text);
    text-align: center;
}

.amazon-cta-container h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 34px);
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 8px;
}

.amazon-cta-container .highlight { color: var(--accent); }

.amazon-cta-container p {
    color: rgba(247, 243, 236, 0.7);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
}

.amazon-cta-container .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text);
}

.amazon-cta-container .btn-primary:hover {
    background: transparent;
    color: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--footer);
    padding: 40px 24px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--ivory);
    letter-spacing: 1px;
}

.footer-description {
    font-size: 13px;
    color: rgba(247, 243, 236, 0.5);
    font-weight: 300;
    max-width: 280px;
    margin: 6px 0 12px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(247, 243, 236, 0.3);
    font-weight: 300;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    color: rgba(247, 243, 236, 0.6);
    font-size: 13px;
    font-weight: 300;
    transition: var(--transition);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .teak-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .header-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 16px 20px;
        gap: 12px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(0, 0, 0, 0.04);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: var(--shadow);
    }
    .header-nav.active { display: flex; }
    .header-inner { flex-wrap: wrap; position: relative; }

    .hero {
        min-height: auto;
        padding: 100px 20px 32px;
    }
    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-content { max-width: 100%; }
    .hero-title { font-size: 32px; }
    .hero-description { font-size: 15px; max-width: 100%; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { width: 100%; text-align: center; justify-content: center; }
    .hero-trust { gap: 14px; justify-content: center; }
    .hero-image-placeholder { aspect-ratio: 4/3; font-size: 32px; }
    .hero-image-badge { bottom: 10px; right: 10px; font-size: 9px; padding: 3px 10px; }
    .hero::before { width: 250px; height: 250px; top: -10%; right: -20%; }
    .hero::after { width: 150px; height: 150px; bottom: -10%; left: -10%; }

    .recipe-item {
        grid-template-columns: 1fr;
        cursor: pointer;
    }
    .recipe-item:nth-child(even) .recipe-item-image { order: 0; }
    .recipe-item:nth-child(even) .recipe-item-content { order: 1; }
    .recipe-item-image {
        height: 220px;
        min-height: 220px;
        border-radius: var(--radius) var(--radius) 0 0;
    }
    .recipe-item-content { padding: 24px 20px; }
    .recipe-item-content h3 { font-size: 20px; }

    .care-step { grid-template-columns: 36px 36px 1fr; gap: 12px; padding: 14px 16px; }
    .care-step-number { font-size: 18px; }
    .care-step-icon { font-size: 20px; }

    .teak-section { padding: 40px 16px; }
    .teak-grid { grid-template-columns: 1fr; gap: 16px; }
    .teak-feature { padding: 20px 16px; flex-direction: column; align-items: center; text-align: center; }
    .teak-feature-icon { width: 48px; height: 48px; font-size: 22px; }

    .story-container { grid-template-columns: 1fr; gap: 28px; }

    .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .footer-description { max-width: 100%; margin-left: auto; margin-right: auto; }
    .footer-links { align-items: center; }

    .modal-content { padding: 24px 20px; margin: 8px; }
    .modal-body h2 { font-size: 22px; }
    .modal-image { height: 200px; }

    .categories-section { padding: 24px 16px 12px; }
    .category-pill { padding: 6px 18px; font-size: 12px; }

    .recipes-section { padding: 0 16px 40px; }
    .search-wrapper { max-width: 100%; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .hero-badge { font-size: 10px; padding: 3px 12px; }
    .hero-description { font-size: 14px; }
    .hero-trust span { font-size: 11px; }
    .hero-image-placeholder { font-size: 28px; }
    .hero-image-placeholder span { font-size: 12px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { font-size: 13px; padding: 10px 20px; }

    .recipe-item-image { height: 180px; min-height: 180px; }
    .recipe-item-content h3 { font-size: 18px; }
    .recipe-item-meta { font-size: 11px; gap: 12px; }

    .teak-title { font-size: 24px; }
    .teak-feature-content h4 { font-size: 16px; }
    .teak-feature-content p { font-size: 12px; }

    .care-title { font-size: 22px; }
    .care-step { grid-template-columns: 1fr; text-align: center; padding: 16px; gap: 4px; }
    .care-step-number { font-size: 16px; }
    .care-step-icon { font-size: 20px; }
    .care-step-content p { max-width: 100%; }

    .modal-content { padding: 14px; }
    .modal-body h2 { font-size: 18px; }
    .modal-image { height: 140px; }

    .logo-text { font-size: 18px; }
    .logo-svg { width: 32px; height: 32px; }
}
