/* =========================================================
   Gold Keçi Süt Tozu — styles.css
   Doğal/organik palet, responsive tek sayfa
   ========================================================= */

:root {
    --cream: #F8F4E9;
    --cream-deep: #EFE7D2;
    --green: #7A9D54;
    --green-deep: #5C7A3E;
    --earth: #3F5921;
    --gold: #C9A24A;
    --gold-deep: #A8862F;
    --text: #2B2B2B;
    --muted: #6B6B6B;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 6px rgba(63, 89, 33, 0.08);
    --shadow-md: 0 8px 24px rgba(63, 89, 33, 0.12);
    --radius: 14px;
    --radius-sm: 8px;
    --container: 1180px;
    --header-h: 175px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--earth);
    line-height: 1.2;
    margin: 0 0 0.6em;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a {
    color: var(--green-deep);
    text-decoration: none;
    transition: color .2s;
}
a:hover { color: var(--earth); }

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .9rem 1.6rem;
    border-radius: 999px;
    border: 2px solid transparent;
    font-weight: 600;
    font-size: .98rem;
    text-decoration: none;
    transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    background: var(--gold-deep);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--earth);
    border-color: var(--earth);
}
.btn-ghost:hover {
    background: var(--earth);
    color: var(--white);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ---------- Header / Navbar ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 244, 233, 0.92);
    backdrop-filter: saturate(140%) blur(8px);
    -webkit-backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid rgba(63, 89, 33, 0.08);
}

.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--earth);
    text-decoration: none;
    line-height: 0;
    align-self: flex-start;
}
.brand-img {
    height: 220px;
    width: auto;
    display: block;
    transition: transform .2s ease;
}
.brand:hover .brand-img {
    transform: scale(1.04);
}

.primary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: .25rem;
}
.primary-nav a {
    display: inline-block;
    padding: .55rem .95rem;
    border-radius: 999px;
    color: var(--text);
    font-weight: 500;
    font-size: .95rem;
    transition: background .15s ease, color .15s ease;
}
.primary-nav a:hover { background: var(--cream-deep); color: var(--earth); }
.primary-nav a.active {
    background: var(--earth);
    color: var(--white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--earth);
    border-radius: 999px;
    padding: 2px;
    background: transparent;
    flex-shrink: 0;
}
.lang-btn {
    background: transparent;
    border: none;
    padding: .35rem .75rem;
    font: inherit;
    font-size: .82rem;
    font-weight: 700;
    color: var(--earth);
    border-radius: 999px;
    cursor: pointer;
    line-height: 1;
    letter-spacing: .5px;
    transition: background .15s ease, color .15s ease;
}
.lang-btn:hover {
    background: var(--cream-deep);
}
.lang-btn.active {
    background: var(--earth);
    color: var(--cream);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--earth);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    background: var(--white);
    color: var(--earth);
    border: 1px solid rgba(63, 89, 33, 0.18);
    padding: .35rem .8rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .4px;
    margin-bottom: 1.25rem;
}

.hero-text .lead {
    font-size: 1.1rem;
    color: var(--muted);
    margin: 0 0 1.8rem;
    max-width: 560px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 2.5rem;
}

