/* ════════════════════════════════════════════════════════════
   FOLIO TEMPLATE v1 - PRODUCTION
   Editorial travel magazine (Kinfolk / Cereal Magazine vibe)
   Cream #fafaf7 + terracotta #c8623d + Fraunces serif
   Alternating editorial layout, Roman numerals, sade
   Class prefix: .fl-
   ════════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    color: #2a1f17;
    background: #fafaf7;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

body.fl-nav-active { overflow: hidden; }
main { flex: 1; }

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}
a:hover { color: var(--primary); }
a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
    -webkit-appearance: none;
    appearance: none;
}
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

::selection { background: var(--primary); color: #fafaf7; }

.fl-skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    padding: 12px 20px;
    background: #2a1f17;
    color: #fafaf7;
    z-index: 10000;
    font-weight: 500;
}
.fl-skip-link:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ─── CONTAINER ─── */
.fl-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}
.fl-container-narrow {
    max-width: 620px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ════════════════════════════════════════════════════════════
   HEADER — Sade, çok bol nefes
   ════════════════════════════════════════════════════════════ */
.fl-header {
    background: #fafaf7;
    padding: 28px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e8e0d3;
    transition: padding 0.3s, background 0.3s;
}
.fl-header-scrolled {
    padding: 18px 0;
    background: rgba(250, 250, 247, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.fl-header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.fl-header-meta {
    font-family: var(--font-body);
    font-size: 10.5px;
    color: #8b7d6f;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}
.fl-header-meta-right {
    text-align: right;
}

/* Logo */
.fl-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    z-index: 102;
    color: #2a1f17;
    justify-self: center;
}
.fl-logo:hover { color: var(--primary); }
.fl-logo img { height: 36px; width: auto; }

.fl-logo-mark {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}
.fl-logo:hover .fl-logo-mark { transform: rotate(-5deg); }

.fl-logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: inherit;
    letter-spacing: -0.01em;
    line-height: 1;
    font-style: italic;
}

/* Nav — bottom strip */
.fl-nav-wrap {
    background: #fafaf7;
    border-bottom: 1px solid #e8e0d3;
    padding: 0;
}
.fl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.fl-nav-link {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: #8b7d6f;
    padding: 14px 22px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.25s ease;
    white-space: nowrap;
    position: relative;
}
.fl-nav-link:hover {
    color: var(--primary);
}
.fl-nav-link::after {
    content: '·';
    position: absolute;
    right: 0;
    color: #d8cebd;
    font-size: 14px;
    line-height: 1;
}
.fl-nav-link:last-child::after { display: none; }

.fl-nav-close { display: none; }

.fl-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
}

.fl-cta-call {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: #2a1f17;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: none;
    border: none;
    border-bottom: 1px solid #2a1f17;
    padding: 4px 2px;
    transition: all 0.2s;
    cursor: pointer;
}
.fl-cta-call:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.fl-cta-call.fl-revealed {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.fl-cta-icon { display: none; }

.fl-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    z-index: 102;
}
.fl-mobile-toggle span {
    width: 22px;
    height: 1px;
    background: #2a1f17;
    transition: all 0.3s ease;
}
.fl-mobile-toggle.fl-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.fl-mobile-toggle.fl-active span:nth-child(2) { opacity: 0; }
.fl-mobile-toggle.fl-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.fl-nav-backdrop { display: none; }

/* ════════════════════════════════════════════════════════════
   HERO — Magazine cover style (sade, eyebrow + dev serif)
   ════════════════════════════════════════════════════════════ */
.fl-hero {
    padding: 88px 0 64px;
    text-align: center;
}
.fl-hero-inner {
    max-width: 820px;
    margin: 0 auto;
}

.fl-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.fl-hero-eyebrow::before,
.fl-hero-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--primary);
}

.fl-hero-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 6.5vw, 76px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.022em;
    color: #2a1f17;
    margin-bottom: 24px;
}
.fl-hero-title em {
    font-style: italic;
    color: var(--primary);
    font-weight: 400;
}

.fl-hero-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(16px, 1.9vw, 19px);
    color: #5a4838;
    line-height: 1.55;
    margin: 0 auto 36px;
    max-width: 520px;
}