.hero-badges {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.hero-badges li {
    display: flex;
    flex-direction: column;
}
.hero-badges strong {
    font-family: Georgia, serif;
    font-size: 2rem;
    color: var(--gold-deep);
    line-height: 1;
}
.hero-badges span {
    font-size: .85rem;
    color: var(--muted);
    margin-top: .25rem;
}

.hero-art {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-photo {
    position: relative;
    width: min(440px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md), 0 0 0 12px rgba(255, 255, 255, 0.55);
    isolation: isolate;
}
.hero-photo::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(63, 89, 33, 0.22);
    z-index: -1;
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-photo-badge {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--earth);
    padding: .55rem 1rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .3px;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}
.hero-photo-badge svg { width: 18px; height: 18px; color: var(--green-deep); }

/* ---------- Sections ---------- */
.section {
    padding: 5rem 0;
}
.section-alt {
    background: var(--cream-deep);
}

.section-tag {
    display: inline-block;
    color: var(--green-deep);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .8rem;
    margin-bottom: .6rem;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.section-lead {
    color: var(--muted);
    font-size: 1.05rem;
}

/* Two-column layout (about, order) */
.two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}
.two-col-form {
    grid-template-columns: 1fr 1.1fr;
}

/* ---------- About section ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3.5rem;
}
.about-photo {
    position: relative;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 5;
    isolation: isolate;
}
.about-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(31, 44, 16, 0.45) 100%);
    pointer-events: none;
}
.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}
.about-photo:hover img {
    transform: scale(1.05);
}
.about-photo-caption {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    right: 1.2rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: .85rem 1.1rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 6px 18px rgba(31, 44, 16, 0.22);
    width: fit-content;
    max-width: calc(100% - 2.4rem);
}
.about-photo-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: var(--green);
    color: var(--white);
    border-radius: 10px;
}
.about-photo-icon svg { width: 22px; height: 22px; }
.about-photo-text { display: inline-flex; flex-direction: column; line-height: 1.2; }
.about-photo-text strong {
    color: var(--earth);
    font-family: Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.about-photo-text span {
    color: var(--muted);
    font-size: .85rem;
}

.about-text { display: flex; flex-direction: column; }
.about-text .section-tag { margin-bottom: .6rem; }
.about-text h2 { margin-bottom: 1.4rem; }
.about-text .about-lead {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.1rem;
    position: relative;
    padding-left: 1.1rem;
    border-left: 3px solid var(--gold);
}
.about-text p {
    color: var(--muted);
    line-height: 1.7;
}
.about-cta {
    margin-top: 1.4rem;
    align-self: flex-start;
}

/* ---------- Banner photo (production section) ---------- */
.banner-photo {
    margin: 0 0 3rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    aspect-ratio: 24 / 9;
}
.banner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.banner-photo figcaption {
    position: absolute;
    left: 1.4rem;
    bottom: 1.2rem;
    background: rgba(63, 89, 33, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--cream);
    padding: .55rem 1rem;
    border-radius: 999px;
    font-size: .9rem;
    font-style: normal;
}

/* ---------- Feature (Çiftliğimizden) ---------- */
.feature-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
}
.feature-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.feature-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(31, 44, 16, 0.78) 0%, rgba(63, 89, 33, 0.55) 60%, rgba(63, 89, 33, 0.15) 100%);
    z-index: -1;
}
.feature-inner {
    display: flex;
    justify-content: flex-start;
}
.feature-card {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    padding: 2.4rem 2.2rem;
    border-radius: var(--radius);
    max-width: 480px;
    box-shadow: var(--shadow-md);
}
.feature-card h2 {
    color: var(--earth);
    margin-bottom: .8rem;
}
.feature-card p {
    color: var(--muted);
    margin-bottom: 1.4rem;
}

/* ---------- Stat list (about) ---------- */
.stat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.stat-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.6rem 1.4rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(63, 89, 33, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.stat-list li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.stat-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--cream-deep), var(--cream));
    border-radius: 14px;
    color: var(--earth);
    display: grid;
    place-items: center;
}
.stat-icon svg { width: 28px; height: 28px; }
.stat-body { display: flex; flex-direction: column; gap: 4px; }
.stat-list strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 1.1rem;
    color: var(--earth);
    line-height: 1.2;
}
.stat-list span {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.5;
}

/* ---------- Process ---------- */
.process-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.process-step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.8rem 1.4rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform .2s, box-shadow .2s;
}
.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.step-num {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-family: Georgia, serif;
    font-size: 1.5rem;
    color: var(--gold);
    opacity: .7;
}
.step-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: var(--cream);
    border-radius: 14px;
    color: var(--earth);
    margin-bottom: 1rem;
}
.step-icon svg { width: 30px; height: 30px; }
.process-step h3 {
    color: var(--earth);
    margin-bottom: .4rem;
}
.process-step p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
}

/* ---------- Products ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.8rem 1.4rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
    border: 1px solid rgba(63, 89, 33, 0.06);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.product-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--cream-deep), var(--cream));
    border-radius: 16px;
    color: var(--earth);
    margin-bottom: 1.1rem;
}
.product-icon svg { width: 32px; height: 32px; }
.product-card h3 {
    margin-bottom: .4rem;
}
.product-card p {
    color: var(--muted);
    font-size: .95rem;
    flex-grow: 1;
}
.product-meta {
    list-style: none;
    margin: 0 0 1.2rem;
    padding: .9rem 0 0;
    border-top: 1px dashed rgba(63, 89, 33, 0.18);
}
.product-meta li {
    font-size: .88rem;
    color: var(--earth);
    padding: .15rem 0;
}
.product-meta li:first-child {
    color: var(--gold-deep);
    font-weight: 600;
}
.product-order { width: 100%; }

/* ---------- Reasons ---------- */
.reason-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.reason {
    text-align: center;
    background: var(--white);
    padding: 2rem 1.4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.reason-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    background: var(--cream);
    color: var(--green-deep);
    border-radius: 50%;
}
.reason-icon svg { width: 32px; height: 32px; }
.reason h3 {
    color: var(--earth);
    font-size: 1.1rem;
    margin-bottom: .4rem;
}
.reason p {
    color: var(--muted);
    font-size: .92rem;
    margin: 0;
}

/* ---------- Order Form ---------- */
.info-list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}
.info-list li {
    padding: .65rem 0;
    border-bottom: 1px dashed rgba(63, 89, 33, 0.18);
    color: var(--muted);
    font-size: .96rem;
}
.info-list li strong {
    color: var(--earth);
    margin-right: .3rem;
}

.order-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 1rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.field label {
    font-weight: 600;
    color: var(--earth);
    font-size: .92rem;
}
.req { color: #C44747; }

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: .75rem .9rem;
    font: inherit;
    font-size: .98rem;
    color: var(--text);
    background: var(--cream);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    transition: border-color .15s, background .15s, box-shadow .15s;
    font-family: inherit;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(122, 157, 84, 0.16);
}
.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
    border-color: #C44747;
}

.form-note {
    margin: 0;
    padding: .8rem 1rem;
    background: rgba(122, 157, 84, 0.14);
    color: var(--earth);
    border-radius: var(--radius-sm);
    font-size: .92rem;
    text-align: center;
}
.form-note.error {
    background: rgba(196, 71, 71, 0.14);
    color: #8B2E2E;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.8rem 1.4rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .4rem;
    color: var(--text);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
a.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.contact-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--cream-deep);
    border-radius: 12px;
    color: var(--earth);
    margin-bottom: .6rem;
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-card strong {
    color: var(--earth);
    font-family: Georgia, serif;
    font-size: 1.05rem;
}
.contact-card span {
    color: var(--muted);
    font-size: .94rem;
    word-break: break-word;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--earth);
    color: var(--cream);
    padding: 3rem 0 2rem;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.footer-logo-img {
    height: 269px;
    width: auto;
    display: block;
    background: var(--cream);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.26);
}
.footer-tagline {
    font-size: .95rem;
    color: var(--cream);
    opacity: .85;
    line-height: 1.5;
    max-width: 260px;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: flex-end;
}
.footer-nav a {
    color: var(--cream);
    opacity: .85;
    font-size: .95rem;
}
.footer-nav a:hover { opacity: 1; color: var(--gold); }

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin: 1.5rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: .88rem;
    opacity: .78;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(63, 89, 33, 0.06);
    overflow: hidden;
}
.faq-item summary {
    padding: 1.2rem 1.4rem;
    font-family: Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--earth);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
    font-family: sans-serif;
    transition: transform .2s;
    line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
    padding: 0 1.4rem 1.2rem;
    color: var(--muted);
    line-height: 1.7;
    font-size: .96rem;
}
.faq-answer p { margin: 0; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
    .hero-inner,
    .two-col,
    .two-col-form,
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-art { order: -1; }
    .hero-photo { width: min(320px, 75%); }
    .about-photo { aspect-ratio: 16 / 11; max-width: 600px; margin: 0 auto; }

    .feature-section { padding: 4.5rem 0; }
    .feature-card { max-width: 100%; }
    .banner-photo { aspect-ratio: 16 / 9; margin-bottom: 2rem; }
    .banner-photo figcaption { left: .8rem; bottom: .8rem; font-size: .82rem; padding: .4rem .8rem; }

    .process-grid,
    .product-grid,
    .reason-grid,
    .contact-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { justify-content: center; }
    .footer-nav { justify-content: center; }
}