.fl-hero-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--primary);
    margin: 0 auto 24px;
}

.fl-hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.fl-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 600;
    color: #2a1f17;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 4px 0;
    border-bottom: 1px solid #2a1f17;
    transition: all 0.25s;
}
.fl-link-arrow:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
    gap: 14px;
}
.fl-link-arrow svg {
    width: 12px;
    height: 12px;
    transition: transform 0.25s;
}
.fl-link-arrow:hover svg { transform: translateX(3px); }

/* ════════════════════════════════════════════════════════════
   MAIN
   ════════════════════════════════════════════════════════════ */
.fl-main {
    padding: 56px 0 96px;
}

.fl-section-head {
    text-align: center;
    margin-bottom: 64px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e8e0d3;
    position: relative;
}
.fl-section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.fl-section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    color: #2a1f17;
    letter-spacing: -0.015em;
    line-height: 1.15;
}
.fl-section-title em {
    font-style: italic;
    color: var(--primary);
}

/* ════════════════════════════════════════════════════════════
   POSTS — Editorial alternating layout (zigzag)
   ════════════════════════════════════════════════════════════ */
.fl-posts {
    display: flex;
    flex-direction: column;
    gap: 88px;
}

.fl-post-entry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
/* Çift sayılı: resim sağda */
.fl-post-entry:nth-child(even) .fl-post-image-wrap {
    order: 2;
}
.fl-post-entry:nth-child(even) .fl-post-text {
    order: 1;
}

.fl-post-image-wrap {
    position: relative;
}
.fl-post-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #e8e0d3;
    position: relative;
}
.fl-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.4s;
    filter: brightness(0.97);
}
.fl-post-entry:hover .fl-post-image img {
    transform: scale(1.04);
    filter: brightness(1);
}
.fl-post-image-placeholder {
    background: linear-gradient(135deg, #c8623d, #2a1f17);
    display: flex;
    align-items: center;
    justify-content: center;
}
.fl-placeholder-letter {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 90px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
}

.fl-post-caption {
    margin-top: 14px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 12.5px;
    color: #8b7d6f;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.fl-post-text {
    padding: 16px 0;
}

.fl-post-number {
    display: inline-block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}
.fl-post-number::after {
    content: ' —';
    color: var(--primary);
}

.fl-post-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--primary);
}

.fl-post-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.018em;
    color: #2a1f17;
    margin-bottom: 18px;
}
.fl-post-title a {
    color: inherit;
    transition: color 0.25s;
}
.fl-post-title a:hover { color: var(--primary); }

.fl-post-excerpt {
    font-family: var(--font-display);
    font-size: 16px;
    color: #5a4838;
    line-height: 1.7;
    margin-bottom: 24px;
}

.fl-post-meta {
    font-family: var(--font-body);
    font-size: 11px;
    color: #8b7d6f;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 500;
}
.fl-post-meta strong {
    color: #2a1f17;
    font-weight: 600;
}
.fl-post-meta-sep {
    margin: 0 8px;
    color: #c0b39c;
}

.fl-post-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15px;
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
    transition: gap 0.25s;
}
.fl-post-cta:hover { gap: 14px; color: var(--primary); }
.fl-post-cta svg {
    width: 13px;
    height: 13px;
    transition: transform 0.25s;
}
.fl-post-cta:hover svg { transform: translateX(3px); }

/* ─── PAGINATION ─── */
.fl-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid #e8e0d3;
    flex-wrap: wrap;
}
.fl-pag-btn {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: #2a1f17;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 2px;
    border-bottom: 1px solid #2a1f17;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.fl-pag-btn:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
    gap: 12px;
}
.fl-pag-btn svg { width: 11px; height: 11px; }
.fl-pag-info {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: #8b7d6f;
}

.fl-empty {
    text-align: center;
    padding: 80px 20px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
    color: #8b7d6f;
}

/* ════════════════════════════════════════════════════════════
   CATEGORY PAGE
   ════════════════════════════════════════════════════════════ */