@media (max-width: 720px) {
    .nav-toggle { display: inline-flex; }

    .primary-nav {
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--cream);
        border-bottom: 1px solid rgba(63, 89, 33, 0.1);
        padding: .8rem 1.25rem 1.2rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }
    .primary-nav.open { max-height: 480px; }
    .primary-nav ul {
        flex-direction: column;
        gap: .15rem;
    }
    .primary-nav a {
        display: block;
        padding: .8rem 1rem;
    }

    .section { padding: 3.5rem 0; }
    .hero { padding: 2.5rem 0 3.5rem; }

    :root { --header-h: 100px; }
    .brand-img { height: 143px; }
    .footer-logo-img { height: 202px; }

    .field-row { grid-template-columns: 1fr; }
    .order-form { padding: 1.4rem; }

    .hero-badges { gap: 1.4rem; }
    .hero-badges strong { font-size: 1.6rem; }

    .hero-photo { width: min(300px, 80%); }
    .banner-photo { aspect-ratio: 16 / 10; }
    .banner-photo figcaption {
        left: .8rem;
        bottom: .8rem;
        font-size: .82rem;
        padding: .4rem .8rem;
    }
    .feature-section { padding: 4rem 0; }
    .feature-card {
        padding: 1.8rem 1.5rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .process-grid,
    .product-grid,
    .reason-grid,
    .contact-grid,
    .stat-list { grid-template-columns: 1fr; }
}

/* ---------- Recipes Page ---------- */
.recipes-hero {
    background: linear-gradient(135deg, var(--earth) 0%, var(--green-deep) 60%, var(--green) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.recipes-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1400&h=600&fit=crop&auto=format') center/cover no-repeat;
    opacity: 0.18;
}
.recipes-hero .container { position: relative; }
.recipes-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .5rem; }
.recipes-hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }

.recipe-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
    padding: 2.5rem 0 .5rem;
}
.filter-btn {
    background: var(--white);
    border: 2px solid rgba(63, 89, 33, 0.18);
    color: var(--text);
    padding: .55rem 1.2rem;
    border-radius: 999px;
    font: inherit;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}