.fl-category-hero {
    padding: 64px 0 48px;
    text-align: center;
    border-bottom: 1px solid #e8e0d3;
    margin-bottom: 56px;
}
.fl-breadcrumbs {
    font-family: var(--font-body);
    font-size: 10.5px;
    color: #8b7d6f;
    margin-bottom: 24px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    font-weight: 500;
}
.fl-breadcrumbs a {
    color: var(--primary);
}
.fl-breadcrumbs a:hover { text-decoration: underline; }
.fl-bc-sep { color: #d8cebd; }
.fl-bc-current { color: #2a1f17; font-weight: 600; }

.fl-category-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.fl-category-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.05;
    letter-spacing: -0.022em;
    color: #2a1f17;
    margin-bottom: 18px;
}
.fl-category-description {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    color: #5a4838;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}
.fl-category-count {
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 11px;
    color: #8b7d6f;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ════════════════════════════════════════════════════════════
   SINGLE POST — Magazine article
   ════════════════════════════════════════════════════════════ */
.fl-article {
    padding-top: 56px;
}

.fl-article-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid #e8e0d3;
}

.fl-article-category {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--primary);
    transition: color 0.25s;
}
.fl-article-category:hover { color: #2a1f17; border-bottom-color: #2a1f17; }

.fl-article-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5.2vw, 56px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.022em;
    color: #2a1f17;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fl-article-deck {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(18px, 2.1vw, 22px);
    color: #5a4838;
    line-height: 1.55;
    margin: 0 auto 32px;
    max-width: 620px;
}

.fl-article-meta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 11px;
    color: #8b7d6f;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    flex-wrap: wrap;
    justify-content: center;
}
.fl-article-meta strong {
    color: #2a1f17;
    font-weight: 600;
}
.fl-meta-sep {
    color: #d8cebd;
    font-size: 14px;
}

.fl-article-image {
    margin: 0 auto 56px;
    max-width: 1000px;
    padding: 0 32px;
}
.fl-article-image img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}
.fl-image-caption {
    margin-top: 12px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 13px;
    color: #8b7d6f;
    text-align: center;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.fl-article-content { padding-bottom: 80px; }

.fl-prose {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.8;
    color: #2a1f17;
}

/* Drop cap - büyük italic terracotta */
.fl-prose > p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 76px;
    font-weight: 400;
    float: left;
    line-height: 0.85;
    margin: 8px 14px 0 0;
    color: var(--primary);
}

.fl-prose h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.2vw, 32px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: #2a1f17;
    margin: 56px 0 18px;
    text-align: center;
}
.fl-prose h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(20px, 2.6vw, 24px);
    font-weight: 400;
    color: #2a1f17;
    margin: 40px 0 14px;
}
.fl-prose h4 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    color: #2a1f17;
    margin: 32px 0 12px;
}
.fl-prose p { margin-bottom: 22px; }
.fl-prose a {
    color: var(--primary);
    border-bottom: 1px solid rgba(200, 98, 61, 0.3);
    transition: border-bottom-color 0.25s;
}
.fl-prose a:hover { border-bottom-color: var(--primary); }
.fl-prose ul, .fl-prose ol {
    margin: 0 0 22px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    color: #2a1f17;
}
.fl-prose li { margin-bottom: 10px; }

/* Pull quote - large centered italic */
.fl-prose blockquote {
    text-align: center;
    margin: 56px -20px;
    padding: 28px 32px;
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(20px, 2.6vw, 26px);
    line-height: 1.4;
    color: #2a1f17;
}
.fl-prose blockquote p { margin-bottom: 0; }
.fl-prose blockquote::before {
    content: '“';
    display: block;
    font-size: 56px;
    color: var(--primary);
    line-height: 0.6;
    margin-bottom: 10px;
}

.fl-prose img {
    margin: 36px 0;
    width: 100%;
}
.fl-prose strong {
    color: #2a1f17;
    font-weight: 600;
}
.fl-prose hr {
    border: none;
    text-align: center;
    margin: 48px 0;
}
.fl-prose hr::after {
    content: '✦';
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 0.5em;
}

/* Article footer */
.fl-article-footer {
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid #e8e0d3;
    text-align: center;
}
.fl-article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}
.fl-tags-label {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    color: #8b7d6f;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-right: 4px;
}
.fl-tag {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: #5a4838;
    border-bottom: 1px solid #c0b39c;
    padding-bottom: 1px;
    transition: all 0.25s;
}
.fl-tag:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Author bio */
.fl-author-bio {
    margin-top: 56px;
    padding: 36px 0;
    border-top: 1px solid #e8e0d3;
    border-bottom: 1px solid #e8e0d3;
    text-align: center;
}
.fl-bio-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 1px solid #e8e0d3;
}
.fl-author-avatar-placeholder {
    background: linear-gradient(135deg, var(--primary), #2a1f17);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 30px;
}
.fl-bio-label {
    font-family: var(--font-body);
    font-size: 10.5px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.fl-bio-name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    font-weight: 400;
    color: #2a1f17;
    margin-bottom: 12px;
}
.fl-bio-text {
    font-family: var(--font-display);
    color: #5a4838;
    line-height: 1.65;
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
}

/* Related */
.fl-related {
    padding: 72px 0 80px;
    background: #fafaf7;
    border-top: 1px solid #e8e0d3;
}
.fl-related-head {
    text-align: center;
    margin-bottom: 48px;
}
.fl-related-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10.5px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.fl-related-title {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(28px, 3.6vw, 36px);
    font-weight: 400;
    color: #2a1f17;
    letter-spacing: -0.015em;
}
.fl-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 36px;
}
.fl-related-card {
    text-align: left;
}
.fl-related-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #e8e0d3;
    margin-bottom: 16px;
}
.fl-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.fl-related-card:hover .fl-related-image img { transform: scale(1.04); }
.fl-related-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.fl-related-card-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.25;
    color: #2a1f17;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.fl-related-card-title a { color: inherit; }
.fl-related-card-title a:hover { color: var(--primary); }
.fl-related-meta {
    font-family: var(--font-body);
    font-size: 11px;
    color: #8b7d6f;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   FOOTER — Çok sade
   ════════════════════════════════════════════════════════════ */
.fl-footer {
    background: #fafaf7;
    color: #5a4838;
    padding: 56px 0 32px;
    border-top: 1px solid #e8e0d3;
    text-align: center;
}
.fl-footer-logo {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 28px;
    font-weight: 400;
    color: #2a1f17;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    display: inline-block;
}
.fl-footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: #8b7d6f;
    margin-bottom: 32px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.fl-footer-divider {
    width: 32px;
    height: 1px;
    background: var(--primary);
    margin: 0 auto 32px;
}

.fl-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 36px;
}
.fl-footer-link {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    color: #5a4838;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.25s;
}
.fl-footer-link:hover { color: var(--primary); }
.fl-footer-phone-btn {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    color: #5a4838;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.25s;
}
.fl-footer-phone-btn:hover { color: var(--primary); }
.fl-footer-phone-btn.fl-revealed { color: var(--primary); }

.fl-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #e8e0d3;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 12.5px;
    color: #8b7d6f;
}

/* ════════════════════════════════════════════════════════════
   WHATSAPP — premium gradient (aynı)
   ════════════════════════════════════════════════════════════ */