.filter-btn:hover { border-color: var(--green); color: var(--earth); }
.filter-btn.active { background: var(--earth); color: var(--white); border-color: var(--earth); }

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
    padding: 2rem 0 4rem;
}
.recipe-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(63, 89, 33, 0.06);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}
.recipe-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.recipe-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.recipe-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.recipe-card:hover .recipe-card-img img { transform: scale(1.07); }
.recipe-cat-badge {
    position: absolute;
    top: .9rem;
    left: .9rem;
    padding: .3rem .75rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--white);
}
.recipe-cat-badge.kahvalti  { background: #E07B39; }
.recipe-cat-badge.tatli     { background: #C9A24A; }
.recipe-cat-badge.icecek    { background: #5C7A3E; }
.recipe-cat-badge.ana-yemek { background: #7A6039; }
.recipe-cat-badge.bebek     { background: #A87BB5; }
.recipe-cat-badge.sporcu    { background: #3F7A9D; }

.recipe-card-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31,44,16,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease;
}
.recipe-card:hover .recipe-card-img-overlay { opacity: 1; }
.recipe-card-img-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: .95rem;
    border: 2px solid rgba(255,255,255,.75);
    padding: .6rem 1.3rem;
    border-radius: 999px;
    letter-spacing: .3px;
}

.recipe-card-body {
    padding: 1.2rem 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.recipe-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: .7rem;
}
.recipe-card-meta span {
    font-size: .8rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .3rem;
}
.recipe-card-meta svg { width: 14px; height: 14px; flex-shrink: 0; }
.recipe-card h3 {
    font-size: 1.05rem;
    color: var(--earth);
    margin-bottom: .4rem;
    line-height: 1.3;
}
.recipe-card p {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

/* Recipe Modal */
.recipe-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 30, 10, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.recipe-modal-overlay.open { opacity: 1; pointer-events: all; }
.recipe-modal {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    box-shadow: 0 24px 64px rgba(0,0,0,.35);
    position: relative;
    transform: translateY(20px);
    transition: transform .25s ease;
}
.recipe-modal-overlay.open .recipe-modal { transform: translateY(0); }
.recipe-modal-img {
    position: sticky;
    top: 0;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    border-radius: var(--radius) 0 0 var(--radius);
}
.recipe-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.recipe-modal-content {
    padding: 2rem 2rem 2rem 1.8rem;
    overflow-y: auto;
}
.recipe-modal-close {
    position: absolute;
    top: .9rem;
    right: .9rem;
    width: 36px;
    height: 36px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
    color: var(--earth);
    z-index: 1;
    transition: background .15s, transform .15s;
}
.recipe-modal-close:hover { background: var(--cream-deep); transform: scale(1.1); }
.recipe-modal-content h2 { font-size: 1.5rem; margin-bottom: .3rem; }
.recipe-modal-content .recipe-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px dashed rgba(63,89,33,.18);
}
.recipe-modal-content .recipe-modal-meta span {
    font-size: .85rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .35rem;
}
.recipe-modal-content .recipe-modal-meta svg { width: 15px; height: 15px; color: var(--earth); }
.recipe-modal-content h4 {
    font-family: Georgia, serif;
    color: var(--earth);
    font-size: 1rem;
    margin: 1.2rem 0 .6rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.recipe-modal-content h4::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--gold);
    border-radius: 2px;
}
.ingredient-list {
    list-style: none;
    padding: 0;
    margin: 0 0 .5rem;
}
.ingredient-list li {
    padding: .4rem 0;
    font-size: .93rem;
    color: var(--text);
    border-bottom: 1px dashed rgba(63,89,33,.1);
    display: flex;
    align-items: baseline;
    gap: .5rem;
}
.ingredient-list li::before {
    content: "•";
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: steps;
}
.steps-list li {
    counter-increment: steps;
    padding: .6rem 0 .6rem 2.8rem;
    font-size: .93rem;
    color: var(--text);
    border-bottom: 1px dashed rgba(63,89,33,.1);
    position: relative;
    line-height: 1.55;
}
.steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: .55rem;
    width: 24px;
    height: 24px;
    background: var(--earth);
    color: var(--white);
    border-radius: 50%;
    font-size: .78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.recipe-tip {
    margin-top: 1rem;
    background: var(--cream);
    border-left: 3px solid var(--gold);
    padding: .75rem 1rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: .88rem;
    color: var(--earth);
}

@media (max-width: 980px) {
    .recipe-grid { grid-template-columns: repeat(2, 1fr); }
    .recipe-modal { grid-template-columns: 1fr; }
    .recipe-modal-img { min-height: 240px; border-radius: var(--radius) var(--radius) 0 0; height: 260px; position: static; }
}
@media (max-width: 480px) {
    .recipe-grid { grid-template-columns: 1fr; }
    .recipe-modal-content { padding: 1.4rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
    }
}