.fl-wa-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: linear-gradient(140deg, #2ee06a 0%, #25d366 45%, #1da851 100%);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 22px rgba(37, 211, 102, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s, border-radius 0.3s;
    border: none;
}
.fl-wa-fab:hover {
    transform: translateY(-4px) scale(1.04);
    border-radius: 12px;
    color: white;
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55), 0 6px 14px rgba(0,0,0,0.18);
}
.fl-wa-fab svg {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}
.fl-wa-online {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background-color: #1d9bf0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
    background-size: 13px 13px;
    background-repeat: no-repeat;
    background-position: center;
    border: 3px solid #fafaf7;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.fl-wa-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    background: linear-gradient(135deg, #2ee06a 0%, #25d366 40%, #128c7e 100%);
    color: white;
    padding: 13px 18px;
    padding-bottom: calc(13px + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 -6px 24px rgba(37, 211, 102, 0.3);
    z-index: 999;
    border: none;
    overflow: hidden;
    transition: transform 0.2s ease;
}
.fl-wa-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    animation: flShimmer 3.5s ease-in-out infinite;
    pointer-events: none;
}
.fl-wa-bar:active { transform: scale(0.985); color: white; }
.fl-wa-bar svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}
.fl-wa-bar-icon-wrap {
    position: relative;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.fl-wa-bar-text {
    flex-grow: 0;
    flex-shrink: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    z-index: 1;
}
.fl-wa-bar-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 9px 3px 6px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    position: relative;
    z-index: 1;
}
.fl-wa-bar-status::before {
    content: '';
    width: 14px;
    height: 14px;
    background-color: #1d9bf0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
    background-size: 9px 9px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.fl-wa-bar-arrow {
    font-size: 17px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

@keyframes flShimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* ════════════════════════════════════════════════════════════
   STICKY SOCIAL SIDEBAR
   ════════════════════════════════════════════════════════════ */
.fl-side-social {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
    animation: flFadeUp 0.7s 0.4s both;
}
.fl-side-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.fl-side-social-btn::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 17px;
    height: 17px;
    background-color: #1d9bf0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
    background-size: 11px 11px;
    background-repeat: no-repeat;
    background-position: center;
    border: 2px solid #fafaf7;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.fl-side-social-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}
.fl-side-social-btn:hover {
    transform: translateX(4px) scale(1.06);
    color: white;
}
.fl-side-social-btn:hover svg { transform: scale(1.1); }

.fl-side-fb { background: #1877f2; }
.fl-side-fb:hover { box-shadow: 0 10px 24px rgba(24, 119, 242, 0.5); }
.fl-side-ig { background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%); }
.fl-side-ig:hover { box-shadow: 0 10px 24px rgba(225, 48, 108, 0.5); }

.fl-side-tooltip {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: #2a1f17;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, left 0.3s ease;
}
.fl-side-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: #2a1f17;
}
.fl-side-social-btn:hover .fl-side-tooltip {
    opacity: 1;
    left: calc(100% + 14px);
}

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

/* ════════════════════════════════════════════════════════════
   INSTAGRAM SECTION
   ════════════════════════════════════════════════════════════ */
.fl-social-section {
    padding: 64px 0 72px;
    background: #fafaf7;
    border-top: 1px solid #e8e0d3;
}
.fl-social-header {
    text-align: center;
    margin-bottom: 36px;
}
.fl-social-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.fl-social-eyebrow::before,
.fl-social-eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--primary);
}
.fl-social-handle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(26px, 3.6vw, 36px);
    font-weight: 400;
    color: #2a1f17;
    letter-spacing: -0.015em;
}
.fl-instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 32px;
}
.fl-ig-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e8e0d3;
    transition: transform 0.3s ease;
}
.fl-ig-item:hover { transform: translateY(-3px); }
.fl-ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.fl-ig-item:hover img { transform: scale(1.06); }
.fl-ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 31, 23, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.fl-ig-item:hover .fl-ig-overlay { opacity: 1; }
.fl-ig-overlay svg {
    width: 28px;
    height: 28px;
    color: white;
}
.fl-social-cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.fl-social-cta a {
    color: #5a4838;
    padding-bottom: 3px;
    border-bottom: 1px solid #5a4838;
    transition: all 0.25s;
}
.fl-social-cta a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ─── ANIMATIONS ─── */
.fl-fade-init {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fl-fade-in { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
    .fl-header { z-index: 10000; }
    .fl-mobile-toggle { display: flex !important; }
    
    .fl-header-inner {
        grid-template-columns: 1fr auto 1fr;
        gap: 12px;
    }
    .fl-header-meta { display: none; }
    .fl-header-actions { grid-column: 3; }
    
    .fl-nav-wrap {
        position: relative;
        z-index: 10000;
    }
    
    .fl-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 290px;
        max-width: 85vw;
        height: 100vh;
        min-height: 100vh;
        background: #fafaf7 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start;
        padding: 72px 28px 28px;
        z-index: 9999;
        box-shadow: -16px 0 48px rgba(42, 31, 23, 0.18);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        justify-content: flex-start;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid #e8e0d3;
    }
    .fl-nav.fl-nav-open { transform: translateX(0); }
    
    .fl-nav-close {
        display: flex !important;
        position: absolute;
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #f3ede2;
        align-items: center;
        justify-content: center;
        padding: 0;
        z-index: 1;
    }
    .fl-nav-close:hover { background: var(--primary); color: white; }
    .fl-nav-close svg { width: 16px; height: 16px; }
    
    .fl-nav-link {
        font-size: 12px;
        padding: 14px 0;
        border-bottom: 1px solid #e8e0d3;
        display: block !important;
        width: 100%;
        text-align: left;
        letter-spacing: 0.18em;
    }
    .fl-nav-link::after { display: none; }
    .fl-nav-link:last-child { border-bottom: none; }
    
    .fl-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(42, 31, 23, 0.5);
        z-index: 9998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .fl-nav-backdrop.fl-backdrop-show {
        opacity: 1;
        pointer-events: auto;
    }
    
    .fl-hero { padding: 56px 0 44px; }
    .fl-main { padding: 36px 0 64px; }
    
    /* Post entry - mobil tek sütun, resim üstte */
    .fl-post-entry {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .fl-post-entry:nth-child(even) .fl-post-image-wrap { order: 1; }
    .fl-post-entry:nth-child(even) .fl-post-text { order: 2; }
    
    .fl-posts { gap: 64px; }
    
    .fl-related { padding: 56px 0 64px; }
    .fl-related-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    
    .fl-footer { padding: 44px 0 28px; }
    
    /* WhatsApp mobile */
    body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
    .fl-wa-bar { display: flex; }
    .fl-wa-fab { display: none; }
    
    .fl-instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .fl-social-section { padding: 48px 0 56px; }
    
    .fl-side-social {
        left: 10px;
        gap: 10px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
    .fl-side-social-btn {
        width: 40px;
        height: 40px;
        box-shadow: 0 4px 12px rgba(42, 31, 23, 0.22);
    }
    .fl-side-social-btn svg { width: 17px; height: 17px; }
    .fl-side-social-btn::after {
        width: 15px;
        height: 15px;
        background-size: 10px 10px;
        top: -4px;
        right: -4px;
    }
    .fl-side-tooltip { display: none; }
}

@media (min-width: 961px) {
    .fl-nav-backdrop { display: none !important; }
    .fl-nav-close { display: none !important; }
    .fl-mobile-toggle { display: none !important; }
}

@media (max-width: 600px) {
    .fl-container { padding: 0 24px; }
    .fl-container-narrow { padding: 0 24px; }
    
    .fl-logo-text { font-size: 18px; }
    .fl-logo-mark { width: 28px; height: 28px; }
    
    .fl-cta-call { font-size: 10px; }
    .fl-cta-call .fl-cta-text { display: none; }
    
    .fl-hero { padding: 44px 0 32px; }
    .fl-hero-actions { flex-direction: column; align-items: stretch; }
    
    .fl-post-title { font-size: 24px; }
    .fl-article-title { font-size: 28px; }
    
    .fl-prose { font-size: 17px; }
    .fl-prose > p:first-of-type::first-letter {
        font-size: 58px;
        margin: 6px 10px 0 0;
    }
    .fl-prose blockquote {
        font-size: 19px;
        margin: 36px 0;
        padding: 20px 18px;
    }
    .fl-prose blockquote::before { font-size: 42px; }
    
    .fl-article { padding-top: 36px; }
    .fl-article-image { padding: 0 24px; margin-bottom: 36px; }
    
    .fl-related-grid { grid-template-columns: 1fr; }
    
    .fl-wa-bar {
        font-size: 13px;
        padding: 11px 14px;
        padding-bottom: calc(11px + env(safe-area-inset-bottom));
    }
    .fl-wa-bar-icon-wrap { width: 30px; height: 30px; }
    .fl-wa-bar-status { font-size: 10px; }
}

@media (max-width: 380px) {
    .fl-logo-text { font-size: 16px; }
    .fl-logo-mark { width: 24px; height: 24px; }
    
    .fl-wa-bar { font-size: 12px; }
    .fl-wa-bar svg { width: 18px; height: 18px; }
    .fl-wa-bar-status { display: none; }
    
    .fl-side-social { left: 8px; gap: 8px; }
    .fl-side-social-btn { width: 36px; height: 36px; }
    .fl-side-social-btn svg { width: 15px; height: 15px; }
    .fl-side-social-btn::after {
        width: 13px;
        height: 13px;
        background-size: 9px 9px;
    }
}
